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
server { | |
listen 80 default_server; | |
server_name domain.com; | |
rewrite ^ https://$server_name$request_uri? permanent; | |
} | |
server { | |
listen 443 default_server; | |
server_name domain.com; |
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 "C:%HOMEPATH%\.IntelliJIdea*\config" | |
rmdir "eval" /s /q | |
del "options\other.xml" | |
reg delete "HKEY_CURRENT_USER\Software\JavaSoft\Prefs\jetbrains\idea" /f | |
:: This will work for idea 2018.3 and later | |
:: | |
:: It is Highly Advised to Purchase the JetBrain Softwares | |
:: This is only for the case You just want to Extend the | |
:: Trial Period and Evaluate the IDE for some more Time |
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
####### UPDATED 2022 ########### | |
##For Linux: | |
###DOWNLOAD YT_DLP: https://github.com/yt-dlp/yt-dlp/releases/download/2022.10.04/yt-dlp_linux | |
#####################################START###################################### | |
alias cls='clear' | |
alias cd..='cd ..' |
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
/********************CODE DISPLAY*********************/ | |
#app>div:first-child{ | |
background: linear-gradient(to right, #9D00FF, #00FFFF, #6E0DD0); | |
background-size: 400% 400%; | |
animation: gradient 3s ease infinite; | |
} | |
@keyframes gradient { | |
0% { | |
background-position: 0% 50%; |
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
$urlPrefix="https://maps2.dcgis.dc.gov/dcgis/rest/services/DCGIS_DATA/Violations_Moving_2020/MapServer/2/query?where=1%3D1&outFields=*&returnGeometry=false&outSR=4326&f=json&resultOffset=" | |
$fileName="C:\Users\NEW\Desktop\test\data" | |
for (($i = 0); $i -lt 145; $i++) | |
{ | |
$u=$urlPrefix+ ($i+1)*1000; | |
$x=($i+1); | |
$f="$fileName$x.json"; | |
curl.exe -o $f $u; | |
echo "Dosya'ya kaydedildi:$f"; |
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 off; | |
title OTP FETCHER | |
cd "C:\LDPlayer\LDPlayer9\" | |
###echo "Launching FileManager on first device on LDMultiPlayer9(index 0), macro defined in LDplayer will run and copy the OTP" | |
ldconsole.exe launchex --index 0 --packagename com.google.android.apps.authenticator2 | |
## wait for 15 seconds |
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
"C:\Program Files\BlueStacks_bgp64_hyperv\HD-RunApp.exe" -vmname Android_1 -p com.google.android.apps.authenticator2 |
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
... | |
action_with_slack_notification = %(banaction)s[name=%(__name__)s, port="%(port)$ | |
slack[name=%(__name__)s] | |
action = %(action_with_slack_notification)s | |
... |
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
// working examples of scripts | |
// ENABLE OR DISABLE | |
acEnableCapture() | |
acDisableCapture() | |
// MESSAGE DISPLAY | |
-- tray message | |
--acDisplayBalloonTip("Shortcut: Ctrl+Shift+Alt+X", "Strokes Plus Enabled", 1, 0) | |
-- win popup window |
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
[ | |
{ "keys": ["alt+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["ctrl+d"], "command": "duplicate_line" }, | |
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+space+down"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["ctrl+space+up"], "command": "select_lines", "args": {"forward": false}}, | |
{ "keys": ["shift+alt+f"], "command": "reindent", "args": {"single_line": false} } , | |
{ "keys": ["shift+alt+f"], "command": "pretty_json" , |