Skip to content

Instantly share code, notes, and snippets.

View JasonC761's full-sized avatar
💭
Trying To Make A Difference

SavvyJC JasonC761

💭
Trying To Make A Difference
View GitHub Profile
@bbqsrc
bbqsrc / google-unmangler.user.js
Created January 21, 2012 02:56
Google Search Unmangler - Greasemonkey Script
// ==UserScript==
// @name Google Search Unmangler
// @namespace ScrewGoogle
// @description Unmangle Google Search URLs
// @include http://google.tld/*
// @include http://www.google.tld/*
// ==/UserScript==
var ScrewGoogle = {};
@jramb
jramb / install-coffee-script.txt
Created February 2, 2012 19:56
Installing Coffee-script on Ubuntu
# install (old) nodejs package and npm
$ sudo apt-get install nodejs npm
# install coffee-script (globally)
$ sudo npm install -g coffee-script
@riipandi
riipandi / linux-cmd-cheatsheet.md
Created July 12, 2012 12:16
Linux Command Cheat Sheet

#Linux Cheat Sheet

##File Commands:

  • ls – directory listing
  • ls -al – formatted listing with hidden files
  • cd dir - change directory to dir
  • cd – change to home
  • pwd – show current directory
  • mkdir dir – create a directory dir
  • rm file – delete file
#!/bin/bash
iatest=$(expr index "$-" i)
#######################################################
# SOURCED ALIAS'S AND SCRIPTS BY zachbrowne.me
#######################################################
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
@GabrielMMelo
GabrielMMelo / sudo-termux
Created January 22, 2019 12:33
Install sudo in Termux (Android)
apt install git
git clone https://gitlab.com/st42/termux-sudo
cd termux-sudo
cat sudo > /data/data/com.termux/files/usr/bin/sudo
chmod 700 /data/data/com.termux/files/usr/bin/sudo
@wiccy46
wiccy46 / terminal.md
Last active February 6, 2024 17:36
[terminal] Terminal Cheatsheet #terminal

Windows list all files recursively

dir /a-D /S /B your_dir(orLeaveEmpty)

Unix list all files recursively

find your_dir -print -ls

Monitor process verbose

journalctl -fu process_name -fu follows the stdout.

@peteristhegreat
peteristhegreat / Readme.md
Last active February 7, 2024 19:13
NVM Windows, NodeJS, VSCode, Instructions

Nice to haves for the command prompt

pmify.com/choco

chocolatey => choco
clink => bash readline and history baked into CMD
gow => ls, grep and other nice bash tools aka "GNU on Windows"

Install with Chocolatey

@superjojo140
superjojo140 / git-ftp-cheatsheet.md
Last active February 8, 2024 12:49
Git-ftp cheatsheet (with auto tags)
@Edric1998
Edric1998 / gist:ddcbbc3743e68700ae9933b20af73914
Created September 14, 2022 22:52
Office 2021 Pro Plus Product Key
Free Office 2021 Pro Plus Product Key
GTGNV-Q7PCT-Q4TY2-J46CB-HVB28
W9NMP-YYYHJ-K7H94-P7VCF-8B7GW
BHHVN-JXRMV-MD89D-HHFFQ-9D89J
NPPRW-TJM2B-KQ98Y-DVCKH-KHK6W
J3CTN-WDYDH-68X68-JCJ62-76FP8
JJ6JN-BVRPW-67V9T-T7BFX-Y7W9J
KNDMK-WK8G7-4C76D-V2KWX-2YWC8
WYNCP-JV7FV-DB8F7-JJ8MH-8HW9J
M8TMP-Q7NBJ-VR8PV-9M96M-QJ4P8
@coreybutler
coreybutler / main.go
Created August 12, 2023 20:38 — forked from KatelynHaworth/main.go
Example of run an interactive process on the current user from system service on windows (Golang)
package main
import (
"github.com/kardianos/service"
"log"
"flag"
)
type Service struct {}