Try New Technology

Author Archive

Linux: Batch rename to remove # leading characters from files of a certain type

by on Apr.12, 2015, under Techie

If you have a bunch of files like:

$ ls /home/me/Desktop/Music/
0001 – File1.mp3
0002 – File2.mp3
0003 – File3.doc

$

And you want to remove the “0001 – ” from the start of all of them then you can use the following expressing to do this provided they are all in the same folder (if not just run this more than once):

cd /home/me/Desktop/Music/ && for file in *mp3; do mv "$file" "${file:8}"; done

Afterwards:

$ ls /home/me/Desktop/Music/
File1.mp3
File2.mp3
0003 – File3.doc

$

NOTE: For more details see http://community.linuxmint.com/tutorial/view/1162 as I got my example from there.

Comments Off on Linux: Batch rename to remove # leading characters from files of a certain type more...


How to disable Flash Player protected mode in Firefox

by on Feb.08, 2015, under Techie

Since Firefox 35 you can do the following to disable the annoying “Activate Flash” on any page with Flash.

In the Address Bar type in “about:config”
Confirm that you will careful when prompted
Search for “dom.ipc.plugins.flash.disable-protected-mode” and set it to true (ie disabled)

Comments Off on How to disable Flash Player protected mode in Firefox more...

Coding links

by on Feb.08, 2015, under Techie

I have to share these links for anyone that see’s this and so I can find them in the future:

lifehacker – Top 10 Ways to Teach Yourself to Code

Free Programming Books – GitHub list

Comments Off on Coding links more...

Speedup FireFox

by on Oct.23, 2014, under Techie

WARNING! If you do anything else than listed before the browser may act worse or not work anymore.

  • Open FireFox and go to “about:config” in the Address Bar.
  • Search for “network.http.pipelining” and double-click on it to change it to TRUE
  • Then “network.http.proxy.pipelining” and change it to TRUE
  • Then set “network.http.pipelining.maxrequests” to 8 (higher the number pages may load slower)

Close all copies of FireFox and open it up again to enjoy quicker page loads.

Comments Off on Speedup FireFox more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Visit our friends!

A few highly recommended friends...