Skip to content

Instantly share code, notes, and snippets.

@n8
n8 / 1.html
Last active June 27, 2018 18:02
<div id='myAlert' style="background: #000; font-size: 2rem; color: #fff; padding: 2rem; display:none; line-height: 2.5rem">
<a href="#" style="float: right; color: #fff; text-decoration: none" onclick="hideAlert()">&times;</a>
We'll be offline at 9:00PM Central June 22 for database maintance. It should take 60 minutes at most.
</div>
<script>
<body>
<div id='myAlert' style="background: #000; font-size: 2rem; color: #fff; padding: 2rem; display:none; line-height: 2.5rem">
<a href="#" style="float: right; color: #fff; text-decoration: none" onclick="hideAlert()">&times;</a>
We'll be offline at 9:00PM Central June 22 for database maintance. It should take 60 minutes at most.
</div>
@n8
n8 / 1.rb
Last active October 30, 2018 14:26
ruby_variable = "cool"
string = "Nate is #{ruby_variable}"
@n8
n8 / 2.rb
Last active October 30, 2018 14:26
string = "Nate is #{ruby_variable}. And super smart."
@n8
n8 / 3.rb
Last active October 30, 2018 14:27
query = "category = '#{params[:category]}'"
projects = Project.where(query).limit(10)
@n8
n8 / 4.rb
Last active October 30, 2018 14:27
') AND private=true'
@n8
n8 / 5.rb
Last active October 30, 2018 14:27
'); DROP TABLE USERS;'
@n8
n8 / 6.rb
Created October 30, 2018 14:26
projects = Project.where("category = ?", params[:category]).limit(10)
@n8
n8 / 7.rb
Created October 30, 2018 14:27
projects = Project.where
@n8
n8 / 8.rb
Created October 30, 2018 14:28
projects = current_user.projects.where