$ ssh-keygen -t rsa -b 4096
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
version: 2 | |
jobs: | |
build: | |
working_directory: ~/user/repo | |
environment: | |
BASH_ENV: ~/.bashrc | |
docker: |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 13, | |
// font family with optional fallbacks | |
fontFamily: '"Fira Code", "Menlo", "DejaVu Sans Mono", "Lucida Console", monospace', | |
// terminal cursor background color (hex) | |
cursorColor: '#F81CE5', |
{} |
{ | |
"exclude": [ | |
".git/**", | |
"node_modules/**", | |
"bower_components/**" | |
], | |
"always-semicolon": true, | |
"color-case": "lower", | |
"block-indent": " ", | |
"color-shorthand": true, |
<?php | |
public function getRecords($id) | |
{ | |
$cache_name = 'records_' . $id; | |
$cache = new FileStore(new Filesystem($cache_name . '.txt'), __DIR__ . '/cache'); | |
// If cache exists | |
if ($cache->get($cache_name)) { | |
return $cache->get($cache_name); | |
} else { |
{ | |
"config": { | |
// Whether to add a semicolon after the last value/mixin. | |
"always-semicolon": true, | |
// Set indent for code inside blocks, including media queries and nested rules. | |
"block-indent": " ", | |
// Unify case of hexadecimal colors. |