Skip to content

Instantly share code, notes, and snippets.

View mathieucarbou's full-sized avatar
🏠
Working from home

Mathieu Carbou mathieucarbou

🏠
Working from home
View GitHub Profile
class PortTest {
public static void main(String[] args) {
Thread.startDaemon {
println "bind on 8888 but does not accept"
new Socket().bind(new InetSocketAddress(8888))
Thread.currentThread().join()
}
Thread.startDaemon {
@mathieucarbou
mathieucarbou / queuing.js
Created October 19, 2015 18:23
Dequeue a queue
var array = ['A', 'B', 'C'],
results = [],
errors = [],
worker = function(e, done) {
console.log('process', e);
if(Math.round(Math.random() * 31) % 2) {
done(null, 'result-' + e);
} else {
done(new Error(e));
}
private static <T> T callInOtherThread(Callable<T> task) throws Throwable {
ExecutorService service = Executors.newSingleThreadExecutor();
try {
Future<T> future = service.submit(task);
boolean interrupted = false;
try {
while (true) {
try {
return future.get();
} catch (InterruptedException e) {
@mathieucarbou
mathieucarbou / Futures.java
Created March 7, 2016 17:19
Composing multiple futures into one future
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.function.Function;
/**
* @author Mathieu Carbou
8:02 $ cat a.sh
#!/bin/bash
exit 11
✔ ~/workspace/mathieu/management-apps [TAB-6693|✚ 2…2]
18:02 $ cat b.sh
#!/bin/bash
trap 'kill -TERM $PID' TERM INT
bash -c ./a.sh &
PID=$!
#!/bin/bash
[ ! -f build.gradle.orig ] && patch -b << 'EOF'
Index: build.gradle
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- build.gradle (revision 369b3cc846c4e3bc5566a2150e9990693d2276a8)
+++ build.gradle (revision )
import org.ehcache.CacheManager
import org.ehcache.clustered.client.config.builders.ClusteredResourcePoolBuilder
import org.ehcache.clustered.client.config.builders.ClusteringServiceConfigurationBuilder
import org.ehcache.config.CacheConfiguration
import org.ehcache.config.builders.CacheConfigurationBuilder
import org.ehcache.config.builders.CacheManagerBuilder
import org.ehcache.config.units.MemoryUnit
import org.ehcache.management.config.EhcacheStatisticsProviderConfiguration
import org.ehcache.management.config.StatisticsProviderConfiguration
import org.ehcache.management.registry.DefaultManagementRegistryConfiguration
git config --global --add remote.upstream.fetch '+refs/pull/*/head:refs/remotes/upstream/pr/*'
@mathieucarbou
mathieucarbou / MacOS JDK installation.md
Last active April 28, 2022 20:12
MacOS JDK installation

After Sierra upgrade, all my JDK were removed. So here is how I reinstalled all of them with only brew commands, and manage them with jEnv.

First do all your mac updates (especially XCode), then:

Install Brew:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
// This is an open source non-commercial project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
/*
==============================================================================
SendKeys.cpp
This file is part of MIDI2LR. Copyright 2015-2017 by Rory Jaffe.
MIDI2LR is free software: you can redistribute it and/or modify it under the