twitter.com/settings/muted_keywords
Rafa Kalimann
Prova do líder
BBB21
paredão
BBB
BBB 22
BBB 21
Big brother
$fn=60; | |
module hollow_cylinder(h, r1, r2, wall) { | |
difference() { | |
cylinder(h, r1, r2); | |
translate([0,0,-wall/2]) | |
cylinder(h+wall, r1-wall, r2-wall); | |
} | |
} |
twitter.com/settings/muted_keywords
Rafa Kalimann
Prova do líder
BBB21
paredão
BBB
BBB 22
BBB 21
Big brother
twitter.com/settings/muted_keywords
Prova do líder
BBB21
Tiago Leifert
paredão
BBB
BBB 21
Big brother
import glob, os | |
os.chdir("E:\Anime\Seriados\Sailor Moon") | |
offset = 46 | |
for file in glob.glob("*.mkv"): | |
if (file.find("Sailor_Moon_R")!=-1): | |
pieces = file.split("_") | |
old_number = int(pieces[6]) | |
new_number = old_number + offset |
# cat /usr/share/dict/words | grep -i as | tr a-z A-Z |sed -e 's/AS/45/g' | |
AB45 | |
AB45E | |
AB45ED | |
AB45EDLY | |
AB45EDNESS | |
AB45EMENT | |
AB45ER | |
AB45GI |
Once upon a midnight dreary, while I pondered, weak and weary, | |
Over many a quaint and curious volume of forgotten lore— | |
While I nodded, nearly napping, suddenly there came a tapping, | |
As of some one gently rapping—rapping at my chamber door. | |
"'Tis some visitor," I muttered, "tapping at my chamber door— | |
Only this and nothing more." | |
Ah, distinctly I remember, it was in the bleak December, | |
And each separate dying ember wrought its ghost upon the floor. | |
Eagerly I wished the morrow;—vainly I had sought to borrow | |
From my books surcease of sorrow—sorrow for the lost Lenore— |
// https://twitter.com/fermatslibrary/status/958700402647674880 | |
function f(word) { | |
var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71,73, 79, 83, 89, 97, 101]; | |
var product = 1; | |
for (var i=0; i<word.length; i++) { | |
product *= primes[word[i].charCodeAt(0)-97]; | |
} | |
return product; | |
} |
#!/usr/bin/env python | |
import sys | |
import os | |
# Biopython libraries or nothing | |
try: | |
from Bio import SeqIO | |
except ImportError: | |
sys.exit("Biopython library not found. See http://biopython.org for installation instructions.") |
use_synth :pulse | |
notes = [:C,:D,:E,:C,:F,:E] | |
live_loop :x do | |
with_fx :wobble do | |
for note in notes | |
play note | |
sleep 0.5 | |
end |
#!/usr/bin/python | |
""" | |
Flatten a list | |
""" | |
def flatten(notflat): | |
flat = [] | |
while notflat: | |
element = notflat.pop() | |
if isinstance(element, list): |