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
require 'opal' | |
require 'jquery' | |
require 'opal-jquery' | |
def go(selector) | |
`$('#cool');` | |
end | |
p go |
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
<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 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 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 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 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 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 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
mv mytest.dylib mytest.bundle | |
kings ⋯ projects druby playing irb -r ./mytest.bundle | |
/Users/kings/development/projects/druby/playing/mytest.bundle: [BUG] Segmentation fault at 0x00000000000418 | |
ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-darwin14] | |
-- Crash Report log information -------------------------------------------- | |
See Crash Report log file under the one of following: | |
* ~/Library/Logs/CrashReporter | |
* /Library/Logs/CrashReporter | |
* ~/Library/Logs/DiagnosticReports |
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
module Boards.Messages exposing (..) | |
type Msg | |
= NoOp |
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
type alias CurrentBoardModel = | |
{board : CurrentBoard | |
,newListState : NewListState | |
,newListTitle : String | |
, newCardTitle : String | |
, newCardState : Dict String NewCardStateHolder | |
, currentCard : Maybe Card | |
, problem : Maybe String | |
, editingListId : String | |
, editListTitle : String |
OlderNewer