Skip to content

Instantly share code, notes, and snippets.

@DeeJayhX
DeeJayhX / this.css
Last active May 6, 2017 21:34
Can be condensed to one class?
.menu1{
li {
text-align: left;
border-bottom: 1px solid #555;
}
li a {
display: block;
color: #000;
padding: 8px 16px;
@DeeJayhX
DeeJayhX / odds.rb
Last active May 6, 2017 01:52
There's gotta be a better way to write this logic...
# Pretend the addLog's are puts with the message for the sake of sanity
instant_crash_percentage = 5
remaining = 100 - instant_crash_percentage
odds = SecureRandom.random_number(1..100)
puts odds
case odds
when 1..instant_crash_percentage