Skip to content

Instantly share code, notes, and snippets.

@AlickH
AlickH / Run.applescript
Last active November 6, 2021 03:23
Run Script in Coteditor
-- __setting_______________________________________________________________
-- Shows dialog if the document wasn't saved?
property showAlertDialog : true
-- __main_______________________________________________________________
@AlickH
AlickH / Alfred.ahk
Last active November 6, 2021 03:25
My AutoHotKey Scripts
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
#singleinstance force
#Persistent ; Keeps script running persisitantly
Menu, Tray, Tip, % "Alfred"
Menu, Tray, Icon, % "shell32.dll", 127
Menu, Tray, NoStandard
Menu, Tray, Add, Pause, PauseScript
Menu, Tray, Add, Reload, ReloadScript
#! /usr/bin/env python
# Script to manage additional trusted root certificate in the IOS simulator
#
# Allows to add/list/delete/export trusted root certificates to the IOS simulator
# TrustStore.sqlite3 file.
#
# Additionally, root certificates added to a device can be listed and exported from
# a device backup
#