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
$$$$$$\ $$$$$$$$\ $$\ | |
$$ __$$\ \__$$ __| $$ | | |
$$ / $$ | $$$$$$\ $$$$$$\ $$$$$$$\ $$ | $$$$$$\ $$ | $$\ | |
$$ | $$ |$$ __$$\ $$ __$$\ $$ __$$\ $$ |$$ __$$\ $$ | $$ | | |
$$ | $$ |$$ / $$ |$$$$$$$$ |$$ | $$ |$$ |$$ / $$ |$$$$$$ / | |
$$ | $$ |$$ | $$ |$$ ____|$$ | $$ |$$ |$$ | $$ |$$ _$$< | |
$$$$$$ |$$$$$$$ |\$$$$$$$\ $$ | $$ |$$ |\$$$$$$ |$$ | \$$\ | |
\______/ $$ ____/ \_______|\__| \__|\__| \______/ \__| \__| | |
$$ | | |
$$ | powered by TokBox :) |
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
git remote add origin [email protected]:MyRepo |
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
@daily /home/user/cronjob2.sh |
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
$ mysql -u adminusername -p | |
Enter password: | |
Welcome to the MySQL monitor. Commands end with ; or \g. | |
Your MySQL connection id is 5340 to server version: 3.23.54 | |
Type 'help;' or '\h' for help. Type '\c' to clear the buffer. | |
mysql> CREATE DATABASE databasename; | |
Query OK, 1 row affected (0.00 sec) | |
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
var session = TB.initSession(sessionID); | |
session.addEventListener("sessionConnected", sessionConnectedHandler); | |
session.connect(apiKey, token); | |
function sessionConnectedHandler(event) { | |
for (var i = 0; i < event.connections; i++) { | |
var connection = event.connections[i]; | |
console.log(connection.data); | |
} | |
} |
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
[2012-01-25 18:51:12] make | |
CC = gcc | |
LD = ld | |
LDSHARED = gcc -shared | |
CFLAGS = -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=declaration-after-statement -Werror=implicit-function-declaration -fPIC | |
XCFLAGS = -include ruby/config.h -include ruby/missing.h -fvisibility=hidden -DRUBY_EXPORT | |
CPPFLAGS = -I. -I.ext/include/x86_64-linux -I./include -I. | |
DLDFLAGS = -Wl,-soname,libruby.so.1.9 | |
SOLIBS = -lpthread -lrt -ldl -lcrypt -lm | |
compiling main.c |
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
/Users/ankur/.rvm/rubies/ruby-1.9.3-p0/bin/ruby extconf.rb | |
checking for rb_method_entry_t.called_id in method.h... no | |
checking for rb_control_frame_t.method_id in method.h... no | |
*** extconf.rb failed *** | |
Could not create Makefile due to some reason, probably lack of | |
necessary libraries and/or headers. Check the mkmf.log file for more | |
details. You may need configuration options. | |
Provided configuration options: | |
--with-opt-dir |
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
var myCoolFunc, getContext; | |
getContext = function () { | |
return "specific context"; | |
}; | |
// generic function | |
myCoolFunc = function (param1, context) { | |
console.log(param1 + ' ' + context) | |
}; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Page Title</title> | |
</head> | |
<body> | |
<div id="fb-root"></div> | |
<script>(function(d, s, id) { | |
var js, fjs = d.getElementsByTagName(s)[0]; |
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
#!upstart | |
description "Node app that will drop its own privileges, does not fork or daemonize itself, Upstart 1.3" | |
author "Ankur Oberoi" | |
# this script will be reading files from the local filesystem and | |
# and needs a network interface other than the loopback | |
start on (local-filesystems and net-device-up IFACE!=lo) | |
# stops when the machine is shut down | |
stop on shutdown |
OlderNewer