Where callback is structure as follows:
To send multiple args values, send as an array
<アンダブロッブ />
Where callback is structure as follows:
To send multiple args values, send as an array
A new Java-based application for mixing audio tracks right in your web browser has just launched. MixBlendr is open source and available for download to use on your own website. Right now they have a contest running until April 9, 2009 for best mix of the tracks they posted on their site.
Check it out: mixblendr.com
We need to move a WordPress 2.7 install from a development domain to the live environment via straight FTP transfer and phpMyAdmin dump. We bypass the Export / Import functions in WordPress admin so that we can preserve our myriad plugin settings when making the domain switch. But now our links are all pointing at the old URL and the upload path is all wonky. WTF? Fear not, you can fix all those problems by running this tasty little SQL script on your WordPress database via phpMyAdmin (don’t forget to replace the values with the appropriate values for your environment):
UPDATE wp_posts
UPDATE wp_options
## — replace absolute server paths
UPDATE wp_options
UPDATE wp_postmeta
SMS text messaging is the most widely used data application on the planet, with 2.4 billion active users, or 74% of all mobile phone subscribers sending and receiving text messages on their phones.
– en.wikipedia.org 2009.01
Client’s intranet is on an Apache / Windows box on the other side of the continent and we needed a quick way to synch up our development environment with theirs. Their database has been accumulating production data for over 36 months and the filesize of the export from phpMyAdmin reads 11.7MB. To avoid manual export from phpMyAdmin, we used the PHP system function to automate creation of the dump file as follows:
system ( $cmd );
The resulting dump file from mysqldump is 15.4MB. We couldn’t use phpMyAdmin to import w/out suffering through several timeouts before the import was completed. What to do? We found this amazing script by Alexey Ozerov: BigDump
The BigDump script basically times itself out every 2 to 3 seconds (configurable) and restarts the dump where it left off from the previous import. It has a progress bar so you get visual status on the import.
system: PHP function for CLI executable.
phpMyAdmin: PHP based MySQL administrative tools.
mysqldump: MySQL database backup program.
BigDump PHP script: awesome script that assists in huge dump file imports via http.
Notepad++: Windows text editor that preserves carriage return or line feed (CRLF, \r\n) format of the original document. Really helpful when editing a dump file created for use with BigDump.
Update 2010.07.09: wikiHow has a great article on clearing browser cache.
Internet Explorer 6:
Internet Explorer 7:
Firefox 2:
Firefox 3:
Safari:
For more information on web cache: wikipedia.org/Web_cache
Trying to figure out how to email a grocery list to our street team, we ran across this list of major US cell phone providers and how to format emails to send text messages:
Provider | Email Format |
---|---|
Alltel: | {number}@message.alltel.com |
AT&T: | {number}@mms.att.net |
Nextel: | {number}@messaging.nextel.com |
Sprint: | {number}@messaging.sprintpcs.com |
Suncom: | {number}@tms.suncom.com |
T-mobile: | {number}@tmomail.net |
Voicestream: | {number}@voicestream.net |
Verizon (text only): | {number}@vtext.com |
Verizon (pics and vids): | {number}@vzwpix.com |
Replace the {number} with the 10 digit phone number of our recipient and now we can hand down our directives to the street team without ever picking up the cellie. Booyah!
We recently needed to create an HTML page and dynamically hide/show an entire class of <div> tags that were interspersed throughout the page. Using the getElementsByTagName javascript method, we were able to iterate over all of the <div> elements in the document. Then check the CSS class by accessing the className DOM element:
}
}
Note that the getAttribute method does not work in IE since class is a reserved word for IE. Took us a little while to figure that one out.