-
PEAR :: Package :: VersionControl_SVN – I wonder if anyone is using this for anything interesting.
Tags: pear php subversion -
MS-DOS 5 Upgrade Video – CollegeHumor video – How do people do videos like this with a straight face?
Tags: video dos microsoft -
VIDEO: Can’t Touch this, it’s Hammer Time!! (guy dancing like there’s no tommorow) ~ mybeNi websecurity, web security and hack stuff. – The best part about this video is his mom sewing in the background the whole time.
Tags: video mchammer -
Amazon.com: Plantronics DSP-400 Digitally-Enhanced USB Foldable Stereo Headset and Software: Electronics – Considering this as a headset option.
Tags: headset microphone plantronics
Monthly Archives: September 2007
Happiness Engineer
Matt mentioned that Automattic is looking for a Happiness Engineer.
Emotional Design, NUCHI
I came across NUCHI, The Northern Utah chapter of the Association of Computing Machinery’s (ACM) Special Interest Group on Computer-Human Interaction (SIGCHI), at NorthTemple. I’ve come across several passionate WordPress users, so I thought this would be an interesting to hear about. Here are my quick notes from the presentation given by Xinru Page:
- How we make decisions
- Processing: Visceral (attractiveness), Behavioral (functions, performance, usability), Reflective (self-image, meaning)
- Product packaging
- Baby face bias
- Changing something people are already familiar with
- Apple, Scoble’s iPhone Dev Camp video
Funny how we are attracted to things, not necessarily based on functionality, but how we feel about it.
Here are some of the general conversation issues that got brought up:
- You don’t want medical devices to be hard to use or understand
- Must have features, feature where more is better, and excitement features
- The joy of inefficiency
- Changing patterns (especially repetition) disrupts thought
- Just because you can do something, you don’t have to do it
- Right technology for the right crowd
So how do we design web sites the evoke these types positive emotional responses?
Links for Fri 7 Sep 2007 through Mon 10 Sep 2007
-
PostgreSQL: Why PostgreSQL Instead of MySQL: Comparing Reliability and Speed in 2007 – Excellent write up comparing MySQL and PostgreSQL in different areas.
Tags: mysql postgresql database -
WordPress Bug Fixers Heat Map | planetOzh – More of a tag cloud than a heat map, but this is neat.
Tags: wordpress -
Jahshaka – Open source video editing software, for Windows, OS X and Linux.
Tags: video jahshaka -
Carlton Breakdancing Commercial – CollegeHumor video – Hahahahahahahahahahaha!
Tags: 80s dance video -
mod_top LAMP PHP Ruby Rails Perl MySQL Postgres application monitor – mod_top is like top for your PHP funtion/method calls. You can sort by number of calls, CPU, time and memory.
Tags: php mod_top -
Free or Cheap on-line Fax Service? (by Jeremy Zawodny) – I’ve needed the same thing from time to time. Some great suggestions in the comments.
Tags: fax
Links for Thu 6 Sep 2007
-
Apple – To all iPhone customers – I definitely didn’t see this coming, Apple is going to give everyone who purchased an iPhone $100 Apple store credit.
Tags: apple iphone -
Jonathan Schwartz’s Weblog: Thank You, Network Appliance – If nothing else he knows how to spin this to his advantage. Then again, this is the same guy who was excited about changing the stock ticker from SUNW to JAVA.
Tags: sun netapp zfs lawsuit -
The Observation Deck, More on NetApp suing Sun – The plot gets few twists and curves.
Tags: sun netapp lawsuit zfs -
On The Record: Sun response to NetApp lawsuit – Sun’s response here doesn’t sound nearly as level headed as the NetApp post did.
Tags: sun netapp zfs lawsuit -
jQuery for JavaScript programmers – Nice intro to jQuery by Simon Willison.
Tags: javascript jquery
Links for Wed 29 Aug 2007 through Wed 5 Sep 2007
-
Network Appliance, Inc. – DaveBlog : : : : :: NetApp Sues Sun for ZFS Patent Infringement – So ZFS might be infringing on NetApp patents, I’ll have to watch where this goes, could be bad news for ZFS.
Tags: zfs netapp sun -
Hack your iPhone: install applications with Installer.app and AppTapp – Nice guide on how to get native apps on your iPhone. I want an iPhone.
Tags: apple iphone howto -
Blogging Roller: Atom Protocol Exerciser (Ape) setup notes – Instructions on how to get APE up and going. This was for Ubuntu, but followed the same basic idea for working on Mac OS X.
Tags: atompub ruby ape howto -
Tunnelier (Bitvise) – SSH and SFTP client for Windows.
Tags: ssh tunnelier windows -
Chrysti the Wordsmith > Home – I hear this on KCPW NPR in Salt Lake City. Educational little interlude.
Tags: npr chrystithewordsmith -
X-Chat 2 for Windows – Why are there so many crummy Windows IRC clients? This Windows port of X-Chat looks reasonable though.
Tags: xchat irc windows -
How to install PHP on IIS7 (RC1) – BillS’ IIS Blog – Not having the ISAPI extension for IIS installed was my problem on this, other than that it is really easy to set up and have it working.
Tags: php iis vista howto -
Surf*Mind*Musings » Podcast with Your Iphone: How-to Video – Another thing Apple should really just include in the iPhone, an easy way to record podcasts.
Tags: iphone podcast howto video -
The 50 Best Cookie Recipes on the Internet – Mmmmmm, cookies
Tags: cookies recipe cooking food -
Sullr : USA – Do an address lookup based on a phone number.
Tags: sullr phonenumber address search -
abyssoft – teleport – Control multiple mac systems with one keyboard and mouse over the network.
Tags: macosx teleport kvm
WordPress File Uploads With IIS
I didn’t have any problems getting WordPress to work on Windows Vista, IIS7 and PHP 5 (ISAPI). That is, until I tried to upload an image. After hunting around and gathering tips and ideas from others here is what I had to do:
- Edit upload_tmp_dir option in php.ini. In my case I created an uploads folder in the wwwroot: upload_tmp_dir = “c:\inetpub\wwwroot\uploads”
- Create the c:\inetpub\wwwroot\uploads folder and grant the IUSR full control of it
- Create the uploads folder in your wp-content folder, for me this was in c:\inetpub\wwwroot\wordpress-trunk\wp-contents\uploads, then grant the IUSR full control of it
- Restart the IIS service (to pick up the php.ini change)
After that I was able to upload files in WordPress running under Vista and IIS7. I haven’t tried to fine tune the permissions issue, it is possible that this can be done without having to grant full control of those folders to the IUSR account.