Skip to content

Instantly share code, notes, and snippets.

View dgentry's full-sized avatar

Dennis Gentry dgentry

  • San Francisco Bay Area
View GitHub Profile
@garrettjoecox
garrettjoecox / instructions.md
Last active October 1, 2023 21:49
Make windows 10 suck less

Windows 10 not suck mode

This guide is currently updated for Windows 10 2021 LTSC (21H2)

Installation

  • Create a bootable USB thumb drive (Windows 10 X64 Enterprise LTSC 2021 ESD MULTi-6 JAN 2022 {Gen2} on pirate bay)
  • Boot computer onto drive
  • Press Install Now
  • Choose "Custom: Install Windows only"
@bueckl
bueckl / wget
Last active October 11, 2023 08:05
Wget examples
#Spider Websites with Wget – 20 Practical Examples
Wget is extremely powerful, but like with most other command line programs, the plethora of options it supports can be intimidating to new users. Thus what we have here are a collection of wget commands that you can use to accomplish common tasks from downloading single files to mirroring entire websites. It will help if you can read through the wget manual but for the busy souls, these commands are ready to execute.
1. Download a single file from the Internet
wget http://example.com/file.iso
2. Download a file but save it locally under a different name
wget ‐‐output-document=filename.html example.com
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream