RGB Colour | Human Colour | Sample |
---|---|---|
rgb(0,0,0) |
black | |
rgb(64,64,64) |
dark grey | |
rgb(128,128,128) |
grey | |
rgb(220,220,220) |
light grey | |
rgb(255,255,255) |
white | |
rgb(128,0,0) |
dark red |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RUN apt-get update && apt-get install -y --no-install-recommends \ | |
chromium \ | |
&& rm -rf /var/lib/apt/lists/* | |
ENV CHROME_BIN=/usr/bin/chromium |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem install mysql2 -v '0.3.21' -- --with-mysql-config=/usr/local/Cellar/mysql\@5.6/5.6.42/bin/mysql_config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Open automator | |
-- * New Service | |
-- * Service Recieves: no input | |
-- * Paste the following | |
-- * Alter audio sources to match your machine | |
-- * Save | |
-- Open Keyboard | |
-- * Shortcuts | |
-- * Services | |
-- * Bind to shortcut |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/9.3/bin/pg_config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget --adjust-extension --span-hosts --convert-links --backup-converted --page-requisites http://example.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew update elixir | |
mix deps.get |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
## | |
# script to amend a commit which should be been created with the previous script | |
## | |
commit_message = `git log --format=%B -1`.strip | |
branch_name = `git rev-parse --abbrev-ref HEAD`.strip | |
matches = branch_name.match (/\w\-(\d+)\Z/i) |
NewerOlder