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
; [1] Useless | |
; [2] 2xDPS | |
; [3] 1,5xCritClick | |
; [4] 2xGold | |
; [5] 1%Gold/Click | |
; [6] Dark Ritual | |
; [7] 3xClick | |
; [8] Double next | |
; [9] Reload prev |
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 <assert.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <arpa/inet.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <errno.h> | |
#include <string.h> | |
#include <sys/types.h> |
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
// $ a.out 1 "+" 2 | |
// 3 | |
// $ a.out 2 "*" 3 | |
// 6 | |
// $ a.out 6 "/" 2 | |
// 3 | |
#include <assert.h> | |
#include <stdio.h> | |
#include <stdlib.h> |
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
#!/bin/sh | |
if [ "$1" = "" ]; then | |
echo "usage: $0 website-dir"; | |
echo; | |
# echo "Set owner of <website-dir> to www:nogroup,"; | |
echo "Set permissions rw-r-r for regular files"; | |
echo "and rwx-rx-rx for directories"; | |
echo; | |
echo "Root permissions might be required."; |
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
class A(object): | |
def __init__(self): | |
self.name = 'Andy' | |
def tell(what): | |
def inner(self): | |
print(" -- %s, %s!" % (what, self.name)) | |
return inner | |
hi = tell("Hello") |
NewerOlder