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 zsh | |
| set -e | |
| function exportDefaults { | |
| local outdir="$HOME/defaults" | |
| local outdirApple="$outdir/apple" | |
| local outdirUser="$outdir/user" | |
| local outdirGlobal="$outdir/global" | |
| local filesdone=0 |
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/bash | |
| # git-branch-status | |
| # * originally by http://github.com/jehiah | |
| # * "s'all good!" message by http://github.com/kd35a | |
| # * ANSI colors by http://github.com/knovoselic | |
| # * column formatting and filters by http://github.com/bill-auger | |
| # this script prints out pretty git branch sync status reports | |
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
| { | |
| "require": { | |
| "symfony/expression-language": "2.4.*", | |
| "symfony/doctrine-bridge": "2.4.*" | |
| } | |
| } |
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 | |
| /* | |
| * This file is part of the Symfony package. | |
| * | |
| * (c) Fabien Potencier <[email protected]> | |
| * | |
| * For the full copyright and license information, please view the LICENSE | |
| * file that was distributed with this source code. | |
| */ |
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 | |
| class Guess { | |
| private $value; | |
| public function __construct($t) { | |
| $this->value = $t; | |
| } | |
| public function getConfidence() { | |
| return $this->value; |