Skip to content

Instantly share code, notes, and snippets.

View SethCalkins's full-sized avatar

Seth Calkins SethCalkins

View GitHub Profile
@SethCalkins
SethCalkins / index.html
Created June 19, 2017 20:31
Nested table solution
<div class="container">
<table class="accordion-table">
<thead>
<tr>
<th class="expand"></th>
<th>Package No.</th>
<th>Weight (lbs)</th>
<th>Dimensions (in)</th>
<th>Value (USD)</th>
@SethCalkins
SethCalkins / MacifyWindows10.txt
Created April 12, 2017 00:03 — forked from Griffingj/MacifyWindows10.txt
Macify Windows 10
// Set the horiztal and vertial scrolling to inverse of Windows  
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 }
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopHScroll -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopHScroll 1 }
// Install Scoop Package Manager
set-executionpolicy unrestricted -s cu
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
scoop install curl 7zip git grep touch pshazz openssh
<#
This is a helpful script that will remove the default Windows 10 garbage from your computer
* Comment out any apps that you might want to keep
* Don't forget to run as admin
#>
# 3d Builder
@SethCalkins
SethCalkins / starter.cmd
Created April 12, 2017 00:02 — forked from jamesrcounts/starter.txt
Boxstarter: Windows 10
# http://boxstarter.org/package/url?
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
choco install googlechrome
choco install sublimetext3
choco install console2
choco install git.install -params '"/GitOnlyOnPath /NoAutoCrlf"'
choco install git-credential-winstore
choco install poshgit
choco install beyondcompare
@SethCalkins
SethCalkins / wifipass.bat
Created April 12, 2017 00:02 — forked from matejskubic/wifipass.bat
Windows 10 WiFi password
netsh wlan show profiles
netsh wlan show profiles name="%1" key=clear
@SethCalkins
SethCalkins / crack_rec.md
Last active March 30, 2017 09:35
OSX Software
一Software Crack Method
  1. Locate the corresponding version of the command
    1. Open a terminal or iterm2
  2. Close the software
  3. Run
  4. Reopen Software
Sublime Text

| Version | Command |

@SethCalkins
SethCalkins / DockerFix.md
Created January 31, 2017 14:16
Fix for macOS 10.12 Docker Start Problem w/ Helper

sudo launchctl load -wF /Library/LaunchDaemons/com.docker.vmnetd.plist

/Applications/Chatology.app/Contents/MacOS/Chatology:	file format Mach-O 64-bit x86-64

Mach header
      magic cputype cpusubtype  caps    filetype ncmds sizeofcmds      flags
MH_MAGIC_64  X86_64        ALL LIB64     EXECUTE    38       5032   NOUNDEFS DYLDLINK TWOLEVEL PIE
Load command 0
      cmd LC_SEGMENT_64
  cmdsize 72
@SethCalkins
SethCalkins / Requirements.md
Created October 13, 2016 19:02 — forked from corburn/Requirements.md
Requirements Document

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.

SHALL follow the semantic versioning rules as layed out in the Semantic Versioning Specification version 2.0.0 SEMVER.

@SethCalkins
SethCalkins / 0_reuse_code.js
Created August 23, 2016 22:51
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console