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
| class[ \t]*=[ \t]*"[^"]*classname[^"]*" |
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 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() { | |
| 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); |
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
| angular | |
| .module('app', []) | |
| .directive('myThings', function() { | |
| return { | |
| require: 'ngModel', | |
| controllerAs: 'vm', | |
| bindToController: true, | |
| scope: { | |
| options: '=myThings' | |
| }, |
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
| 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 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_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 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
| dl.job-info{ | |
| width:100%; | |
| overflow:hidden; | |
| } | |
| dl.job-info dt { | |
| font-weight:600; | |
| float:left; | |
| width:49%; |
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
| /** | |
| * 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 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
| # Numerous always-ignore extensions | |
| *.diff | |
| *.err | |
| *.orig | |
| *.log | |
| *.rej | |
| *.swo | |
| *.swp | |
| *.vi | |
| *~ |