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.regex.Matcher | |
import java.util.regex.Pattern | |
Map splitLabel(String label) { | |
Pattern labelPattern = Pattern.compile('(?<column>^[A-Za-z]+)(?<side>\\d)(?<row>\\d+$)') | |
Matcher labelMatcher = labelPattern.matcher(label) | |
labelMatcher.find() | |
String columnLabel = labelMatcher.group("column") | |
Integer sideLabel = Integer.parseInt(labelMatcher.group("side")) |
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
sed -E 's/(String|Integer|UUID|Instant|Boolean) ([a-zA-Z0-9]+;)/"\2": "\11",/' *.json |
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
@Grapes([ | |
@Grab(group='com.squareup.retrofit', module='retrofit', version='1.9.0') | |
]) | |
import retrofit.http.* | |
import retrofit.RestAdapter | |
class ElasticTests { | |
static final String INDEX = 'zirbes' |
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 | |
default_filter="(event.*|container-container.*|dci-osn-bridge.*)" | |
filter="${1}" | |
color=32 | |
if [ "$filter" == "" ]; then | |
filter="${default_filter}" | |
fi |
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
HttpServer server = HttpServer.create(new InetSocketAddress(config.healthCheckServerPort), 0) | |
server.createContext("/health", new HealthCheckHttpHandler(healthCheckRegistry)) | |
server.setExecutor(null) | |
server.start() | |
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
package org.zirbes.sandbox | |
import groovy.util.logging.Slf4j | |
import io.netty.bootstrap.ServerBootstrap | |
import io.netty.channel.ChannelFuture | |
import io.netty.channel.ChannelHandlerContext | |
import io.netty.channel.ChannelInboundHandlerAdapter | |
import io.netty.channel.ChannelInitializer | |
import io.netty.channel.ChannelOption | |
import io.netty.channel.EventLoopGroup |
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
# New MacBook Setup | |
This is how I setup a new MacBook | |
* brew install | |
* https://brew.sh/ | |
* List: https://github.com/aaronzirbes/dot-files/blob/master/homebrew-list.txt | |
* `/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"` | |
* brew cask install | |
* https://caskroom.github.io/ |
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
/** | |
* Run this on your DSE graph instance via DSE studio to see some pretty graphs. | |
* Feel free to change folderDepth or rootPath. | |
* | |
* Note, this only works in DSE if development mode is on, and vertex scanning is enabled. | |
*/ | |
// schema.config().option("graph.allow_scan").set(true) | |
// schema.config().option("graph.schema_mode").set("Development") |
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
/* | |
* Copyright 2014 the original author or authors. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
@Grapes([ | |
@Grab(group='com.squareup.retrofit', module='retrofit', version='1.9.0') | |
]) | |
import retrofit.http.* | |
import retrofit.RestAdapter | |
import java.time.ZoneOffset | |
import java.time.LocalDateTime | |
import java.text.NumberFormat |
NewerOlder