Articles in the Cool & Future Tech Category
Cool & Future Tech, Featured, Headline, html5, Things I've Made »
With all the recent Goruck-ness it’s time to throw out a tech post. I’ve been prepping for a NodeJS presentation recently and wanted a unique demo. I had also come across the experimental build of Opera which supports accessing the native webcam of a mobile device. So I threw these two technologies together and came up with a Javascript powered way to stream a video camera from a mobile device to a bunch of desktop (or mobile) clients.
HTML5 had originally laid out support for a new element (the “device” …
Cool & Future Tech, Featured, Headline, html5, Web Development »
If you have not heard of Node.js (or “Node” as Ryan Dahl calls it) [LINK] it is more fun than a barrel full of monkeys and faster than stink. Node.js is built around the Google V8 javascript engine and aims to solve the issues of concurrency and blocking IO which are prevalent in todays web servers. It also improves over traditional OS threading by using an event model to handle requests. This leads to the ability to handle many more concurrent requests but also handle them faster since less memory …
Cool & Future Tech, Featured, General Computing, Headline »
Here’s a rundown of everything I ran into when hacking my way through android development.
Setup Eclipse, run the Android SDK installer, install the correct USB drivers and finally check your device setup with “adb devices”. Your device should be listed.
If you don’t have an android device, be prepared for the emulator to be extremely slow especially during startup/shutdown. Be sure to mark your emulator as “Snapshot” (accessible from the ADB/AVD SDK Manager-> Start button). Also, don’t connect your device whilst the emulator is running. Adb gets confused.
I had …
Cool & Future Tech, Featured, Headline »
In my post on Software Agents I described some of the scenarios in which a Software Agent might be useful. Josef Betancourt [LINK] pointed me to his excellent article with some interesting ideas of his own and I particularly like his mind map [LINK]. Getting pragmatic I’ve been thinking about how to go about building these and will put down my thoughts in an attempt to move the conversation forward.
Let’s start with few design principles:
Agents should be flexible; We should be able to mix and match their functionality to …
Cool & Future Tech, Featured, General Computing, Headline »
To date, I have met only two people who actually “get” cloud computing and why it will be so transformational (Jeff Barr and Marc Mercuri). The term “cloud” is so overloaded as to become useless. What does Cloud Computing mean to you? Storing data in the “cloud”? Yawn, boring. Storing infrastructure in a data center? Sorry, we already do it. To me, one of the most compelling areas, which I have not seen in the media is…Software Agents. (warning, some blue-sky-what-if-out-of-the-box-dreaming ahead).
Software agents exist today but most are …
Cool & Future Tech, Featured, Headline, html5, Things I've Made, Web Development, Web Experiments »
Irreducible Complexity – the world is too complex to have evolved! Let’s see…
HTML5 introduces the ability to perform multi-threading in the browser using Javascript through the notion of “Web Workers”. So far I have only seen examples of using workers to calculate very high prime numbers. I took a fresh look at these from the standpoint of genetic algorithms and applied it to the Traveling Salesman Problem (a classic). The results are a multi-threaded implementation of the TSP in Javascript capable of converging on a solution for up to 200 …
Cool & Future Tech, Featured, Headline »
I did some toying with Unity and ASP.NET MVC Extensions and found the documentation and number examples somewhat sparse, particularly with MVCExtension. Here’s what I did to change my project over to use MVCExtensions with Unity.
Starting with a basic ASP.NET MVC2 application:
Download and build MVCExtensions from the latest Trunk (http://mvcextensions.codeplex.com/). This is important as the MVCExtension project is under active development. If you download the last stable release you won’t get support for ModelMetadata.
Add references to Microsoft.Practices.Unity, MvcExtensions and MvcExtensions.Unity.
Changed the global.asax to inherit from UnityMvcApplication
Cleaned out the global.asax and moved …
Cool & Future Tech, Featured, Headline, html5, Web Experiments »
Cool & Future Tech, Featured, Headline, html5, Web Development, Web Experiments »
What do you get when you combine Digital Identity, MD5 Hashes, the Canvas element, JQuery and Quilting? Answer: My first JQuery plugin – “Identicon5″ for want of a better name.
Identicon5 is a JQuery plugin that takes an MD5 hash and converts it to a unique image. It’s called Identicon5 since it works through the HTML5 Canvas element.
Working Demo is here: http://francisshanahan.com/identicon5/test.html
Project page is here: http://francisshanahan.com/index.php/identicon5
JQuery Plugin page is here: http://plugins.jquery.com/project/identicon5
Identicons provide a nice visual representation of a user’s identity, that’s unique to that user, without divulging any …
Cool & Future Tech, Featured, Headline, Web Development »
I’ve recently been doing a lot of digging into quote/unquote “newer” browser capabilities, some of which are very cool. I will share what I’ve discovered as I go.
As always I’m using a little “test project” as my sandbox, this is a real-world website that’ll use all these features and I’ll share that when it’s done. So far I’m using oAuth/Twitter integration, ASP.NET MVC/JQuery as a basic stack and am adding in HTML5 and CSS3 features. The resulting site will not be pretty but the point for me is always to …
