Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #22.6K
Ranked #4K

9 Posted Topics

Member Avatar for Markoson

Just like JorgeM said, you can download a linux kernel ( BT, Kali- preferred ) burn that to a cd / dvd .. boot up your pc from your cd/dvd drive, locate your SAM file in your windows folder .. and then crack ... Hope you know what to do …

Member Avatar for antonyb
0
108
Member Avatar for Konstantinos_1

to reduce code lines, i'd suggest You use C++ <map> .. it's much more easier .. you just need a helper function named, maybe (split) which is a vector of string that takes as an argument a const string reference ... [get the sample code here](http://pastebin.com/zK1YKCb8) You just have to …

Member Avatar for KushMishra
0
165
Member Avatar for happygeek
Member Avatar for <M/>
3
403
Member Avatar for mrmodest34

something like this should do the trick ... `unsigned int start = 0, end =0;` `start = time(0);` `........your code goes here ...` `end = time(0);` `cout <<"Total Runtime = " <<end - start <<endl;` ***** HAVE PHUN C0DiNG*****

Member Avatar for meta.quota
0
511
Member Avatar for CJMW

i once created an encryption / decryption algorithm ... [get the encryption source here : ](http://pastebin.com/LeLTY0gu) [and decryption source here](http://pastebin.com/qv3rHf4U) Get back and let me know ..

Member Avatar for meta.quota
0
273
Member Avatar for kirtikesh

Maybe you are trying to do graphics ??? .. then i suggest allegro C/C++ graphics lib as it is both a beginners lib and efficient . Once installed, Do something like ... BITMAP *bmp = loadbmp("name_of_bmp_img", 0 ); BITMAP *buffer = creat_bitmap(SCREEN_W, SCREEN_H); clear_to_color(screen, makecol(255,255,255)); draw_sprite(buffer, bmp, bmp->w, bmp->h); draw_sprite(screen, …

Member Avatar for meta.quota
0
204
Member Avatar for moudy.mak

Make sure you are using a GUI auxi lib like ( GLUT ) . Do you have that ?? if so initialise every necessary stuffs and try again !!! ****HAVE PHUN C0DiNG****

Member Avatar for meta.quota
0
2K
Member Avatar for Junior_1
Member Avatar for Builder_1

The End.