Skip to content

Instantly share code, notes, and snippets.

View taddeimania's full-sized avatar
☄️
Hi!

Joel Taddei taddeimania

☄️
Hi!
View GitHub Profile
@taddeimania
taddeimania / butts.bs
Last active November 24, 2015 03:48
heh
10 PRINT "fart"
20 GOTO 10
# Find day of the week in python 3
from enum import Enum
class DayOfWeek(Enum):
Sunday = 0
Monday = 1
Tuesday = 2
Wednesday = 3
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>
.>-------.+++++++++++++++..+++++++++.>>.
<<<-------.>---------.++.---------.+++.>>.
<<<+++++.>+++..---.+++++++.>>.
<<<--.>>+++++++++.<++++++.>>+.>+++++.
<<+++++++++.<-----.>---------.+++..+.++++.
<<----.>>--.++++++.
<<<++++[>>>---<<<-]>>>.++++++++.+++.
<<<++++[>>>>+++<<<<-]>>>>+.
<---------.<-----.--.
@taddeimania
taddeimania / hello_html.bf
Created April 2, 2016 02:07
Hello World in BF That outputs a webpage.
+++[>++++++[>+++>++++>+++++>++++++>++++++>+++++++<<<<<<-]<-]>>
++++++.>>>----.>++++++++.<+++++.-.<<<++.
<<++++++[>++<-]>+.----.---------<
>>--.>>>----.---.----.+++.<<<++.
<<++++++[>++<-]>+.----..---------<
>>--.>>>>.<+++++.>.<+++.-------.<<<++.
++++.>>>>--.<----.++++++++.+++++.<<--.<<<
+++++[>+++++++++<-]>..>>>>---.<<<------.<++.
>>>>>++.<--.>.<+++.-------.<<<++.
<[-]<++++++[>++<-]>+.----.>--.<[<+++++>-]<++.
<script type="application/javascript">
$( document ).ready(function() {
var callAgain = function(stuff){
// Do work here
// Why not make an ajax call and replace an element on the page?
// Delay another call in 10 seconds
setTimeout(function(){
callAgain(stuff);
echo "Joel likes coding"
echo "I just edited"
exit
@taddeimania
taddeimania / pickle_rick.py
Created August 14, 2017 01:39
I'M PYTHON PICKLE RICK!!!!
import pickle
class Rick:
def __str__(self):
return "i'm pickle rick!!!!"
pickle_rick = pickle.dumps(Rick())
regular_rick = pickle.loads(pickle_rick)
print(regular_rick)
# >>> i'm pickle rick!!!!