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
[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 |
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 | |
# 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 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
public void compareAndSerialize(Object o) { | |
if (o instanceof Comparable) { | |
useComparable((Comparable) o); | |
} | |
if (o instanceof Serializable) { | |
useSerializable((Serializable) o); | |
} | |
} |
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
# | |
# 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 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
<?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 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
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 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/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 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 | |
# version 20170828 | |
# Backup script using rsync to create multiple snapshots of the source. | |
# A little known trick of rsync is to be able to run a three-way comparison, | |
# so to only transfer the diffs but store a full copy in a new directory, | |
# while comparing and hard linking to the previous snapshot. | |
# This allows to make many frequent snapshots at minimal network and storage | |
# impact. | |
# | |
# This version doesn't do any form of rotation: you'll eventually run out of space. |
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
function parse_git_dirty { | |
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit, working tree clean" ]] && echo "*" | |
} | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/" | |
} | |
export PS1="$(if (( EUID == 0 )); then echo '\[\033[01;31m\]\h'; else echo '\[\033[5;32m\]\u@\h \[\033[00m\]\w\[\033[01;32m\]$(parse_git_branch)\[\033[00m\]$ '; fi)" |
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
SHORT_VERSION="4.3" | |
FULL_VERSION="4.3.0.Final" | |
NEXT_FULL_VERSION="4.3.1-SNAPSHOT" | |
## | |
# When editing the rsync commands, always test then with a dry run (-n) ! | |
## | |
# Upload documentation to jboss.org: |
NewerOlder