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
""" | |
Deploys local maven repository to a remote one. | |
Requires python 3.x and Maven 3.2.x and higher (lower versions of Maven might work in certain setups, | |
but have issues with SNI). | |
""" | |
import os | |
import os.path as p | |
import subprocess as subp |
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 A { | |
int i; | |
public A(int i) { | |
this.i = i; | |
} | |
} | |
A a = new A(4); |
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
processing = no | |
work = () -> | |
processing = yes | |
doSomeWork (e) -> | |
processing = no | |
if not processing | |
work() | |
else |