Skip to content

Instantly share code, notes, and snippets.

@chrizel
chrizel / SublimeText-with-iCloud-Drive.sh
Last active May 21, 2021 14:39 — forked from joeshub/ST3-with-iCloud-Drive.sh
Sync your Sublime Text Settings using iCloud Drive on multiple Macs
# Notes
# Using iCloud Drive, you can sync your Sublime Text
# plugins and prefs so you can always have the same setup
# Prerequisites
# Make sure both machines have the latest version of OSX 10.10.x with
# Yosemite or higher and iCloud Drive turned on
# Quit Sublime Text
### Keybase proof
I hereby claim:
* I am chrizel on github.
* I am chrizel (https://keybase.io/chrizel) on keybase.
* I have a public key ASC8Mx68HLZa9GWLllvgYvyWsSLtgsmyHn2zmPnsqkjCJQo
To claim this, I am signing this object:
@chrizel
chrizel / ios-signing.sh
Created May 5, 2017 09:23
Bash script that lists all local signing identities for iOS development followed by informations about all local provisioning profiles. Maybe this script is useful to somebody...
#!/bin/bash
printf "*** Signing Identities ***\n"
security find-identity -v -p codesigning
printf "\n*** Provisioning Profiles ***\n"
PATH=~/Library/MobileDevice/Provisioning\ Profiles
for f in "$PATH"/*.mobileprovision; do
echo $f
@chrizel
chrizel / gist:1572595
Created January 6, 2012 22:00
base_instructionset.h
#ifndef BASE_INSTRUCTIONSET_H
#define BASE_INSTRUCTIONSET_H
#include "cpu.h"
#include "instructions.h"
#include "instructionset.h"
#include "references.h"
void initialize_base_instructionset(InstructionSet *instructionSet, CPU *cpu) {
Instruction *op0;