Skip to content

Instantly share code, notes, and snippets.

View jakebolewski's full-sized avatar
🌨️
⛷️

Jake Bolewski jakebolewski

🌨️
⛷️
View GitHub Profile
~/Documents/no-backup/julia/base$ lldb -- ../usr/bin/julia-debug --build x sysimg.jl
Current executable set to '../usr/bin/julia-debug' (x86_64).
(lldb) break set -n jl_throw
Breakpoint 1: no locations (pending).
WARNING: Unable to resolve breakpoint to any actual locations.
(lldb) r
Process 10078 launched: '../usr/bin/julia-debug' (x86_64)
1 location added to breakpoint 1
exports.jl
base.jl
@andreasnoack
andreasnoack / gist:9f3f63d7f1d00a07359b
Created October 21, 2014 14:54
A new RNG for Julia
module XORShift
import Base.rand
type XORShiftStar1024 <: AbstractRNG
p::Int
state::Vector{Uint64}
end
XORShiftStar() = XORShiftStar1024(1, rand(Uint64, 16))