Skip to content

Instantly share code, notes, and snippets.

@WhiteBoardDev
WhiteBoardDev / downsize_audio.py
Created September 30, 2021 04:42
Music Conversion
import os
from multiprocessing import Pool
rootDir = '/starting_dir'
output = rootDir + '/downsided'
fileTypes = ['wav','mp3', 'flac']
if not os.path.exists(output):
os.mkdir(output)

Working plan for sharpening programming skills

Methods to Learning

Collaboration

Pair program with other developers X times per week for N minutes per session. The intent of pair programming is to discover day to day coding practices from others. Makes notes about confusing parts and be sure to look them up later.

Unit Testing

Keybase proof

I hereby claim:

  • I am whiteboarddev on github.
  • I am evanharris (https://keybase.io/evanharris) on keybase.
  • I have a public key ASDPU9lXoFfN32mzqY4n_qRsQ6cokx1b3VB18_PRrBpVyAo

To claim this, I am signing this object:

import copy
class Part:
part_id = 0
description = 0
level = 0
class PartRelationship:
part_id = 0
parent_part_id = 0
@WhiteBoardDev
WhiteBoardDev / create_linux_usb.sh
Last active December 20, 2016 03:24
OSX USB Linux Install Disk Creator
#!/bin/bash
echo "##################################"
echo "##"
echo "## Linux bootable USB creator"
echo "## for OSX"
echo "##"
echo "## Needed to run"
echo "## 1. ISO file for the operating system you want to burn to the USB"
echo "##################################"
@WhiteBoardDev
WhiteBoardDev / https_protocol_support.sh
Last active August 31, 2016 00:32
Show supported HTTPS protocols
nmap --script ssl-cert,ssl-enum-ciphers -p 443 www.example.com