Max Resource
High Quality
Medium Quality
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
"""utils.py: 交易日工具 | |
__email__ = "wu@borgle.io" | |
__date__ = "2021-12-21" | |
__version__ = "1.0.0" | |
""" |
isolation.tools.getPtrLocation.disable = "TRUE" | |
isolation.tools.setPtrLocation.disable = "TRUE" | |
isolation.tools.setVersion.disable = "TRUE" | |
isolation.tools.getVersion.disable = "TRUE" | |
monitor_control.disable_directexec = "TRUE" | |
monitor_control.disable_chksimd = "TRUE" | |
monitor_control.disable_ntreloc = "TRUE" | |
monitor_control.disable_selfmod = "TRUE" | |
monitor_control.disable_reloc = "TRUE" | |
monitor_control.disable_btinout = "TRUE" |
@echo off | |
::配置BAT对话框样式 | |
title KMS服务器检查脚本 | |
MODE con: COLS=42 lines=8 | |
color 0a | |
::检测vlmcs.exe |
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master`; do | |
git branch --track ${branch##*/} $branch | |
done | |
git fetch --all | |
git pull --all |
#!/bin/bash | |
private_network() { | |
local PRIVATE_IP=$1 | |
if [ -f '/etc/sysconfig/network-scripts/ifcfg-eth1' ] | |
then | |
ifdown eth1 > /dev/null 2>&1 | |
fi | |
cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-eth1 | |
DEVICE=eth1 |
@echo off | |
rem --------------------------------------------------------------------------- | |
rem name : extract script for the jdk installer | |
rem author : yoker.wu@gmail.com | |
rem date : 2017/12/21 | |
rem --------------------------------------------------------------------------- | |
set CURDIR=%cd% | |
set BIN7Z=%CURDIR%\7z\7z.exe |
package com.gkeeps.clients; | |
import feign.RequestInterceptor; | |
import feign.RequestTemplate; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker; | |
import org.springframework.cloud.client.discovery.EnableDiscoveryClient; | |
import org.springframework.cloud.netflix.feign.EnableFeignClients; | |
import org.springframework.context.annotation.Bean; |
Max Resource
High Quality
Medium Quality