Skip to content

Instantly share code, notes, and snippets.

View rowland007's full-sized avatar
📚
Working on school work

Randy Rowland rowland007

📚
Working on school work
View GitHub Profile
@rowland007
rowland007 / keybase.md
Created April 24, 2017 03:32
Keybase proof of identity

Keybase proof

I hereby claim:

  • I am rowland007 on github.
  • I am randarxj7 (https://keybase.io/randarxj7) on keybase.
  • I have a public key whose fingerprint is 4128 C6D5 60D7 8AD3 AB94 03C6 86ED DAD3 8ACD 28A5

To claim this, I am signing this object:

@rowland007
rowland007 / user-coding-launcher.desktop
Created August 3, 2017 05:02
Custom Unity program launcher for development applications
#Place in /home/$USER/.local/share/applications/
[Desktop Entry]
Type=Application
Name=Developer Menu
Comment=A menu of IDEs
Exec=
Icon=/usr/share/icons/hicolor/512x512/apps/code-512.png
Terminal=false
Categories=Development;IDE;
@rowland007
rowland007 / facebook.desktop
Last active February 3, 2019 00:59
A desktop file that will open Google Chrome straight to Facebook and not allow other tabs
#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Terminal=false
Type=Application
Name=Facebook
Exec=/opt/google/chrome/google-chrome --profile-directory=Default --app=https://facebook.com/
Icon=/home/user/.local/share/images/fb.jpg
NoDisplay=true
StartupWMClass=chrome_facebook
@rowland007
rowland007 / 99-ironkey.rules
Last active December 29, 2017 15:10
Linux udev rules for ironkey usb devices
# place in /etc/udev/rules.d/
# udev rules for setting up symbolic links for ironkeys
# These create links like:
# /dev/ikgeneric-0
# /dev/ikgeneric-1
# for generic devices associated with plugged in IronKeys.
# A console rules file can use these to give console users
# permission to access the IronKeys.
#
@rowland007
rowland007 / 51-usb-keepkey.rules
Created December 29, 2017 15:12
Linux udev rules for the KeepKey bitcoin wallet
# KeepKey: A Private Bitcoin Vault
# http://www.keepkey.com/
# Put this file into /usr/lib/udev/rules.d or /etc/udev/rules.d
SUBSYSTEM=="usb", ATTR{idVendor}=="2b24", ATTR{idProduct}=="0001", MODE="0666", GROUP="dialout", SYMLINK+="keepkey%n"
KERNEL=="hidraw*", ATTRS{idVendor}=="2b24", ATTRS{idProduct}=="0001", MODE="0666", GROUP="dialout"
@rowland007
rowland007 / 51-android.rules
Created December 29, 2017 15:14
Linux udev rules for android devices
# These rules refer: https://developer.android.com/studio/run/device.html
# and include many suggestions from Arch Linux, GitHub and other Communities.
# Latest version can be found at: https://github.com/M0Rf30/android-udev-rules
# Skip this section below if this device is not connected by USB
SUBSYSTEM!="usb", GOTO="android_usb_rules_end"
LABEL="android_usb_rules_begin"
# Devices listed here in android_usb_rules_{begin...end} are connected by USB
# Acer
@rowland007
rowland007 / openpgp.txt
Created January 7, 2018 13:45
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:4128c6d560d78ad3ab9403c686eddad38acd28a5]
@rowland007
rowland007 / git-message-template
Last active January 27, 2019 06:28
git message template
# |<---- Using a Maximum Of 50 Characters ---->|
# Explain why this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# Provide links or keys to any relevant tickets, articles or other
# resources
# Example
# Resolves: issue #23
@rowland007
rowland007 / Source-Header Template
Last active February 3, 2019 00:54
Template used at the top of header and source files
/************************************************************************
Program:
Author:
Class:
Instructor:
Date:
Description:
Input:
Output:
Known bugs:
@rowland007
rowland007 / coreboot-files.sh
Last active November 10, 2022 18:37
Building coreboot from source
#!/bin/bash -e
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
apt update; apt upgrade -y; apt autoclean -y; apt autoremove
apt install -y git build-essential bison flex m4 zlib1g-dev gnat libpci-dev libusb-dev libusb-1.0-0-dev pv dmidecode bsdiff python2.7
mkdir ~/updates && cd ~/updates && wget https://source.puri.sm/coreboot/utility/raw/master/coreboot_util.sh -O coreboot_util.sh