brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Unfortunately, the Cisco AnyConnect client for Mac conflicts with Pow. And by "conflicts", I mean it causes a grey-screen-of-death kernel panic anytime you connect to the VPN and Pow is installed.
As an alternative, there is OpenConnect, a command-line client for Cisco's AnyConnect SSL VPN.
Here's how to get it set up on Mac OS X:
OpenConnect can be installed via homebrew:
brew update
brew install openconnect
{ | |
"name": "christianjul/barebone-flow3", | |
"description" : "Barebone FLOW3 project", | |
"license": "LGPL-3.0+", | |
"authors": [ | |
{ | |
"name": "Christian Jul Jensen", | |
"email": "[email protected]" | |
} | |
], |
<?php | |
namespace My\Package\Validation; | |
use TYPO3\Flow\Persistence\RepositoryInterface; | |
class ExistsValidator extends \TYPO3\Flow\Validation\Validator\AbstractValidator { | |
/** | |
* @var array | |
*/ |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
var gulp = require('gulp'), | |
sass = require('gulp-ruby-sass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
jshint = require('gulp-jshint'), | |
uglify = require('gulp-uglify'), | |
imagemin = require('gulp-imagemin'), | |
rename = require('gulp-rename'), | |
clean = require('gulp-clean'), | |
concat = require('gulp-concat'), |
final Agent agent = new Agent.Iterative( | |
new Array<Agent>( | |
new Understands( | |
this.github, | |
new QnSince( | |
49092213, | |
new QnReferredTo( | |
this.github.users().self().login(), | |
new QnParametrized( | |
new Question.FirstOf( |
#!/bin/bash | |
### NOTE | |
# Ideally, you should create an image from small partition (e.g., 4 GB) instead of the whole SD card (e.g., 32 GB). | |
# For example, an image for Raspbian image should be created by the following procdure: | |
# (1) Install the official Raspbian image (3.5 GB for Jessie) on an SD card | |
# (2) Manually expand the partition to a modest size to accommodate your base software (e.g., 4 GB) | |
# (3) Perform apt-get update and upgrade, install software and configuration that you want. | |
# (4) Create an image from that (4 GB) partition | |
# |
<?php | |
/* SamlLogoutHandler.php, in the main project or a dedicated bundle */ | |
namespace AcmeBundle\Lib; | |
use Symfony\Component\Security\Http\Logout\LogoutSuccessHandlerInterface; | |
use Exception; | |
use LightSaml\Binding\AbstractBinding; | |
use LightSaml\Binding\BindingFactory; | |
use LightSaml\Context\Profile\MessageContext; |
{ | |
"stage" : "$context.stage", | |
#foreach( $key in $input.path('$').keySet() ) | |
"$key": "$input.path('$').get($key)"#if($foreach.hasNext), | |
#end | |
#end | |
} |