Skip to content

Instantly share code, notes, and snippets.

View IntCastillo's full-sized avatar
🏠
Working from home

CCastillo IntCastillo

🏠
Working from home
  • Fututel.com
  • Huila, Colombia
View GitHub Profile
@IntCastillo
IntCastillo / .htaccess
Created March 11, 2019 20:45 — forked from davemackintosh/.htaccess
Working .htaccess for Single Page Apps
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.html [QA,L]
</ifModule>
@IntCastillo
IntCastillo / index.css
Created October 26, 2018 00:48 — forked from codigoconjuan/index.css
Index para curso React proyecto de Eventos
html {
height: 100%;
}
body {
margin: 0;
padding: 0;
font-family: 'Lato', sans-serif;
background-color: #e5e5e5;
min-height: 100%;
}
@IntCastillo
IntCastillo / web-servers.md
Created February 28, 2018 23:58 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000