Skip to content

Instantly share code, notes, and snippets.

View AndyNovo's full-sized avatar

Andy Novocin AndyNovo

View GitHub Profile
245 -5244409607 7375632492 7244140444 -5245744514 4470946279 3631548165 -7734683778 7366682371 -3094422710 4867016746 4277065664 277215937 4151981607 5386981249 4036532956 3334654712 -123841685 -6522439473 5503956167 2117455715 -2806052717 1638007455 -2499475624 -6416948170 -9689035341 -6552186387 8575541215 -257073043 2925741467 3270474790 9952991223 4204321901 5672450328 1466893917 3327843053 9793341896 -1442418607 -2898728728 -8535720873 9047614878 -5402424021 -3172274194 3915238036 -9341607842 8436785752 172034493 3103376497 3005301721 -4501985766 2755807168 -5831445899 -3315874499 7985273554 4520777816 5463205074 -6992896394 3893534489 4827605210 8955441296 -5487270675 4223798926 1600134639 -8333979056 -6516994990 -8684634811 -5190390125 -6513250604 8505373183 -7969749020 5208387830 1362134291 4950917119 3905629380 3261898560 -3754211049 5027184751 7544805270 -2512431714 -8908247594 2099293339 570896366 2094907075 4059600446 -9723841523 -4070537262 8972542428 2128008027 228207202 -7664167563 2034078765 -
233 6436712261 5609644425 5418443116 9284435607 7167617308 6648781056 462301021 478014971 4289580862 3787120657 8902218511 6288920654 7861923120 135573581 7565093958 3014154491 1776675968 8880903423 6396334979 1101520331 5031588726 9057937346 1089584783 5390559938 3379353537 1486175685 5388988949 8868763335 4085561254 258611801 9425890209 9529188629 2771047991 4219093397 6492398286 218619929 4777666313 2944637974 7005573606 4059542688 8299052018 7236819657 9139669177 431196027 4973989928 6357346251 1222548268 4720256817 16725498 761834808 7973762493 8113966636 9497132723 479780466 714233836 785394192 6143239646 9442591819 9993554858 4798117083 5715311398 1306164032 1304729857 4607439045 1296930642 9636148921 552585765 280203038 2045110739 5492823825 367707122 1841385142 5201185809 1638049208 4756930955 5295520745 7786024096 5470140908 2186012188 5533452231 6038895568 5112131513 7688671162 637846491 5375288044 5531005652 1136281397 5758911737 1129461897 3702060767 3776340328 3123981841 8321670448 1738994168 99
208 3610179811 4749437308 5088776773 3251577544 331858609 9606535909 831367577 9903309503 7603231457 5507231734 5912753869 5244778496 6376716924 6575467848 3010821242 3880279328 1940308820 1999109911 5755400697 3235963103 7778184100 1041965297 6805143286 4126488863 4135718694 3119184767 2575482757 9222875333 5763307599 930973214 592806915 974805808 4211883533 446088136 7181503931 7429520958 1876814518 6698004063 5027313672 1966991076 9447623542 7136786511 4689077397 7800470688 8620581652 9725907171 1757003508 1923506698 790780224 6718067567 8248583525 1078668097 6373788520 5468923673 6226925481 6603091135 9243993136 3655440534 9724337595 1301294340 157436764 49319047 3123314366 5994170146 7741471155 490754736 6617971819 9096999827 2381729319 9938114771 9941123542 2871989504 2278578083 6693332789 9568587058 9820882170 6659365407 1228555143 5710294696 3247499827 1956530265 6715075836 8350619876 394147779 8056188054 4436348568 7115283696 6424751192 8432427519 9836903895 1860709370 7494072933 9533099031 623434731
void show_chunk_hex(void* start, size_t bytes){
int i=0;
for(;i<bytes;i+=1){
printf("%02x", *((unsigned char*) (start+i)));
}
printf("\n");
};
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
void show_chunk_hex(void* start, size_t bytes){
int i=0;
for(;i<bytes;i+=1){
printf("%02x", *((unsigned char*) (start+i)));
}
printf("\n");
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
void show_chunk_hex(void* start, size_t bytes){
int i=0;
for(;i<bytes;i+=1){
printf("%02x", *((unsigned char*) (start+i)));
}
printf("\n");
/* University of Deleware Custom Theme Stylesheet
* -----------------------------------------------------------------------------
* Colors
* -----------------------------------------------------------------------------
* #00539F Blue
* #FFD200 Yellow
* #bed600 Green - MBA only
*/
#include <iostream>
#include <cstdlib>
#include <cstring>
using namespace std;
int main(int argc, char* argv[]){
long* ptr = new long;
long value = 15;
char user[20];
class VariableGenerator(object):
def __init__(self, prefix):
self.__prefix = prefix
@cached_method
def __getitem__(self, key):
return SR.var("%s%s"%(self.__prefix,key))
a=VariableGenerator('a')
answers={}
def pseudo_rand(seed, n):
results = [Integer(seed)]
for i in range(1, 31):
results.append((16807*results[-1]) % 2147483647)
results.append(results[0])
results.append(results[1])
results.append(results[2])
for i in range(34, 344):
results.append((results[-31]+results[-3]) % 2**32)
output = []