This file contains hidden or 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
php -S localhost:8000 | |
php -S 0.0.0.0:8000 | |
python2 -m SimpleHTTPServer 80 | |
python3 -m http.server 80 | |
ruby -run -e httpd . -p5000 |
This file contains hidden or 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 | |
capybara-*.html | |
.rspec | |
/log | |
/tmp | |
/db/*.sqlite3 | |
/db/*.sqlite3-journal | |
/public/system | |
/coverage/ | |
/spec/tmp |
This file contains hidden or 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
<head> | |
<title>CSS and HTML workshop: Activity 10</title> | |
<style> | |
/* | |
* The <body> element is the root element for the | |
* visible part of a website. | |
* | |
*/ | |
body { |
This file contains hidden or 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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
This file contains hidden or 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
/** | |
* CSS Secrets. Chapter 1. | |
*/ | |
button { | |
padding: .3em .8em; | |
border: 1px solid rgba(0,0,0,0.1); | |
background: #58a linear-gradient(hsla(0, 0%, 100%, .2), transparent); | |
border-radius: .2em; | |
box-shadow: 0 .05em .25em gray; | |
color: white; |
This file contains hidden or 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
/** | |
* Transform antialising bug? | |
*/ | |
.transform2d { | |
-webkit-transform: translate(0,-50%); | |
transform: translate(0,-50%); | |
} | |
.transform3d { |
This file contains hidden or 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
/** | |
* Fake animated pseudo | |
*/ | |
div { | |
width: 200px; | |
padding: 10px; | |
position: relative; | |
background: red; | |
background-clip: content-box; | |
animation: bounce infinite alternate 0.5s; |
This file contains hidden or 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
/* | |
* Flipping a cube. Take 2. | |
*/ | |
/* Set-up */ | |
body { | |
color: rgb(6, 106, 117); | |
text-transform: uppercase; | |
font-family: sans-serif; | |
font-size: 100%; |
This file contains hidden or 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
/* | |
* Flipping a cube | |
*/ | |
/* Set-up */ | |
body { | |
color: rgb(6, 106, 117); | |
text-transform: uppercase; | |
font-family: sans-serif; | |
font-size: 100%; |