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
function commit | |
git status | |
git add --all | |
read commit_msg | |
git commit -m $commit_msg | |
git push | |
end |
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
mvn clean deploy -P release |
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
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>appassembler-maven-plugin</artifactId> | |
<version>2.0.0</version> | |
<configuration> | |
<assembleDirectory>${project.build.directory}/${project.artifactId}</assembleDirectory> | |
<programs> | |
<program> | |
<mainClass>nl.northpool.eex.pusher.Pusher</mainClass> | |
<id>pusher</id> |
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
function tar-folder | |
tar -cvzf "$argv.tar" $argv | |
end |
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
function search-through-files | |
grep -rnw './' -e $argv | |
end |
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
wget http://apache.hippo.nl/zookeeper/zookeeper-3.4.12/zookeeper-3.4.12.tar.gz | |
tar -xf zookeeper-3.4.12.tar.gz | |
cat > zookeeper-3.4.12/conf/zoo.cfg <<- EOM | |
# The number of milliseconds of each tick | |
tickTime=2000 | |
# The number of ticks that the initial | |
# synchronization phase can take | |
initLimit=10 | |
# The number of ticks that can pass between | |
# sending a request and getting an acknowledgement |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<theme> | |
<file_table> | |
<normal> | |
<background color="002b36"/> | |
<inactive_background color="002b36"/> | |
</normal> | |
<selected> | |
<background color="073642"/> | |
<inactive_background color="073642"/> |
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
https://www.quantconnect.com/processDataDownload/10136992-7bb5b7c6d565be667711a94cefce7929 | |
https://www.quantconnect.com/processDataDownload/10136993-e666c662fdd5d0292d3d05b527771476 | |
https://www.quantconnect.com/processDataDownload/10136994-9d7bdff40f2df49a3f89226267e1fbd3 | |
https://www.quantconnect.com/processDataDownload/10136995-44d6598175980b16aaf5986d6243dad5 | |
https://www.quantconnect.com/processDataDownload/10136996-319a8da4c9dc16d1b158a7a0d990a206 | |
https://www.quantconnect.com/processDataDownload/10136997-37e0ca3b0941ffe69bc6c47ee802efcf | |
https://www.quantconnect.com/processDataDownload/10136998-249a3fc20c7fa5e1ab08055684049a49 | |
https://www.quantconnect.com/processDataDownload/10136999-d9322dbd5190181c53b92a0e82d45513 | |
https://www.quantconnect.com/processDataDownload/10137000-637b29fe317dede8b36e4574a58761cd | |
https://www.quantconnect.com/processDataDownload/10137001-abdff1f914d56dc823724497eb5b98ac |
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
[Unit] | |
Description = NAME | |
Wants=network.target | |
After=network.target | |
[Service] | |
ExecStart=BINARY | |
WorkingDirectory=/root | |
Restart=on-failure |
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
/** | |
* DESIGN PATTERN | |
*/ | |
public class JobManager { | |
final BlockingQueue<? extends JobExecution> persistLastRun = new LinkedBlockingQueue<>(); | |
private JobManager() { | |
final Thread persistLastRunThread = new Thread(() -> { | |
while(true) { |