- http://flickr.com
- http://cnn.com
- http://letsfreckle.com # You need to log in
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 Foo(val foo: Int) { | |
def lol = 42 | |
} |
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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by fish configure 1.23.1, which was | |
generated by GNU Autoconf 2.61. Invocation command line was | |
$ ./configure --prefix=/Users/wolverian/Applications/Homebrew/Cellar/fish/1.23.1 --without-xsel | |
## --------- ## | |
## Platform. ## |
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; | |
use warnings; | |
use Test::Most; | |
use Plack::Test; | |
use HTTP::Request::Common; | |
use Cwd; | |
my $app_path = cwd() . '/bin/dicole-eventserver.psgi'; | |
my $app = do($app_path) or die "$!: $app_path\n"; |
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
#!/usr/bin/env perl | |
use 5.010; | |
use strict; | |
use warnings; | |
package App::watch; | |
use Moose; | |
use File::ChangeNotify; |
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
package wolv.parserlibproblem | |
import util.parsing.ast.AbstractSyntax | |
import util.parsing.combinator.syntactical.TokenParsers | |
import util.parsing.combinator.lexical.Lexical | |
import util.parsing.combinator.token.Tokens | |
trait SimpleTokens extends Tokens { | |
case class Foo extends Token | |
case class Bar extends Token |
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
<script src="http://yandex.st/highlightjs/6.1/highlight.min.js"></script> | |
<script type="text/javascript"> | |
hljs.initHighlightingOnLoad(); | |
</script> | |
<link rel="stylesheet" href="http://yandex.st/highlightjs/6.1/styles/github.min.css"> |
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
Buildfile: /Users/wolverian/src/kotlin/build.xml | |
clean: | |
[delete] Deleting directory /Users/wolverian/src/kotlin/dist | |
init: | |
[mkdir] Created dir: /Users/wolverian/src/kotlin/dist/kotlinc | |
[mkdir] Created dir: /Users/wolverian/src/kotlin/dist/kotlinc/lib | |
[mkdir] Created dir: /Users/wolverian/src/kotlin/dist/kotlinc/lib/alt |
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
~ brew install -vd git-flow | |
==> Cloning https://github.com/nvie/gitflow.git | |
git clone --depth 1 https://github.com/nvie/gitflow.git /Users/wolverian/Library/Caches/Homebrew/git-flow--git | |
Cloning into '/Users/wolverian/Library/Caches/Homebrew/git-flow--git'... | |
remote: Counting objects: 324, done. | |
remote: Compressing objects: 100% (244/244), done. | |
remote: Total 324 (delta 101), reused 247 (delta 42) | |
Receiving objects: 100% (324/324), 229.24 KiB | 193 KiB/s, done. | |
Resolving deltas: 100% (101/101), done. | |
==> Checking out tag 0.4.1 |
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 "thread" | |
class Future | |
attr_reader :exception, :cancelled | |
def initialize(&block) | |
@thread = Thread.new(&block) | |
@thread.abort_on_exception = false | |
@exception = nil | |
@cancelled = false |
OlderNewer