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 the path to the Google Chrome binary | |
set +x | |
export url=$1 | |
export desktop_folder="${HOME}/.local/share/application/" | |
origin_title=$(echo "$1"|awk -F "." '{print $2}') | |
title=$(curl -s $url| grep -o '<title>.*</title>' | sed -e 's/<title>//g' -e 's/<\/title>//g') | |
if [[ $title == "" ]];then | |
title=${origin_title} |
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 the path to the Google Chrome binary | |
set +x | |
export url=$1 | |
export desktop_folder="${HOME}/.local/share/application/" | |
origin_title=$(echo "$1"|awk -F "." '{print $2}') | |
title=$(curl -s $url| grep -o '<title>.*</title>' | sed -e 's/<title>//g' -e 's/<\/title>//g') | |
if [[ $title == "" ]];then | |
title=${origin_title} |
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
@Slf4j | |
public class BizLambdaUtil { | |
public static<R> R alsoIf(R obj,boolean isIf,Consumer<R> consumer){ | |
try { | |
if(isIf){ | |
consumer.accept(obj); | |
} | |
return obj; |
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
/** | |
* AlsoIf.alsoIf(xxx,xxx,xx).alsoIf().get() | |
* 进行长条件判断.如果条件成立,则执行相应的操作.主要用于LambadaQuery上 | |
* java lambda for predicate and do things | |
*/ | |
@Slf4j | |
public class BizAlsoIf<R> { | |
R obj; |
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
@Slf4j | |
public class RedisLambda { | |
public static long DEFAULT_DURATION=60*60*24; | |
public static RedisTemplate getRedisTemplate() | |
{ | |
RedisTemplate redisTemplate=SpringContextHolder.getBean(RedisTemplate.class); | |
return redisTemplate; | |
} |
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
@Slf4j | |
public class BizUtils { | |
public static<R> R invoke(Function<Void,R> function, R defaultValue){ | |
try { | |
return function.apply(null); | |
} catch (Exception e) { | |
log.error("try method failed", e); | |
return defaultValue; | |
} |
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
tasks.withType<Test>{ | |
onlyIf { System.getenv("test.enable")=="true" } | |
} |
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
echo "wsl port shell start" | |
wsl_ip=$(wsl.exe bash -c "ip addr show eth0 | grep \"inet\b\""|awk '{print $2}'|cut -d/ -f1) | |
echo "wsl ip:${wsl_ip}" | |
echo "port:9001" | |
netsh interface portproxy add v4tov4 listenport=9001 listenaddress=0.0.0.0 connectport=9001 connectaddress=${wsl_ip} | |
netsh advfirewall firewall add rule name="ALLOW TCP PORT 9001" dir=in action=allow protocol=TCP localport=9001 |
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
cd $(dirname $0) | |
# only support debian/ubuntu | |
ipv6_enable="true" | |
if [[ "$(whoami)" != "root" ]];then | |
echo "should run as root" | |
exit 1 | |
fi | |
if ! [[ -x "$(command -v docker)" ]];then | |
echo "must install docker" |
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
appname: "eru" | |
entrypoints: | |
agent: | |
cmd: "/usr/bin/eru-agent --hostname node1 --config /etc/eru/agent.yaml" | |
restart: always | |
publish: | |
- "12345" | |
healthcheck: | |
tcp_ports: | |
- "12345" |
NewerOlder