Category Archives: Software

AWS Marketplace Launches

The other day I was looking at the Bitnami stacks and was thinking how incredible it is that you can create an amazon AMI image and share, deploy, and instantly launch a web server. This has interesting repercussions for software and copyright holders, imagine installing a licensed operating system like Redhat or Microsoft Windows and then giving hundreds of thousands of others the ability to instantly clone it. Oops. Amazon Web Services is pleased to announce AWS Marketplace, an online store where customers can find, buy, and quickly deploy software that runs on AWS. AWS Marketplace includes pay-as-you-go products, free software (AWS infrastructure fees still apply), and hosted software with varied pricing models. CA Canonical Couchbase Check Point IBM Microsoft SUSE Red Hat SAP Many widely used open source offerings, including WordPress Drupal MediaWiki This certainly will make software as a service companies and providers – I’m thinking cheap web hosting for wordpress, for example, have to take another look at their product / services model and pricing tiers. You’ll be charged for what you use, by the hour or month, and software charges will appear on the same bill as your other AWS services. When you find the software you’d like to purchase, you can use AWS Marketplace’s 1-Click deployment to quickly launch pre-configured server images, or deploy with familiar tools like the AWS Console.

Posted in Linux, Marketing, Server Admin, Server Administration, Software, Tech Opinion | Tagged , , , | Leave a comment

Remove Dock on Mac OS X Lion

I use Quicksilver for almost everything and really hate that the dock always seems to be getting in my way. I was looking for a way to remove it, and found the following lines of code. There are some apps, like DockKiller, which can be a little buggy, but what I’ve found is that using the following commands will (for me) make the Dock small enough and move it into a place where it doesn’t pop up, and so this solution was the one that worked best for me. To implement this solution, open a terminal and run the following commands: // makes the dock icon size really really small defaults write com.apple.dock tilesize -int 1 // puts the dock on the bottom of the screen // other values are left and right defaults write com.apple.dock orientation -string bottom // puts the dock on the left side // other values are center and end defaults write com.apple.dock pinning -string start // restarts the dock so the changes take effect killall Dock Here is a screenshot of the dock – this is actual size, a crop from the bottom left corner of my screen :)

Posted in Mac, Software, Tech Tips | Tagged , , , | 1 Comment

Mac OS X Dock Preference Settings (secrets)

###Animate launch### defaults write com.apple.dock launchanim -boolean Expose minimizes desktop defaults write com.apple.dock wvous-olddesktop -boolean Prevent changes to position defaults write com.apple.dock position-immutable -boolean Magnification defaults write com.apple.dock magnification -boolean Show Expose corners defaults write com.apple.dock wvous-showcorners -boolean Prevent changes to min-effect preference defaults write com.apple.dock min-effect-immutable -boolean Ripple when placing widgets defaults write com.apple.dock disable-ripple -boolean-neg Screen Edge Position defaults write com.apple.dock orientation -string left defaults write com.apple.dock orientation -string bottom defaults write com.apple.dock orientation -string right Dock Appearance defaults write com.apple.dock no-glass -float Prevent changes to min-in-place preference defaults write com.apple.dock min-in-place-immutable -boolean Arrow key wraps defaults write com.apple.dock workspaces-wrap-arrows -boolean Dock pinning defaults write com.apple.dock pinning -string Bounce Applications defaults write com.apple.dock no-bouncing -boolean-neg Show “Quit” menu item defaults write com.apple.dock QuitFinder -boolean Switch spaces when using Command-Tab defaults write com.apple.dock workspaces-auto-swoosh -boolean Highlight the arrow of the foremost application defaults write com.apple.dock showforeground – wvous-float-style defaults write com.apple.dock wvous-float-style – Dim hidden apps defaults write com.apple.dock showhidden -boolean Prevent changes to Dock contents defaults write com.apple.dock contents-immutable -boolean Show only running applications defaults write com.apple.dock static-only -boolean Hot Corner: Top left defaults write com.apple.dock wvous-tl-corner -string Show shadow defaults write com.apple.dock showshadow -boolean Always show trash as empty defaults write com.apple.dock trash-full -boolean Prevent changes to Dock size defaults write com.apple.dock size-immutable -boolean Enable single application mode defaults write com.apple.dock single-app -boolean Hot Corner: Top right defaults write com.apple.dock wvous-tr-corner -string Autohide defaults write com.apple.dock autohide -boolean Show floating Expose button defaults write com.apple.dock wvous-floater -boolean … Continue reading

Posted in Mac, Software, Tech Opinion | Tagged , , , , , | 1 Comment

Google Thinks You’re Awesome

Google Thinks You’re Awesome if you are using Internet Explorer and download Google Chrome: I can’t say that I disagree.

Posted in Marketing, Software | Tagged , , , | 1 Comment

Applescript: Check Application Is Running

Below is my Applescript example of how to check if an application is running, such as Finder.app, VLC.app, itunes.app, or something along those lines. Quite often I need to check if an application is running as part of my applescript, and so I use this little function / subroutine in applescript to test if the application is running: on appIsRunning(appName) tell application “System Events” to (name of processes) contains appName end appIsRunning Example usage: display dialog appIsRunning(“Finder”) The above apple script example will show “true” in a popup dialog.

Posted in Mac, Software, Tech Tips | Tagged , , , , , , , , | Leave a comment

OS X Lion: Printing Multiple Pages per Sheet

I’ve been disappointed that the preview in the OS X Lion does not show multiple pages per sheet like Leopard and Snow Leopard did. I often do this to conserve paper when I’m printing lecture notes. With Leopard, I’m often doing this blind and get things out of order. Preview or Acrobat provide this functionality, but in Preview the functionality is hidden under the “Preview / Layout” dropdown option: To print multiple pages per sheet, first select the Layout option from the Print dialog. It is part of the menu marked “Preview.” Then, choose the number of pages which should be printed on one side of a single sheet of paper. With this example, there will be two pages on each side, for a total of four pages on a single sheet of paper when duplexed. You can also optionally set the layout direction, and whether a border should be printed around each individual page.

Posted in Mac, Software, Tech Tips | Tagged , , , , , , | Leave a comment

PlayStation Network (PSN) will be renamed Sony Entertainment Network (SEN)

Sony has just announced upcoming changes to PSN accounts: PlayStation®Network accounts will soon be renamed Sony Entertainment Network accounts. Dear Customer, On February 8, 2012, “PlayStation®Network accounts” will be renamed “Sony Entertainment Network accounts” or “SEN accounts”. This change will take effect at the same time as upcoming PlayStation®3 and PlayStation®Vita* system software updates. After you update the system software on your PS3™ or PS Vita , you will notice that “PlayStation®Network accounts” have been renamed “Sony Entertainment Network accounts”. This change will not affect the naming of “PlayStation®Network accounts” when viewed on a PSP® (PlayStation®Portable) system. *PlayStation®Vita will launch from 22nd February, 2012.

Posted in Marketing, Random, Software | Tagged , , , | Leave a comment

Make YSlow work with Firefox 10

Firefox 9, Firebug, and YSlow had some compatibility issues which caused YSlow not to work for many users. The good news is that the Firebug, and YSlow extensions have been updated and now if you are using Firebug 1.9.1 and YSlow 3.0.9 then YSlow will work “Out of the Box” with Firefox 10. If you had these extensions previously disabled make sure re-enable them and you should be good to go.

Posted in Mac, Software, Tech Tips, Web Development | Tagged , , | Leave a comment

Firefox: Disable Auto Update

There are two methods to Disable Auto Update in Firefox: Firefox: Disable Auto Update Method 1 Go to the “Tools” menu (in the menu bar) and choose Preferences / Options. On Mac OS X Go to the “Firefox” menu bar and choose preferences or press cmd+, Choose the “Advanced” tab and the “Update” sub tab, and then choose one of the options: Install updates automatically (recommended) Download update but let me choose whether to install them Check for updates but let me choose whether to download and install them Never check for updates (not recommended) Firefox: Disable Auto Update Method 2 In your browser bar type in about:config and press return. Type in app.update.auto to filter results, and look for the boolean entry. Set this to: true – firefox will auto update (default setting) false – firefox will not update automatically

Posted in Software, Tech Tips | Tagged , , , , , | Leave a comment

Firefox: Start with Profile Manager

Firefox: Start with Profile Manager in OS X /Applications/Firefox.app/Contents/MacOS/firefox-bin -profilemanager Firefox: Start with Profile Manager in Linux ./firefox -profilemanager Firefox: Start with Profile Manager in Windows Try one of these commands, either in the run dialog box or in the command line: firefox.exe -profilemanager firefox.exe -P “C:\Program Files\Mozilla Firefox\firefox.exe” -P “C:\Program Files (x86)\Mozilla Firefox\firefox.exe” -P

Posted in Mac, Software, Tech Tips, Web Development | Tagged , , , | Leave a comment