duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
* { | |
font-size: 12pt; | |
font-family: monospace; | |
font-weight: normal; | |
font-style: normal; | |
text-decoration: none; | |
color: black; | |
cursor: default; | |
} |
/* | |
For Fast Fourier Transformations an important step is the rearrangement of the | |
data in a bit reversed order. | |
The implemention below shows how to do this inplace or as copy in O(n) runtime. | |
*/ | |
/* | |
The MIT License (MIT) |
/** | |
* Cooperative tasks scheduler. | |
* | |
* by Dmitry Soshnikov <[email protected]> | |
* MIT Style License | |
* | |
* An educational implementation to show the work of a processes scheduler. | |
* In practice you may find using a library like Task.js, or similar. | |
* | |
* Test, Node 4 or transformed with Babel: |
This describes how I setup Atom for an ideal Clojure development workflow. This fixes indentation on newlines, handles parentheses, etc. The keybinding settings for enter (in keymap.cson) are important to get proper newlines with indentation at the right level. There are other helpers in init.coffee and keymap.cson that are useful for cutting, copying, pasting, deleting, and indenting Lisp expressions.
The Atom documentation is excellent. It's highly worth reading the flight manual.
I was unable to install Emscripten following steps in official tutorial here: http://kripken.github.io/emscripten-site/docs/getting_started/downloads.html#sdk-download-and-install
I was getting these errors trying to run emcc
:
`WARNING:root:LLVM version appears incorrect (seeing "7.0", expected "3.7")`
`WARNING:root:could not check fastcomp: [Errno 2] No such file or directory`
`CRITICAL:root:Cannot find /usr/bin/llvm-link, check the paths in ~/.emscripten`
#!/usr/bin/env ruby | |
require 'open3' | |
require 'json' | |
ffmpeg_bin = '/usr/local/bin/ffmpeg' | |
target_il = -24.0 | |
target_lra = +11.0 | |
target_tp = -2.0 | |
samplerate = '48k' |
var canvas = document.createElement('canvas'); | |
var gl; | |
var debugInfo; | |
var vendor; | |
var renderer; | |
try { | |
gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl'); | |
} catch (e) { | |
} |
// Standard: | |
function fn(x) { | |
return function(y){ | |
return function(z){ | |
return x * y / z; | |
}; | |
}; | |
} |