Skip to content

Instantly share code, notes, and snippets.

View Kambaa's full-sized avatar

KambaAbi Kambaa

  • KambaAbi
  • Istanbul, Turkey
View GitHub Profile
@Kambaa
Kambaa / ssl-transmission-nginx.conf
Last active January 25, 2020 16:46 — forked from michaelkeevildown/ssl-transmission-nginx.conf
SSL Transmission Nginx Config
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;
@Kambaa
Kambaa / IntelIJTrialReset.bat
Created March 11, 2019 14:24
How to Reset InteIIiJ IDEA Evaluation Key in Windows
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
@Kambaa
Kambaa / .bash_profile
Last active October 4, 2022 21:07
My Bash Profile Code
####### 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 ..'
@Kambaa
Kambaa / gist:16058877ea730d3d0cb54362c294a188
Last active August 2, 2021 11:03
Incent Overlay Customization
/********************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%;
@Kambaa
Kambaa / mustafaLearnsPowershell.ps1
Last active November 27, 2021 16:07
Pawır Şell'den Veri çekme Denemesi v.0.0.1
$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";
@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
"C:\Program Files\BlueStacks_bgp64_hyperv\HD-RunApp.exe" -vmname Android_1 -p com.google.android.apps.authenticator2
@Kambaa
Kambaa / jail.local
Created May 7, 2022 22:26 — forked from Nihisil/jail.local
Send notifications to the Slack from fail2ban
...
action_with_slack_notification = %(banaction)s[name=%(__name__)s, port="%(port)$
slack[name=%(__name__)s]
action = %(action_with_slack_notification)s
...
@Kambaa
Kambaa / strokes-plus-acsendkeys-readme.txt
Last active September 13, 2022 10:42
Strokes Plus acsendkeys() method arguments special keys
// 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
@Kambaa
Kambaa / sublime-text-my-keymap.json
Created September 26, 2022 17:20
sublime text key bindings
[
{ "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" ,