This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Get list of files from input directory | |
files=("$(ls input)") | |
# Output extension | |
outType=".mp4" | |
# Iterate over files | |
for file in $files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CMake file for Vulkan Tutorial | |
# by Shelby Jueden (AkBKukU) | |
cmake_minimum_required(VERSION 3.1) | |
project(VKDemo) | |
# Set the name of the ouput binary | |
set( | |
BIN_NAME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* -------------- MultiLEDPWM -------------- *\ | |
| By: Shelby Jueden | | |
| Date: 2016-05-06 | | |
| | | |
| Description: This is a software PWM Library | | |
| that has 4 animations and a cycling mode. | | |
| It's designed to be used with a line of | | |
| LEDs. | | |
\*-------------------------------------------*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
MAXVOL=40 | |
MAXMICVOL=25 | |
SINKAPP="mpd" | |
readfile=true | |
if [ "d$1" != "d" ] | |
then | |
MAXVOL=$1 | |
echo "$MAXVOL" > ~/.maxvol |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage | |
# | |
# run `gethub githubuser/repo` | |
# example `gethub github/markup` | |
pName=$1 |
NewerOlder