Mount FTP Drive on Ubuntu that’s Anonymous

$ apt-get install curlftpfs
$ sudo /mnt/HS-DHGLF7B

Change the permissions for everyone to add/update/delete

The following command will mount it:
$ sudo curlftpfs -o allow_other 192.168.1.14 /mnt/HS-DHGLF7B/

This is for an FTP with a user account:
$ curlftpfs ftp-user:ftp-pass@my-ftp-location.local /mnt/my_ftp/

Ubuntu Audio-Recorder

Installation

Refer: https://launchpad.net/~osmoma/+archive/ubuntu/audio-recorder

$ sudo add-apt-repository ppa:osmoma/audio-recorder
$ sudo apt-get update
$ sudo apt-get install audio-recorder

User the "Built-in Audio Analog Stereo (Audio output) for Source to record from browser and you can also choose VLC, for example, to record from an application.

Also make sure to go into additional settings to change your target output folder.

 

 

Macbook Show/Hide Hidden Files

Open the Terminal application in your Utilities folder.  At the prompt enter or paste the following command line then press RETURN.

$ defaults write com.apple.finder AppleShowAllFiles TRUE
$ killall Finder

To turn off the display of invisible files and folders enter or paste the following command line and press RETURN.

$ defaults write com.apple.finder AppleShowAllFiles FALSE
$ killall Finder

SNES ROM(s) and Installing Joystick

Install through the software center "higan"

Calibarate the settings for a Gravis GamePad Pro
Settings, Configuration
"Super Famicon", go through all the Key Combinations

Refer: http://airbornesurfer.com/2015/04/how-to-setup-a-generic-joystick-or-gamepad-in-ubuntu-linux/

$ sudo apt-get install joystick
$ sudo apt-get install jstest-gtk

See if it's calibibrated properly
$ jstest-gtk

AngularJS Sample Build Project

Refer: https://github.com/jhades/angularjs-gulp-example/blob/master/gulpfile.js
Note: list folder has wrong relative file paths

Refer: http://blog.angular-university.io/what-every-angular-project-likely-needs-and-a-gulp-build-to-provide-it/