Skip to content

Instantly share code, notes, and snippets.

View groundwater's full-sized avatar
:electron:
Performing Alchemy

Groundwater groundwater

:electron:
Performing Alchemy
View GitHub Profile
@groundwater
groundwater / bibtex.png
Created December 27, 2017 18:14 — forked from max-mapper/bibtex.png
How to make a scientific looking PDF from markdown (with bibliography)
bibtex.png

build

Clone and build Node for analysis:

$ git clone https://github.com/joyent/node.git
$ cd node
$ export GYP_DEFINES="v8_enable_disassembler=1 v8_object_print=1"
$ export CXXFLAGS="-fno-omit-frame-pointer"
$ ./configure
@groundwater
groundwater / blah.scala
Created August 6, 2012 18:18 — forked from mostlygeek/blah.scala
Some Scala
abstract class Prize {
def * (int x) = {
val list = List()
for (i=0; i<x; i++){
list.append( this )
}
list
}
}
case class CoinPrize(multipler: Int) extends Prize