Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
| current_dir=`pwd`; | |
| cd ~/Library/Application\ Support/Espresso/Sugars/; | |
| echo "Installing Sugars:"; | |
| if [ ! -d ./CSS3.sugar ]; then | |
| echo "Installing CSS3.sugar..."; | |
| git clone -q git://github.com/minimalweb/CSS3.sugar.git ./CSS3.sugar; | |
| else | |
| echo "CSS3.sugar already installed, attempting update..."; |
| // ==UserScript== | |
| // @name Use Markdown, sometimes, in your HTML. | |
| // @author Paul Irish <http://paulirish.com/> | |
| // @link http://git.io/data-markdown | |
| // @match * | |
| // ==/UserScript== | |
| // If you're not using this as a userscript just delete from this line up. It's cool, homey. |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
| # basic .muttrc for use with Gmail | |
| # Change the following six lines to match your Gmail account details | |
| set imap_user = "[email protected]" | |
| set imap_pass = "" | |
| set smtp_url = "smtp://[email protected]:587/" | |
| set smtp_pass = "" | |
| set from = "[email protected]" | |
| set realname = "Firstname Lastname" | |
| # |
Yeoman will continue to offer a single catch-all command for our workflow (including building with Grunt and package management with Bower)
We will make it very explicit about the tools we use and ensure it's easy for developers to find documentation/support for them (e.g from homepage)
We will also do our best to implement Yeoman as an even thinner wrapper around these tools, so moving to using Grunt alone is next to no effort
Germans have a hard time with by and until
-> Use by for actions that will be or must be performed at some moment before a time.
-> Use until for actions that continue and stop at a time.
Examples:
| /* Modern Font Stacks */ | |
| /* System */ | |
| font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif; | |
| /* System (Bootstrap 5.2.0) */ | |
| font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; | |
| /* Times New Roman-based serif */ | |
| font-family: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif; |