Skip to content

Instantly share code, notes, and snippets.

View bjackerman's full-sized avatar
⚙️
Finding ways to automate the smallest of personal tasks

Brian Ackerman bjackerman

⚙️
Finding ways to automate the smallest of personal tasks
View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Brian Ackerman",
"label": "",
"image": "",
"email": "[email protected]",
"phone": "(623) 261-9455",
"summary": "",
"location": {
@bjackerman
bjackerman / quickpic.sh
Created August 19, 2022 06:34
Take a picture using the attached USB webcam in full 1080 resolution, exposing and averaging 10 shots to get more light in my dime office, names file the timestamp and if taking multiple per minute, add a counter $1
#!/bin/bash
DATE=$(date +"%Y-%m-%d_%H%M")
if [ -z "$1" ]
then
fswebcam -S 20 -F 10 -r 1920x1080 --no-banner /home/brian/webcam/$DATE.jpg
fi
if ["$1" ]