Skip to content

Instantly share code, notes, and snippets.

@ojas
ojas / review.md
Last active April 6, 2018 14:24
stanley_meyer_1992_interview_amazing_technology.md

0:00-1:30 look at all those buttons! he stole a tectronix o-scope from the local community college and made it his dashboard? when i was a kid, our next door neighbor had a buggy. American flag, "Jesus Christ is Lord" holy cow, OH plates too! I remember those plates.

2:15 look at the "computer system" look at all those signal capture or processing channels. one channel per slot more or less. that's what it looks like.

@ojas
ojas / Chromebook Setup.md
Last active October 14, 2017 16:05
Chromebook Dev Setup

!very rough notes - a work in progress!

Enable Developer Mode:

  • Hold down esc + refresh + power to restart
  • Press ctrl + d to switch to developer mode (warning: this will basically wipe your machine, so save anything you need to save)
  • fix yourself some coffee. it'll take a while and a few reboots
  • login

Install Chromebrew:

@ojas
ojas / clfu.md
Created July 19, 2017 15:12
Command Line.md
pbpaste | perl -e 'use URI::Escape; my $url = <STDIN>; chomp $url; my $url = "https://www.pinterest.com/pin/find/?url=" . uri_escape($url); print($url);' | xargs open
@ojas
ojas / chapter23.md
Created November 20, 2016 22:44
The Demon-Haunted World - Maxwell and the Nerds - Carl Sagan

Maxwell and The Nerds

Why should we subsidize intellectual curiosity?

– Ronald Reagan, campaign speech, 1980

There is nothing which can better deserve our patronage than the promotion of science and literature. Knowledge is in every country the surest basis of public happiness.

– George Washington, address to Congress, 8 January 1790

@ojas
ojas / requests_curl_logger.py
Last active November 10, 2016 17:37
Python Helpers
"""
Log your requests activity in curl format and with pretty colors.
import requests
from requests_curl_logger import curl_log
r = requests.get('http://example.com', hooks=dict(response=curl_log))
"""
from json import dumps as json_dumps
@ojas
ojas / email.html
Last active October 24, 2016 21:32
Hubspot Email Rendering Issue in iOS Mail
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>
<title></title>
<meta property="og:title" content="">
<meta name="twitter:title" content="">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css" id="hs-inline-css">
/*<![CDATA[*/
/* everything in this node will be inlined */
@ojas
ojas / MacTips.md
Last active October 5, 2016 00:16
Mac Tips

How to find what program's running on a given port

See what's running on port 80

sudo lsof -i :80

Restart Audio

sudo kill -9 `ps ax|grep 'coreaudio[a-z]' |awk '{print $1}'`
@ojas
ojas / refresh_css.txt
Created September 19, 2016 16:43
Hacks
// run this in your console…
(function(){
var nc = (new Date()).valueOf();
jQuery('style').each(function() {
var c = this.innerHTML;
if (c.indexOf('@import')!==-1)
this.innerHTML = c.replace('.css?', '.css?' + nc );
});
})();
@ojas
ojas / dnb_envs.py
Last active December 28, 2015 06:29
lulz
def enum(**enums):
return type('Enum', (), enums)
WORDS = enum(PARTIAL = 1, SANDBOX = 2, SCRAMBLED = 4, LEGACY = 8, PRODUCTION = 16, TRUNCATED = 32)
envs = {
'http://api.dnbdirectapps.com/dev/' : WORDS.SANDBOX + WORDS.PARTIAL + WORDS.SCRAMBLED + WORDS.TRUNCATED,
'http://dnbdirect-sandbox.dnb.com/' : WORDS.SANDBOX + WORDS.SCRAMBLED + WORDS.LEGACY,
'http://dnbdirect-api.dnb.com/' : WORDS.PRODUCTION,
}
[
["Days", "Orders", "Items ", "AOV", "Average Item/Order"],
["14-Dec-13", 45, 90, 45, 2],
["15-Dec-13", 15, 40, 23, 2.5]
]