I hereby claim:
- I am richsage on github.
- I am richsage (https://keybase.io/richsage) on keybase.
- I have a public key whose fingerprint is 3039 674C 2D35 46F5 9FF1 FE1D 792D C359 F082 396B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Here are some tips to help print your music successfully: (It is very important that you follow these steps from start to finish before attempting to print again)
<?php | |
// Acme\DemoBundle\Twig\GravatarExtension | |
namespace Acme\DemoBundle\Twig; | |
class GravatarExtension extends \Twig_Extension | |
{ | |
private $secure_request = false; |
platform :ios do | |
lane :qa do | |
increment_build_number | |
# Produce the build here | |
commit_version_bump | |
add_git_tag | |
push_to_git_remote |
[core] | |
excludesfile = /Users/<your user>/.gitignore_global |
protected function new_redis($server, $prefix = '', $password = '') { | |
$redis = new Redis(); | |
// Check if it isn't a Unix socket to set default port. | |
$port = ($server[0] === '/') ? null : 6379; | |
// NOTE: This is the change we added | |
// You can supply eg tls://my.redis.host:6380/ for it to work | |
// Check for any protocol requirements eg TLS that have been specified. | |
if (strpos($server, ':')) { | |
$serverconf = parse_url($server); |