January 23, 2009
My wife sent me this link:
CNN Satellite Video
I find it fascinating the turn around time on these images. I also am happy that the major news outlets are making use of GIS in such a high profile way. I really think this has become a boon for introducing GIS to the uninitiated.
Leave a Comment » |
AOI, General, WebSites |
Permalink
Posted by wilsongis
January 2, 2009
I have been using Twitter for the last couple of months. At first I was unsure how to best use Twitter and found it extremely frustrating. What really changed my mind about Twitter were several articles and blogs I ran across. One of the posts I read, A Minimalist’s Guide to Using Twitter Simply, Productively, and Funlyby Leo Babauta, contained a description of Twitter which really change how I percieved it. The description was of Twitter as a river…
Twitter is like a river … you can step into it at any point and feel the water, bathe in it, frolic if you like … and then get out. And go back in at any time, at any point. But, you don’t have to try to consume the entire river — it’s impossible and frankly a waste of time in my eyes.
So that’s how I approach Twitter these days: I’ll just jump into the stream of incoming tweets and see what people are saying. I can ignore them or follow their links or reply if I want. Then I get out of the stream. I don’t try to read everything I missed, and if I miss a lot of stuff, I’m OK with that.
via A Minimalist’s Guide to Using Twitter Simply, Productively, and Funly | Zen Habits.
Here are some links to other posts about Twitter that I found intetresting and Helpful:
5 Comments |
AOI, General, WebSites | Tagged: social.media |
Permalink
Posted by wilsongis
December 10, 2008
When I design a website, I typically like to add a headlines section to the index page. I do not always have time to either edit the index or create new stories. For this reason, I started using a blog with RSS feeds. I can then use PHP to parse the feed and display the headlines. To keep things neat I limit the number of headline and once I reach my limit, I put a link to additional posts.
The PHP RSS Parser I use is MagpieRSS, as per the MagpieRSS website:
MagpieRSS: RSS for PHP
MagpieRSS provides an XML-based expat RSS parser in PHP.
MagpieRSS is compatible with RSS 0.9 through RSS 1.0. Also parses RSS 1.0’s modules, RSS 2.0, and Atom.
via Magpie RSS – PHP RSS Parser.
In order to diplay just the headlines, I insert the following PHP block into my index page:
<?
require_once ‘rss_fetch.inc’;
// ADD YOUR FEED LINK
$url = ‘http://www.example.com/articles/Articles.rss’;
$rss = fetch_rss($url);
$counter=1;
$i=1;
foreach ($rss->items as $item ) {
$title = $item['title'];
$url = $item['link'];
if ($i<9) {
//OPEN HEADLINE IN NEW WINDOW
echo “<p>• <a href=’$url’ target=’_Blank’>$title</a><br /></p>\n”;
}
$i++;
$counter++;
}
if ($i>8) {
//ADD YOUR FEED LOCATION
echo “<a href=’http://www.example.com/Articles’ target=’_Blank’>More…</a><br>\n”;
}
?>
Leave a Comment » |
AOI, ToolsIUse | Tagged: Samples, script, Tools |
Permalink
Posted by wilsongis
December 6, 2008
An RSS file is basically a list of headlines encoded so that it can be easily used by another program or website. The RSS abbreviation is variously used to refer to the following standards:
- Really Simple Syndication (RSS 2.0)
- Rich Site Summary (RSS 0.91, RSS 1.0)
- RDF Site Summary (RSS 0.9 and 1.0)
RSS is a form of XML (eXtensible Markup Language), which means that each piece of data in the list – a headline, a description of a story – is coded separately so that a program will know exactly what to do with it.
Programs that know what to do with RSS files are called “news aggregators.” They let you read headlines from dozens or hundreds of news sites at one time. You simply plug in the addresses of the RSS files you want.
See Also:
Wikipedia – RSS
What Is RSS?
Introduction to RSS
1 Comment |
AOI |
Permalink
Posted by wilsongis