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
#!/bin/bash | |
# 1. Run `bash global-emacs-turkish-correct-buffer.sh` from rofi or set some keybinding for this command | |
# More info | |
# https://github.com/emres/turkish-mode | |
# http://denizyuret.blogspot.com/2006/11/emacs-turkish-mode.html | |
function global-emacs-turkish-correct-buffer | |
{ |
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
#!/bin/sh | |
# https://unix.stackexchange.com/a/152025/457201 | |
# 1 . Usage copy the regular expression which is hard to understand | |
# 2. Run `sh regulex.query.sh` | |
mk_regulex_query() { | |
url_encode() { | |
# http://stackoverflow.com/a/298258/3541063 |
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
#!/usr/bin/env zsh | |
# _ _ | |
# __ _| | _____ _ _ ___ _______| |__ | |
# \ \/ / |/ / _ \ | | / __| |_ / __| '_ \ | |
# > <| < __/ |_| \__ \_ / /\__ \ | | | | |
# /_/\_\_|\_\___|\__, |___(_)___|___/_| |_| | |
# |___/ | |
last_class="none" | |
current_map=default |
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
# About vimium https://github.com/philc/vimium | |
# Tab move next or previous right hand | |
map J nextTab | |
map K previousTab | |
# Tab move next or previous for left hand | |
map e nextTab | |
map r previousTab |
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
{ | |
"name": "ReportError", | |
"nodes": [ | |
{ | |
"parameters": {}, | |
"name": "Start", | |
"type": "n8n-nodes-base.start", | |
"typeVersion": 1, | |
"position": [ | |
-480, |
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
.tagged-ignored { | |
display: none; | |
} | |
.tagged-interesting { | |
background-color: #ff76508c; | |
} |
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
;; https://github.com/hbin/smart-shift | |
;; Another text moving package which works well. | |
;; Easily you can shift region or current line. | |
;; Usage 1: Go to line call the function move it with h,j,k,l | |
;; Usage 2: Select the region than move them via h,j,k,l | |
;; Known bug If you select via V command it behaves so weird. |
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
# Create pull request from your branch to target branch | |
# USAGE | |
# Switch for branch you want to make Pull request | |
# bash create_pr_from_cli.sh <target_branch> <OPTIONAL_pr_message> | |
# Limitation one script allows you to make PR for one repository. | |
# You can change this easily. | |
# TODO | |
PROJECTNAME="ProjectName" |
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
;; For more check my blog http://en.enisozgen.com/ansible-surround/ | |
;; Surroun with quotes and curly brackets | |
;; evil-surround-edit: | |
;; SPC s h converts: item --> {{ item }} | |
;; SPC s H converts: item --> "{{ item }}" | |
(add-hook 'yaml-mode-hook (lambda () |
NewerOlder