Skip to content

Instantly share code, notes, and snippets.

View jaybarnes's full-sized avatar
🐤
he just doin he thang

Jay Barnes jaybarnes

🐤
he just doin he thang
  • Scenic New Jersey
View GitHub Profile
@torresashjian
torresashjian / linux-ubuntu-install-wifi-drivers
Last active August 8, 2026 11:29
How to install Broadcom bcm43602 Drivers on Ubuntu Linux
sudo apt-get purge bcmwl-kernel-source
sudo apt update
sudo update-pciids
sudo apt install firmware-b43-installer
sudo reboot #note that this will restart your computer
sudo iwconfig wlp3s0 txpower 10dBm
#sudo iwconfig wlp2s0 txpower 10dBm
@cliss
cliss / Brewfile
Last active April 30, 2026 23:00
Casey Liss's Brewfile, as of 31 October 2021
cask_args appdir: "/Applications"
tap "homebrew/cask-fonts"
brew "mas"
#### LAPTOPS ####
#cask "tripmode"
#### LAPTOPS ####
mas "Boop", id: 1518425043
@oubiwann
oubiwann / appify.sh
Last active August 6, 2026 06:58 — forked from advorak/appify.sh
appify — create the simplest possible Mac app from a shell script (adds an application icon)
#!/usr/bin/env bash
#
# appify — create the simplest possible Mac app from a shell script
#
# v5.0.0
#
# Copyright (c) Thomas Aylott <http://subtlegradient.com/>
# Modified by Mathias Bynens <http://mathiasbynens.be/>
# Modified by Andrew Dvorak <http://OhReally.net/>
# Rewritten by Duncan McGreggor <http://github.com/oubiwann/>
@claymcleod
claymcleod / pycurses.py
Last active July 31, 2026 02:38
Python curses example
import sys,os
import curses
def draw_menu(stdscr):
k = 0
cursor_x = 0
cursor_y = 0
# Clear and refresh the screen for a blank canvas
stdscr.clear()