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
| total 0 | |
| drwxr-xr-x 3 kings staff 102 4 Nov 23:43 osx | |
| phobos/generated/osx: | |
| total 0 | |
| drwxr-xr-x 3 kings staff 102 4 Nov 23:43 release | |
| phobos/generated/osx/release: | |
| total 0 | |
| drwxr-xr-x 4 kings staff 136 4 Nov 23:43 64 |
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
| import std.stdio; | |
| import std.conv; | |
| import std.exception; | |
| // rdmd -unittest --main pirate_treasure.d | |
| class FairTreasureSplitNotPossible : Exception { | |
| this (string msg) { | |
| super(msg); | |
| } |
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
| /*global module, require */ | |
| module.exports = function( grunt ) { | |
| 'use strict'; | |
| // Livereload and connect variables | |
| var LIVERELOAD_PORT = 35729; | |
| var lrSnippet = require('connect-livereload')({ | |
| port: LIVERELOAD_PORT | |
| }); | |
| var mountFolder = function( connect, dir ) { |
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
| $$$$$$$ | |
| | ~¿~ | | |
| ( - ) | |
| / \ | |
| $$$$$$$ | |
| | ~¿~ | | |
| ( o ) | |
| / \ |
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
| 'use strict'; | |
| // Coillapse the nav bar on click | |
| $(document).on('click', '.navbar-collapse.in', function (e) { | |
| if ($(e.target).is('a') && $(e.target).attr('class') != 'dropdown-toggle') { | |
| $(this).collapse('hide'); | |
| } | |
| }); | |
| var tzatzikiApp = angular.module('tzatzikiApp', ['ngResource', 'ngRoute', 'angularFileUpload', 'ui.router','permission']); |
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
| <settings> | |
| <servers> | |
| <server> | |
| <id>sonatype-nexus-releases</id> | |
| <username>username</username> | |
| <password>password</password> | |
| </server> | |
| <server> | |
| <id>sonatype-nexus-snapshots</id> | |
| <username>username</username> |
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 'opal' | |
| require 'jquery' | |
| require 'opal-jquery' | |
| def go(selector) | |
| `$('#cool');` | |
| end | |
| p go |
NewerOlder