Skip to content

Instantly share code, notes, and snippets.

View JeffLabonte's full-sized avatar
:octocat:

Jeff Labonte JeffLabonte

:octocat:
View GitHub Profile
@JeffLabonte
JeffLabonte / install_neovim.sh
Created July 7, 2022 17:10 — forked from strobelt/install_neovim.sh
Install latest NeoVim in Debian
# Download latest NeoVim .deb package from GitHub using GH API
wget -o nvim.deb \
$(curl -s 'https://api.github.com/repos/neovim/neovim/releases/latest' \
| jq -r '.assets|.[]|select(.content_type == "application/x-debian-package")|.browser_download_url')
# Install .deb
sudo dpkg -i nvim.deb
# Clean up
rm -f nvim.deb
@JeffLabonte
JeffLabonte / .tmux.conf
Created April 26, 2022 17:41
tmux.conf
# cat << EOF > /dev/null
# https://github.com/gpakosz/.tmux
# (‑●‑●)> dual licensed under the WTFPL v2 license and the MIT license,
# without any warranty.
# Copyright 2012— Gregory Pakosz (@gpakosz).
# /!\ do not edit this file
# instead, override settings in ~/.tmux.conf.local, see README.md
# -- general -------------------------------------------------------------------
@font-face { font-family: "RobotoMono Nerd Font"; font-style: normal; font-weight: 200; src: url(https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/RobotoMono/Light/complete/Roboto%20Mono%20Light%20Nerd%20Font%20Complete.ttf?raw=true); } @font-face { font-family: "RobotoMono Nerd Font"; font-style: normal; font-weight: 400; src: url(https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/RobotoMono/Light/complete/Roboto%20Mono%20Light%20Nerd%20Font%20Complete.ttf?raw=true); } @font-face { font-family: "RobotoMono Nerd Font"; font-weight: 600; src: url(https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/RobotoMono/Light/complete/Roboto%20Mono%20Light%20Nerd%20Font%20Complete.ttf?raw=true); } @font-face { font-family: "RobotoMono Nerd Font"; font-weight: 800; src: url(https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/RobotoMono/Light/complete/Roboto%20Mono%20Light%20Nerd%20Font%20Complete.ttf?raw=true)
@JeffLabonte
JeffLabonte / hack-nerd.css
Created September 13, 2021 17:16 — forked from epikurus/hack-nerd.css
Hack Nerd Font for Blink app
This file has been truncated, but you can view the full file.
@font-face {
font-family: "Hack Nerd Font";
font-style: normal;
font-weight: 400;
src: url(data:font/ttf;charset-utf-8;base64,AAEAAAAVAQAABABQRFNJRwAAAAEAGpPgAAAACEZGVE2IbN28AAABXAAAABxHREVGCAscTwAAAXgAAAA2R1BPU7j/uP4AAAGwAAAAMEdTVUKOSQu5AAAB4AAABTpPUy8yKk0o+QAABxwAAABgUGZFZKg1fQEAAAd8AAACUFRURkHzRBYUABqOgAAABV1jbWFw7+BWQwAACcwAAAe+Y3Z0IMstHXAAGn8gAAABDGZwZ202t5w2ABqALAAADXZnYXNwAAAAEAAafxgAAAAIZ2x5ZheyDUcAABGMABicoGhlYWQXBXajABiuLAAAADZoaGVhD/MQGAAYrmQAAAAkaG10eP9jDlMAGK6IAABSVGxvY2EEQuX4ABkA3AAAUlhtYXhwHhSrRAAZUzQAAAAgbmFtZUTAHWcAGVNUAAAzyXBvc3TC0Kg4ABmHIAAA9/hwcmVwnZ+J2AAajaQAAADcAAAAAQAAAADZD7KOAAAAANYTwoAAAAAA2UlorQABAAAADAAAAC4AAAACAAUAAQB9AAEAfgCAAAIAgQNYAAEDWQNkAAIDZRSUAAEABAAAAAIAAAAAAAEAAAAKACwALgACREZMVAAObGF0bgAYAAQAAAAA//8AAAAEAAAAAP//AAAAAAAAAAEAAAAKAHgBIgACREZMVAAObGF0bgAkAAQAAAAA//8ABgAAAAEABQAHAAkACwAQAAJNT0wgACJST00gADYAAP//AAYAAAACAAYACAAKAAwAAP//AAcAAAACAAMABgAIAAoADAAA//8ABwAAAAIABAAGAAgACgAMAA1hYWx0AFBmcmFjAFhmcmFjAF5sb2NsAGZsb2NsAGxvcmRuAHJvcmRuAHhzaW5mAIBzaW5mAIZzdWJzAI
@JeffLabonte
JeffLabonte / output.log
Created April 29, 2021 03:27
OSC Build System76-acpi-dkms
Building system76-acpi-dkms.spec for openSUSE_Tumbleweed/x86_64
Getting buildconfig from server and store to /home/jflabonte/Development/home:jefflabonte/system76-acpi-dkms/.osc/_buildconfig-openSUSE_Tumbleweed-x86_64
Getting buildinfo from server and store to /home/jflabonte/Development/home:jefflabonte/system76-acpi-dkms/.osc/_buildinfo-openSUSE_Tumbleweed-x86_64.xml
Updating cache of required packages
0.0% cache miss. 157/157 dependencies cached.
Verifying integrity of cached packages
using keys from openSUSE:Tumbleweed
Writing build configuration
Running build
@JeffLabonte
JeffLabonte / doom.txt
Created February 12, 2021 17:32 — forked from hjertnes/doom.txt
Doom Emacs Cheatsheet
SPC
SPC: find file
, switch buffer
. browse files
: MX
; EX
< switch buffer
` eval
u universal arg
x pop up scratch
@JeffLabonte
JeffLabonte / update_alternative_py3.sh
Created September 13, 2020 19:52
How to set your python interpreter with debian `update-alternatives`
# Arguments rundown:
# 1 -> The symbolic link that will be created
# 2 -> the name of the alternative, in this case python
# 3 -> The executable that you want to link ( Argument #1 )
# 4 -> The priority of this alternative
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1
@JeffLabonte
JeffLabonte / results.txt
Last active July 29, 2020 21:04
List vs Set Python3.8 on Ubuntu 20.04 (Pop!_OS 20.04)
**********************************
Starting Set TEST with 10 values
Set took: 0.04215108300559223s
Starting List TEST with 10 values
List took: 0.08148651605006307s
**********************************
**********************************
Starting Set TEST with 20 values
@JeffLabonte
JeffLabonte / ca.conf
Created January 14, 2020 20:48
Scripts used to create registry using a self-signed certificate
[req]
distinguished_name = req_distinguished_name
req_extensions = v3_req
x509_extensions = v3_ca
prompt = no
[req_distinguished_name]
C = CA
ST = Chemin Ste-Foy
L = Quebec city
O = registry.local
@JeffLabonte
JeffLabonte / link.md
Created January 9, 2020 16:09
This is a link to a tutorial on how to build ARM from a x86_64