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
| image: maven:3.3-jdk-8-alpine | |
| cache: | |
| key: "$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME" | |
| paths: | |
| - .m2/ | |
| variables: | |
| MAVEN_OPTS: "-Dmaven.repo.local=.m2" |
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
| image: node:6-alpine | |
| cache: | |
| key: "$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME" | |
| paths: | |
| - node_modules/ | |
| - yarn_cache/ | |
| stages: | |
| - setup |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fiddler2] | |
| "BlockUpdateCheck"="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
| function getUrlParameter(sParam) { | |
| var sPageURL = decodeURIComponent(window.location.search.substring(1)), | |
| sURLVariables = sPageURL.split('&'), | |
| sParameterName | |
| for (var i = 0; i < sURLVariables.length; i++) { | |
| sParameterName = sURLVariables[i].split('=') | |
| if (sParameterName[0] === sParam) { | |
| return sParameterName[1] === undefined ? true : sParameterName[1] | |
| } |
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
| public class MainWindow { | |
| private short atom; | |
| private HwndSource hwndSource; | |
| public MainWindow { | |
| this.Loaded += (sender, args) => { | |
| // 挂载全局快捷键 | |
| var helper = new WindowInteropHelper(this); | |
| hwndSource = HwndSource.FromHwnd(helper.Handle); | |
| if(hwndSource != null) |
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
| public class MainWindow { | |
| /// <summary> | |
| /// 输入法的输入框被打开,已有文本在内 | |
| /// </summary> | |
| /// <returns>若有文本正在输入则为 true,否则为 false</returns> | |
| private bool IsImeCompositionWindowOpened() { | |
| var helper = new WindowInteropHelper(this); | |
| var hImc = NativeMethods.ImmGetContext(helper.Handle); | |
| const int readType = NativeMethods.GCS_COMPSTR; | |
| try { |
NewerOlder