Posted by nick | Posted in Development, PHP | Posted on Nov 07 2009
A challenge I’ve found being a PHP developer in the .NET and Java ruled Minneapolis and Saint Paul area is finding good PHP jobs. I am building a list of companies in the Twin Cities that use PHP or have a need for PHP developers so when the time comes to find work, this list should be very helpful. If you’re willing to work for ten bucks an hour, you can find PHP work in craigslist any day. However, if you need to make a living, this list should help you out. Please leave a comment with additional companies in the Twin Cities area you’re aware of that use PHP and need Developers.
Employ Full Time PHP Developers
- VISI
visi.com
- Sierra Bravo
www.sierrabravo.com
- Ecreativeworks
ecreativeworks .com
- Colle + Mcvoy
collemcvoy.com
- National Bankcard Services, Inc
nbs-inc.com
- Internet Exposure
iexposure.com/
- Cazarin
cazarin.com/
- Star Tribune
startribune.com/
- Digital River
digitalriver.com/
- Artropolis
artropolis.com/
- The MLS Online
themlsonline.com/
Contract or Temporary PHP Developers
- Best Buy
bestbuy.com
They only hire contractors. Accenture is their main recruiting firm.
- Dolan Media dolanmedia.com
Various recruiting agencies
- Regis regissalons.com
Various recruiting agencies
Posted by nick | Posted in Development, JavaScript | Posted on Feb 01 2009
Many of you, like me, found this great tool at http://digitarald.de/project/fancyupload/ gives you a javascript alert box that says “error” after clicking one of the “browse” links if you have Flash 10. Flash 10 breaks all Flash-based upload solutions that control a hidden flash-object with JavaScript. Even my wordpress blog, which uses a flash upload, doesn’t work anymore. I will have to install an update of wordpress to make it work again.

There are two ways to fix this. One is to back down to Flash 9 and the second is to implement the fixes Herald has come up with for this issue. My implementation of FancyUpload deviated from Herald’s demo install, so rather than start from scratch again, I updated fixes file by file and line by line. It’s a fairly quick fix that I’ll go over below.
Herald’s updated and fixed demo is here http://digitarald.de/project/fancyupload/2-0/showcase/photoqueue-fixed/ and the current version can be downloaded at github http://github.com/digitarald/digitarald-fancyupload/tree/master.
The changes -
- Replace the following files with updated versions
- FancyUpload2.js
- Fx.ProgressBar.js
- Swiff.Uploader.js
- Swiff.Uploader.swf
- script.js
- The xhtml will need to be updated as well. Change the following line
<a id="demo-browse-images" href="#">Browse Only Images</a> |
to
<input id="demo-select-images" type="checkbox" /> Images Only |
Hope this helps others who have implemented and rely on this tool. All credit for the solution and fix goes to Herald.