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
code|rr|[code][/code]|ahk|send,{left 7}{enter 2}{up}{text}%clipboard% | |
url|rr|[url=]title[/url]|ahk|send,{left 12}{text}%clipboard% `n send,{CtrlDown}{ShiftDown}{Left}{ShiftUp}{CtrlUp} |
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
msg := vOutput1 "`r`n`r`n" vOutput2 | |
Clipboard := msg | |
MsgBox,% msg "(" A_LineNumber " " RegExReplace(A_LineFile,".*\\") ")" | |
2018 10 06 17 42 00 | |
63720982 | |
0.737511 | |
2018 10 06 15 42 00 | |
56520982 |
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
<html class="x-border-box x-strict x-viewport" style="position: relative; left: 0px; overflow: hidden;"><head id="ext-gen1031"> | |
<meta charset="UTF-8"> | |
<meta name="robots" content="noindex,nofollow"> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
<title>Shopware 5.4.6 (Rev. 201807181357) - Backend (c) shopware AG</title> | |
<link rel="stylesheet" type="text/css" href="/themes/Backend/ExtJs/backend/_resources/resources/css/ext-all.css?201807181357"> | |
<link rel="stylesheet" type="text/css" href="/themes/Backend/ExtJs/backend/_resources/resources/css/core-icon-set.css?201807181357"> | |
<link rel="stylesheet" type="text/css" href="/themes/Backend/ExtJs/backend/_resources/resources/css/core-icon-set-new.css?201807181357"> | |
<link rel="stylesheet" type="text/css" href="/engine/Library/CodeMirror/lib/codemirror.css?201807181357"> | |
<link rel="stylesheet" type="text/css" href="/themes/Backend/ExtJs/backend/_resources/styles/growl.css"> |
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
docker stop 8e008ebf3ad7 | |
8e008ebf3ad7 | |
docker container ls | |
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS | |
NAMES | |
5227976cb9bb friendlyhello "python app.py" About an hour ago Up About an hour 0.0.0.0:4001->80/tcp SOMENAME | |
docker ps -a | |
CONTAINER ID IMAGE COMMAND CREATED STATUS | |
PORTS NAMES |
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
; Indentation_style: https://de.wikipedia.org/wiki/Einrückungsstil#SL5small-Stil | |
#Include *i %A_ScriptDir%\inc_ahk\init_global.init.inc.ahk | |
; text sugestion for your commit: this commits are fully automatic produced by script automatic-git-push-in-intellij.ahk | |
SetTitleMatchMode,2 | |
feedbackMsgBoxCloseAllWindows() | |
;feedbackMsgBox(A_ScriptName,"18-01-06_16-26") | |
; htdocs master - [C:\xampp\apps\wordpress\htdocs] - ...\README.md [htdocs] - PhpStorm ahk_class SunAwtFrame ; mouseWindowTitle=0x1f0996 ; |
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
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:2.3.0' | |
// NOTE: Do not place your application dependencies here; they belong |
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
Loop, %A_ScriptDir%/*.*, 2 , 1 | |
{ | |
if(StrLen(A_LoopFileFullPath) < StrLen(A_ScriptDir)) | |
{ | |
; thats bullshit | |
continue | |
} | |
;~ ToolTip,A_LoopFileFullPath=%A_LoopFileFullPath% | |
msgBox_A_LoopFileF = A_LoopFileFullPath= %A_LoopFileFullPath% `n A_LoopFileFullPath=%A_LoopFileFullPath% `n A_LoopFileName=%A_LoopFileName% `n A_LoopFileDir=%A_LoopFileDir% `n A_ScriptDir=%A_ScriptDir% `n %A_AhkVersion% = A_ahkVersion (line:%A_LineNumber%) `n Tools: SciTE4AutoHotkey, SL5_AHK_Refactor_engine | |
Clipboard=%msgBox_A_LoopFileF% |
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
SetTitleMatchMode,2 | |
#IfWinActive,- IntelliJ IDEA 14.1.3 ahk_class SunAwtFrame | |
^%:: | |
+%:: | |
if(StrLen(clipboard) < 100 ) | |
{ | |
c := clipboard | |
c2 := "{NumpadAdd} "" = " . c . "\n""" | |
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
n = getNumberScreens() | |
nNumverScreensExpected = 4 | |
print (Env.getSikuliVersion() , " " , n , " monitors." ) | |
for ScreenId in range(n): | |
print("----------------- ScreenId = ", ScreenId) | |
reg = Screen(ScreenId) | |
print("reg: x, y, w, h = ", reg.x , reg.y, reg.w, reg.h) | |
x = reg.x | |
y = reg.y | |
topLeft = Location(x, y) # equivalent to |