Free WiFi in the Edmonton Journal
2008-August-09 | 02:59 pm

An article was published in today’s Journal about the Free WiFi project I started.

An Old Strathcona cafe owner hopes to blanket the area and eventually much of the city with what’s apparently Edmonton’s first free wireless Internet network created by a private group.

Eric Warnke of Free WiFi says the group has set up at least seven locations since June from which people can access the Internet with laptops, cellphones, new iPods and other equipment…

Read the whole thing


Posted in 3rd on Whyte, and Entrepreneurship, and WiFi | | No Comments


Free Edmonton Wireless
2008-June-07 | 02:47 pm

As part of my mesh network interests I’ve started up WirelessEdmonton.ca. This will serve as the main website and splash page for my free wifi initiative.

I am starting with Whyte Avenue, where my Internet Cafe is located. I have 20 Open-Mesh routers that need deploying. I will be going to different businesses along the avenue where I feel the network needs a boost and asking them if they will help out.

If a business hosts a repeater they will get a mention on the website. If they host a gateway they will get a specific ad on the front page indicating they are helping out.

In order to generate money I’ve put a simple 160×600 skyscraper ad on the right hand side of the splash page. For $75 a month an advertiser will get equal rotation on the front page. These are just rough numbers to start. As traffic and advertisers grow I’ll make adjustments. Right now the most important thing is to get people to carry my routers.

My buddy Mack was visiting with me the other day and we were doing some crazy brain storming into the future of a free network like this. We both think it has amazing potential and I can’t wait to see this thing explode.


Posted in Business, and Entrepreneurship, and Technology, and Websites, and WiFi, and Work | | 2 Comments


New Open-Mesh Routers
2008-June-07 | 01:23 pm

A few days ago my shipment of Open-Mesh routers arrived! They’re super small and really cool.

Here are a bunch of pictures of me opening them.

The setup was really simple, just like the Meraki routers. Basically you need to plug in on of the repeaters to an internet and power connection for 5 minutes so it updates and then the WLAN lights will start flashing, this means it’s ready to rock. Then you just log in to Open-Mesh.com and add the router’s MAC or IP address to the network and BOOM, it’s broadcasting.

To expand the network you just add more routers and place them around. A repeater doesn’t have an internet cable connection, it just picks up the closest wireless signal from the same network and rebroadcasts it. A gateway has an internet connection and therefore a stronger signal.

Right now I have one router sitting in the window at my cafe. I’ll make another post soon to explain why :D


Posted in 3rd on Whyte, and Interesting, and Technology, and WiFi, and Work | | 13 Comments


PHP Gallery Directory Image Reader
2008-May-25 | 06:48 pm

I wrote a neat little script to simply read a directory, search for thumbnails, then print a list with links to the larger images. I look for the thumbnails so it doesn’t get images that don’t have small versions.

There are limitations, for example if you put a PDF with ‘.thumb’ in the directory it will try to link it as an image. This is ok for me because I’m controlling what goes in the directories. I suppose I could add a check for it later if I need to.

<?php

/* This little snippet takes the directory and looks for any files with ‘.thumb’. Then it takes out the ‘.thumb’ to link to the big image. Then it makes a nice little list. */

$dir = ‘gallery/gallery2/’; /* Point to the right gallery directory */

echo “<ul>”;

if ($handle = opendir($dir)) {

while (false !== ($file = readdir($handle))) { /* Loop over directory */

if (strpos($file, ‘.thumb’)) { /* Look for the .thumb */

$filebig = str_replace(’.thumb’,”,$file); /* Remove .thumb for our big files */

echo “<li><a href=\”$dir$filebig\” rel=\”lightbox[1]\”><img src=\”$dir$file\” border=\”0\”/></a></li>\n”; /* Make the list with both file names */

}

}

closedir($handle); /* Finish */

}

echo “</ul>”

?>


Posted in Programming, and Web Design, and Work | | 1 Comment


How to Give Nexopia a Jump Start
2008-May-10 | 02:05 pm

Months, maybe a year ago I made the recommendation that Nexopia develop a product to “import” profiles from other websites. This was of course brushed off as “hard to do” and “illegal” because it would require the scraping of data from other social networks. There was also the issue of privacy and our lead developer refused to ever ask a user for their password to another site.

Things have changed a little bit since then. Nexopia does friend searches from other services but there isn’t any real reason for someone to come to Nexopia and spend time building a complex profile.
Enter Data Portability. DP is

DataPortability is a group created to promote the idea that individuals have control over their data by determing how they can use it and who can use it. This includes access to data that is under the control of another entity.

With major sites like Digg, MySpace, and now Facebook introducing new methods for data portability it won’t hard to move yourself across domains. Throw in OpenID and you’ve got a good formula for letting new users come to your site quickly and efficiently.

My recommendation for Nexopia to start growing again is to keep an eye on these major players and when they open themselves up you should be waiting with a “1-click sign up” where your entire profile is created without you touching it.

Update: I changed the title to reflect the post and fixed some spelling errors.


Posted in Nexopia, and Web Design, and Websites | | 1 Comment