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
#!/usr/bin/env python | |
from __future__ import print_function | |
import sys | |
def make_speech_bubble(message): | |
def times_msg_size(string): return (string * len(message)) | |
print(' _' + times_msg_size('_') + '_') | |
print('/ ' + times_msg_size(' ') + ' \\') | |
print('| ' + message + ' |') | |
print('\\_' + times_msg_size('_') + '_/') |
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
* AA — Abbrev for "ASCII Art", actually JIS art. | |
* aborn あぼーん — Post deleted. Occasionally also 〜する "to administratively delete a post". | |
* age — To reply to a thread and thus bump a thread to the top of the board. From 上げる. Written in romaji but inflected like a verb, e.g. ageろ "let's age". | |
* appu うp — "Upload please!". Like "zOMG TORRENT PLZ" but less annoying. | |
* arashi 荒し — Troll. | |
* burakura ブラクラ — Browser crusher. Things or people who post things which break web browsers. | |
* chūbō 厨房 — Posters who don't bother to read the rules, flamers, spammers. From kanji misconversion of 中坊 "middle school kid", an abbrev for 中学坊主 or 中学坊や. 坊主 is an everyday slang term for "kid", from the short haircuts of young boys and bald heads of Buddhist priests. | |
* denpa 電波 — Literally "radio waves". Songs and similar things which get stuck in your head, e.g. マイヤヒ. | |
* desu tane デス種 — Abbrev for Gundam Seed Destiny. | |
* DQN ドキュン — Retard, asshole, jerk, troll. Also ドキュソ. |
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
#!/usr/bin/env python | |
# This Python script allows you to create tiny custom Waf distributions | |
# for each project you have. It's very similar to Gradle's wrapper scripts. | |
# Your mini Waf distribution can be customized using the variables at the top | |
# of the script. | |
from __future__ import print_function | |
import os | |
import sys |
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
(Get-Command exe).Path |
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
void Zip::Open(const char * file) | |
{ | |
int error = 0; | |
// Allocate a buffer that holds the error message string from | |
// zip_error_to_str. | |
char buffer[250]; | |
// Open the zip file. Essentially it writes data to the `z' struct | |
// that holds all the zip file data. | |
z = zip_open(file, ZIP_CREATE, &error); |
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 <cstdio> | |
#include <cstdlib> | |
#include <cstring> | |
#include <string> | |
#include <zlib.h> | |
#include <zconf.h> | |
using namespace std; | |
void compress(string filename, string data) | |
{ |
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 <string.h> | |
#include <zlib.h> | |
int main() | |
{ | |
const char * dat = "Hello world!"; | |
gzFile * f = (gzFile *)gzopen("archive.gz", "wb"); | |
gzwrite(f, dat, strlen(dat)); | |
gzclose(f); |
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 <cstdio> | |
#include <string> | |
#include <cstring> | |
#include <cstdlib> | |
#include "zlib.h" | |
#include "zconf.h" | |
using namespace std; | |
bool gzipInflate( const std::string& compressedBytes, std::string& uncompressedBytes ) { | |
if ( compressedBytes.size() == 0 ) { |
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
template <typename T, size_t N> | |
char (&ArraySizeHelper(T (&array)[N]))[N]; | |
#define arysize(array) (sizeof(ArraySizeHelper(array))) |
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
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Basic apps I use | |
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Best web browser IMO | |
cinst GoogleChrome | |
:: For calling/contacting people | |
cinst Skype |
NewerOlder