- To stop vscode complaining about
struct sigaction
, add#define _GNU_SOURCE
.
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/sh | |
# START CONFIG | |
USER_AGENT='' | |
CLIENT_ID='' | |
CLIENT_SECRET='' | |
USERNAME='' | |
PASSWORD='' | |
# END CONFIG |
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
[alias] | |
aliases = "!echo \"Use 'git la' to list aliases\"" | |
a = add | |
aa = "!git add -A && git st" | |
b = branch | |
bd = branch -d | |
bl = branch --list | |
co = checkout | |
cod = checkout develop |
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
/* ==UserStyle== | |
@name Salamanstra | |
@author Cascadea User | |
@version 1.0 | |
@namespace cascadea188508083 | |
@preprocessor default | |
==/UserStyle== */ | |
@-moz-document domain("salamanstra.keenspot.com") | |
{ |
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
# ------------------------------------------------ | |
# Generic C Makefile | |
# | |
# Adapted from https://stackoverflow.com/questions/7004702 | |
# ------------------------------------------------ | |
##### START CONFIG ##### | |
### START BASIC CONFIG ### |
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
#!/usr/bin/env node | |
const DEFAULT_KEY = "out"; | |
function setOutput(name, val) { | |
console.log(`::set-output name=${name}::${val}`); | |
} | |
function parseAndOutput(data) { | |
try { |
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 | |
VERSION="1.1.1" | |
# ██ ██ ███████ ██████ ██ ███████ ██ ██ █████ ██████ ██████ ███████ | |
# ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
# ██ ██ █████ ██████ ██ █████ ████ ███████ ██████ ██ ███ ███████ | |
# ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
# ████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██████ ███████ |
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 | |
if [ $# -eq 1 ]; then | |
echo "Quitting '$1'" | |
osascript -e "quit app \"$1\"" | |
else | |
echo -e " Usage:\n gquit [Application Name]" | |
fi |
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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
- Mount BOOTCAMP disk
- Run 'diskutil info /Volumes/BOOTCAMP'
- Run 'sudo vifs' and replace old id with the value taken from 'Volume UUID' from the 'diskutil list' above'
More info (Hopefully this link doesn't die like the last one did...)
NewerOlder