Skip to content

Instantly share code, notes, and snippets.

anonymous
anonymous / mustreads.opml
Created November 26, 2014 16:47
my Must Read RSS feeds
<?xml version="1.0" encoding="UTF-8"?>
<!-- OPML generated by NetNewsWire -->
<opml version="1.1">
<head>
<title>mySubscriptions</title>
</head>
<body>
<outline text="Advanced Analytic Techniques" description="This blog is part of class project to explore various analytic techniques used by modern intelligence analysts." title="Advanced Analytic Techniques" type="rss" version="RSS" htmlUrl="http://advat.blogspot.com/" xmlUrl="http://advat.blogspot.com/feeds/posts/default"/>
<outline text="Asian Efficiency - Time Management and Productivity" description="" title="Asian Efficiency - Time Management and Productivity" type="rss" version="RSS" htmlUrl="http://www.asianefficiency.com" xmlUrl="http://feeds.feedburner.com/asianefficiency"/>
<outline text="Bret Victor's website" description="" title="Bret Victor's website" type="rss" version="RSS" htmlUrl="http://worrydream.com/" xmlUrl="http://worrydream.com/feed.xml"/>
@christiangenco
christiangenco / hn_impersonator.rb
Created October 7, 2014 18:46
Impersonate your favorite HN commenter
require 'http'
require 'json'
require 'peach'
require 'gabbler'
require 'pry'
USERNAME = "patio11"
unless File.exists?("comments.txt")
def get_json(url)
@pascalpoitras
pascalpoitras / config.md
Last active April 28, 2024 23:12
My WeeChat configuration

WeeChat Screenshot

Mouse


enable


@theBrokeQuant
theBrokeQuant / Main Program
Last active July 11, 2018 16:12
Live Environment
import httplib
import time
import datetime
import re
import random
import live
import buyLow
import buySMA
import buyLMA
@jakeonrails
jakeonrails / Ruby Notepad Bookmarklet
Created January 29, 2013 18:08
This bookmarklet gives you a code editor in your browser with a single click.
data:text/html, <style type="text/css">#e{position:absolute;top:0;right:0;bottom:0;left:0;}</style><div id="e"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("e");e.setTheme("ace/theme/monokai");e.getSession().setMode("ace/mode/ruby");</script>
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 3, 2024 19:09
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
; Stumbling towards Y
;
; The applicative-order Y combinator is a function that allows one
; to create a recursive function without using define.
; This may seem strange. Usually a recursive function has to call
; itself, and thus relies on itself having been defined.
;
; Regardless, here we will stumble towards the implementation of the
; Y combinator (in Scheme).