-
query modpacks:
-
get mods:
This file contains hidden or 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
# This script allows you to do multiple find/replace operations in one pass. The find/replace | |
# pairs are defined in a file (defaults to ~/.st2_multiple_find_replace) using the format | |
# | |
# find <separator> replace | |
# By default, the separator is the hash-pointer (=>), but it can be changed if | |
# necessary (see below). To use multiple find and replace, save this code to a file in | |
# your Packages/User folder using whatever name you like. I use multiple_find_replace.py. | |
# Edit your user key bindings and pick whatever key combinations you want to trigger | |
# these operations. On Mac OS X, I chose COMMAND+OPTION+M E to edit and COMMAND+OPTION+M R |
This file contains hidden or 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
<?php | |
// Variables used in this script: | |
// $summary - text title of the event | |
// $datestart - the starting date (in seconds since unix epoch) | |
// $dateend - the ending date (in seconds since unix epoch) | |
// $address - the event's address | |
// $uri - the URL of the event (add http://) | |
// $description - text description of the event | |
// $filename - the name of this file for saving (e.g. my-event-name.ics) | |
// |