- Nerd Font in your terminal emulator https://www.nerdfonts.com/
| #step by step worked for me using sh or bash. Use doas or su. | |
| doas pkg install -y git rust protobuf cmake ca_root_nss pkgconf alsa-lib alsa-utils libyuv | |
| git clone https://github.com/zed-industries/zed.git | |
| cd zed | |
| export RUSTFLAGS="-C link-dead-code" | |
| cargo build --release | |
| cargo build --release --frozen -p zed |
| Instructions for installing rEFInd to dual boot a computer with FreeBSD and windows (and possibly other OSes as well). | |
| Note! I use $esp-dev for all commands. Substitude this for the device with your ESP (for example ada0p1) | |
| Download rEFInd from here: http://sourceforge.net/projects/refind/files/0.11.4/refind-bin-0.11.4.zip/download | |
| This gives you a zip-file with everything you need for rEFInd. | |
| Find out which partition is the ESP. This is easiest done by running `gpart list` and look for partitions with `type: efi`. | |
| In a multi-disk setup there might be more than one of those. | |
| I have always installed rEFInd to the one with the Windows bootloader. |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>App title</title> | |
| <% if ActionController::Base.asset_host %> | |
| <link rel="dns-prefetch" href="//<%= ActionController::Base.asset_host %>" /> | |
| <% end %> |
| source "https://rubygems.org" | |
| gem 'sprockets' | |
| gem 'sprockets-sass' | |
| gem 'sass' | |
| gem 'compass' | |
| gem 'bootstrap-sass' | |
| gem 'handlebars_assets' | |
| gem 'coffee-script' |
| --colour | |
| -I app |
| gem 'dragonfly', '~>0.9.4' | |
| group :production do | |
| gem 'fog' # for Amazon S3 | |
| end |
Most of the time simple output statements using warn, raise, or a logger will help you find your issue. But sometimes you need the big guns, and that means ruby-debug.
The ruby-debug package has had some rocky times during the transition from Ruby 1.8.7 to 1.9.2 and beyond. But now, finally, the debugger is reliable and usable.
| $eleven40-grid-width: 4.85% !default; // The width of a column | |
| $eleven40-grid-margin: 3.8% !default; // The amount of margin between columns | |
| @mixin eleven40-container { | |
| padding-left: 20px; | |
| padding-right: 20px; | |
| } | |
| @mixin eleven40-row { | |
| margin: 0 auto; |