This file contains 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
# Define a set of basic types | |
INTEGER = 'INTEGER' | |
BOOLEAN = 'BOOLEAN' | |
FUNCTION = 'FUNCTION' | |
# Define a class for type variables | |
class TypeVar: | |
def __init__(self, name): | |
self.name = name | |
This file contains 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> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <pthread.h> | |
#include <unistd.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#define BUFFER_SIZE 1024 | |
#define NUM_THREADS 5 |
This file contains 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
{ | |
"global": { | |
"name": "ELPRESADOR", | |
"uid": 2297593921, | |
"avatar": "", | |
"platform": "PC", | |
"level": 169, | |
"toNextLevelPercent": 85, | |
"internalUpdateCount": 3403, | |
"bans": { |
This file contains 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 Foundation | |
struct KeychainItem { | |
// MARK: Types | |
enum KeychainError: Error { | |
case noPassword | |
case unexpectedPasswordData | |
case unexpectedItemData | |
case unhandledError |
This file contains 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
{ | |
"workbench.colorTheme": "Visual Studio Light", | |
"window.zoomLevel": 2 | |
} |