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:
I hereby claim:
To claim this, I am signing this object:
| #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; |
| #!/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 |
| # 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. | |
| # |
| # 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" |
| # 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 |
| 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] |
| # |<---- 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 |
| /************************************************************************ | |
| Program: | |
| Author: | |
| Class: | |
| Instructor: | |
| Date: | |
| Description: | |
| Input: | |
| Output: | |
| Known bugs: |
| #!/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/firmware/utility/-/raw/master/coreboot_util.sh -O coreboot_util.sh |