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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
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 | |
# Run this with `sh ./fix-ssh-perms.sh` in any directory | |
chown ${USER}:${USER} ~/.ssh | |
chmod 700 ~/.ssh | |
chmod 600 ~/.ssh/authorized_keys | |
chmod 600 ~/.ssh/* | |
chmod 644 ~/.ssh/*.pub |
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
########################################################## | |
# Name: Anthonian Universal C/C++ Makefile # | |
# Description: Universal Makefile For Anthonian # | |
# C/C++ Projects # | |
# Download: wget https://gist.anth.dev/fs/c/Makefile # | |
# Date: May 28, 2018 # | |
# Created with <3 by Anthony Kung # | |
# Author URI: https://anth.dev # | |
# License: Apache 2.0 (See /LICENSE.md for details) # | |
########################################################## |
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 | |
########################################################## | |
# Name: Anthonian Permission Repairer # | |
# Description: Repair broken permissions for Anthonian # | |
# Node.js projects # | |
# Download: wget https://gist.anth.dev/fs/apr.sh # | |
# Usage: sh apr.sh {{ REPLACE WITH DIRECTORY PATH }} # | |
# Example: sh apr.sh ./ # | |
# Date: November 1st, 2020 # |
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
/* Created with <3 by Anthony Kung | |
* For OSF | |
*/ | |
/* Begin CSS */ | |
body { | |
background-color: #02ddf7; | |
} |
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
/************************************************** | |
* * | |
* Name: scrapbook-css.css * | |
* Description: Anthony's Hack Club Scrapbook CSS * | |
* Date: June 20, 2020 * | |
* Created by: Anthony Kung * | |
* Business URL: https://hailiga.org/anthonykung * | |
* Author URL: https://anthonykung.com * | |
* * | |
**************************************************/ |