Skip to content

Instantly share code, notes, and snippets.

View SamEureka's full-sized avatar
🏚️
Working from home - CA

Sam Dennon SamEureka

🏚️
Working from home - CA
View GitHub Profile
@SamEureka
SamEureka / gist:cc1b596c92c03df58b06f0d1ce2a0a3c
Created September 28, 2020 19:28 — forked from dsci/gist:1347672
Delete commits from repository.
# First, check out the commit you wish to go back to (get sha-1 from git log)
git reset --hard 9d3c3a0caa7f7b35ef15adb96fc80fcbb59ac72a
# Then do a forced update.
git push origin +9d3c3a0caa7f7b35ef15adb96fc80fcbb59ac72a^:develop
# Push specific commit
git push origin 9d3c3a0caa7f7b35ef15adb96fc80fcbb59ac72a:develop -f
@SamEureka
SamEureka / index.html
Last active September 8, 2015 18:09 — forked from anonymous/index.html
Practice Refactoring to jQuery Practice Refactoring to jQuery // source https://jsbin.com/mawase
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Practice Refactoring to jQuery">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<meta charset="utf-8">
<title>Practice Refactoring to jQuery</title>
<style id="jsbin-css">
#refrigerator {
background-color: #FFFFFF;
@SamEureka
SamEureka / index.html
Last active August 29, 2015 14:27 — forked from anonymous/index.html
Floats and Clearfixes Assignment // source http://jsbin.com/lilawu
<!DOCTYPE html>
<html>
<head>
<title>Floats and Clearfixes Assignment</title>
<style id="jsbin-css">
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@SamEureka
SamEureka / index.html
Last active August 29, 2015 14:27 — forked from anonymous/index.html
Media Query Exercise // source http://jsbin.com/tuqenu
<!DOCTYPE html>
<html>
<head>
<title>Media Query Exercise</title>
<style id="jsbin-css">
@media (min-width: 25rem) {
.media-container {
color: red;
}