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/zsh -e | |
while :; do | |
for d in jet jet-fixed; do | |
echo | |
echo | |
echo | |
echo | |
echo | |
date |
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
java.lang.AssertionError: com.intellij.openapi.vfs.InvalidVirtualFileAccessException: Accessing invalid virtual file: temp:///src/AnonymousInitializers.jet | |
at org.jetbrains.jet.completion.JetCompletionTestBase.doTest(JetCompletionTestBase.java:83) | |
at org.jetbrains.jet.completion.JetBasicCompletionTest.testBasicAny(JetBasicCompletionTest.java:29) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at com.intellij.testFramework.UsefulTestCase.access$001(UsefulTestCase.java:68) | |
at com.intellij.testFramework.UsefulTestCase$2.run(UsefulTestCase.java:237) | |
at com.intellij.util.ui.UIUtil.invokeAndWaitIfNeeded(UIUtil.java:1710) |
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
#include <iostream> | |
#include <tr1/functional> | |
using namespace std; | |
using namespace std::tr1; | |
using namespace std::tr1::placeholders; | |
void foo(int x) { | |
cout << "foo " << x << endl; |
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
[stepancheg@negev:~/jb/kotlin]% git pull --rebase | |
usage: git merge-base [-a|--all] <commit> <commit>... | |
-a, --all outputs all common ancestors | |
usage: git merge-base [-a|--all] <commit> <commit>... | |
-a, --all outputs all common ancestors | |
usage: git merge-base [-a|--all] <commit> <commit>... |
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
[stepancheg@negev:~/jb/kotlin]% git format-patch ... | |
*** glibc detected *** git: double free or corruption (!prev): 0x00000000007627e0 *** | |
======= Backtrace: ========= | |
/lib/libc.so.6(+0x775b6)[0x7fe0b6c865b6] | |
/lib/libc.so.6(cfree+0x73)[0x7fe0b6c8ce83] | |
/lib/libc.so.6(fclose+0x14d)[0x7fe0b6c76abd] | |
git[0x47b51c] | |
git[0x486fc9] | |
git[0x4870db] | |
git[0x433465] |
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/sh -ex | |
ivy_version="2.3.0-rc1" | |
classes_file="lib/ivy/ivy-$ivy_version.jar" | |
sources_file="lib/ivy/ivy-$ivy_version-sources.jar" | |
if [ ! -e $classes_file ]; then | |
mkdir -p lib/ivy | |
curl --silent --output $classes_file.tmp \ |
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
= Устав общества взаимного страхования от штрафов на митинге 12 | |
июня | |
(предварительная версия) | |
== Неформальное введение | |
Если специально не провоцировать, вероятность получить штраф мала. | |
Однако штраф очень велик. Участники общества берут на себя обязательство | |
помочь расплатиться со штрафами другим таким же участникам общества. |
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
define subtuple; | |
[n1] | |
overload subtuple(t, static n1, ..ns) { | |
return Tuple(..unpack(subtuple(t, static n1)), ..unpack(subtuple(t, ..ns))); | |
} | |
[n] | |
overload subtuple(t, static n) = [staticIndex(t, static 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
#include <stdio.h> | |
int bar(long p) { | |
return 4; | |
} | |
int foo() { | |
return bar(0); | |
} |
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
#include <stdio.h> | |
struct zzz { | |
static int bar(long p) { | |
return 4; | |
} | |
static int foo() { | |
return bar(0); | |
} |