Skip to content

Instantly share code, notes, and snippets.

View alsoknownasdrew's full-sized avatar
:octocat:
Post-rockstar developer

Andriy alsoknownasdrew

:octocat:
Post-rockstar developer
View GitHub Profile
@ishu3101
ishu3101 / reset-wsl.sh
Created July 22, 2016 23:38
Resetting your Windows Subsystem for Linux (WSL) Environment
# Resetting your Windows Subsystem for Linux (WSL) Environment
lxrun.exe /uninstall /full
lxrun.exe /install
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 22, 2024 02:29
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@interfeis
interfeis / module.js
Created July 2, 2012 16:31
jQuery module pattern boilerplate
var clientName = window.clientName || {};
(function ($, context) {
// Add the global variables used across the module
var vars = {
variable2 : "test"
};
/*