File type | Sublime Text | Atom |
---|---|---|
ActionScript | source.actionscript.2 | ? |
AppleScript | source.applescript | [.source.applescript] |
ASP | source.asp | ? |
Batch File | source.dosbatch | ? |
BibTex | source.bibtex | ? |
BridleNSIS | [source.nsis.bridle] | [.source.nsis.bridle] |
C | source.c | [.source.c] |
C# | source.cs | [.source.cs] |
View My PGP key
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: OpenPGP.js v.1.20130420 | |
Comment: http://openpgpjs.org | |
xsFNBFIrew8BD/9gyeftvnJTVFxwXmalP8oLA61knC0BkaPSC7joqoghHML4 | |
XwVhPwGbrhFb03m8P26Hef0+IoCJBtpbtDhP/8AOzWBp26oM2t0X8hn1tcUF | |
AL89AOTzZrbY9BZMO26MUxVpom8dVk5DttFfCgnSQen3g1c4+Ad57LlE4fG5 | |
tGt3R9akHMWP3QHCYw7Ik5CnEUQL7AtMzW/baCYuTUUy03v03F5gL2rVXv8x | |
TNPad8ICLm1/Xc28nJUu1WmQXegUiw2cuwnVv8ycLhYGd5ls41kqWzGorhsr | |
DZkktB4H81bhgHq3NJEZFmN95aN4Aw4z5V1+wyKebo+fjeRgzIQRULD5BK7U |
View scopes.md
View fish_shell.md
Installation
- Install fish via Brew
- Optionally install Oh My Fish!
- Add fish to known shells
- Set default shell to fish
brew install fish
curl -L https://get.oh-my.fish | fish
View Install-Mcrypt.md
Setup
php-mcrypt
on macOS (and versions of Mac OS X)
Setup These steps should have been mentioned in the prerequisites of the Laravel Installation Guide, since I'm surely not the only person trying to get Laravel running on macOS.
Install
Install Mcrypt using Homebrew and PECL (comes with PHP)
# PHP 7.3
View PHP Localization.php
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
<?php | |
session_start(); | |
if (isset($_GET["locale"])) { | |
$locale = $_GET["locale"]; | |
} else if (isset($_SESSION["locale"])) { | |
$locale = $_SESSION["locale"]; | |
} else { | |
$locale = "en_US"; |
View DropboxIgnore.md
This script scans your Dropbox (or any given folder) for folders stored in the ignore
array and excludes them from syncing. Makes use of the official Dropbox CLI
I'm a beginner at bash, so all improvements are welcome!
#!/bin/bash
set -e
# SETTINGS
View spotlight_indexing.md
Enable Spotlight indexing for volumes (network shares, external disks, etc.) in Terminal
# enable indexing
mdutil /Volumes/name -i on
# disable indexing
mdutil /Volumes/name -i off
# check indexing status
View sublime-chmod.py
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://gist.github.com/idleberg/03bc3766c760bb4b81e3 | |
import os, stat, sublime, sublime_plugin | |
# Array of files, relative to package directory | |
files = [ | |
'my-script.sh' | |
] | |
def plugin_loaded(): |
View droppid.sh
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 | |
# droppid v0.2.3 | |
# Public Domain Mark 1.0 | |
# https://gist.github.com/idleberg/81ed196f2401be045893 | |
# | |
# Usage: sudo [sh] droppid.sh [priority] | |
# Check for sudo | |
if [ "$EUID" -ne 0 ]; then |
View sublime-npm.py
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://gist.github.com/idleberg/ca5714fd2b9607db02b8 | |
import os, sublime, sublime_plugin, subprocess | |
# Array of required Node packages | |
packages = [ | |
'' | |
] | |
def plugin_loaded(): |
OlderNewer