This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright (c) 2014 dillmo | |
* Licensed under the MIT License(http://opensource.org/licenses/MIT) | |
* | |
* A program I made for chemistry class. It calculates how many particles there | |
* are in a gas in moles, based on its volume in liters. | |
*/ | |
#include <iostream> | |
using namespace std; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright(c) 2014 dillmo | |
* Licensed under the MIT License (http://opensource.org/licenses/MIT) | |
* | |
* A program I made for algebra class. Running this program outputs several | |
* functions with their respective parent functions. To take advantage of this | |
* program for studying, it is recommended you run it, then graph the output | |
* for whichever type of function you are studying. | |
*/ | |
#include <iostream> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.rbc | |
*.sassc | |
.sass-cache | |
capybara-*.html | |
.rspec | |
.rvmrc | |
/.bundle | |
/vendor/bundle | |
/log/* | |
/tmp/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group :development do | |
gem 'rspec-rails' | |
gem 'capybara' | |
gem 'guard-rspec' | |
gem 'guard-livereload' | |
gem 'guard-bundler' | |
gem 'guard-migrate' | |
gem 'compass-rails' | |
gem 'better_errors' | |
gem 'binding_of_caller' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git ls-files | grep '\.swp$' | xargs git rm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin vendor-prefix($property, $value) | |
-webkit-#{$property}: $value | |
-moz-#{$property}: $value | |
-ms-#{$property}: #{$value} | |
-o-#{$property}: #{$value} | |
#{$property}: #{$value} | |
@mixin value-vendor-prefix($property, $value) | |
#{$property}: -webkit-#{$value} | |
#{$property}: -moz-#{$value} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, font, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, | |
dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, | |
table, caption, tbody, tfoot, thead, tr, th, td { | |
margin: 0; | |
padding: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!! | |
%html | |
%head | |
%meta{content: "text/html; charset=UTF-8", "http-equiv" => "Content-Type"} | |
%title Your Website | |
%body |
NewerOlder