This file contains 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
# Numerous always-ignore extensions | |
*.diff | |
*.err | |
*.orig | |
*.log | |
*.rej | |
*.swo | |
*.swp | |
*.vi | |
*~ |
This file contains 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
/** | |
* jQuery.deparam - The oposite of jQuery param. Creates an object of query string parameters. | |
* | |
* Credits for the idea and Regex: | |
* http://stevenbenner.com/2010/03/javascript-regex-trick-parse-a-query-string-into-an-object/ | |
*/ | |
(function($){ | |
$.deparam = $.deparam || function(uri){ | |
if(uri === undefined){ | |
uri = window.location.search; |
This file contains 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
dl.job-info{ | |
width:100%; | |
overflow:hidden; | |
} | |
dl.job-info dt { | |
font-weight:600; | |
float:left; | |
width:49%; |
This file contains 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_DIR=$(dirname $(dirname $(readlink -f $0))) | |
DEPLOY_DIR=/srv/www/$(basename $GIT_DIR)/public_html | |
git "--work-tree=${DEPLOY_DIR}" "--git-dir=${GIT_DIR}" checkout -f |
This file contains 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
GIT_CURL_VERBOSE=2 git ls-remote --heads https://github.domain.com/user-name/repo-name.git | |
* Couldn't find host github.domain.com in the .netrc file; using defaults | |
* Hostname was NOT found in DNS cache | |
* Trying XXX.XX.XX.XX... | |
* Connected to github.domain.com (XXX.XX.XX.XX) port 443 (#0) | |
* TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 | |
* Server certificate: *.domain.com | |
* Server certificate: DigiCert SHA2 Secure Server CA | |
* Server certificate: DigiCert Global Root CA | |
> GET /user-name/repo-name.git/info/refs?service=git-upload-pack HTTP/1.1 |
This file contains 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
angular | |
.module('app', ['ui.router']) | |
.config(function ($urlRouterProvider) { | |
$urlRouterProvider.deferIntercept(); | |
}); | |
.run(function ($rootScope, $urlRouter, WaitForThis) { | |
var deRegister = $rootScope.$on('$locationChangeSuccess', function (e) { | |
e.preventDefault(); |
This file contains 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
angular | |
.module('app', []) | |
.directive('myThings', function() { | |
return { | |
require: 'ngModel', | |
controllerAs: 'vm', | |
bindToController: true, | |
scope: { | |
options: '=myThings' | |
}, |
This file contains 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() { | |
var Boss3, tr; | |
importScripts('../base-robot.js'); | |
Boss3 = (function(superclass) { | |
var idleCount, prototype = extend$((import$(Boss3, superclass).displayName = 'Boss3', Boss3), superclass).prototype, constructor = Boss3; | |
idleCount = 0; | |
prototype.doSearch = function() { | |
this.turn_turret_right(45); | |
this.turn_right(15); | |
this.move_forwards(25); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
class[ \t]*=[ \t]*"[^"]*classname[^"]*" |