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
#!/bin/bash | |
# Temporarily checks out the "master" branch, fetches updates from upstream, | |
# pushes a copy to "origin" to keep it in synch, and then returns to the original | |
# branch. | |
# | |
# Released under the WTFPL license version 2 http://sam.zoy.org/wtfpl/ | |
# | |
# Copyright (c) 2014 Sanne Grinovero | |
requireBranchName() { |
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 java.util.concurrent.CompletableFuture; | |
public class OtherApp { | |
private static final boolean wait = false; | |
public static void main(String[] args) { | |
VeryParallelExecutor executor = new VeryParallelExecutor( 4 ); | |
OneOffDelegatingExecutor taskControl = new OneOffDelegatingExecutor( executor ); |
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" standalone="no"?> | |
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
<proxies> | |
</proxies> | |
<mirrors> | |
<mirror> |
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
# | |
# MariaDB tuning meant for fast integration test execution: | |
# data is meant to be lost. Never use for actual database needs! | |
# | |
[mysqld] | |
# Disabling symbolic-links is recommended to prevent assorted security risks | |
symbolic-links = 0 |
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
public void compareAndSerialize(Object o) { | |
if (o instanceof Comparable) { | |
useComparable((Comparable) o); | |
} | |
if (o instanceof Serializable) { | |
useSerializable((Serializable) 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
#!/bin/sh | |
# Store as /etc/NetworkManager/dispatcher.d/10-script.sh | |
# make the script executable & owned by root. (protect it too!) | |
# Will trigger on up/down events of the selected network | |
HOME_CONNECTION_ID="TanaUB6" | |
LOG=/home/sanne/.m2/track-wifi-status-change | |
# echo "################" >> $LOG | |
# env >> $LOG | |
# echo "env HOME_CONNECTION_ID:" >> $LOG |
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
[INFO] Scanning for projects... | |
Downloading from central: https://repo.maven.apache.org/maven2/io/quarkus/platform/quarkus-maven-plugin/3.10.2/quarkus-maven-plugin-3.10.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/quarkus/platform/quarkus-maven-plugin/3.10.2/quarkus-maven-plugin-3.10.2.pom (10 kB at 970 B/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/quarkus/platform/quarkus-bom/3.10.2/quarkus-bom-3.10.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/quarkus/platform/quarkus-bom/3.10.2/quarkus-bom-3.10.2.pom (449 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/quarkus/quarkus-bootstrap-core/3.10.2/quarkus-bootstrap-core-3.10.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/quarkus/quarkus-bootstrap-core/3.10.2/quarkus-bootstrap-core-3.10.2.pom (4.0 kB at 55 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/quarkus/quarkus-bootstrap-parent/3.10.2/quarkus-bootstrap |
OlderNewer