Skip to content

Instantly share code, notes, and snippets.

@darcyparker
darcyparker / installNeovim.sh
Last active January 13, 2024 04:28
Build and install neovim for Debian
#!/usr/bin/env bash
#Build and install neovim for Debian
#See: https://neovim.io/
#See: https://github.com/neovim/neovim/wiki/Building-Neovim#quick-start
#See: https://gist.github.com/darcyparker/153124662b05c679c417
#Save current dir
pushd . > /dev/null || exit
@darcyparker
darcyparker / installAcer720CTouchPadDriver.sh
Last active March 20, 2020 01:08
Install ChromiumOS touchpad driver for linux chroot (crouton) on Acer C720C chromebook. This makes the touchpad behave and respond like it does in ChromeOS.
#!/usr/bin/env bash
#Install ChromiumOS touchpad driver for linux chroot (crouton) on Acer C720P (Peppy) Chromebook.
#This makes the touchpad behave and respond like it does in ChromeOS.
#See: https://github.com/hugegreenbug/xf86-input-cmt/issues/6
#I posted a note about this script in: https://groups.google.com/forum/#!topic/crouton-central/claM9XZxsz0
#and https://github.com/dnschneid/crouton/wiki/Acer-C720-C720P#touchpad
#After creating/installing this driver, look at:
#https://github.com/hugegreenbug/xf86-input-cmt#notes
@darcyparker
darcyparker / Resume_DarcyParker.md
Last active May 26, 2023 21:01
Resume: Darcy Parker
@darcyparker
darcyparker / gitgrepall
Last active June 6, 2018 17:47
git grep for a git repo and its submodules
#!/usr/bin/env bash
# Author: darcyparker@gmail.com
# Repo: https://gist.github.com/darcyparker/d5b9168ada88d0527564a11d9d9899c4
# Description:
# * git grep for the repo and its submodules.
# * greps into submodules recrusively
# * Output includes full relative path from the top level repo to files with matches
# * Output is formatted with line number, and column number of matched
# Usage:
# gitgrep "some string"