Skip to content

Instantly share code, notes, and snippets.

View ZASMan's full-sized avatar
🎯
Coding in Ruby as usual.

Zane ZASMan

🎯
Coding in Ruby as usual.
  • DC Metro Area
View GitHub Profile
@ZASMan
ZASMan / program2.rb
Created October 13, 2015 02:16
program2.rb
if (5+5==10)
puts "this is true"
else
puts "this is false"
end
name="Zane"
def greeting
puts "Zane"
name = gets.chomp
puts "Hello" + " " + name
end
greeting
@ZASMan
ZASMan / scripts.js
Last active October 12, 2015 17:43
scripts.js
//Nt needed for document ready-maps
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 38.8895563, lng: -77.0352546 },
zoom: 8
});
}
@ZASMan
ZASMan / styles.css
Created October 5, 2015 12:25
styles.css
/*Rules that Apply to Multiple Sections*/
body {
background-color: #000000;
padding-top: 51px;
position: relative;
}
.main-text {
clear: both;
@ZASMan
ZASMan / navbar
Created September 23, 2015 23:55
Navbar
/* Hacks to change existing Navbar properties */
.navbar {
background-color: #34495e
}
.container {
background-color: #34495e
}