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;
}| /** | |
| * | |
| * In this example we create view with inplace and bulk editing. | |
| * Tools and plugins: | |
| * jQuery | |
| * xEditable jquery plugin | |
| * twitter bootstrap | |
| * | |
| */ |
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):
This document outlines the steps I take to setup my environment on windows using WSL. This requires being on the windows 10 Creative update or greater with an Ubuntu 16 installed as WSL.
| #!/usr/bin/env bash | |
| declare -A params=$6 # Create an associative array | |
| paramsTXT=""; | |
| if [ -n "$6" ]; then | |
| for element in "${!params[@]}" | |
| do | |
| paramsTXT="${paramsTXT} | |
| fastcgi_param ${element} ${params[$element]};" | |
| done |
| pbox: SSH username: vagrant | |
| pbox: SSH auth method: private key | |
| pbox: | |
| pbox: Vagrant insecure key detected. Vagrant will automatically replace | |
| pbox: this with a newly generated keypair for better security. | |
| pbox: | |
| pbox: Inserting generated public key within guest... | |
| pbox: Removing insecure key from the guest if it's present... | |
| pbox: Key inserted! Disconnecting and reconnecting using new SSH key... | |
| ==> pbox: Machine booted and ready! |