Skip to content

Instantly share code, notes, and snippets.

View InertialObserver's full-sized avatar

InertialObserver

View GitHub Profile
@InertialObserver
InertialObserver / jupyterwithCorey.md
Created July 5, 2019 20:11
Jupyter Notebook Tutorial: Windows Setup & Code from Corey Schafer's Video

Lorem ipsum

class Fixnum
define_method(:pingpong) do
1.upto(self).each do |number|
ping = (number % 3 == 0)
pong = (number % 5 == 0)
if ping && pong
puts "PingPong"