This file contains hidden or 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
| 37107287533902102798797998220837590246510135740250 | |
| 46376937677490009712648124896970078050417018260538 | |
| 74324986199524741059474233309513058123726617309629 | |
| 91942213363574161572522430563301811072406154908250 | |
| 23067588207539346171171980310421047513778063246676 | |
| 89261670696623633820136378418383684178734361726757 | |
| 28112879812849979408065481931592621691275889832738 | |
| 44274228917432520321923589422876796487670272189318 | |
| 47451445736001306439091167216856844588711603153276 | |
| 70386486105843025439939619828917593665686757934951 |
This file contains hidden or 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
| #include <stdio.h> | |
| int main(){ | |
| unsigned int i = 1; | |
| char *p = (char *)&i; | |
| if(*p == 0) | |
| printf("big endianness"); | |
| else | |
| printf("little endianness"); |
This file contains hidden or 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
| 48 87 15 43 25 | |
| 65 91 19 19 76 | |
| 21 46 72 29 8 | |
| 22 55 7 95 55 | |
| 11 36 11 33 3 | |
| 39 9 49 66 52 | |
| 95 97 44 96 82 | |
| 53 44 1 86 11 | |
| 48 45 26 3 9 | |
| 54 98 83 86 20 |
This file contains hidden or 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
| Verifying I am +zg on my passcard. https://onename.com/zg |
This file contains hidden or 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
| <?php | |
| /********************************************************************* | |
| * Database Abstraction Layer | |
| ********************************************************************** | |
| * Related Files: | |
| * -------------------------------------------------------------- | |
| ********************************************************************** | |
| * Revision History: | |
| * -------------------------------------------------------------- |
This file contains hidden or 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
| <?php | |
| if(count($_GET) > 0) | |
| { | |
| $xmlstr = "<npcspawn> | |
| <npcId>{$_GET['npcId']}</npcId> | |
| <locationz> | |
| <x>{$_GET['x']}</x> | |
| <y>{$_GET['y']}</y> | |
| <z>{$_GET['z']}</z> | |
| </locationz> |
This file contains hidden or 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
| <?php | |
| class Highscores { | |
| public $skills = array ( | |
| 'attack','defence','strength','hitpoints','range', | |
| 'prayer','magic','cooking','woodcutting','fletching', | |
| 'fishing','firemaking','crafting','smithing','mining', | |
| 'herblore','agility','thieving','slayer','farming', | |
| 'runecraft', | |
| 'overall' | |
| ); |
This file contains hidden or 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
| static char *hidehost_ipv4(char *host) | |
| { | |
| unsigned int a, b, c, d; | |
| static char buf[512], res[512], res2[512], result[128]; | |
| unsigned long n; | |
| unsigned int alpha, beta, gamma; | |
| /* | |
| * Output: ALPHA.BETA.GAMMA.IP | |
| * ALPHA is unique for a.b.c.d |
This file contains hidden or 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
| // The four boxing wizards jump | |
| #include <stdio.h> // <= quickly. | |
| int main(int argc, char **argv) { | |
| long il1[]={1-2/3.4,5+6==7/8}; | |
| int OxFaced=0xBAD||"[{(CQUINE"; | |
| unsigned O0,l1,Z2,S5,G6,B8__XY; | |
| printf("@$Hamburgefo%c`",'\n'); | |
| return ~7&8^9?0:l1|!"j->k+=*w"; | |
| } |
This file contains hidden or 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
| import java.util.HashMap; | |
| import java.util.Map; | |
| public class TagCloud { | |
| private HashMap<String, Integer> tags; | |
| public static void main(String[] args) { | |
| TagCloud tagcloud = new TagCloud(); | |
| } | |
| public TagCloud(){ |
OlderNewer