http://osxdaily.com/2014/01/27/verify-disk-command-line-mac-os-x/ http://apple.stackexchange.com/questions/130304/how-can-i-repair-a-disk-that-disk-utility-says-it-cant-repair http://forums.macrumors.com/threads/file-system-check-exit-code-8-disk-wont-repair.1819660/ http://www.howtogeek.com/236978/how-to-repair-disk-and-file-system-problems-on-your-mac/
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
Configuration | |
connections -> Connections | |
channels -> Channels | |
Connections | |
add -> Configure Connection | |
List Connections | |
Has Data2? | |
false -> loading2 |
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
export ZPLG_HOME="${:-$HOME/.}zplugin" | |
if [[ ! -d $ZPLG_HOME ]]; then | |
echo "Installing zplugin" | |
curl -sL https://raw.githubusercontent.com/zdharma/zplugin/master/doc/install.sh | bash | |
fi | |
source "${ZPLG_HOME}/bin/zplugin.zsh" | |
autoload -Uz _zplugin | |
(( ${+_comps} )) && _comps[zplugin]=_zplugin |
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
// Example uses styled-components, but styled-system works with most other css-in-js libraries as well | |
import * as React from "react"; | |
import { | |
themeGet, | |
space, | |
width, | |
fontSize, | |
color, | |
fontFamily, | |
display, |
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
const webpack = require('webpack'); | |
const nodeExternals = require('webpack-node-externals'); | |
const { | |
createConfig, | |
// Feature blocks | |
typescript, | |
// Production blocks | |
uglify, |
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
<?php | |
namespace App\Entities; | |
use Doctrine\ORM\Mapping as ORM; | |
use Illuminate\Contracts\Auth\Authenticatable; | |
use Illuminate\Contracts\Support\Jsonable; | |
use LaravelDoctrine\Passport\Contracts; | |
use LaravelDoctrine\Passport\Traits; | |
use LaravelDoctrine\ORM\Auth\Authenticatable as AuthenticatableTrait; |
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
#!/bin/sh | |
# Welcome to the thoughtbot laptop script! | |
# Be prepared to turn your laptop (or desktop, no haters here) | |
# into an awesome development machine. | |
fancy_echo() { | |
local fmt="$1"; shift | |
# shellcheck disable=SC2059 |
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
#!/bin/sh | |
# Welcome to the thoughtbot laptop script! | |
# Be prepared to turn your laptop (or desktop, no haters here) | |
# into an awesome development machine. | |
fancy_echo() { | |
local fmt="$1"; shift | |
# shellcheck disable=SC2059 |
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
(function() { | |
'use strict'; | |
angular | |
.module('blocks.recover-session') | |
.config(Config) | |
.factory('RecoverSessionInterceptor', RecoverSessionInterceptor); | |
function Config($httpProvider) { | |
$httpProvider.interceptors.push('RecoverSessionInterceptor'); |
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
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew doctor | |
brew install caskroom/cask/brew-cask | |
brew tap homebrew/php | |
brew tap caskroom/versions | |
brew install php56 php56-mcrypt php56-mysqlnd_ms zsh | |
brew cask install sequel-pro-nightly iterm2 atom vagrant | |
curl -L http://install.ohmyz.sh/ | sh | |
sed -i "s/robbyrussell/rkj-repos/g" ~/.zshrc | |
zsh |
NewerOlder