1. http://kodomo.cmm.msu.su/trac/snake/browser/engine.py?rev=378227a79ebcc787285b98b56311e8c66d75a80b&format=txt
import random as rnd import Tkinter as tk import snake directions = [(0,1), (1,0), (0,-1), (-1,0)] tm = [[0, -1], [1, 0]] class Cell(object): def __init__( self , x, y, canvas = None ): self .x = x self .y = y self .canvas = canvas self . snake = None self .type = 'empty' return def redraw( self ): field_size = min( self .canvas.winfo_height(), self .canvas.winfo_width()) offset = ( ...
[
]
http://kodomo.cmm.msu.su/trac/snake/browser/engine.py?rev=378227a79ebcc787285b98b56311e8c66d75a80b&format=txt -- 7.2 -- 19.12.2010
[
]
http://kodomo.cmm.msu.ru/trac/snake/browser/engine.py?rev=378227a79ebcc787285b98b56311e8c66d75a80b&format=txt -- 7.2 -- 19.12.2010
:
(
(>3007) - kodomo.cmm.msu.ru/ )
2. snake: c0d500d241ff engine.py
... added redraw after snake creation . ... 8 class Cell ( object ): . 9 def __init__ ( self , x , y , canvas = None ): . ... type = 'empty' . ... canvas . ... 18 offset = ( self . ... create_rectangle ( offset [ 0 ], offset [ 1 ], offset [ 0 ] + self . x * field_size / 21.0 , offset [ 1 ] + self . ... 21 pass . ... 83 def move_snake ( self , snake ): . ... 98 dir_cell = self . ... type == 'tail' and dir_cell . ... 110 dir_cell = self . ... 159 dir_cell = self . ... type == 'empty' or ( dir_cell . ...
[
]
http://kodomo.fbb.msu.ru/hg/snake/file/c0d500d241ff/engine.py -- 52.8 -- 03.02.2013
:
(
(>5523) - kodomo.fbb.msu.ru/ )
3. Data Access with Explicit Offsets | PARALLEL.RU - -
... Data Access with Explicit Offsets . Up: Data Access Next: Data Access with Individual File Pointers Previous: Data Access Conventions . ... IN offset] file offset (integer) . ... int MPI_File_read_at(MPI_File fh, MPI_Offset offset, void *buf, int count, MPI_Datatype datatype, MPI_Status *status) . ... INTEGER(KIND=MPI_OFFSET_KIND) OFFSET . void MPI::File::Read_at(MPI::Offset offset, void* buf, int count, const MPI::Datatype& datatype, MPI::Status& status) . ... . ...
[
]
http://www.parallel.ru/docs/mpi2/node191.html -- 22.8 -- 09.04.2016
:
(
(>94) - www.parallel.ru/ )
4. OFFSET
... Prev . Next . ... OFFSET(range,row,col,height,width) . ... (@col,@row) @range, @height @width. @range , OFFSET #VALUE!. ... COLUMN , COLUMNS , ROWS . ...
[
]
http://uneex.mithril.cs.msu.su/static/GnumericDoc_ru/r6928.html -- 3.9 -- 26.09.2011
[
]
http://uneex.lorien.cs.msu.su/static/GnumericDoc_ru/r6928.html -- 3.9 -- 26.09.2011
:
(
(>46) - uneex.lorien.cs.msu.su/ )
5. Witte F., Huijsing J., Makinwa K.A.A. - ynamic Offset Compensated CMOS
. ... Witte F., Huijsing J., Makinwa K.A.A. - ynamic Offset Compensated CMOS Amplifiers . ... : ynamic Offset Compensated CMOS Amplifiers . : Witte F., Huijsing J., Makinwa K.A.A. : . Dynamic Offset-Compensated CMOS Amplifiers describes the theory, design and realization of dynamic offset compensated CMOS amplifiers. ... Two offset compensation techniques are described: auto-zeroing and chopping. ...
[
]
http://lib.mexmat.ru/books/83278 -- 15.4 -- 11.04.2016
:
(
(>194) - lib.mexmat.ru/ )
6. Offset - - Kinfo.ru
. [ ] . -> -> Offset . . . . . . Offset . - - - 2006 . . .
[
]
http://kinfo.ru/Movie/5da22f09-5b1e-4da5-a1e7-6ff0433d27a5 -- 7.1 -- 12.04.2016
7. http://mirror.msu.net/pub/rfc-editor/rfc-ed-all/pdfrfc/rfc1702.txt.pdf
... This memo also describes using IP addresses and autonomous system numbers as part of a GRE source route. ... The first octet of the Routing Information field constitute a 8 bit integer offset from the start of the Source Route Entry (SRE), called the SRE Offset. ... Address Family | SRE Offset | ... Autonomous system source routes When a system is processing a SRE with an Address Family indicating an AS source route, it MUST use the SRE Offset field to determine the next autonomous system. ...
[
]
http://mirror.msu.net/pub/rfc-editor/rfc-ed-all/pdfrfc/rfc1702.txt.pdf -- 5.7 -- 27.03.2002
:
(
(>1830) - mirror.msu.net/ )
8. http://xray.sai.msu.ru/~ivan/gmt/man/grdgradient.html
grdgradient - Compute directional derivative or gradient from 2-D grd file representing z(x,y) grdgradient in _ grdfile -G out _ grdfile [ -A azim [/ azim2 ] ] [ -D [ c ][ o ][ n ] ] [ -L flag ] [ -M ] [ -N [ e ][ t ][ amp ][/ sigma [/ offset ]] ] [ -S slopefile ] [ -V ] grdgradient may be used to compute the directional derivative in a given direction ( -A ), or the direction ( -S ) [and the magnitude ( -D )] of the vector gradient of the data. ... If amp is not given, default amp = 1. ...
[
]
http://xray.sai.msu.ru/~ivan/gmt/man/grdgradient.html -- 7.6 -- 19.03.1999
:
(
(>26) - xray.sai.msu.ru/ )
9. array_splice
... PHP 4 >= 4.0.0) array_splice -- Remove a portion of the array and replace it with something else . array array_splice ( array input, int offset [, int length [, array replacement]]) . ... input = array ( red , green , blue , yellow ); array_splice ($ input , 2); // $ input is now array ( red , green ) $ input = array ( red , green , blue , yellow ); array_splice ($ input , 1, -1); // $ input is now array ( red , yellow ) $ See also array_slice() . ...
[
]
http://old.hcs.cmc.msu.ru/php/function.array-splice.html -- 7.1 -- 03.02.2002
[
]
http://old.master.cmc.msu.ru/php/function.array-splice.html -- 7.1 -- 03.02.2002
[
]
http://oit.cmc.msu.ru/php/function.array-splice.html -- 7.1 -- 03.02.2002
:
(
(>94) - oit.cmc.msu.ru/ )
10. http://angel.cmc.msu.ru/~ifed/teraflops/Goritskaya_MPI2.pdf
... MPI_Win_fenc win); A[rank] = 4; MPI_Win_fenc win); MPI_Put ( .. ... MPI-2 I/O: MPI - -, , - , MPI - , , . ... int MPI _File_close( MPI_File *fh) INOUT fh () , fh , fh, , MPI _FILE_CLOSE int MPI _File_set_view( MPI_File fh, MPI _ Offset disp, MPI_Datatype etype, MPI_Datatype filetype, char *datarep, MPI _Info info) I I I I I I N N N N N N OUT fh () disp () etype () filetype () datarep () info () int MPI _File_get_view( MPI_File fh, MPI _ Offset *disp, MPI_Datatype *etype, ...
[
]
http://angel.cmc.msu.ru/~ifed/teraflops/Goritskaya_MPI2.pdf -- 267.7 -- 04.03.2010
11. MaDgimp: Mercury Effect
Start with some text then Offset 1,1 Blur the offset 2.0, Offset that -2,-2 . ... a-O . ... Map/ . ... Now you can be a little artistic if you want to make the picture more random. Use an airbrush to paint a little . ... After the artisctic additions you solarize the picture twice. ... Then Invert the picture and Add it with U-1 . ... What you do now is just add some color to it with a gamma filter . I used the Map/BCG with R=1.0 G=0.7 B=1.6 . ...
[
]
http://www.sai.msu.su/~megera/gimp/mwikholm/tutor/mercury/ -- 3.0 -- 22.12.2007
:
(
(>1025) - www.sai.msu.su/ )
12. Manpage of FITSHDR
fitshdr - FITS-file headers manipulation tool fitshdr [options] [FITSfile_name] . ... fitshdr [options] --edit FITSfile_name . ... If You want to modify headers of FITSFILE using new FITS-header lines from HEADER file (or from stdin), You have to use this option