UI Media Tools

Original article sent by Therron
http://mediatemple.net/blog/news/five-essential-apps-for-ux-design/?utm_source=linkedin&utm_medium=social&utm_content=5apps&utm_campaign=febads

Perfect Pixel - Onion Skin Software for Browser
http://www.welldonecode.com/perfectpixel/

CodePen - Online Browser Editor
http://codepen.io

UXPin - Paid Site with Trial
https://www.uxpin.com/

Sketch for Mac - Paid Software
http://www.bohemiancoding.com/sketch/

Forklift Pinwheel of Death

On Feb 14, 2015, at 1:26 AM, BinaryNights Support wrote:

Hi,

Yes, there is a known issue with 'Group by Date added’ listing on Yosemite that makes ForkLift not responding. We will fix it in the upcoming update.

Please restore your ForkLift favorites first:
1) Look up ForkLift's preference file on your backup at ~/Library/Preferences/com.binarynights.ForkLift2.plist
2) Since Mavericks, the OS caches the preferences so you need to force-kill 'cfprefsd' process in Activity Monitor before pasting the plist file.
3) Copy com.binarynights.ForkLift2.plist from backup to ~/Library/Preferences/

Then close it and paste the following command into Terminal (Applications > Utilities > Terminal.app):

defaults delete com.binarynights.ForkLift2 ViewSettings

kind regards,
Bam

Oracle SQLDeveloper problem

Editor not working, enter key / backspace / delete button not working – quick fix

To resolve the problem you have to go to:
Tools -> Preferences -> Accelerators -> Load Preset -> Default -> OK

Using perl to get newest file in folder


$iisdir = '\\\\myfolder\\subfolder\\';
opendir LOGS, "$iisdir" or die "Directory error for IIS LOGS: $!\n";
my @files = grep /\.txt$/, readdir LOGS;
@files = sort { -M $a <=> -M $b } @files;
$active_log = $files[-1];
print "active log: $active_log\n\n";

Disable Compatibility Check in Firefox

Open "about:config"
Create if necessary and set the key to false for:
extensions.checkCompatibility

After you install the plug-in you want, go ahead and set it back to true again. Once it's installed it will start working.

Sublime – Change font size of folder sidebar

Select Preferences / Browse Packages…, and go to Theme - Default directory.

Open Default.sublime-theme with your editor and search for sidebar_label string. You should find something like:

{
"class": "sidebar_label",
"color": [0, 0, 0],
"font.bold": false
}

You can add here the font size you prefer:
{
"class": "sidebar_label",
"color": [0, 0, 0],
"font.bold": false,
"font.size": 14.0
}