Skip to content

Instantly share code, notes, and snippets.

View Arslan-TR's full-sized avatar
🏠
Working from home

M. Önlük Arslan-TR

🏠
Working from home
  • 20:20 (UTC +03:00)
View GitHub Profile
@mahmoudimus
mahmoudimus / mac4win.ahk
Last active January 17, 2023 13:39
autohotkey mac4win/emacs
/*
Symbol Key
^ RCtrl
! Alt
# Windows Key (cmd in mac keyboard)
+ SHIFT
#c::Send, ^c
#v::Send, ^v
#x::Send, ^x
@FaberVitale
FaberVitale / color-picker.ahk
Created April 17, 2021 16:32
Color picker - Windows | Autohotkey
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; Color Picker
; Usage: place mouse pointer over desired color then input "Win key + \ ",
; The picked color will be on the clipboard in rbg format
; https://www.autohotkey.com/docs/KeyList.htm
CoordMode, PixelGetColor, Screen
@askmrsinh
askmrsinh / AutoHotKey.md
Last active January 17, 2023 14:42
AutoHot Key scripts for windows.

Some useful AutoHot Key scripts

  • alwaysOnTop.ahk
    Keep an application window Always On Top of other windows
  • hotCorner.ahk
    Acticate Task View when mouse points to top left corner of the display
@fredrikaverpil
fredrikaverpil / get_set_values.py
Last active May 20, 2024 20:31
Get and set knob values #nuke
# Get all nodes of type Read
readnodes = nuke.allNodes('Read')
for readnode in readnodes:
print readnode
# List all knobs for selected node
print( nuke.toNode('Read1') )
# List all knobs for specific node
print( nuke.selectedNode() )