Music Software

April 17th, 2012 Alex Posted in music, productivity Comments Off

Music Sequencer
Digital Audio Workstation
Rosegarden
LMMS
MIDI Editors and Sequencers
FL Studio
Audio Mixing Programs (Free & Open Source)

AddThis Social Bookmark Button

Pranav Mistry: The thrilling potential of SixthSense technology – YouTube

October 5th, 2011 Alex Posted in electronics, productivity Comments Off

Pranav Mistry: The thrilling potential of SixthSense technology

via Pranav Mistry: The thrilling potential of SixthSense technology – YouTube.

AddThis Social Bookmark Button

Car Steering Wheel Cellphone Mount

April 25th, 2011 Alex Posted in phone, productivity, web Comments Off

Gosmart Clip – A Cell Phone Holder That Mounts Your Smartphone, iPhone, Blackberry, Droid onto Your Car’s Steering Wheel for GPS Navigation and easy access.


Technical Details

  • Safely and securely holds your smartphone or cell phone on the steering wheel
  • Simple to use with no tools required
  • Compact and portable design makes it easy to take wherever you go!
AddThis Social Bookmark Button

Hoarders, Pack Rats, Clutter Solutions

September 24th, 2009 Alex Posted in productivity Comments Off

Interesting thoughts:

One:

“I have the largest seashell collection on the planet. I keep it
scattered on beaches around the world.” – Steven Wright

Two:

Coveting possessions is unhealthy. Here’s how I look at it:

All of the computers on Ebay are mine. In fact, everything on Ebay is
already mine. All of those things are just in long term storage that I
pay nothing for. Storage is free.

When I want to take something out of storage, I just pay the for the
storage costs for that particular thing up to that point, plus a
nominal shipping fee, and my things are delivered to me so I can use
them. When I am done with them, I return them to storage via
Craigslist or Ebay, and I am given a fee as compensation for freeing
up the storage facilities resources.

This is also the case with all of my stuff that Amazon and Walmart are
holding for me. I have antiques, priceless art, cars, estates, and
jewels beyond the dreams of avarice.

The world is my museum, displaying my collections on loan. The James
Savages of the world are merely curators.

Quote from
http://www.metafilter.com/65284/Collect-em-all#1862024

Number three: Watch www.aetv.com/hoarders for a few episodes and that might cure you!

AddThis Social Bookmark Button

Excel Keyboard Shortcut – Selecting The Whole Data Region

February 18th, 2009 Alex Posted in productivity, windows Comments Off

If you need to select the whole data region (it might included some empty cells) in Excel without selecting all cells (<CTRL>+<A>), click on any cell inside that group and then type: <CTRL>+<SHIFT>+<8>. It is very useful for large data sets.

You should then get something like this:

excel spreadsheet screenshot

Try http://www.rnib.org.uk/xpedio/groups/public/documents/publicwebsite/public_rnib003503.hcsp for more keyboard shortcuts.

AddThis Social Bookmark Button

Set Firefox Scroll-wheel Speed

September 23rd, 2008 Alex Posted in productivity, web Comments Off

  1. Type about:config<ENTER> in firefox address bar
  2. *Optional* Type: mousewheel.withnokey<ENTER> in the filter box
  3. Set mousewheel.withnokey.sysnumlines to false

    This makes Firefox use its own setting instead of the system-wide setting.

  4. Change mousewheel.withnokey.numlines to how many lines you want to scroll at a time.
  5. I use 8

Source: http://episteme.arstechnica.com/groupee/forums/a/tpc/f/99609816/m/480004345731

AddThis Social Bookmark Button

Print Only What You Need From a Web Page

September 21st, 2008 Alex Posted in productivity, web Comments Off

The following resources allow you to edit any web page and print only what you need to save paper and/or ink.

  • Bookmarklets

    To use a bookmarklet, you need to bookmark it; either drag it to your bookmark toolbar or right click the link and choose bookmark this. Next, when you visit a web page you would like to edit, click on that new bookmark. My favorite one is PrintWhatYouLike, there is no extension to install and it is a very easy and efficient.

    1. PrintWhatYouLike Bookmarklet
    2. EditThis Bookmarklet (Demo)
    3. List of bookmarklets to remove (zap) annoyances from web pages
  • Firefox Extension
    1. Aardvark
AddThis Social Bookmark Button

Linux Mass Rename Recursively using a Bash Script

September 14th, 2008 Alex Posted in linux, productivity Comments Off

This example Bash script replaces “.JPG” with “.jpg” recursively in the current directory (It can handle filenames with spaces):


#!/bin/bash

find ./ -type f -name "*.JPG" | while read FILE
do
newname=`echo $FILE | sed s/.JPG/.jpg/`
echo $newname
mv "$FILE" "$newname"
done

Convert all characters to lowercase:


#!/bin/bash

find ./ -type f -name "*" | while read FILE
do
newname=`echo $FILE | tr 'a-z' 'A-Z'`
echo $newname
mv "$FILE" "$newname"
done

AddThis Social Bookmark Button

Compare four columns in Open Office or Excel

August 6th, 2008 Alex Posted in linux, productivity, windows Comments Off

For example, you have 2 sheets, Sheet1 and Sheet2: they both have a list of part numbers in column A and a list of prices in column B. You want to compare the prices for the same part numbers in each sheets. One way to do this is to copy the prices from Sheet1 to Sheet2 in a third column and then use conditional formatting to highlight the different prices:

Copy this formula in cell C2 of Sheet2 (and then drag it down to the cells below):
=INDEX($Sheet1.A$2:B$3001;MATCH(A2;$Sheet1.A$2:A$3001;0);2)

This formula assumes that there is a maximum of 3000 different products in Sheet1 (starting at cell A2).

Sample file:compare_four_columns.ods

AddThis Social Bookmark Button

Easy Mass-Rename (Windows)

May 28th, 2008 Alex Posted in productivity, windows Comments Off

Batch renaming made easy with Renamer

“ReNamer is a very powerful and flexible file renaming tool, which offers all the standard renaming procedures, including prefixes, suffixes, replacements, case changes, as well as removing contents of brackets, adding number sequences, changing file extensions, etc. For advanced users, there is a PascalScript rule, which let users program their very own renaming rule. Program allows you to combine multiple renaming actions as a rule set, applying each action in a logical sequence, which can be saved, loaded, and managed within the program. In addition, it has an ability to rename folders, process regular expressions, Unicode capable, and supports variety of meta tags, such as: ID3v1, ID3v2, EXIF, OLE, AVI, MD5, CRC32, and SHA1.”

Download.

AddThis Social Bookmark Button