z
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# with reference to rendered output but the OP | |
# https://www.reddit.com/r/mathpics/comments/3yzu77/heres_an_animated_version_of_that_circular/ | |
# and a video guide | |
# https://www.youtube.com/watch?v=qhbuKbxJsk8 | |
require "rmagick" | |
RESOLUTION = 800 | |
def localToGlobalCoords(n) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
bl = `brew list`.split ;1 | |
bdl = bl.reduce({}) {|h, pkg| h.merge({pkg => `brew deps #{pkg}`.split }) } ;1 | |
bi = bl - bdl.values.flatten.sort | |
File.open('apps_brew.txt', 'w') {|f| f.write bi.join("\n") } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File.open(".vimrc","a") do |f| | |
f.write File.readlines('.gitmodules') | |
.map(&:strip) | |
# remove extras | |
.reject do |l| | |
l.scan('[').any? || # submodule defs | |
l.scan(/^path/).any? || # submodules paths | |
l.empty? # blank lines | |
end | |
# remap URLs to user/repo names |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!window.jQuery) { document.write('<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"><\/script>') }; | |
var recent_papers = []; | |
var commits = {}; | |
var base_commit = ''; | |
while (recent_papers.length < 10) { | |
commits_url = "https://api.github.com/repos/papers-we-love/papers-we-love/commits?sha="+base_commit; | |
$.ajax({ | |
url: commits_url, | |
success: function(data) { | |
$(data).each( function(idx) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
r = ('a'..'z') | |
r.map{|l| r.map{|w| r.map{|q| q+w+l} } }.flatten | |
r.map{|l| r.map{|w| r.map{|q| r.map{|t| q+w+l+t } }} }.flatten.size | |
# add exclusions | |
# add recursion |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var h, ba = ba || {}, | |
ca = this; | |
function da(a) { | |
return void 0 !== a | |
} | |
function ha(a) { | |
a = a.split("."); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Processing motion blur | |
// 'time' runs from 0 to 1 | |
// ignore everything above the ///////// | |
// by Dave @ beesandbombs | |
int[][] result; | |
float time; | |
void setup() { | |
setup_(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
lines = IO.readlines($0) << (DATA.readlines << ARGV[0]) | |
File.open($0, 'w') { |file| file.puts lines } | |
__END__ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<canvas id = "c" > </canvas> | |
<p> | |
Tear the cloth with your mouse.<br><br> | |
Right click and drag to cut the cloth.<br><br> | |
Reduce physics_accuracy if it's laggy, increase it for a better effect. | |
</p> |