Over the past year or so, I have worked on an airship project (weBlimp - a social, crowd controlled blimp). In the process of research and what-not I have come across some other very cool projects and flying things. After seeing some cool animal airship videos:

Air Manta Ray, Air Jellyfish, Air Penguin, Air Fish

... I want to see an Airquarium! :D Like an aquarium, but in the air. This would be best inside a large, open indoor space inside a building, such as an atrium or mezzanine.

Read More...

[ add comment ] ( 1725 views )   |  [ 0 trackbacks ]   |  permalink
So I just wrote a new script:

Fullscreen Youtube & Vimeo on Facebook for Greasemonkey
After waiting a very long time for someone to do a script like this, I finally went ahead and made one myself. This script will enable the fullscreen ability/button on Youtube & Vimeo videos that are embedded into Facebook feeds and profiles. All embedded Youtube & Vimeo videos viewed in Facebook, by default dont have the fullscreen button.


[ add comment ] ( 1735 views )   |  [ 0 trackbacks ]   |  permalink
Back in the latter half of 2009 when Firefox 3.5 was released, I was quite disappointed that the backend 'about:config' feature known as 'browser.link.open_external' was removed from Firefox. Open_external is a preference that specifies how webpages should be opened if an external program (such as email program) opens a URL. In November or so I found a fix, which I talk about more here in this post.

But since Firefox 3.6, and newer updates of the addon fix, they would not work for me. Firefox 3.5 removed the open_external feature, which annoyed me, then a fix for it is now broken in FF 3.6.
I got fed up so I just made my own Firefox extension to fix it!

Restore Open_External 1.0
Restores the functionality of the 'browser.link.open_external' preference that was removed in Firefox 3.5+


(I have now learned how to make script-based FF extensions)

[ 1 comment ] ( 1084 views )   |  [ 0 trackbacks ]   |  permalink  |  related link
So back in April, I wrote about a body interface project that I worked on called weBlimp. So in the time since then, the weBlimp team has brought it from a final project in a class, to an academic conference presentation, and now to an Olympic event!

So to update, in October, we were at UC Berkeley to present the concepts behind weBlimp at the ACM Creativity & Cognition 2009 Conference.

The conference was great. It really has me considering grad school now. I also really enjoyed checking out San Francisco and the Bay Area.

A month or two after, we were asked by our University and the City of Surrey to showcase weBlimp during the 2010 Winter Olympics!

Currently, we are working on building of a 'weBlimp 2.0' of higher quality and robustness, in preparation for its installation at the Surrey Holland Park Olympic Celebration Site. The installation will be showcased during the Olympics from February 17-21st.

Also, since our involvement with the Olympics, we have been featured in a number of blogs and news articles:
Surrey Leader
GreenDiary
NotCot
Technabob


Offical weBlimp:
SIAT.SFU.CA/weblimp
weblimp.brianquan.com
@weBlimp on Twitter

Here is the original documentation video on weBlimp. We will try to have a new one after the Olympics.


[ add comment ] ( 1866 views )   |  [ 0 trackbacks ]   |  permalink  |  related link
So in an effort to make it easier for me to blog, I have been thinking about scripting some automation. Facebook allows you to easily 'share links'. FB's method of link sharing actually takes the content of the URL you are sharing and creates a preview or thumbnails of that content. This allows your friends to easily get an idea what the link is about without clicking on it and also allows you to quickly share things without too much work. Also the quick ability to add your comment on the link is great too. So after some researching, I found out that this method of gathering previews of the content is known as 'Scraping'.

I have been thinking about creating some sort of script to help me blog interesting Internet finds, by link scraping and saving myself some time and effort. While I know there are some other services out there that do this, I dont feel like migrating my blog. So I think some sort of Javascript scriptlet or bookmarklet might be able to do some generic job and integrate it into my blogging.

Now I havent found anything like that out there, so if someone knows of one, PLEASE do let me know. It can save me some effort.

As for creating my own, I've only gotten as far as pseudocode. Haven't had the chance to go any further.

Sort-of-Pseudocode:
link blogging with scrape:

get domain/type of link:
-input link

youtube/vimeo:
-take input link
-get view code
-take predetermined embed code, and insert view code
-paste into new blog entry inputbox

general link:
-extract excerpt of text from html
--only excerpt from body tag
--skip past menus etc, get to meaningful content (tricky)
--remove all other html tags
--concatenate remaining text up to specified character number
-scan thru html for img tags
-extract image urls for img tags
-display images for thumbnail selection, in small size
-take selected image and excerpt text
--insert into preformatted code for displaying a link


If someone else wants to have a go making one, be my guest!

[ add comment ] ( 1450 views )   |  [ 0 trackbacks ]   |  permalink
For those of you unfamiliar with Prism, I will keep it short and let you read the rest on their website. Mozilla Prism is a piece of software (based off Firefox and which is also available as an Addon to Firefox) that allows you to create a desktop web-application of your favorite web service.

This is a great way to isolate a service, such as Gmail, to be its own application and running separately from all your other Firefox windows, with its own process. I especially like it this way because Gmail will tend to bog down my browser and take up a lot of memory. Now I can just restart the Gmail webapp instead of restarting all of my browser windows.

But back to Prism. Yeah, its great. It produces a lightweight version of Firefox to client the web service. It also supports the ability to have Addon Extensions. They generally work exactly the same as Firefox extensions but with a few differences here and there. By default Firefox extensions wont work for Prism, they need to be altered.


One of my favorite Firefox addons is Greasemonkey. It allows you to have your own custom js scripts to modify webpages to the way you want to view them. I wanted Greasemonkey to be a part of my Gmail webapp, because I have a script that modifies the layout to make room for the Tasks pane. Unfortunately you can't just simply install the default Greasemonkey addon to Prism.

So with the help of this article on Prism extensions and how they differ from Firfox's, I was able to modify the current version of Greasemonkey to make it installable into Prism.


However, after some more searching online, I found teramako's version of Greasemonkey for Prism. This version is much better tweaked for Prism than mine. It has a new method for adding scripts better suited to Prism and got the Greasemonkey status icon working. The only drawback about teramako's version is that it hasn't been packaged in an xpi for install, so its rather un-userfriendly. So for the convenience of others, here is a packaged xpi of teramako's Greasemonkey for Prism:

teramako's Greasemonkey for Prism
My crappy version Greasemonkey for Prism

[UPDATE]:
Here is an updated xpi of teramako's addon. Version 0.8.20090811.2.
For future reference, if you guys want the latest version, you can easily create your own xpi of the addon. Just download all the files from the latest build on teramako's site and use your favorite zip program and add the files to a zip file, then rename the .zip extension to .xpi


[ 4 comments ] ( 3702 views )   |  [ 0 trackbacks ]   |  permalink
One of my Body Interface projects is the weBlimp. weBlimp is a social, crowd controlled flying airship. It conceptually miniaturizes participants and places them inside the gondola of a remote controlled blimp.
Completion of our weBlimp project video, as well as the conference paper, is now done! Check out the documentation video for details on the project:




[ add comment ] ( 1669 views )   |  [ 0 trackbacks ]   |  permalink  |  related link

<<First <Back | 1 | 2 | 3 | 4 | 5 |