This file contains hidden or 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
; Connect to VPN | |
#SingleInstance Force | |
Run "C:\Program Files (x86)\Cisco\Cisco AnyConnect Secure Mobility Client\vpnui.exe" | |
if WinWaitActive("Cisco AnyConnect Secure Mobility Client",,5000) { | |
ControlClick "Button1" | |
if WinWaitActive("Cisco AnyConnect | US-Austin",,5000) { | |
ControlFocus "Edit2" | |
ControlSetText "******(****)", "Edit2" | |
ControlClick "Button1" | |
if WinWaitActive("Cisco AnyConnect | US-Austin",,5000) { |
This file contains hidden or 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 * as path from 'path'; | |
import * as vscode from 'vscode'; | |
import { GitExtension, API } from './git'; | |
let git: API; | |
let workspaceFolder: vscode.WorkspaceFolder; | |
export function activate(context: vscode.ExtensionContext) { | |
context.subscriptions.push(vscode.commands.registerCommand('vscode-git-teamcity-remote-run.remote-run', remoteRun)); | |
This file contains hidden or 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
|
This file contains hidden or 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
ServletRegistrationBean org.springframework.cloud.netflix.zuul.ZuulServerAutoConfiguration.zuulServlet() | |
--- | |
Stack when the servlet is set for /zuul: | |
ApplicationFilterChain.setServlet(Servlet) (\tomcat-embed-core-9.0.71.jar\org.apache.catalina.core\ApplicationFilterChain.class:321) | |
ApplicationFilterFactory.createFilterChain(ServletRequest,Wrapper,Servlet) (\tomcat-embed-core-9.0.71.jar\org.apache.catalina.core\ApplicationFilterFactory.class:80) | |
StandardWrapperValve.invoke(Request,Response) (\tomcat-embed-core-9.0.71.jar\org.apache.catalina.core\StandardWrapperValve.class:149) | |
StandardContextValve.invoke(Request,Response) (\tomcat-embed-core-9.0.71.jar\org.apache.catalina.core\StandardContextValve.class:97) |
This file contains hidden or 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
https://docs.aws.amazon.com/eks/latest/userguide/aws-load-balancer-controller.html | |
https://docs.aws.amazon.com/eks/latest/userguide/alb-ingress.html |
This file contains hidden or 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
# Debug logging for zuul: | |
# -Dlogging.level.org.apache.http.wire=DEBUG -Dlogging.level.org.springframework.cloud.netflix=TRACE | |
logging: | |
level: | |
org.apache.http.wire: DEBUG | |
org.springframework.cloud.netflix: TRACE | |
# x-forwarded-host,x-forwarded-proto,x-forwarded-prefix,x-forwarded-port,x-forwarded-for |
This file contains hidden or 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
vscode.commands.executeCommand('workbench.action.findInFiles', { | |
query: word, | |
filesToInclude: filesToInclude, | |
triggerSearch: true, | |
matchWholeWord: true, | |
isCaseSensitive: true, | |
}); |
This file contains hidden or 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
export NODE_EXTRA_CA_CERTS=${PWD}/R3.cert | |
./nodeappname |
This file contains hidden or 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
kubectl get pods coredns-6d4b75cb6d-2n8kj -o jsonpath="{range .spec.containers[*].ports[*]}{.containerPort}{':'}{.name}{' '}{end}" |
This file contains hidden or 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
@RestController | |
public static class HelloController { | |
@GetMapping("/") | |
public String hello() { | |
return "hello"; | |
} | |
@GetMapping("/zuul/restapi/**") | |
public ResponseEntity<?> zuulProxyPath(HttpServletRequest httpServletRequest, ProxyExchange<byte[]> proxy) |