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
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| toggle_click=0 | |
| toggle_concrete=0 | |
| ; CREDIT | |
| ; https://autohotkey.com/board/topic/111640-send-left-mouse-click-once-per-second/ |
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
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| toggle_click=0 | |
| toggle_concrete=0 | |
| ; CREDIT | |
| ; https://autohotkey.com/board/topic/111640-send-left-mouse-click-once-per-second/ |
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
| ^(?:(?<fq>-?\d+)\s*(?<fu>\'|f(?:ee)?t\.?))?\s*(?<iq>(?:\d+\s+)?\d+\/\d+|\d*\.\d+|\d+)\s*(?<iu>\"|''|in(?:ches|\.?))$ |
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
| /* | |
| 0 = 000: x-, y-, z- | |
| 1 = 001: x-, y-, z+ | |
| 2 = 010: x-, y+, z- | |
| 3 = 011: x-, y+, z+ | |
| 4 = 100: x+, y-, z- | |
| 5 = 101: x+, y-, z+ | |
| 6 = 110: x+, y+, z- | |
| 7 = 111: x+, y+, z+ |
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 file has been auto-generated by i3-config-wizard(1). | |
| # It will not be overwritten, so edit it as you like. | |
| # | |
| # Should you change your keyboard layout some time, delete | |
| # this file and re-run i3-config-wizard(1). | |
| # | |
| # i3 config file (v4) | |
| # | |
| # Please see http://i3wm.org/docs/userguide.html for a complete reference! |
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
| #!/bin/bash | |
| # from https://www.howtoforge.com/tutorial/vagrant-ubuntu-linux-apache-mysql-php-lamp/ | |
| # Update Repo | |
| sudo apt-get -y update | |
| # Install Apache | |
| sudo apt-get -y install apache2 | |
| # Install MySQL |
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
| #!/usr/bin/python | |
| ''' | |
| Computer Club of WMU Markdown Publishing System | |
| by cpg | |
| This is a module that can be used to process any computer club documentation | |
| from markdown to one of the following formats: | |
| - HTML with simple, built-in CSS | |
| - Plain HTML |
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
| " Basic Settings | |
| set shell=bash | |
| filetype plugin indent off | |
| " Plugins Through VimPlug | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'scrooloose/nerdtree' |
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
| # SSH Convenience Aliases | |
| alias cclub="ssh [email protected] -t 'tmux attach -d'" | |
| alias home="ssh [email protected]" | |
| alias home-admin="ssh [email protected]" | |
| alias testvm="ssh -p 2222 localhost" | |
| alias flayground="ssh [email protected]" | |
| # Program aliases | |
| alias subl="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl" | |
| alias l="ls -la" |
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
| CREATE TABLE participants ( | |
| first_name varchar(100) NOT NULL, | |
| last_name varchar(200) NOT NULL, | |
| email varchar(200) NOT NULL, | |
| nick varchar(50) NOT NULL, # PLAN nick to use as a primary key. For cclub members, this should be their cclub nick | |
| ccawmu_user varchar(50), # If the participant is a cclub member, their ldap name goes here. | |
| terms boolean NOT NULL, | |
| PRIMARY KEY (email) | |
| ); |
NewerOlder