Skip to main content
Tag

Howto

Eye-Fi vs PixelPipe iPhone Apps Reviewed

By How To, iPhone, Review One Comment

I was looking to find an iPhone app that would allow me to upload pictures automatically from my iPhone to my gallery on this site. So, with that said, I googled for a few to see what apps I could find that would allow me to do this. I came up with two (that interact/upload to Gallery2, the photo gallery software I use on this site). They are PixelPipe and Eye-Fi, both available in the Apple App Store for “free” (notice the free in quotes — I’ll get to that in just a few).

PixelPipe

PixelPipe

Eye-Fi

Eye-Fi

So after finding the two, I downloaded them and installed both of them to my iPhone. Up first — Eye-Fi. I went to open it and it asked me for my username and password. Not having one, I returned to the Eye-Fi Website assuming I could register for one. Once there I found that in order to get an account, one must own one of Eye-Fi’s Secure Digital card products. So, in essence, this “free” application actually costs $49.99 (which is the cost of Eye-Fi’s lowest cost product). Read More

NeXpose and BackTrack 4: “Could not start the nxpgsql daemon” [Fixed]

By How To 7 Comments

UPDATE/Fix Information:
I found out that this was all related to the previous solution of disabling the postgresql instance on the machine. I had (mistakenly) thought that by doing /etc/init.d/postgresql-8.3 stop that BackTrack’s posgresql instance would stop. Unfortunately I was wrong, and a “ps aux | grep -i sql” showed me this. After I did a “kill <PID>” I removed all NeXpose files/folders and reinstalled it. However it still wouldnt run correctly/gave me the same error. After some discussion in #rapid7 on irc.freenode.net, I was informed that NeXpose requires 1GB of RAM. So I edited my VMWare config to provide 1GB of RAM to my BackTrack guest.

However, then I had another issue — the NeXpose server kept crashing after starting. So, again I turned to the guys in #rapid7. With their help, I ran “cd /opt/rapid7/nexpose/nsc && rm conf/nsc.xml && ./nsc.sh” and voila! Success! Read More

WordPress: Unable to change uploaded image size [Fixed]

By How To No Comments

If you’re having the same problem I did, where when you upload an image to WordPress it does not let you change it from the original uploaded size, then simply do the following (on Gentoo):
emerge gd

For those of you on other distros, try doing the same thing with your package manager, or just install the GD libraries from scratch (you can find them here: http://www.libgd.org)

Of course, this won’t be effective without recompiling PHP to use GD, so again, on Gentoo:
emerge php
And again, on other distros, you’ll have to do some digging yourself to either A) use your package manager to recompile PHP or B) recompile it by hand.

Once that’s all said and done, you should be able to click the buttons to select a small, medium, or large image as well as the original one. Nifty? I think so…