Intended for embedded voice recordings in powerpoint presentations. Run it with a shell script (zsh) using common binaries
This script invoked via:
./ppt2aac.sh
#!/bin/sh | |
gs \ | |
-sDEVICE=pdfwrite \ | |
-dCompatibilityLevel=1.4 \ | |
-dPDFSETTINGS=/ebook \ | |
-dEmbedAllFonts=true \ | |
-dSubsetFonts=false \ | |
-dNOPAUSE \ | |
-dQUIET \ | |
-dBATCH \ |
Installing node through Homebrew can cause problems with npm for globally installed packages. To fix it quickly, use the solution below. An explanation is also included at the end of this document.
This solution fixes the error caused by trying to run npm update npm -g
. Once you're finished, you also won't need to use sudo
to install npm modules globally.
Before you start, make a note of any globally installed npm packages. These instructions will have you remove all of those packages. After you're finished you'll need to re-install them.
Wyrażam zgodę na przetwarzanie moich danych osobowych w celu rekrutacji zgodnie z art. 6 ust. 1 lit. a Rozporządzenia Parlamentu Europejskiego i Rady (UE) 2016/679 z dnia 27 kwietnia 2016 r. w sprawie ochrony osób fizycznych w związku z przetwarzaniem danych osobowych i w sprawie swobodnego przepływu takich danych oraz uchylenia dyrektywy 95/46/WE (ogólne rozporządzenie o ochronie danych)
I hereby give consent for my personal data included in my application to be processed for the purposes of the recruitment process under the European Parliament's and Council of the European Union Regulation on the Protection of Natural Persons as of 27 April 2016, with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95/46/EC (Data Protection Directive)
/** | |
* Simple localStorage with Cookie Fallback | |
* v.1.0.0 | |
* | |
* USAGE: | |
* ---------------------------------------- | |
* Set New / Modify: | |
* store('my_key', 'some_value'); | |
* | |
* Retrieve: |
#!/bin/sh | |
# This was specially created for 1 Second Everyday Android App output | |
# This takes individual 'second' clips from files, applies date on them and outputs the merged video | |
# For this to run properly you need to have ffmpeg --with-libfreetype installed | |
# run this script in a main directory in which the subdirectories are like ./20180302/clip.mp4 | |
# Created on 29/04/2018 by Zachary Milonas | |
RESTORE=$(echo '\033[0m') | |
GREEN=$(echo '\033[00;32m') | |
LBLUE=$(echo '\033[01;34m') |
#!/bin/sh | |
# This was specially created for 1 Second Everyday Android App output | |
# This takes individual 'second' clips from files, applies date on them and outputs the merged video | |
# For this to run properly you need to have ffmpeg --with-libfreetype installed | |
# run this script in a main directory in which the subdirectories are like ./20180302/clip.mp4 | |
# Created on 29/04/2018 by Zachary Milonas | |
RESTORE=$(echo '\033[0m') | |
GREEN=$(echo '\033[00;32m') | |
LBLUE=$(echo '\033[01;34m') |