Pages

Monday, December 10, 2012

Boxresizer FTW!

You may have noticed that I recently added a set of social icons to the sidebar of the ol' blog here. Don't they just look pretty there in the page? Yeah, I thought so too.

I created the icons at a resolution of 128px by 128px, just to have some extra image to work with; I figured I may end up using the icons in varied contexts. I also knew I'd be scaling-down the icons when I embedded them in the blog page layout.

I assumed that these days pretty much all modern browsers take care of smoothing out scaled images just fine, but turns out I was wrong. It's better than it used to be, but it still doesn't compare to a resample that you'd expect. I embedded the images in the page, manually setting their dimensions, and I was seeing enough jaggies to bug me.

I didn't want to have to create new, resized versions of the icons every place I used them, so I started looking for a website that would do real-time, url-based image scaling. I knew there were sites/services like that out there, but when I started my hunt they were actually harder to find than I expected.

Thankfully, I eventually stumbled upon Boxresizer. It was exactly what I was looking for: you call a particular URL including your source image, resulting size, and boom, they output a nice, smoothly scaled version of the image!
Boxresizer makes Octocat happy...
...because it makes him super sneaky small ninja Octocat!

If you want to see sample URLs of how Boxresizer works, just hit up their site or copy the image location of Octocat here or the other images in the sidebar. Both Firefox and Chrome have an option to copy the URL when you right-click on an image.

PROTIP: Don't forget, though, that when you're passing your image URLs to the Boxresizer URL, it needs to be URL encoded. You can't just pass the image path as is. Thankfully, there are tons of online tools to URL encode a string, like this one.

Sunday, November 25, 2012

RenderMode = direct required for camera in Adobe Air Android

I'll go over this one in reverse order to get the most relevant information in front of ya'll's eyeballs as fast as possible. (Oh yes I did just use a double contraction there.)

The Solution

When you want to get a raw, realtime image feed from the device camera in an Adobe AIR application on Android, you have to set the "renderMode" property in the app xml file to "direct" in order for it to work *at all*.

The Problem

If you don't set the renderMode property as such, when you are displaying the live camera image in your AIR app, you'll see something like this:
The gobbledeegook here has nothing to do with a turkey.


Just to be clear, I'm talking about the <renderMode>{someValue}</renderMode> node, which is a child of the <initialWindow> node in the AIR app xml file. To get things to work, "{someValue}" needs to be "direct."

As far as I can tell, I've come across this oh-so interesting behavior within a perfectly normal AIR application that I am running/developing/testing on my Android phone. These are the details on my app:
  • A Flex mobile app, running with installed AIR 3.5.
  • All UI layouts are in mxml.
  • In the code, the Camera/Video object instances are ending up added as a child to a <mx:UIComponent />.
  • My development device is a Galaxy S2 running Android 4.0.
Like I say, nothing too exotic going on there; seems like things should just work. I obviously had to go hunting when I first encountered this issue, but unfortunately I can't remember where I stumbled upon the idea to mess with the renderMode property. I'm aware it's possible this is specific to my device, version, etc. of Android.

But, Hopefully this will help someone out there!

Sunday, November 11, 2012

Gettin' wifi to work on my Raspberry Pi

Lately I've been geeking out with my Rapsberry Pi, which I've had for about a month now. I've now got all the accessories that I think I'm gonna need for it. Check out the setup:

Good fun for all nerds in the land
My most recent addition was a wifi dongle. I got a dongle with the Ralink 5370 chipset in it, which seems to be pretty popular in Raspberry Pi land. This is the adapter I got and the site where I purchased:

Ralink 5730 Dongle on DX.com

(Word to the wise though, it took 3 weeks for my order to get to me. Shipping costs were free, but that was a tough wait. You might want to pay to speed shipping up or find another dongle from another site.)

I didn't know what it would be like to get the dongle working, but as it turns out, it's very easy. Here's some notes on my experiences:
  • As it turns out, if you've burned your Pi distro image anytime probably within the last 6 months or sooner, you've got more or less what you need to get the Ralink and probably many other chipsets working.
  • This post had the info I needed to get things working:
    http://raspberry-pi-notes.blogspot.com.au/2012/05/rt5370-cheap-micro-usb-wireless-dongle.html
  • In short, you can remove anything related to "wlan0" and just put in what is in step 8 of that post. 
  • But! know what type of encryption you have on your wifi router. After logging in to my router I found out it was WPA-PSK, and the lines related to "wireless-*****" were not relevant. Al posted the way to modify the interfaces file - remove the "wireless-*****" lines and instead put:

    wpa-ssid <yourssid>
    wpa-psk <yourkey>

    Which means that only 4 lines are required in the interfaces file to get the dongle working.
  • I use a Logitech wireless keyboard when I'm directly working on the Pi; you can sort of see its little dongle in the bottom USB port in my picture. Interestingly, when I had both the wifi dongle and keyboard dongle in the standard Pi USB ports, the keyboard wouldn't work. I'm thinking the wifi radio signal was drowning out the keyboard signal. Moving the wifi dongle over to the small hub I've got made things work.
And with that, my Pi is now happily connecting to the internet, at least when in terminal mode. I can ssh to it and everything. Best of luck as you attempt to get wifi working on your Pi!