m-worx ver 3.1

  • Increase font size
  • Default font size
  • Decrease font size
m-worx ver 3.1

Apple's thoughts on Flash

E-mail Print PDF

Apple is giving good points on why mobile phones shouldn't just yet adopt Flash capability. Both, Apple and Adobe has a strong partnership. I guess Adobe will need to come out with an improved mobile version of Flash.

Read More: http://www.apple.com/hotnews/thoughts-on-flash/

 

OSX - Add Widgets to your Desktop

E-mail Print PDF

If you want to see the Widgets in your Dashboard to appear on your Desktop, open up the Terminal (Applications > Utilities > Terminal)

Type the following command:

defaults write com.apple.dashboard devmode YES

and hit enter.

Now simply logout and log back into your account.

After doing that, bring up ur dashboard by clicking Fn + F12. Click on a widget to move it around, keep your mouse clicked and hit Fn + F12 again. The widget should now appear on your Desktop.

 

A Glimpse of CS5

E-mail Print PDF

Screenshots of installing Adobe Master Collection CS5 onto my MacBookPro.

Installation took quite some time, must be because work related things took over the CPU and Memory.

After an hour of installation time - it's live !

Last Updated on Wednesday, 05 May 2010 17:24
 

Redirect Folder to https using .htaccess

E-mail Print PDF

Use the following .htaccess file in the root of your host.

 


 

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} foldername
RewriteRule ^(.*)$ https://www.yourwebsite.net/$1 [R,L]

 


 

 

 

How to zip a folder

E-mail Print PDF

Use the following command:

zip <Target File> <Folder to be zipped>