Declared calls syntax from: Graph Node
/// calls:
/// - myCall1: Contract[address].function(arg1, arg2, ...)
/// - ..
/// ```
///
/// The `address` and `arg` fields can be either `event.address` orDeclared calls syntax from: Graph Node
/// calls:
/// - myCall1: Contract[address].function(arg1, arg2, ...)
/// - ..
/// ```
///
/// The `address` and `arg` fields can be either `event.address` or| package main | |
| import ( | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "os" | |
| "sync" | |
| ) |
I hereby claim:
To claim this, I am signing this object:
| /* | |
| input is 1 line with 10 cards, black first, white second | |
| cards are sorted by value (suit is disregarded when sorting) | |
| when tested for hand type -- they are sorted again based on the | |
| order of evaluation of the hand when comparing the two, so | |
| full house will put the 3 of a kind highest, then the 2 of a kind. | |
| A pair will have the pair as the last two cards, and the rest | |
| sorted by from lowest to highest. This makes it easy to determine | |
| the winner by comparing down from the top. |
| /* | |
| check-frag filename [blocksize guess] | |
| blocksize default is 4096 -- smaller and seeks take too long | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <sys/stat.h> | |
| #include <sys/fcntl.h> | |
| #include <unistd.h> |
| #!/bin/bash | |
| #+ | |
| # Usage | |
| # newc filename [include[.h] ...] | |
| # | |
| # Output | |
| # Creates a file (filename) with a skeleton main function, with | |
| # optional include files in the header. If the file exists in | |
| # /usr/include then #include <include.h> is added, if it is not | |
| # found in /usr/include, but is found in the current directory |
| /* | |
| * gcc nv3h_read_gz.c -shared -Bsymbolic -I/zshare/rsi/idl_6.3/external/include -L/zshare/rsi/idl_6.3/bin/bin.linux.x86_64 -lidl -o nv3h_read_gz.so -fPIC -lz -ldl | |
| * | |
| * requires zlib 1.2.5 for gzbuffer -- will check for right version | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <sys/stat.h> | |
| #include <zlib.h> |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <limits.h> | |
| char *itob(char *buffer, int x) | |
| { | |
| unsigned int z = INT_MAX + 1U; | |
| char *buf = buffer; | |
| do |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| int brutesearch(char *p, char *a) | |
| { | |
| int i, j, M = strlen(p), N = strlen(a); | |
| for (i = 0, j = 0; j < M && i < N; i++, j++) | |
| { | |
| if (a[i] != p[j]) |