Skip to content

Instantly share code, notes, and snippets.

View WillSams's full-sized avatar
🚀

Will Sams WillSams

🚀
View GitHub Profile
$ sudo add-apt-repository ppa:mmk2410/intellij-idea-community
$ sudo apt-get update
$ sudo apt-get install intellij-idea-community
$ sudo apt-get install maven -y
$ mvn -version #test
#Note: Maven is installed to /usr/share/maven
# Maven's configuration is found in /etc/maven
@WillSams
WillSams / SMBDIS.ASM
Last active May 29, 2017 23:38 — forked from 1wErt3r/SMBDIS.ASM
A Comprehensive Super Mario Bros. Disassembly
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY
;by doppelganger (doppelheathen@gmail.com)
;This file is provided for your own use as-is. It will require the character rom data
;and an iNES file header to get it to work.
;There are so many people I have to thank for this, that taking all the credit for
;myself would be an unforgivable act of arrogance. Without their help this would
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no
@WillSams
WillSams / Makefile
Created May 30, 2017 00:45
Makefile used for SMB 1 Disassembly
AS = ca65
LD = ld65
OBJDUMP = od65
DEBUGGER = mednafen
OBJS=smb.o
ROM = smb
BIN = $(ROM).nes
@WillSams
WillSams / SantoshiMatrixTop100NESGames.txt
Last active June 5, 2017 23:29
Santoshi Matrix's Top 100 NES Games
Putting these here because that site is a nightmare to load. xxxx denotes games in my collection.
xxxx#100 Duck Hunt $2-4
#99 Battle City $4-8
#98 Xexyz $4-8
#97 Popeye $6-12
xxxx#96 StarTropics $4-6
xxxx#95 Abadox: The Deadly Inner War $2-6
xxxx#94 Golgo 13 Top Secret Episode $4-6
#93 Bio Force Ape; price of a reproduction
@WillSams
WillSams / nfs_instructions
Last active February 19, 2018 01:33
NFS Setup on Linux For XBox One Kodi
#note: Kodi on Xbox One only sees it via the IP so just search available NFS servers instead of searching via hostname
sudo su
apt install nfs-kernel-server
cat > /etc/exports << EOF
/<path to music>/ 192.168.1.0/24(rw,sync,no_subtree_check)
/<path to movies>/ 192.168.1.0/24(rw,sync,no_subtree_check)
/<path to tv>/ 192.168.1.0/24(rw,sync,no_subtree_check)
EOF
@WillSams
WillSams / Example.js
Created April 26, 2018 20:12
React-Wysiwyg via extend React.Component
var React = require('react')
var ReactDOM = require('react-dom')
var ContentEditable = require('react-wysiwyg')
class Example extends React.Component {
constructor(props){
super(props)
this.state = {
text: '',
editing: false
@WillSams
WillSams / linux-devel-setup.sh
Last active January 25, 2019 23:33
NodeJS, Ruby, and .NET install script for Ubuntu 18.04 'bionic'
#!/bin/bash
# The 'get you set up w/ NodeJS, Ruby, and .NET on Linux' script
#
# Pre-req: Ubuntu Bionic (18.04) desktop or server
#
# Note: This script makes a few assumptions for you:
# 1) If you don't have RVM and Ruby installed, this script will download and source it for you.
# DO NOT EXECUTE this script if you already have Ruby installed and not currently using RVM.
# 2) If you don't have a ~/.npm-global available, this script will create it for you.
@WillSams
WillSams / nginx-keystone.sh
Last active January 25, 2019 23:46
Install script for Nginx & Keystone JS for Ubuntu 18.04 'bionic'
#!/bin/bash
# Nginx installer script - Keystone JS example
#
# Pre-req:
# * Ubuntu Bionic (18.04) flavored distro
# * Script must be executed under the account of the web admininstrator
# * linux-devel-setup.sh - https://gist.github.com/WillSams/f17427b5a4f5bccc23d6efe1389b33ca
# * mongodb-setup.sh - https://gist.github.com/WillSams/3588b69c805acf07ccb278c55fd91302
@WillSams
WillSams / nginx-grandnode.sh
Last active January 25, 2019 23:51
Install script for Nginx & GrandNode .NET for Ubuntu 18.04 'bionic'
#!/bin/bash
# Nginx installer script - Grandnode.NET example
#
# Pre-req:
# * Ubuntu Bionic (18.04) flavored distro
# * Script must be executed under the account of the web admininstrator
# * linux-devel-setup.sh - https://gist.github.com/WillSams/f17427b5a4f5bccc23d6efe1389b33ca
# * mongodb-setup.sh - https://gist.github.com/WillSams/3588b69c805acf07ccb278c55fd91302
#
@WillSams
WillSams / apache7_extras_install.sh
Last active January 28, 2019 16:59
Apache7 Examples/Admin Install
#!/bin/bash
echo "***************** Apache7 Examples/Admin Install *****************"
echo "You may be prompted for root credentials to complete the install."
echo "******************************************************************"
__ScriptVersion="2015.02.24-Debian"
__ScriptName="apache7_extras_install.sh"
__ScriptFullName="$0"