Product Description Do you want more from your Magic Mouse? MouseWizard is a simple utility to enhance the use of your Magic Mouse. You can easily customize your Magic Mouse to increase your productivity.
Daily Archives: November 25, 2010
MagicPrefs extra gestures for mac magic mouse
MagicPrefs is a free menubar and preference pane application for OSX which aims to improve the functionality and configuration options of the Apple Magic Mouse. It features the ability to bind a variable number of finger clicks, taps, swipes, pinch and other gestures to functions like Middle Click , Hold Down Both Mouse Buttons , …
Continue reading “MagicPrefs extra gestures for mac magic mouse”
Facebook Like BTN iframe code
<iframe src=”http://www.facebook.com/plugins/like.php?href=https://www.prosoxi.com/&layout=standard&show-faces=true&width=450&action=like&colorscheme=light” allowtransparency=”true” style=”border: medium none; overflow: hidden; width: 450px; height: 26px;” scrolling=”no” frameborder=”0″></iframe>
PHP Authentication over HTTP
<?php if (!isset($_SERVER[‘PHP_AUTH_USER’])) { header(“WWW-Authenticate: Basic realm=\”Private Area\””); header(“HTTP/1.0 401 Unauthorized”); print “Sorry – you need valid credentials to be granted access!\n”; exit; } else { if (($_SERVER[‘PHP_AUTH_USER’] == ‘paul’) && ($_SERVER[‘PHP_AUTH_PW’] == ‘hudson’)) { print “Welcome to the private area!”;