Keybase proof
I hereby claim:
- I am meeech on github.
- I am meeech (https://keybase.io/meeech) on keybase.
- I have a public key ASCr8_vHLXQvMMxRT331FXMb2EQ3dslpzY1LU3-b-3fr7wo
To claim this, I am signing this object:
class Octave < Formula | |
desc "a high-level interpreted language for numerical computations." | |
homepage "https://www.gnu.org/software/octave/index.html" | |
url "http://ftpmirror.gnu.org/octave/octave-3.8.2.tar.bz2" | |
mirror "https://ftp.gnu.org/gnu/octave/octave-3.8.2.tar.bz2" | |
sha256 "83bbd701aab04e7e57d0d5b8373dd54719bebb64ce0a850e69bf3d7454f33bae" | |
head "http://www.octave.org/hg/octave", :branch => "default", :using => :hg | |
revision 2 | |
bottle do |
I hereby claim:
To claim this, I am signing this object:
0x5cC082E697DE3AaB223e1eA58dA479D2e4C2B701 |
var mapping; | |
var oids = { foo: { x: 'bar' } }; | |
_.each(oids, function (row, index) { | |
// driver.log.fatal(row.entPhysicalClass, this.snmp.get(row.entPhysicalClass)); | |
mapping[index] = { | |
name: row.x | |
}; | |
}, this); |
local kernel = { | |
category = "generator", | |
name = "stars", | |
isTimeDependent = false | |
} | |
kernel.vertexData = { | |
{ | |
name = 'resolutionX', | |
default = display.pixelWidth, |
local function makeGenerator() | |
local kernel = { | |
category = "generator", | |
name = "stars", | |
isTimeDependent = false | |
} | |
kernel.vertexData = { | |
{ |
ls -LR Scripts/**/**/*.js | xargs -L1 js-beautify -r |
#Add to your .zshrc right by ZSH_THEME | |
####### | |
# Setup a random theme to load from a list I define | |
MYZSH_RANDOM_THEMES=(\ | |
're5et' \ | |
'sorin' \ | |
'steeef' \ | |
'dstufft' \ | |
'random' \ |
/(?:\n|\r\n|\r)/g |
//Exercise 24 (23 in gotour local) | |
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
func Approx(x float64, z float64) float64 { |