Skip to content

Instantly share code, notes, and snippets.

@JacobFierro
JacobFierro / gist:5329526
Last active December 15, 2015 21:59
some research notes for use in a blog post. trying to understand how 'undefined' is implemented in the v8 engine
//objects-inl.h
// undefined is a Primitive, which inherits from Object
bool Object::IsUndefined() {
return IsOddball() && Oddball::cast(this)->kind() == Oddball::kUndefined;
}
// what's an Oddball and where is kUndefined defined and what is it set to?
/*
objects.h:8213

Keybase proof

I hereby claim:

  • I am JacobFierro on github.
  • I am jacobfierro (https://keybase.io/jacobfierro) on keybase.
  • I have a public key whose fingerprint is D82F 48C7 0F98 8854 E7F8 EA9A 6416 096D BD58 5E2F

To claim this, I am signing this object:

@JacobFierro
JacobFierro / pip.log
Created March 26, 2014 22:06
Failure to install mysql-python while in a virtualenv
------------------------------------------------------------
/Users/jacobfierro/.virtualenvs/django_polls/bin/pip run on Wed Mar 26 17:53:56 2014
Downloading/unpacking MySQL-python
Getting page https://pypi.python.org/simple/MySQL-python/
URLs to search for versions for MySQL-python:
* https://pypi.python.org/simple/MySQL-python/
Analyzing links from page https://pypi.python.org/simple/MySQL-python/
Skipping link https://pypi.python.org/packages/2.4/M/MySQL-python/MySQL_python-1.2.2-py2.4-win32.egg#md5=6620279666cb40e26d89079b55e61a3f (from https://pypi.python.org/simple/MySQL-python/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.5/M/MySQL-python/MySQL_python-1.2.2-py2.5-win32.egg#md5=596ec38e498e80ce73759f777b29c588 (from https://pypi.python.org/simple/MySQL-python/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.5/M/MySQL-python/MySQL_python-1.2.3b1-py2.5-linux-i686.egg#md5=43ace300f3eda0fc418869b04a5139eb (from https://py
@JacobFierro
JacobFierro / dabblet.css
Created May 9, 2014 17:04
Sample touch animations
/**
* Sample touch animations
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
@JacobFierro
JacobFierro / dabblet.css
Created May 9, 2014 17:37
Sample touch animations
/**
* Sample touch animations
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
@JacobFierro
JacobFierro / dabblet.css
Created May 9, 2014 17:37
Sample touch animations
/**
* Sample touch animations
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
@JacobFierro
JacobFierro / dabblet.css
Created May 9, 2014 17:56
Sample touch animations
/**
* Sample touch animations
*/
html {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
@JacobFierro
JacobFierro / dabblet.css
Last active August 29, 2015 14:12
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #eee;
min-height: 100%;
body {
font-family: sans;
}

THE PRIME DIRECTIVE SAYS:

Regardless of what we discover, we understand and truly believe that everyone did the best job they could, given what they knew at the time, their skills and abilities, the resources available, and the situation at hand.

At the end of a project everyone knows so much more. Naturally we will discover decisions and actions we wish we could do over. This is wisdom to be celebrated, not judgement used to embarrass.

@JacobFierro
JacobFierro / docker.md
Last active January 5, 2024 10:42
Docker Cheatsheet

Docker Cheatsheet

Docker info:

docker info

Containers

List Images: