This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SLibEntryRef __thiscall SFileSystem__FindInArchive(SFileSystem *this, int index, const char *str) | |
{ | |
SLibEntryRef result; // qax@3 | |
char name_offset; // ST13_1@14 | |
const char *name; // ST18_4@14 | |
unsigned __int8 name_length; // ST12_1@14 | |
SFileSystem *self; // [sp+0h] [bp-14h]@1 | |
int cmp; // [sp+8h] [bp-Ch]@14 | |
SLibEntryHead *lib_entry; // [sp+Ch] [bp-8h]@13 | |
SLibEntryRef *ref; // [sp+Ch] [bp-8h]@14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This difference file has been created by IDA Pro | |
swine.exe | |
0012F735: 30 33 | |
0012F736: 32 36 | |
0012F737: 34 36 | |
0012F741: 32 39 | |
0012F742: 38 32 | |
0012F747: 32 38 | |
0012F748: 34 30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
HOST="chainstories.szigbp.hu" | |
PORT="57221" | |
USER="kris" | |
REMOTE_PATH="/home/${USER}/bme/ssl" | |
LOCAL_PATH="/home/${USER}/bme/ssl" | |
BINDIR="hu.kris.bme.semi_supervised_learning/bin" | |
JARFILES=( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ irb | |
irb(main):001:0> RUBY_VERSION | |
=> "1.9.3" | |
irb(main):002:0> Kernel.fork { Random.rand(100000) } | |
=> 22594 | |
(irb):2: [BUG] Segmentation fault | |
ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux] | |
-- Control frame information ----------------------------------------------- | |
c:0027 p:---- s:0093 b:0093 l:000092 d:000092 CFUNC :rand |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub Foobar | |
Dim Doc as Object | |
Dim Sheet as Object | |
Dim VariableCell as Object | |
Dim TargetCell as Object | |
Const LowerBound = -1 | |
Const UpperBound = 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
(Hudson-Nelson_*.pdf) { dup length string copy } 1000 string filenameforall | |
] % create array of filenames | |
{ lt } .sort % sort in increasing alphabetic order | |
/PN 1 def | |
{ /FN exch def | |
/PN currentpagedevice /PageCount get 1 add def % get current page count done (next is one greater) | |
FN run [ /Page PN /Title FN /OUT pdfmark % do the file and bookmark it by filename | |
} forall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
originalMusic = \relative c' { | |
\time 4/4 | |
c4\mf <d e>~\startTrillSpan <d e> f\>\stopTrillSpan | c-. <d e>-.~ <d e>-.\! f-. | |
} | |
\new Staff \with { instrumentName = "Orig."} | |
\originalMusic | |
\new Staff \with { instrumentName = "Stacc." } | |
\filterByArticulation "staccato" \originalMusic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\version "2.17.20" | |
\include "articulate.ly" | |
#(define (contains-articulation? a-type articulations) | |
(find (lambda (a) | |
(equal? (ly:music-property a 'articulation-type) a-type)) | |
articulations)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\version "2.17.22" | |
beginning = \relative c'' { | |
\key as \major | |
c1 | |
} | |
middlesection = \relative gis' { | |
\key e \major | |
gis1 |
OlderNewer