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 | |
doPortForward() { | |
ns=$1 | |
ip=$2 | |
port=$3 | |
listen_port=`awk -F ':' '{print $1}' <<< "$port"` | |
container_port=`awk -F ':' '{print $2}' <<< "$port"` | |
container_port=${container_port:-$listen_port} | |
target_port=$4 || `shuf -i 2000-65000 -n 1` |
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 lombok.RequiredArgsConstructor; | |
import lombok.extern.slf4j.Slf4j; | |
import org.springframework.data.redis.core.RedisKeyValueTemplate; | |
import org.springframework.stereotype.Service; | |
import javax.persistence.Id; | |
import java.time.Duration; | |
import java.time.Instant; | |
import java.util.Optional; | |
import java.util.function.Supplier; |
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
/** | |
* Enable retries on selected Feign methods. | |
* <p> | |
* <ol> | |
* <li>In the feign config class add: | |
* <pre> | |
* {@code | |
* @Bean | |
* public Retryer feignRetryer() { |
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 lombok.AccessLevel; | |
import lombok.NoArgsConstructor; | |
import lombok.extern.slf4j.Slf4j; | |
import org.springframework.data.redis.core.RedisTemplate; | |
import java.time.Duration; | |
import java.util.function.Supplier; | |
/** | |
* A simple implementation for Distributed Lock based on Redis. |
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 brave.spring.rabbit.SpringRabbitTracing; | |
import lombok.Data; | |
import lombok.RequiredArgsConstructor; | |
import lombok.extern.slf4j.Slf4j; | |
import org.springframework.amqp.core.Message; | |
import org.springframework.amqp.rabbit.annotation.MultiRabbitListenerAnnotationBeanPostProcessor; | |
import org.springframework.amqp.rabbit.annotation.RabbitListenerAnnotationBeanPostProcessor; | |
import org.springframework.amqp.rabbit.config.SimpleRabbitListenerContainerFactory; | |
import org.springframework.amqp.rabbit.connection.*; |
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 | |
set -e | |
#set -x | |
if [ "$#" -ne 2 ]; | |
then | |
echo "Usage: $0 <user@ip> [rpm url|file]" | |
exit | |
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
#!/usr/lib/jvm/java/bin/java --source 17 | |
/* example | |
jmx_endpoint_invoker.sh Health health | |
*/ | |
import com.sun.tools.attach.AttachOperationFailedException; | |
import com.sun.tools.attach.VirtualMachine; | |
import com.sun.tools.attach.spi.AttachProvider; |
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
#copy and paste in .bashrc and then: soruce .bashrc | |
# for windows pathes, you need to wrap it in double quotes | |
function cd() { | |
if [[ $@ == *"\\"* ]]; then | |
p=`wslpath "$@"` | |
builtin cd "$p" | |
else | |
builtin cd "$@" | |
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
import socket | |
class RedisClient: | |
def __init__(self, **kwargs): | |
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
self.sock.connect((kwargs['host'], kwargs['port'])) | |
def subscribe(self, channel): |
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
#!/usr/bin/env python3 | |
import subprocess | |
import sys | |
SCW_TYPE = 'DEV1-S' | |
SCW_ZONE = 'nl-ams-1' | |
SCW_IMAGE = 'centos_8' | |
SCW_PROJECT_ID = '<projectid>' | |
LOG_CMD = False |
NewerOlder