Skip to content

Instantly share code, notes, and snippets.

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

Jason Brower encompass

🏠
Working from home
  • Many21
  • Oulu, Finland
View GitHub Profile
@JoeyBurzynski
JoeyBurzynski / 55-bytes-of-css.md
Last active July 20, 2024 05:29
58 bytes of css to look great nearly everywhere

58 bytes of CSS to look great nearly everywhere

When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:

main {
  max-width: 38rem;
  padding: 2rem;
  margin: auto;
}
@nus
nus / web2py.gitignore
Created March 7, 2012 02:15
.gitignore for web2py
# for web2py
cache
databases
errors
sessions
# inherit https://github.com/github/gitignore/blob/master/Python.gitignore
*.py[co]
@rochacbruno
rochacbruno / sublime-settings.js
Created October 3, 2011 01:05
Sublime text pyflakes ignore for web2py identifiers
/*
SublimeLinter default settings
*/
{
/*
Sets the mode in which SublimeLinter runs:
true - Linting occurs in the background as you type (the default).
false - Linting only occurs when you initiate it.
"load-save" - Linting occurs only when a file is loaded and saved.