Skip to content

Instantly share code, notes, and snippets.

View junr03's full-sized avatar

José Ulises Niño Rivera junr03

View GitHub Profile
@junr03
junr03 / Assigment3Test0
Last active August 29, 2015 14:15
Compilers Assignment 3 Test 0
Thanks to Peter H. Frohlich
@junr03
junr03 / gist:659dfe4641ef7f58fcbe
Created September 3, 2014 16:40
Installing python modules with pip
sudo python(version) -m pip install (package)
@junr03
junr03 / affixNav.html
Created August 25, 2014 02:12
This is the affix attributes needed for a good affixed navigation bar
<body data-spy="scroll" data-target="#myNav">
<nav id="myNav" class="row">
<ul class=" nav nav-pills nav-justified" data-spy="affix" data-offset-top="1000">
</ul>
</nav>
</body>
.affix {
need to include position
top: 0px
@junr03
junr03 / CSS for Radio Buttons
Created July 9, 2014 16:31
This CSS fixes inline radio buttons for rails forms
input[type="radio"], label{
float: left;
padding-bottom: 10px;
}
input[type="radio"] {
width: 20px;
clear: left;
}