Skip to content

Instantly share code, notes, and snippets.

View ironheart122's full-sized avatar
🎯
I may be slow to respond.

ironheart122 ironheart122

🎯
I may be slow to respond.
View GitHub Profile
@ironheart122
ironheart122 / n52.csv
Last active November 24, 2017 05:26
My Personal Chronological DC New 52 Reading Order List (Credits to ComicBookReadingOrders<dot>com)
Ancient History
Red Lanterns (2011) #0 Atrocitus: The Second Prophecy
Dial H for Hero (2012) #0
Demon Knights (2011) #0
Demon Knights (2011) #1
Demon Knights (2011) #2
Demon Knights (2011) #3
Demon Knights (2011) #4
Demon Knights (2011) #5
Demon Knights (2011) #6
@ironheart122
ironheart122 / n52_batman_chronological_list.md
Last active November 22, 2017 05:23
N52 Batman (Source: The Real Batman Chronology Project)

Justice League: Origins (5 years ago)

Batman and Robin #1

Swamp Thing #1

Batgirl #1-6 Batman and Robin #2-8 Catwoman #1-3

@ironheart122
ironheart122 / comicbook.rb
Created November 16, 2017 06:47
MildLeanDuiker created by ironbyte122 - https://repl.it/@ironbyte122/MildLeanDuiker
Empty file
# CBI Scraper (Offline)
# It scraps comic book issues from the website - comicsbackissues.com - and print them to a single text file
require 'oga'
require 'pry'
FILENAME = "cbi_batman.html"
class ComicBook
attr_accessor :year, :title, :issue_no, :writer, :penciller, :storyline
@ironheart122
ironheart122 / SOLID.markdown
Created May 7, 2017 15:29 — forked from emaraschio/SOLID.markdown
SOLID Principles with ruby examples

#SOLID Principles with ruby examples

##SRP - Single responsibility principle A class should have only a single responsibility.

Every class should have a single responsibility, and that responsibility should be entirely encapsulated. All its services should be narrowly aligned with that responsibility, this embrace the high cohesion.

##OCP - Open/closed principle Software entities should be open for extension, but closed for modification.