diff options
author | luxagraf <sng@luxagraf.net> | 2020-04-28 10:24:02 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-04-28 10:24:02 -0400 |
commit | f343ef4d92352f9fc442aeb9c8b1abee27d74c62 (patch) | |
tree | 4df5c497e7caeab1f8932df98ad3d00fef228a3e /wired/old/published/Webmonkey | |
parent | a222e73b9d352f7dd53027832d04dc531cdf217e (diff) |
cleaned up wired import
Diffstat (limited to 'wired/old/published/Webmonkey')
3720 files changed, 21136 insertions, 0 deletions
diff --git a/wired/old/published/Webmonkey/APIs/delicious.txt b/wired/old/published/Webmonkey/APIs/delicious.txt new file mode 100644 index 0000000..19d699d --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/delicious.txt @@ -0,0 +1,45 @@ +Del.icio.us started the social bookmarking revolution and it continues to a popular way to store and share your bookmarks with the world. + +Thanks to its API, it's relatively simple to retrieve your bookmarks and display them on your own site or mash them up somewhere else. And there's no need to limit yourself to your own bookmarks, you can grab bookmarks by tag, other users, date and half a dozen other means. + +As an example, we'll use the del.icio.us API to grab your recent bookmarks, however, if you want to grab something else, say a list of all your tags, you'll just need to change one line. + +== Getting Started == + +There are a number of client libraries available for those looking to access the del.icio.us API. There's a particularly nice one for [http://code.google.com/p/pydelicious/ Python] and one for [http://delicious-java.sourceforge.net/ Java] as well. + +However we're going to skip the client in favor of writing our own code in PHP. The process is simple, just send your login credentials and then the url of the method you're trying to access. + +Copy this code into your PHP file. + +<? +$dusername = "XXXXXXXXXXXXX"; +$dpassword = "XXXXXXXXXXXXX"; +$api = "api.del.icio.us/v1"; +$apicall = "https://$dusername:$dpassword@$api/posts/recent?&count=30"; +function del_connect($url) { + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL,$url); + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); + curl_setopt($ch, CURLOPT_USERAGENT, 'mycoolname'); + curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); + $xml = curl_exec ($ch); + curl_close ($ch); + return $xml; +} +$result = del_connect($apicall); +echo $result; +?> + +The first four lines just set up our URL to retrieve the last 30 bookmarks posted to your account. Naturally you can change this to access any of the [http://del.icio.us/help/api/ API methods] that del.icio.us offers. + +Once we have the URL in place we just pass it to our <code>del_connect()</code> which then uses PHP's built in cURL library to retrieve the XML data from del.icio.us. + +== Where to go from here == + +So we have our last 30 bookmarks, but of course you'll need to parse that XML into some usable PHP structure, like an array, for displaying on a webpage. Since there are at least half a dozen XML parsers for PHP we'll leave that for you to decide. + +The other thing to keep in mind is that we haven't cached our results at all, so don't use this code in an actual web page or del.icio.us may well ban you. You need to set up some sort of cache -- Apache's mod_cache can fit the bill -- so that you don't pound on the del.icio.us servers every time your page refreshes. + + + diff --git a/wired/old/published/Webmonkey/APIs/disqusapi.txt b/wired/old/published/Webmonkey/APIs/disqusapi.txt new file mode 100644 index 0000000..76a968b --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/disqusapi.txt @@ -0,0 +1 @@ +Disqus is a very clever and simple way to add comments to just about any page. Thanks to the handy plugins for various blogging platforms (WordPress, Movable Type, Blogger and more) it's easy to integrate into your current publishing system.
For those of using a custom blogging engine there's even some nice JavaScript code that can get Disqus comments on your site in no time.
The only problem with using Disqus is there's no on-site backup -- all your comments are stored and managed through Disqus, but if Disqus is down for some reason, or you decide to stop using it in the future, well, you're screwed.
There's a nicely integrated plugin for WordPress that automatically pushes your Disqus comments to your WordPress database, but the those of us not using WordPress are seemingly out of luck.
Luckily for us the the company [http://www.webmonkey.com/blog/Disqus_Poised_to_Rule_the_World_of_Blog_Comments recently launched] a new [http://disqus.com/docs/api/ public API], which offers some ways to retrieve your comment data and store it wherever you like. Grab a couple of joe and we'll dig into to how the Disqus API works.
== Getting Started ==
The Disqus API is slightly convoluted, but with a little work we can get what we're after. The first step is grabbing your [http://disqus.com/api/get_my_key/ Disqus API key] (note that you need to be logged into Disqus for that link to work).
Now, if you look over the documentation you'll notice that there's actually two API keys we need. The first is the one linked above, but then we'll also need a key for each "forum" that we're going to access. Luckily we can query for the second key.
If the word "forum" is a little confusing, here's low down (the terminology we suspect originates from Disqus' infancy when it was a forum software project).
Each of your sites in Disqus are what Disqus calls a "forum." Within each site or forum, you have message threads. The threads correspond to you blog posts (or the page where you embed Disqus).
Then within each thread are the "posts," or comments, people have left on your site.
So the API process means first you fetch a list of forums (if you only have one site, there's just one forum_id to worry about), then you fetch a list of "threads" in each forum, then you can request the actual comments for each thread.
== Dive in ==
To help get you started I've written a quick and dirty Disqus API Client for Python. Because the Disqus API is young and subject to change, I didn't mirror it, rather I created a generic wrapper function which can handle all the current (and future) methods.
Here's the code:
<pre>
import urllib
import simplejson
BASE_PATH = 'http://disqus.com/api/'
DEBUG = True
class DisqusError(Exception):
def __init__(self, code, message):
self.code, self.message = code, message
def __str__(self):
return 'DisqusError %s: %s' % (self.code, self.message)
class DisqusAPIClient():
def __init__(self):
"""instantiate"""
def __getattr__(self, method):
def method(_self=self, _method=method, **params):
url = "%s%s/?&%s" % (BASE_PATH, _method, urllib.urlencode(params))
if DEBUG: print url
data = self.fetch(url)
return data
return method
def fetch(self, url):
data = simplejson.load(urllib.urlopen(url))
if data.get("code", "") != "ok":
raise DisqusError(data["code"], data["message"])
return data['message']
def __repr__(self):
return "<DisqusClient: %s>" % self.method
</pre>
Save that in a new file, named disqus.py, somewhere on your PythonPath. Be sure to note that we're using the Python simplejson library, so you'll need to [http://pypi.python.org/pypi/simplejson download and install] that if you haven't already.
== Using the Disqus API ==
Okay, now we have something we can use to access Disqus and return nice, native Python objects. So do we go about using it?
Here's an example using the Python command line interface:
<pre>
>>> from disqus import DisqusAPIClient
>>> client = DisqusAPIClient()
>>> API_KEY = 'XXXXXXXXXXXXXX'
>>> fkey = client.get_forum_list(user_api_key=API_KEY)
>>> fkey
[{u'created_at': u'2008-08-29 18:33:26.560284', u'shortname': u'luxagraf', u'name': u'luxagraf', u'id': u'00000000'}]
</pre>
So the first thing we do is import our client. Then we define our API key. The next step is fetch our list of forums using the Disqus method <code>get_forum_list</code>, which requires a parameter <code>user_api_key</code> along with the actual key.
As you can see the result is a Python list containing, among other data, our forum id. So now we can plug that into the function that will retrieve our forum key.
Here's how that works:
<pre>
>>> forum_key = client.get_forum_api_key(user_api_key=API_KEY, forum_id=fkey[0]['id'])
>>> forum_key
u'u@E6KnR....'
</pre>
All we've done here is call the <code>get_forum_api_key</code> method, passing it the user API key and the forum id, which we extracted from our earlier call.
Now that we have the forum key we can actually retrieve a list of threads (all the posts where we have Disqus comments running).
Once we have the list of threads, we can then query of all the comments on each thread:
<pre>
>>> comments = []
>>> posts = client.get_thread_list(forum_api_key=forum_key)
>>> for post in posts:
... comments.append(client.get_thread_posts(forum_api_key=forum_key, thread_id=post['id']))
</pre>
What we've done here is create a list object to store all our comments and then queried for the list of threads. Once we have the thread we loop through each one and call <code>get_thread_posts</code> which returns the actual comments.
Then we just append those to our <code>comments</code> list.
Now we have all the comments that have been posted on each entry in a single Python list. From here all we need to do loop through the comments and store them in database that matches to all the kinds of data Disqus stores -- comment, commenter name, avatar and so on.
Because there are any number of ways you can do that, different databases etc, we'll leave that as an exercise for the reader, but to access the individual comments and associated data you would just need to loop through our comments list like so:
<pre>
>>> for c in comments:
... if c:
... print c[0]['message']... etc
</pre>
Rather than simply printing out the data, just call a function that writes the data to the database and you'll have your local backup of Disqus comments.
== Conclusion ==
When it comes to sending comments to Disqus, you'll have to stick with the JavaScript forms that the company provides. At least for now, though the API docs do note that Disqus is looking into other ways of submitting.
Still, despite being one-way, the Disqus API makes it relatively easy to store a local backup of all the comments that have been submitted to your site through the Disqus service.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/APIs/flickr.txt b/wired/old/published/Webmonkey/APIs/flickr.txt new file mode 100644 index 0000000..8c052dd --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/flickr.txt @@ -0,0 +1,66 @@ +One the first and most comprehensive APIs of web 2.0, the Flickr API was in no small part responsible for the site's success. There were dozens of photo sharing sites clamoring for attention when Flickr first launched, but thanks the API developers begin building tool and extending the site far beyond the capabilities of others. + +The Flickr API exposes just about every piece of data that the site store and offer near limitless possibilities for mashups, data scraping, tracking friends and just about anything else you can think of. + +Some of the more popular applications leveraging the API are the various desktop uploaders available on all platforms, endless mapping mashups and more. Perhaps the most prolific of Flickr API users is John Watson (Flickr user fd) who has an [http://bighugelabs.com/flickr/ extensive collection] of tools and mashups available. + +== Getting Started == + +The nice thing about Flickr is that the API is mature and there are already client libraries available for most languages (several libraries in some cases). That mean you don't need to sit down and work out the details of every method in the API, you just need to grab the library for your favorite programming language. + +For the sake of example, I'm going to use a Python library to retrieve all the photos I've marked as favorites on Flickr. + +First grab [http://flickrapi.sourceforge.net/ Beej's Python Flickr API library] and install it on your Python path (instructions on how to do that can be found in the [http://flickrapi.sourceforge.net/flickrapi.html documentation]). I like Beej's library because it handles the XML parsing without being dependent on any other libraries. + +== Writing the Code == + +Now let's write some code. Fire up a terminal and start Python. Now import the flickrapi and set your API key: + +import flickrapi +api_key = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' + +Now we're going to create an instance of the flickrapo client: + +flickr = flickrapi.FlickrAPI(api_key) + +Okay, now let's grab all the photos we've marked as favorites. Accessing all the methods of the Flickr API takes the general form: + +flickr.method_name(params) + +So to grab our favorites we'll use: + +favs = flickr.favorites_getPublicList(user_id='85322932@N00') + +So the favs variable now holds our list of images as parsed XML data. To print it we just loop through and pull out what we want: + +for photo in favs.photos[0].photo: + print photo['title'] + +To access the actual images, for instance to generate some HTML, we just need to build a url: + +for photo in favs.photos[0].photo: + print '<img src="'+"http://farm%s.static.flickr.com/%s/%s_%s_m.jpg" % (photo['farm'], photo['server'], photo['id'], photo['secret']) +'" />' + + +== Mashups == + +If all you want to do is put images on your website there's probably already a widget that can handle the task (of course you *can* DIY if you like). But what if you wanted to plot all the Favorites we just retrieved on a Google Map? + +That's exactly the sort of mashup that the Flickr API excels at. To do that, we would just need to add a parameter to our original method call, to tell flickr to include the photos geo coordinates, for instance: + +favs = flickr.favorites_getPublicList(user_id='85322932@N00', extras='geo') + +Now we can parse through and grab the coordinates: + +for photo in favs.photos[0].photo: + print photo['latitude'] + photo['longitude'] + +Then we can pass that over to the Google Maps API and plot the images. Note that in this particular case only a couple of the returned photos actually have lat/long info so it would be a good idea to test for non-zero values before passing the data to the Google Maps API. + +I should also point out that the Flickr API will return other formats besides XML. For instance we coud use this method to get a JSON response: + +favs = flickr.favorites_getPublicList(user_id='85322932@N00', extras='geo', format='JSON') + +== Conclusion == + +The Flickr Maps API exposes nearly every aspect of the site, which makes it both limitless and daunting, but thankfully Flickr has excellent documentation. As for what you can do with the Flickr API, the best mashups seem to start with the thought, "you know what would be cool..."
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/APIs/gajaxsearch.txt b/wired/old/published/Webmonkey/APIs/gajaxsearch.txt new file mode 100644 index 0000000..69dbb3e --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/gajaxsearch.txt @@ -0,0 +1,87 @@ +Building a site search engine is pain and unless you're handy at writing algorithms, yours probably isn't going to be that great, even after all your hard work. So why bother? Especially when there's already a reasonably popular search engine by the name of Google that's perfectly willing to handle the job for you. + +The [http://code.google.com/apis/ajaxsearch/ Google Search API] is not only really good at searching, since it accesses the Google index, but it's also really easy to use. + +The mashup potential here is near limitless, but we'll confine ourselves to a much more common case -- a site specific search engine for your blog. + +== Getting Started == + +The first step is to get a Google Search API. Just login to your Google account and head over the application page. Tell Google the domain where you'll be using the Search API and then copy and paste your key, we'll need it in just a minute. + +First, just to ensure there's no confusion, the only search API from Google uses AJAX. There was an older SOAP-based API, but sadly, that's no longer available. You might still run across a few SOAP-based implementation since Google hasn't shut it down, but it doesn't hand out new keys. + +The other thing to keep in mind is that if you're launching a new site, the site-specific results won't exist, since Google probably hasn't crawled the URL yet. If you don't have one, set up a Google Webmaster accounts and tell Google about your site by creating a sitemap. That should speed up the indexing process though you will likely still have to wait a few days before a Google search returns anything. + +== Implementing The Basic Search Engine == + +The first thing to do if open up your site template and add this line to the head tags: + +<code> + <script src="http://www.google.com/uds/api?file=uds.js&v=1.0&key=YOURKEYHERE" type="text/javascript"></script> +</code> + +Paste in that API key you generated earlier and you're ready to go. For now we're going to write all our code in the page head tags, but if you end up with a long and complex script it's a better idea to break it out in its own file. + +<code> +<script language="Javascript" type="text/javascript"> + //<![CDATA[ + + function OnLoad() { + // Create a search control + var searchControl = new GSearchControl(); + + // create a search object + searchControl.addSearcher(new GwebSearch()); + // tell Google where to draw the searchbox + searchControl.draw(document.getElementById("search-box")); + + } + GSearch.setOnLoadCallback(OnLoad); + + //]]> +</script> +</code> + +What we've done here is create a function that fires when the page loads and creates a new GSearchControl object which is a text input box and a search button (there's also a little "powered by Google" badge). We then create a searcher, in this case we're just using a normal GwebSearch, which mimics the Google homepage. + +Other options include video search, image search, blog search and several other of Google's specialized search engines. For more details check out the [http://code.google.com/apis/ajaxsearch/documentation/reference.html#_intro_GSearch Search Docs]. + +Once we have the object initialized and the type of search set we have to tell Google where to draw the object. In this case we'll use a div with an id of "search-box," so add this code somewhere in the body of you html file: + +<code> +<div id="search-box"> + +</div> +</code> + +That's all there is to it, your users can now search Google without leaving your page. But that's not exactly what we want, read on to find out how we can limit the search to just your site. + +== Site Specific Search Engine == + +To restrict the results to just your domain we need to create a site restriction. To do that we're going to change this line: + +<code>searchControl.addSearcher(new GwebSearch());</code> + +To this: + +<code> +var siteSearch = new GwebSearch(); +siteSearch.setUserDefinedLabel("YourSite"); +siteSearch.setUserDefinedClassSuffix("siteSearch"); +siteSearch.setSiteRestriction("example.com"); +searchControl.addSearcher(siteSearch); +</code> + +Just fill in your site name and url and you're done. Give it a shot and you should see results limited to your domain (assuming Google has indexed it already) + +One thing to note, you can string together as many of these site search as you'd like and use the setUserDefinedClassSuffix to add a different class to each domain which makes it possible to do some fancy CSS work to, for instance, color code your results by domain. + +You can also create a search using a custom search engine if you have one defined. See the Search Docs for more details. + +== Where to go From Here == + +We've really just scratched the surface of what you can do with the AJAX Search API, so definitely read through the documentation and have a look at some of the example. Mashup potentials abound, especially using some the specialized search engines like local search or video. + +Other options include the ability to control most of the look and feel via stylesheets, the ability to search Google Books to find quotes for your blog and more. + +If even this is just too much code, you can always use the handy [http://code.google.com/apis/ajaxsearch/wizards.html Ajax Search Wizards] to generate some cut and paste code that will perform basic searches. diff --git a/wired/old/published/Webmonkey/APIs/gdata_documents_list.txt b/wired/old/published/Webmonkey/APIs/gdata_documents_list.txt new file mode 100644 index 0000000..b654b81 --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/gdata_documents_list.txt @@ -0,0 +1,101 @@ +Google Documents offers free online storage for a variety of common files -- your MS Office documents, spreadsheets, text files, and more. + +Even if you don't actually use Google Documents for editing or creating documents, it can serve as a handy backup for your desktop files. Today we'll take a look at the gData APIs that allow you to upload files from your local machine and store them in Google Documents. + + +== Installing the gData API == + +Because most of what we're going to do is shell-based, we'll be using the the Python gData library. If you're not a Python fan there are a number of other client libraries available for interacting with Google Docs including [http://code.google.com/apis/youtube/developers_guide_php.html PHP], [http://code.google.com/apis/youtube/developers_guide_dotnet.html .NET], [http://code.google.com/apis/youtube/developers_guide_java.html Java] and [http://code.google.com/apis/youtube/developers_guide_python.html Python]. + +To get started go ahead and download the [http://code.google.com/p/gdata-python-client/ Python gData Client Library]. Follow the instructions for installing the Library as well as the dependancies (in this case, ElementTree -- only necessary if you aren't running Python 2.5) + +Now, just to make sure you've got everything set up correctly, fire up a terminal window, start Python and try importing the modules we need: + +<pre> +>>> import gdata.docs +>>> import gdata.docs.service +</pre> + +Assuming those work, you're ready to start working with the API. + +== Getting Started == + +The first thing we need to get out of the way is what kinds of documents we can upload. There's a handy static member we can access to get a complete list: + +<pre> +>>> from gdata.docs.service import SUPPORTED_FILETYPES +>>> SUPPORTED_FILETYPES +</pre> + +Running that command will reveal that these are our supported upload options: + +#RTF: application/rtf +#PPT: application/vnd.ms-powerpoint +#DOC: application/msword +#HTM: text/html +#ODS: application/x-vnd.oasis.opendocument.spreadsheet +#ODT: application/vnd.oasis.opendocument.text +#TXT: text/plain +#PPS: application/vnd.ms-powerpoint +#HTML: text/html +#TAB: text/tab-separated-values +#SXW: application/vnd.sun.xml.writer +#TSV: text/tab-separated-values +#CSV: text/csv +#XLS: application/vnd.ms-excel + +Definitely not everything you might want to upload, but between the MS Office options and good old plain text, you should be able to backup at least the majority of your files. + +Now let's take a look at authenticating with the gData API. + +Create a new file named gdata_uploader.py and save it somewhere on your Python Path. Now open it in your favorite text editor. Paste in this code: + +<pre> +from gdata.docs import service + +def create_client(): + client = service.DocsService() + client.email = 'yourname@gmail.com' + client.password = 'password' + client.ProgrammaticLogin() + return client + +</pre> + +All we've done here is create a wrapper function for easy logins. Now, any time we want to login, we simply call <code>create_client</code>. To make you code a bit more robust you can pull out those hardcoded <code>email</code> and <code>password</code> attributes and define them elsewhere. + +== Uploading a document == + +Now we need to add a function that will actually upload a document. Just below the code we created above, paste in this function: + +<pre> +def upload_file(file_path, content_type, title=None): + import gdata + ms = gdata.MediaSource(file_path = file_path, content_type = content_type) + client = create_client() + entry = client.UploadDocument(ms,title) + print 'Link:', entry.GetAlternateLink().href +</pre> + +Now let's play with this stuff in the shell: + +>>> import gdata_upload +>>> gdata_upload.upload_file('path/to/file.txt','text/plain','Testing gData File Upload') +Link: http://docs.google.com/Doc?id=<random string of numbers> +>>> + +Note that our <code>upload_file</code> takes an optional parameter "title", if you import Python's date module and pass along the date as a string it's easy to make incremental backups, like: myfile-082908.txt, myfile-083008.txt and so on. + +== Where to go from here == + +To automate our backup process you could call the upload file function from a cronjob. For instance I use: + +<pre> +0 21 * * * python path/to/backup_docs.py 2>&1 +</pre> + +In this case backup_docs.py is just a three line file that imports our functions from gdata_uploader.py and then uses Python's <code>os</code> module to grab a list of files I want backed up and calls the <code>upload_file</code> function. + +While the automated script is a nice extra backup, unfortunately the gData Documents API is somewhat limited. For instance it would be nice if we could automatically move our document to a specific folder, but that currently isn't possible. + +There are some read functions available though, have a look through the [http://code.google.com/apis/documents/reference.html official docs] and if you come up with a cool way to use the API, be sure to add it to this page. diff --git a/wired/old/published/Webmonkey/APIs/glossary.txt b/wired/old/published/Webmonkey/APIs/glossary.txt new file mode 100644 index 0000000..54938ab --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/glossary.txt @@ -0,0 +1,38 @@ +An Application Programming Interface, better know by it's abbrieviation, API, is a simple way to interact with websites. Using an API you can extract public data from sites like del.icio.us, flickr, Digg and more to create mashups, reuse data or just about anything else you can imagine. + +APIs are also useful for extracting your own private data from a site so that you can back it up elsewhere or display it on another site. + +When talking about APIs you'll here the following terms quite a bit. + +== Common API Related Terms == + +# Web service/API -- These terms are largely interchangable and simple refer to the ways you can interact with the data on your favorite websites. + +# Method -- A method is just one aspect of an API; you might also see methods refered to a functions. For instance, if you're interacting with Flickr, you might want to get your public photos. To do so you would use the get_user_photos method. + +# Response -- the information returned by the API method that you've called. + +# REST -- short for Representational State Transfer. REST treats data as a web document that lives at a specific URL. REST APIs use standard HTTP requests such as GET, PUT, HEAD, DELETE and POST to interact with data. + +# XML-RPC -- This older API scheme formats method calls and reponses as XML documents which are sent over HTTP. + +# SOAP -- Simple Object Access Protocol. A W3C standard for passing messages across the network. SOAP is the successor to XML-RPC. It's complexity has led many to disparage SOAP and with more APIs leaning toward REST, SOAP's future is uncertain. + +# AJAX -- Asynchronous JavaScript and XML. Technically it has nothing to do with APIs, however many sites using APIs send their queries out using AJAX which is partially resposible for the popularity of JSON. + +# JSON -- JavaScript Object Notation. JSON's main advantage is that it is easy to convert from JSON to nearly any other programming language. JSON uses key-value pairs and arrays, something common to PHP, Python, Perl, Ruby and most other languages. The portability of JSON has made it an increasingly popular choice for sites developing APIs. + +== Popular Web APIs == + +# [http://www.google.com/apis/maps/ Google Maps] +# [http://developer.yahoo.com/maps/ Yahoo Maps] +# [http://www.flickr.com/services/api/ Flickr] +# [http://code.google.com/apis/youtube/overview.html YouTube] +# [http://del.icio.us/help/api/ del.icio.us] +# [http://wiki.ma.gnolia.com/Ma.gnolia_API ma.gnolia] +# [http://twitter.com/help/api Twitter] +# [http://www.yelp.com/developers/documentation/search_api Yelp] +# [http://openid.net/ OpenID] +# [http://www.amazonws.com/ Amazon S3] +# [http://atomenabled.org/ AtomAPI] +# [http://meta.wikimedia.org/wiki/API MediaWiki API]
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/APIs/gmaps.txt b/wired/old/published/Webmonkey/APIs/gmaps.txt new file mode 100644 index 0000000..134eab9 --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/gmaps.txt @@ -0,0 +1,83 @@ +Google Maps is perhaps the biggest and most useful of all the common web APIs, but it's also one of the more complex and can be intimidating for newcomers. It's also somewhat difficult to immediately recognize all the possibilities of the Google Maps API since there are literally hundreds of ways to use it. + +To keep things simple we'll start with a vary common use: Adding a map to your site and displaying some markers. + +== Getting Started == + +The first thing you need to do is apply for a Google Maps key. Just head over to the [http://code.google.com/apis/maps/signup.html API key signup page] and login to your Google account. Once you have the key, create an html file with this basic code: + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <head> + <title>My Map</title> + <script src="http://maps.google.com/maps?file=api&v=2&key=yourkeyhere" type="text/javascript"></script> + </head> + <body> + <h1>My Map</h1> + <div id="map-canvas"></div> + </body> +</html> + +Remember to paste your map key into the JavaScript tag and you're all set. Well, almost. WE need to add one more little thing so that Google will go ahead and initialize the map. Change the body tag to include the following handlers: + +<body onload="initialize()" onunload="GUnload()"> + +== Adding in the Map == + +We've got our script set up and it's loading, now we just need to tell the API where to draw the map. To do that we're going to write a little JavaScript. Let's get started by inserting this code into the head tags of your HTML file + +<style> +div#map-canvas { + width: 500px; + height: 300px; +} +</style> +<script type="text/javascript"> + var map = null; + + function initialize() { + if (GBrowserIsCompatible()) { + // create a center for our map + point = new GLatLng(37.780764,-122.395592) + // create a new map. + map = new GMap2(document.getElementById("map-canvas")); + // set the center + map.setCenter(point, 15, G_NORMAL_MAP); + + } + } +</script> + +Now load your html file in your browser and you should see a map centered on the Wired News offices. + +== Adding Markers == + +Let's add in marker so users have something to interact with. To do that we'll extend our initialize function. Add these lines just below map.setCenter bit: + + markerOptions = {clickable:true, draggable:false }; + marker = new GMarker(point, markerOptions); + map.addOverlay(marker); + marker.info_window_content = '<h2><strong>Wired News</strong></h2><p>Home of Monkeys</p>' + marker.bindInfoWindowHtml(marker.info_window_content, {maxWidth:350}); + GEvent.addListener(marker, "click", function() { + map.panTo(point, 2); + }); + + +Reload your page in the browser and you should now see a little red pin and when you click it, you should see our little info window. + +And that's all there is to it. + +== Where to go from here == + +Obviously the GMaps API is far more powerful than this simple example. By itself the Google Maps API might not be the most exciting web service, but when you start mashing it together with other data, it can turn boring address tables into map plotted, location-aware information for your visitors. + +Here's a few ideas to get you started exploring some other Google Maps options. + +# Include driving direction -- to get the handy "directions to here" links that you'll find on a normal Google map, see the [http://code.google.com/apis/maps/documentation/reference.html#GDirections GDirections class] +# Include map controls - There are a variety of different [http://code.google.com/apis/maps/documentation/reference.html#GControl GMap controls] for your users to pan and zoom. Try adding this line just above the initialize function: map.addControl(new GSmallZoomControl()); +# Batch Add Markers - The best way to add markers is to pull info from your database and loop through it when you output the HTML. Just nestle the code from the "Adding Markers" section inside a loop and make the marker names dynamic. +# Custom Markers - There's no need to stick with the default red pin, you can use any image you want, see [http://code.google.com/apis/maps/documentation/reference.html#GMarkerOptions the docs for more details]. +# Hide the Google logo and map image credits - Most definitely against the TOS, but if you're so inclined add this to your stylesheet: img[src="http://maps.google.com/intl/en_us/mapfiles/poweredby.png"], +#map-canvas>div:first-child+div>*, +a[href="http://www.google.com/intl/en_us/help/terms_maps.html"]
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/APIs/oembed.txt b/wired/old/published/Webmonkey/APIs/oembed.txt new file mode 100644 index 0000000..f997f3e --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/oembed.txt @@ -0,0 +1,120 @@ +Have you ever wished you could get full multimedia embed code from a simple URL? Suppose you're building a social app that allows users to post links to images, videos or songs, wouldn't it be nice if you could turn that simple link into an embedded Flickr image or YouTube video? + +Of course you can reverse engineer many of the various embed structures, but what happens when the source site of your multimedia embed changes its format or relocates the actual image? Thousands of broken links suddenly litter your site. There has to be a better way. + +That's the thinking behind OEmbed, a new proposed standard for taking a URL and generating an embed link. OEmbed is the brainchild of Pownce developers Leah Culver and Mike Malone, as well Cal Henderson of Flickr and Richard Crowley of OpenDNS. + +OEmbed isn't going to solve all your embedding needs since not every site supports it, but given that some big names -- like Flickr and Viddler -- have already signed on, we think others will soon follow suit. + +So grab your coding tools and let's dive in to see how OEmbed can make your life easier. + +== What is OEmbed == + +Put simply, OEmbed dictates a standard format where you send a URL and the host site provides the embed code. In the simplest case you would capture the URL you user has entered and then query the originating service's API to get back any additional info you need. + +Here's how it works: The user enters a URL, the service (say Pownce) then queries the source of the URL (say, Flickr). The source site then sends back all the necessary information for Pownce to embed the image automatically. + +The full OEmbed spec says that all requests sent to the API endpoint (Flickr in our example) must be HTTP GET requests, with any arguments sent as query parameters. Obviously any arguments you send through HTTP should be url-encoded (as per [http://www.faqs.org/rfcs/rfc1738.html RFC 1738] in this case). + +The following query parameters are defined as part of the spec: + +# url (required) - The URL to retrieve embedding information for. +# maxwidth (optional) - the maximum width of the embedded resource. +# maxheight (optional) - the maximum height of the embedded resource. +# format (optional) - the required response format (i.e. XML or JSON). + +The maxwidth, maxheight parameters are nice when you're embedding content into a fixed width design and you don't want to end up with embeds that turn your carefully designed site into some horrible-looking MySpace page. + +As for the response you get back from an OEmbed call, that will depend somewhat on what type of object you're interested in embedding. In general you can expect things like the type of object, the owner of the content, thumbnails and more. For full details check out the [http://OEmbed.com/ OEmbed site]. + +== Using OEmbed == + +Let's say you've built a content sharing site like FriendFeed. I join your site and want to post [http://www.flickr.com/photos/luxagraf/137254255/ this Flickr image of the Himalayas] using just the URL. I cut and paste the URL from my browser window to your text field and then you would query Flickr using this code: + +<pre> +http://www.flickr.com/services/OEmbed/?url=http%3A//www.flickr.com/photos/luxagraf/137254255/ +</pre> + +The XML response you would get back looks like this: + +<pre> +<OEmbed> + <version>1.0</version> + <type>photo</type> + <title>Nepal-Sarangkot_12_16_05_31</title> + <author_name>luxagraf</author_name> + <author_url>http://www.flickr.com/photos/luxagraf/</author_url> + <cache_age>3600</cache_age> + <provider_name>Flickr</provider_name> + <provider_url>http://www.flickr.com/</provider_url> + <width>375</width> + <height>500</height> + <url>http://farm1.static.flickr.com/50/137254255_008f50c357.jpg</url> +</OEmbed> +</pre> + +As you can see all you need to do is grab the <code>url</code> and plug that into a standard <code>img</code> tag and my photo will show up without me having to do any extra work at all. + +And I know what you're thinking, if I just provide a text field for the user to paste in a URL how will I know what service to query? There's two obvious ways you can handle that. One would be to provide a drop down menu that allows users to specify the source of the link. The other would be the just parse the link with some [http://www.webmonkey.com/tutorial/Regular_Expressions_Tutorial Regular Expressions] [http://www.webmonkey.com/tutorial/Use_Regex_in_Perl magic] and handle it transparently. + +If you have other ideas, be sure to add them. + +== Getting more complex == + +That's all well and good, but what about more complex examples like video? This is actually where OEmbed shines -- no more filling in some complex embedding template that's liable to break whenever something changes on the source site. + +This time we'll use Viddler as an example. Let's say the visitor to our sharing site wants to embed [http://www.viddler.com/explore/RickRoll/videos/2/ this video]... they copy the URL and paste it in our form text field and then we query Viddler's OEmbed URL. But this time we'll add a parameter to make sure the embedded video is 400 pixels wide. + +The query code would look like this: + +<pre> +http://lab.viddler.com/services/OEmbed/?url=http%3A%2F%2Fwww.viddler.com%2Fexplore%2FRickRoll%2Fvideos%2F2%2F&width=400&format=xml +</pre> + +Viddler will then return this XML response (or if you change the <code>format</code> parameter to JSON, you could get a JSON response): + + +<pre> +<?xml version="1.0" encoding="UTF-8"?> +<OEmbed> + <version>1.0</version> + <type>video</type> + <width>400</width> + <height>342</height> + <title>Rick Roll Muppets Version</title> + <url>http://www.viddler.com/explore/RickRoll/videos/2/</url> + <author_name>RickRoll</author_name> + <author_url>http://www.viddler.com/explore/RickRoll/</author_url> + <provider>Viddler</provider> + <provider_url>http://www.viddler.com/</provider_url> + <html><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="342" id="viddlerplayer-4310bfba"><param name="movie" value="http://www.viddler.com/player/4310bfba/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/4310bfba/" width="400" height="342" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddlerplayer-4310bfba" ></embed></object></html> +</OEmbed> +</pre> + +As you can see, the last element of the response, the <code>html</code> node, gives us the embed code and keeps the video constrained to the dimensions we specified. It doesn't get much easier than that. + +Viddler has even put together a cool little sample app that [http://lab.viddler.com/services/OEmbed/form.php shows OEmbed in action]. + +=== Security Note === + + +When you're creating a site that's going to display HTML (as with video embeds), there's always the potential for XSS attacks from the site providing the code. At the moment all the site offering OEmbed are reputable, but that may not always be the case. To avoid opening your site up to XSS attacks, the OEmbed authors recommend displaying the HTML in an iframe, hosted from another domain. This ensures that the HTML cannot access cookies from the consumer domain. + + +== Sky's the Limit == + +OEmbed isn't just for developers either. At the moment no one has released any, but if you wrapped OEmbed as a WordPress or Movable Type Plug-in, even posting content on your own site would be considerably easier. + +If happen to be working with the Django web framework there's already a nice set of [http://code.google.com/p/django-OEmbed/ OEmbed template tags] up on Google code. The project allows you to do things like this in your Django templates: + +{% OEmbed %} +http://www.flickr.com/photos/luxagraf/ +{% endOEmbed %} + +If you know of other implementations, add them here. + +== Why We Love OEmbed == + +There's a bunch of ever-changing social web specs out there promising all sort of things, from easier logins though OAuth and OpenID to Google and Facebook's widget platforms, but where most of the promises remain unfulfilled, OEmbed is here today and it just works. + +Obviously it's missing some key sites like YouTube or Picasa, but hopefully it won't be long before OEmbed becomes a standard part of every successful web API.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/APIs/twitter.txt b/wired/old/published/Webmonkey/APIs/twitter.txt new file mode 100644 index 0000000..86e0b4b --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/twitter.txt @@ -0,0 +1,62 @@ +It's the hottest web service around and if you're looking to try out an API for the first time Twitter is a good place to start. + +Like the service itself, the Twitter API is simple and easy to use. The only thing to keep in mind is that Twitter limits you to 70 requests per 60 sixty minute interval so remember to cache or otherwise store your results or you may find yourself band. + +If you end up building something that needs to make more requests you can always e-mail Twitter and ask for permission. + + + +== Getting Started == + +Twitter's API is REST-based and will return results as either XML or JSON, as well as both RSS and ATOM feed formats. + +For a very simple look at the data returned fire up a terminal window and type: + +<code> +curl http://twitter.com/statuses/public_timeline.rss +</code> + +That line will give you the latest 20 tweets from the public timeline in the form of an RSS feed. To get the same results in JSON just change the extension to ".json". + +Public timelines can be accessed by any client, but all other Twitter methods require authentication. + + +=== Authenticating with Twitter === + +To authenticate yourself to Twitter you need to send a username and password. The basic format is: + +curl -u email:password http://twitter.com/statuses/friends_timeline.xml + +Most client libraries offer easy ways to pass in a username/password pair, making it very simple to authenticate with Twitter. + + +== Client Libraries == + +There's no need to re-invent the wheel and there are already some pretty good libraries out there for accessing Twitter. Whether you're looking for [http://twitter.com/help/api ActionScript], [http://code.google.com/p/python-twitter/ Python], [http://groups.google.com/group/twitter-development-talk/web/twitter4r-open-source-ruby-library-for-twitter-rest-api Ruby], [http://twitter.pbwiki.com/Scripts#PHP PHP] and [http://twitter.pbwiki.com/Scripts many more]. + +For the sake of example we'll use the Python library. Download and install the library and fire up a terminal window. + +Let's grab your last twenty tweets, fire up Python and type the following line, replacing "youusername" with your username: +<code> +>>> import twitter +>>> client = twitter.Api() +>>> latest_posts = client.GetUserTimeline(yourusername) +>>> print [s.text for s in latest_posts] +</code> +The last line prints out just the text of your posts. To get at things like date pasted and other useful methods, have a read through the [http://static.unto.net/python-twitter/0.5/doc/twitter.html Python library documentation]. + +To go the other direction, posting something to Twitter we'll need to authenticate. Recreate our Twitter client, but this time pass in your username and password: +<code> +>>> client = twitter.Api(username='yourusername', password='yourpassword') +>>> update = client.PostUpdate('The Twitter API is easy') +</code> + +Head over to your Twitter page and you should see the update. + +== Mashups, Apps and more == + +To get some idea of what you can do with the Twitter API, head over the fan wiki and check out some of the [http://twitter.pbwiki.com/Apps applications] and [http://twitter.pbwiki.com/Mashups mashups] that Twitterheads have created. + +One area of particular usefulness is the hashtags concept. Hashtags involve inserting a # sign to denote keywords or other data like location. Although not everyone is a fan of hashtags (they tend to make your tweets less readable) parsing Twitter streams for hashtags can yield a wealth of useful data. + +Some of the client libraries include functions to parse hashtags, but in many case you may have to write your own functions (have a look at the webmonkey primer on regular expressions, it might come in handy?)
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/APIs/youtube_data_api.txt b/wired/old/published/Webmonkey/APIs/youtube_data_api.txt new file mode 100644 index 0000000..2be548b --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/youtube_data_api.txt @@ -0,0 +1,102 @@ +Last time around we looked at the YouTube Player API which allows you to customize, skin and otherwise control the playback of YouTube videos. + +Now it's time to explore the YouTube Data API, which you can use to request and store info about movies you'd like to display on your site. + +There are a variety of client libraries available for the youTube Data API, including [http://code.google.com/apis/youtube/developers_guide_php.html PHP], [http://code.google.com/apis/youtube/developers_guide_dotnet.html .NET], [http://code.google.com/apis/youtube/developers_guide_java.html Java] and [http://code.google.com/apis/youtube/developers_guide_python.html Python]. + +We'll be using the latter, but the general concepts will be the same no matter which language you use. + +== Getting Started == + +Let's say you frequently post movies to YouTube and you're tired of cutting and pasting the embed code to get them to show up on your site. + +Using the YouTube Data API and some quick Python scripts, we can grab all our movies, along with some metadata and automatically add them our database. For instance, if you followed along with a Django tutorial series, this would be handy way to add YouTube to your list of data providers. + +To get started go ahead and download the [http://code.google.com/support/bin/answer.py?answer=75582 Python YouTube Data Client Library]. Follow the instructions for installing the Library as well as the dependancies (in this case, ElementTree -- only necessary if you aren't running Python 2.5) + +Now, just to make sure you've got everything set up correctly, fire up a terminal window, start Python and try importing the modules we need: + +<pre> +>>> import gdata.youtube +>>> import gdata.youtube.service +</pre> + +Assuming those work, you're ready to start grabbing data. + +== Working with the YouTube Data API == + +The first thing we need to do is construct an instance of the YouTube Data service. Entry this code at the prompt: + +<pre> +yt_service = gdata.youtube.service.YouTubeService() +</pre> + +That's a generic object, with no authentication, so we can only retrieve public feeds, but for our purposes that's all we need. First let's write a function that can parse the data we'll be returning. + +Create a new text file named youtube_client.py and paste in this code: + +<pre> +import gdata.youtube +import gdata.youtube.service + +class YoutubeClient: + def __init__(self): + self.yt_service = gdata.youtube.service.YouTubeService() + + def print_items(self, entry): + print 'Video title: %s' % entry.media.title.text + print 'Video published on: %s ' % entry.published.text + print 'Video description: %s' % entry.media.description.text + print 'Video category: %s' % entry.media.category[0].text + print 'Video tags: %s' % entry.media.keywords.text + print 'Video flash player URL: %s' % entry.GetSwfUrl() + print 'Video duration: %s' % entry.media.duration.seconds + print '----------------------------------------' + + def get_items(self, feed): + for entry in feed.entry: + self.print_items(entry) +</pre> + +Now obviously if you want to store the data you're about to grab, you need to rewrite the <code>print_items</code> function to do something other than just print out the data. But for the sake of example (and because there are a near infinite number of ways your database could be structured) we'll just stick with a simple print function for now. + +So make sure that <code>youtube_client.py</code> is on your PythonPath and then fire up Python again and input these lines: + +<pre> +>>> from youtube_client import YoutubeClient +>>> client = YoutubeClient() +>>> client.get_items(client.yt_service.GetMostLinkedVideoFeed()) +</pre> + +The last line should produce a barrage of output as the client prints out a list of most linked videos and all the associated data. To get that list we used one of the YouTube service modules built-in methods <code>GetMostLinkedVideoFeed()</code>. + +Okay, that's all well and good if you want the most linked videos on YouTube, but what about ''our'' uploaded videos? + +To do that we're going to use another method of YouTube service module, this time the <code>GetYouTubeVideoFeed()</code> method. + +First, find the video feed url for your account, which should look something like this: + +<pre> +http://gdata.youtube.com/feeds/api/users/YOURUSERNAME/uploads +</pre> + +So let's plug that into our already running client with these two lines: + +<pre> +url = 'http://gdata.youtube.com/feeds/api/users/YOURUSERNAME/uploads' +client.get_items(client.yt_service.GetYouTubeVideoFeed(url)) +</pre> + +You should see a list of all your recently uploaded videos, along with all the metadata we plugged into our <code>print_items()</code> function. + +== Conclusion == + +Hopefully this has given you some insight into how the data API works. We've really just scratched the surface, there are dozens of methods available to retrieve all sorts of data -- see the [Python YouTube Data API guide] for more details. + +While we've used Python, the methods and techniques are essentially the same for all the client libraries, so you should be able to interact with YouTube via a language you're comfortable with. + +Obviously you'll need to adjust the <code>print_items()</code> function to do something better than just printing the results. If you're using Django, create a model to hold all the data and then use the model's <code>get_or_create()</code> method to plug the data in via <code>print_items()</code>. + +For full automation, write a shell script to call the methods we used above and attach the script to a cron job. + +And there you have it -- an easy way to add YouTube videos to your own personal site, with no manual labor on your end. diff --git a/wired/old/published/Webmonkey/APIs/youtube_player_api.txt b/wired/old/published/Webmonkey/APIs/youtube_player_api.txt new file mode 100644 index 0000000..737ec20 --- /dev/null +++ b/wired/old/published/Webmonkey/APIs/youtube_player_api.txt @@ -0,0 +1,124 @@ +While other sites may offer higher quality video, if you want traffic YouTube is the place to be. But thanks to a recent overhaul to the YouTube API, you can do more than just embed your videos on your own site. In fact you could build your own uploading system and simultaneously post videos to YouTube and your site. + +The YouTube API is has a number of different functions -- there's the Data API for grabbing info about movies, the Player API for skinning your embedded players and more. We;re going to take a look at both the Data API and Player API. + +We'll start with the Player API since it's a little bit simpler to interact with. + +YouTube recently unveiled a new improved [http://code.google.com/apis/youtube/getting_started.html#player_apis Player API] that allows developers to do things like re-skin the video player or create your own custom controls. Many of the new functions can be accessed through both JavaScript and ActionScript. We'll take a look at the JavaScript controls, but the ActionScript API is very similar so you can convert this code without too much trouble. + + +== Getting Started == + +When it come to embedding Flash, YouTube recommends using SWFObject, which is a JavaScript library for embedding Flash movies. Grab a copy of [http://code.google.com/p/swfobject/ SWFObject] and put it in your public web folder. Now include this line at the top of your page: + +<code> +<script type="text/javascript" src="/path/to/swfobject.js"></script> +</code> + +Now let's embed a movie and start playing with the new API. + +== Using SWFObject == + +If you've never encountered SWFObject you're in for a treat. SWFObject greatly simplifies the process of embedding Flash movies, taking care of various cross-browser issues and other problems. + +All you need to do is define a tag for SWFObject to replace with a Flash movie. Here's some example HTML code you can use for this tutorial: + +<pre> +<body> +<div id="ytplayer"> +<p>You will need Flash 8 or better to view this content.</p> +</div> + + +<script type="text/javascript"> + var params = { allowScriptAccess: "always" }; + swfobject.embedSWF( + "http://www.youtube.com/v/tFI7JAybF6E&enablejsapi=1&playerapiid=ytplayer", "ytplayer", "425", "365", "8", null, null, params); +</script> + +</body> +</pre> + +Okay, here's how it works: first of all we create a <code>div</code> container to hold our embedded movie. If the user doesn't have Flash 8 or better they'll see our plain paragraph text (note that SWFObject offers far more sophisticated ways of handling this, like auto-updating the users Flash player, see the docs for full details). + +The next step is to write the JavaScript and embed the movie. We've defined a params argument to tell Flash that it's okay to let the YouTube domain load scripts and then we call the <code>embedSWF</code> function. + +The parameters passed to <code>embedSWF</code> include the location of the .swf file, the id of the tag we want to replace, width, height, player version to require (the YouTube API requires 8 or above) two params we're not using and finally our params value. + +Now let's take a look at that URL was passed to <code>embedSWF</code>. For the most part it's an ordinary YouTube URL, but we've added to additional bits of data, we've told YouTube that we want to use the JavaScript API and we've given our player an API name. + +The API name, in this case "ytplayer" is important because if you ever embed two movies one the same page and want to control them separately each one needs to have a unique name. + +== Controlling the Player with JavaScript == + +If you load the above code in a browser you'll notice that you just rickrolled yourself. But more importantly, you'll notice that the movie file doesn't look any different than a normal embedded movie. + +Let's start adding some outside controls to our page so you can see how the Player API works. Go ahead and paste this function into your HTML, just below the SWFObject function: + +<pre> +function play() { + if (ytplayer) { + ytplayer.playVideo(); + } +} + +function pause() { + if (ytplayer) { + ytplayer.pauseVideo(); + } +} + +function stop() { + if (ytplayer) { + ytplayer.stopVideo(); + } +} + +</pre> + +Now just below the div element that we're replacing, add this HTML code: + +<pre> + <a href="javascript:void(0);" onclick="play();">Play</a> + <a href="javascript:void(0);" onclick="pause();">Pause</a> + <a href="javascript:void(0);" onclick="stop();">Stop</a> +</pre> + +If you reload the page you'll see that our HTML links can now control the player. + +Now you might be thinking, what's the point? After all the player already has controls. but if you're trying to make embedded movies more closely match the look and feel of your site's design, these tools make it easy to create your own controls. + +So how to get rid of YouTube 's controls? Well, to do that we'll need to use the "chromeless" player. To embed the chromeless player you'll need to sign up for an API, which you can do at [http://code.google.com/apis/youtube/dashboard/ YouTube API Dashboard]. + +To use the chromeless player, our url parameter inside the <code>embedSWF</code> function becomes something like: + +<pre> +http://gdata.youtube.com/apiplayer?dev_key=YOUR_DEV_KEY&enablejsapi=1&playerapiid=ytplayer +</pre> + +notice that we haven't passed an actual movie id in this case. To do that with the chromeless player we use the <code>loadNewVideo</code> function. So add this code below our other JavaScript functions: + +<pre> +function loadNewVideo(id, startSeconds) { + if (ytplayer) { + ytplayer.loadVideoById(id, startSeconds); + } +} + +</pre> + +There are a number of ways we can call this function -- through a drop down list of options, a text input box, etc -- but for simplicity let's just add another link button: + +<pre> +<a href="javascript:void(0);" onclick="loadNewVideo('tFI7JAybF6E', 0);">load</a> +</pre> + +And there you have it custom, chromeless movie player that you can control with JavaScript. + +== Conclusion == + +Now you know how to control YouTube movie players and hopefully feel comfortable customizing them to fit your own site. If JavaScript isn't you bag, there's also a very similar (in function) ActionScript API that you can use to build your own controls and load chromeless players. + +Now you may be wondering, how can I get some YouTube movie data to display on my site? For instance maybe you'd like to grab all the movies you've marked as favorites and display them on your blog? Or maybe you want to grab your own movies for display elsewhere. + +Well, read on to our next installment when we'll tackle the other half of the YouTube API -- The Data API.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Flash/Fancy Flash Fonts.txt b/wired/old/published/Webmonkey/Flash/Fancy Flash Fonts.txt new file mode 100644 index 0000000..f3d231f --- /dev/null +++ b/wired/old/published/Webmonkey/Flash/Fancy Flash Fonts.txt @@ -0,0 +1,158 @@ +Now let's imagine for a moment that you are a purist. You love strict XHTML as only a mother can. Let's suppose you're as rabid about your little baby's standards as Diane Ladd in "[http://www.imdb.com/title/tt0100935/ Wild at Heart]." How could we convince you that there is a practical application for Flash files, even in your twisted, lipstick-smeared world? + +Well, we would criticize your typography of course. We already know your code is impeccable, but wow. Those headlines are still in Georgia huh? Kind of primitive, don't you think? + +As web designers, we have reliable access to maybe six fonts that all users will have. This was one of the limitations of HTML that first drew me to Flash. Now, you may not be as obsessed with typography as some of us (if you know that Mrs Eaves is not Mr. Eaves wife, then you might be obsessed with typography), but wouldn't you like to use something other than Arial sometimes? + +Well, I can't really help with the body text. But headlines, oh headlines, do I have a revolution for you. It's called sIFR. + +First, a brief history. SIFR is not exactly a new idea, rather an improvement on an old one. Web designers have always disliked the limited selection of fonts available. The problem is that in order for a browser to render a font, that font must reside on the user's hard drive. How many universally available fonts are there? Well conservatively, probably about six: Verdana, Times, Arial, Helvetica, Courier, and Geneva. Trebuchet, Tahoma and Lucida are also widespread, but less so than the Big Six. If you're using stylesheets, you know that the only options for total compatibility are simple sans or serif declarations. You declare a sans-serif font for a block of text and it's the browser's decision as to which sans-serif font it uses to display the given text. + +From a designer's standpoint, this situation is undesirable to say the least. So, way back when, some folks thought, "Hey, we could replace a headline with a graphic that has the same text, but as an image. That way we can exercise control over the typeface being used. We can use any typeface because it's an image." + +While a solution, this is still less than ideal. For one thing, it means that every single headline must be generated by hand using some sort of image application. Even if you automate the creation process with scripts, this is impractical for all but the simplest of sites. Today's database driven, content-assembled-on-the-fly website engineer cannot afford to create a separate image for every single headline. + +There is another problem. Actually there are several others, but the biggest one is that this technique effectively ruins the site for the visually impaired. Instead of tags that look like this: + +<code><h1>This is my great headline</h1> </code> + +You need something like this: + +<code><img scr="mygreatheadline.jpg" alt="This is my great headline"></code> + +A screen reader is going to read that whole second line aloud, and the person using it is going to be annoyed because you were too caught up in the appearance of the text to remember that lots of people don't care about the appearance. + +So, allow me to introduce scalable Inman Flash Replacement. Yes, sIFR stands for scalable Inman Flash Replacement. The technique takes its name from the man who invented it, [http://www.shauninman.com/ Shaun Inman]. The scalable part was added by [http://www.mikeindustries.com/blog/ Mike Davidson], who improved on the original and maintains the current code. The technique is essentially the same as image replacement, but relies on JavaScript and Flash to dynamically replace XHTML text with Flash text. + +Why is this better? Many reasons. Foremost, sIFR allows us to code our pages as we normally would. We can create a stylesheet and set the size and other parameters of a headline. With sIFR on the page, something amazing is going to happen. When the browser requests the page, a JavaScript class parses the page for a given variable and replaces it. In our example, we'll say that the element we want the replace is an <code><h1></code> tag, but it could be anything. Wherever the JavaScript finds that <code><h1></code> tag, it sets the text contained within the tag to "hidden" and then embeds a Flash movie matching the element's original size. The script then feeds the Flash movie the hidden text. Finally, like magic, the Flash movie displays the text it gets from the JavaScript. + +There are no restrictions for which fonts we can and can't use within a Flash movie, so we can design our headlines however we'd like. + +If the user doesn't have Flash, doesn't have JavaScript enabled, doesn't have either, or is using some assistive device, the original text is still there just as it would have been had we done nothing at all. + +====How and when to use sIFR==== + +Mike Davidson, who maintains the code for sIFR, has [http://wiki.novemberborn.net/sifr excellent instructions] on the sIFR wiki that explain to use the code. For the sake of clarity, I'll walk through a quick example here. + +To get started, [http://novemberborn.net/sifr/2.0.5 download the .zip file] containing the script. The package also includes the Flash movie template. Open the Flash template and double click on the movieclip that occupies the main stage. This will take you to the actual text box. Just change the font for the text box to whatever font you want to use and publish the movie. Upload the resulting .swf file to your site. + +You can also try the <a href="http://digitalretrograde.com/Projects/sifrFontEmbedder/">sIFR Font Embedder</a> for Windows or <a href="http://ajaxian.com/archives/opensifr-tool-to-generate-font-files">OpensIFR</a> for Mac OS X (also works in Windows), which are applications that can create the font files without requiring you to own Adobe Flash. + +Now we need to add sIFR to our XHTML and CSS files to make it work. The first thing to do is include the JavaScript using the <code><head></code> tags of XHTML. + +<pre><script src="sifr.js" type="text/javascript"></script></pre> + +Next, open the JavaScript file sifr.js. Near the very bottom of the file, you'll see a function call that looks like this: + + <pre> + + sIFR.setup(); + + </pre> + +Just below that line, we're going to add another function call. The syntax is explained in the readme file that accompanied your download. The code I use on my site looks something like this: + + <pre> + + sIFR.replaceElement(named({sSelector:"h1", sFlashSrc:"http://www.mysite.com/path/to/sifr.swf", sColor:"#FEDB18", sBgColor:"#6f5f45"})); + + </pre> + +This calls the JavaScript function <code>replaceElement</code>. The sSelector parameter tells the function which tag to replace. The sFlashSrc parameter tells the function where to find the Flash movie. The sColor parameter controls the color of the font and sBgColor controls the background color of the Flash Movie. + +In the example above, all the <code><h1></code> elements will be replaced. We could get more specific. In fact, you can be as specific or generic as you like with the sSelector parameter. Let's say for example that we only want to replace <code><h1></code> tags that occur in a <code><div></code> named body. We would just change our code to read: + + <pre> + + sIFR.replaceElement(named({sSelector:"#body h1", sFlashSrc:"http://www.mysite.com/path/to/sifr.swf", sColor:"#FEDB18", sBgColor:"#6f5f45"})); + + </pre> + +There are additional parameters that you can pass to the function to control things like hover states for links, transforming text to uppercase, and more. For a complete list of parameters, see the [http://wiki.novemberborn.net/sifr/How+to+use sIFR documentation]. + +====Putting sIFR on the page==== + +The next step is to include the sIFR classes in our CSS file. Open your CSS file in a text editor and add this code: + + <pre> + + .sIFR-hasFlash h1 + + { + + visibility: hidden; + + } + + .sIFR-flash { visibility: visible !important; } + + .sIFR-replaced { visibility: visible !important; } + + span.sIFR-alternate + + { + + position: absolute; + + left: 0; + + top: 0; + + width: 0; + + height: 0; + + display: block; + + overflow: hidden; + + letter-spacing: 0; + + } + + </pre> + +This chunk of CSS does a couple of things. First, it creates a hidden selector class for the element we are going to replace. Then, the rest of the declarations handle the display of the replacement movie. + +The primary thing were going to do with this code is use the class <code>.sIFR-hasFlash h1</code> to control the size of our replacement text. The creators of sIFR refer to this as "tuning" your fonts. + +This tuning process can be a little tricky, and is essentially a process of trial and error. The goal is to make the original text the same dimensions as the replacement text. To do so, we can add declarations like <code>line-height</code>, <code>font-size</code>, <code>font-weight</code> and <code>margin</code> or <code>padding</code> to the <code>.sIFR-hasFlash h1</code> declaration. Unfortunately, there is no general solution I can give you. Some situations require more tuning than others. + +If you open up the sifr.js file again and look near the bottom, just above where we inserted our function all earlier. You should see a function that reads: + + <pre> + + sIFR.setup(); + + </pre> + +Comment out that line and add this one just below so you have: + + <pre> + + //sIFR.setup(); + + sIFR.debug(); + + </pre> + +This will allow you to see your tuning in real-time. When you're done, just uncomment the <code>.setup()</code> line and comment out the <code>debug()</code> line. + +The only other thing you'll want to do is change your print-css stylesheet to make sure your replacements don't happen when the user prints the page. If you're having problems refer to [http://wiki.novemberborn.net/sifr/show/HomePage the sIFR wiki] for troubleshooting and more detailed instructions. + +There might be a temptation, given this newfound control over fonts, to go a bit crazy and use it everywhere. Resist that temptation. sIFR wasn't designed to replace everything on the page. Your body text is still going to be limited to the big six. sIFR is best used for headlines, and maybe subheadlines if you don't have too many. + +One thing you may notice is a slight lag time before your headlines are displayed. On my MacBook, this little pause is about one second. If this bothers you, you can set sIFR to show the normal font before it replaces it with Flash. + +I should note that you do not have to put the function call in the sifr.js file. In fact, sometimes you may not want to. You can also write it into the XHTML pages as well. Just remember to put it at the bottom so it doesn't slow down your page load times. + +If you ever get stuck using sIFR, refer to the documentation or the wiki. And of course, nothing beats trial and error. + +==sIFR in the Wild== + + +sIFR is all over the place these days, from ABCNews.com to the official Red Hat site. You can look at [http://wiki.novemberborn.net/sifr/Examples the official example page]. It's not always easy to tell when sIFR is being employed, and that's kind of the point. If you don't notice the behind the scenes stuff, then you are witnessing a truly seemless integration of XHTML and Flash. + +Adhering to web standards is no longer an excuse to avoid Flash. At the same time, don't use these techniques to justify doing a whole site in Flash. Flash has its place. It does some things very well and other things are best left to XHTML. + +Choose wisely, grasshopper.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Frameworks/django-firstapp.txt b/wired/old/published/Webmonkey/Frameworks/django-firstapp.txt new file mode 100644 index 0000000..3d01b52 --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/django-firstapp.txt @@ -0,0 +1,381 @@ +Assuming you've had a read through our [Django Overview], you're probably ready to dive into some code. But before we start installing we need to grab a copy of Django and set it up. + +As we mentioned in the overview, Django doesn't have a 1.0 release yet. The latest official release was .96, but that version lacks many of the features we're going to use in this project. + +In order to use the latest and greatest Django tools (like model inheritance) we're going to checkout a copy of the trunk build using Subversion. + +If you don't have [http://subversion.tigris.org/ Subversion] installed, go grab a copy. + +Then fire up your terminal and paste in this line: + +<pre> +svn co http://code.djangoproject.com/svn/django/trunk/ django-trunk +</pre> + +Once that finishes downloading all the files, we need to make sure Python is aware of Django. There's a couple ways to go about that, but a symbolic link to your Python site packages directory is probably the easiest. + +Assuming you're on a *nix system, this line will do the trick + +<pre> +ln -s `pwd`/django-trunk/django /path/to/python_site_packages/django +</pre> + +If you don't know where your Python site directory is, here's a handy bit of Python that will tell you: + +<pre> +python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()" +</pre> + +If you're on Windows the easiest thing to do is add Django to your PythonPath environment variable. On Windows you can define environment variables in the Control Panel, see Microsoft's [http://technet.microsoft.com/en-us/library/bb491071.aspx Command Line Reference] for more details. + +The excellent Django [http://www.djangoproject.com/documentation/install/ installation docs] suggest creating a symbolic link to the file django-trunk/django/bin/django-admin.py in a directory on your system path, such as /usr/local/bin. I find that I don't use django-admin.py all that often, but you can create the link if you like, just paste this code in your shell: + +<pre> +ln -s `pwd`/path/to/django-trunk/django/bin/django-admin.py /usr/local/bin +</pre> + +So we've got Django installed and Python knows where it lives, let's get started. + +Remember that we have a Subversion checkout so if you ever want to update to the latest release, just head to the django-trunk folder and run <code>svn update</code>. + +== Set up our First Project == + +Okay, let's get started. From the command line switch to your web development directory, something like this: + +<pre> +cd ~/sites/dev +</pre> + +Now we're going to run the <code>django-admin</code> tool we mentioned earlier. If you created the symlink, you don't need the full path, but if you didn't here's the code: + +<pre> +python /path/to/django-trunk/django/bin/django-admin.py startproject djangoblog +</pre> + +Yes, we're going to build a blog. + +Now cd over to the new folder: + +<pre> +cd ~/sites/dev/djangoblog +</pre> + +This is going to be our project folder into which we will add various apps, some we'll create and some we'll be downloading from Google code projects. I like to keep my Python import statements clean and free of project specific module names, so I always make sure my root project folder (in this case djangoblog) is on my python path. To do that just add the path to your PythonPath variable. + +That way we can write statements like: + +<pre> +import myapp +</pre> + +rather than + +<pre> +import myproject.myapp +</pre> + +It's not a huge thing, but it does make your code more portable. + +Okay, we're getting there. The next step is to fill out our project settings file. Fire up your favorite text editor and open up the settings.py file inside the djangoblog directory. + +The core of what we need to set up is at the top of the file. Look for these lines: + +<pre> +DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. +DATABASE_NAME = '/path/to/djangoblog' # Or path to database file if using sqlite3. +DATABASE_USER = '' # Not used with sqlite3. +DATABASE_PASSWORD = '' # Not used with sqlite3. +DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. +DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. +</pre> + +Note that we're using SQLite as a database for development purposes. Assuming you have Python 2.5 installed you don't need to do anything to use SQLite. If you're on either Python 2.3 or Python 2.4, you'll need [http://oss.itsystementwicklung.de/trac/pysqlite/ pysqlite] -- make sure you install version 2.0.3 or higher. If you have MySQL or PostgreSQL already installed, feel free to use them. + +The other settings are well documented in the settings.py file and most of them can be ignored for now. But there is one other thing we need to do. If you look at the bottom of the settings.py file you'll notice this bit of code: + + +<pre> +INSTALLED_APPS = ( + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.sites', +) +</pre> + +This where we tell our django project, which apps we want to install. In a minute we'll add our blog app, but for now let's just add Django's built-in admin section. Paste in this line, just below the sites app: + +<pre> +'django.contrib.admin', +</pre> + +Before we finish with settings.py, here's a handy trick for the template directories. I generally keep all my templates in a folder named templates within my project folder (in this case djangoblog). But I generally move between development and live servers quite a bit and I hate having to change the path to the templates folder. This trick takes care of that: + +<pre> +import os.path +TEMPLATE_DIRS = ( + os.path.join(os.path.dirname(__file__), 'templates'), +) +</pre> + +Instead of hard coding the path to our templates folder this is dynamic -- and it showcases how easy it is to tweak django using Python. We just import the <code>os.path</code> Python module and then find the path to the directory where settings.py is and then appends 'templates' to that path. + +Now when we push the site live, there's no need to change the settings.py file. (Actually you'd probably want to change to a more robust database, but we'll get to that much later). + +So now let's use one of the tools included in manage.py, the <code>syncdb</code> tool. Paste this line in your terminal: + +<pre> +python manage.py syncdb +</pre> + +The <code>syncdb</code> tool tells Django to translate all our installed apps' models.py files into actual database table. In this case they only thing we have installed are some of the built-in Django tools, but fear not, we'll get to writing our own models in just a minute. + +Once you enter the line above, you'll get some feedback from Django telling you you've just installed the auth system and walking you through setting up a user. The output looks like this: + +<pre> +sng: /djangoblog/ $ python manage.py syncdb +Creating table auth_message +Creating table auth_group +Creating table auth_user +Creating table auth_permission +Creating table django_content_type +Creating table django_session +Creating table django_site + +You just installed Django's auth system, which means you don't have any superusers defined. +Would you like to create one now? (yes/no): no +Installing index for auth.Message model +Installing index for auth.Permission model +sng: /djangoblog/ $ python manage.py syncdb +Creating table auth_message +Creating table auth_group +Creating table auth_user +Creating table auth_permission +Creating table django_content_type +Creating table django_session +Creating table django_site +Creating table django_admin_log + +You just installed Django's auth system, which means you don't have any superusers defined. +Would you like to create one now? (yes/no): yes +Username (Leave blank to use 'luxagraf'): +E-mail address: none@none.com +Password: +Password (again): +Superuser created successfully. +Installing index for auth.Message model +Installing index for auth.Permission model +Installing index for admin.LogEntry model +sng: /djangoblog/ $ +</pre> + +Once you've created your username and password, it's time to fire up Django's built-in server: + +<pre> +/djangoblog/ $ python manage.py runserver +Validating models... +0 errors found + +Django version 0.97-pre-SVN-6920, using settings 'djangoblog.settings' +Development server is running at http://127.0.0.1:8000/ +Quit the server with CONTROL-C. +</pre> + +Now open up your browser and head to [http://127.0.0.1:8000/ http://127.0.0.1:8000/]. You should see a page like this: + +[djangocreen1.jpg] + +It works! But that isn't very exciting, let's check out the admin. However, before we do that, we need to tell django about the admin url. Fire up your text editor and open the file urls.py in your djangoblog folder. You should see some code like this: + +<pre> +urlpatterns = patterns('', + # Example: + # (r'^djangoblog/', include('djangoblog.foo.urls')), + + # Uncomment this for admin: +# (r'^admin/', include('django.contrib.admin.urls')), +) + +</pre> + +Go ahead and uncomment the admin url line (just delete the hash mark at the beginning of the line) and now head to [http://127.0.0.1:8000/admin/ http://127.0.0.1:8000/admin/]. Login with the user/pass combo you created earlier and you should see something like this: + +[djangocreen2.jpg] + +Now that's pretty cool. If you've ever labored over creating an admin system in Ruby on Rails or, god forbid, PHP, you're going to love Django's built-in admin. + +But at the moment there isn't much to see in the Admin, so let's get started building our blog. + +Now we could just throw in some code that creates a date field, title, entry and other basics, but that wouldn't be a very complete blog would it? What about tags? An RSS feed? A sitemap? Maybe some [http://daringfireball.net/projects/markdown/ Markdown] support for easier publishing? + +Yeah, let's add all that. But remember Django's DRY principles -- sure someone else has already created a Feed app? A Sitemap app? + +As a matter of fact Django ships with those built-in. + +Nice. But what about tags? Well there's one of those available as well -- the cleverly named [http://code.google.com/p/django-tagging/ django-tagging]. Grab the source from Google code and drop it in your djangoblog folder. There's also a handy [https://sourceforge.net/project/showfiles.php?group_id=153041 Python implementation of Markdown], so grab that as well (of course Markdown is entirely optional, feel free to skip it). + +Got all that stuff stashed in your djangoblog folder? Good. + +Now let's go ahead and create our first Django application. + +To do that we'll use Django's app creating script, which lives inside manage.py in our project folder. Paste this line into your shell: + +<pre> +python manage.py createapp blog +</pre> + +If you look inside djangoblog you should now see a new "blog" folder. Open that up and find the models.py file. Open models.py in your favorite text editor and paste in this code: + +<pre> +from django.db import models +from django.contrib.syndication.feeds import Feed +from django.contrib.sitemaps import Sitemap + +import markdown +from tagging.fields import TagField +from tagging.models import Tag + +# Create your models here. + +class Entry(models.Model): + title = models.CharField(max_length=200) + slug = models.SlugField( + unique_for_date='pub_date', + prepopulate_from=('title',), + help_text='Automatically built from the title.' + ) + body_html = models.TextField(blank=True) + body_markdown = models.TextField() + pub_date = models.DateTimeField('Date published') + tags = TagField() + enable_comments = models.BooleanField(default=True) + PUB_STATUS = ( + (0, 'Draft'), + (1, 'Published'), + ) + status = models.IntegerField(choices=PUB_STATUS, default=0) + +</pre> + + +Let's step through the code line by line and we'll talk about what's going on. First we import the basic stuff from django, including the model class, the Feed class and the Sitemap class. + +Then we import the tagging and markdown files we just saved in our project folder. + +Once we have all the modules we're going to use, we can create our blog model. I elected to call it Entry, you can change that name if you like, but remember to substitute your name everywhere I refer to Entry. + +Entry extends Django's built-in model.Model class, which handles all the basic create read update and delete (CRUD) tasks. In other words all we have to do is tell Django about the various elements of the database table (like the title field, the entry slug, etc) and all the hard work is handled behind the scenes. + +The first bit of our Entry class definition just defines all our various blog entry components. Django will use this information to create our database tables and structure, and also to generate the Admin interface. + +Note that we're using Django's various model fields. Most of it should self explanatory, but if you want to learn more about each type check out the [http://www.djangoproject.com/documentation/model-api/ Django documentation]. Also be aware that there are quite a few more field types available. + +One thing worth mentioning is the <code>body_html = models.TextField(blank=True)</code> line. What's up with that <code>blank=True</code> bit? Well that information is part of Django's built-in Admin error checking. + +Unless you tell it otherwise all fields in your model will create NOT NULL columns in your database. To allow for null columns, we would just add <code>null=True</code>. But adding <code>null=True</code> only affects the database, Django's admin would still complain that it needs the information. To get around that we simple add the <code>blank=True</code>. + +In this case what we're going to do is fill in the <code>body_html</code> field programatically, after we hit save in the admin and before Django actually writes to the database. So we need the Admin section to allow <code>body_html</code> to be blank, but not null. + +== Check Your Head == + +Now we need to tell Django about our new apps. Open up settings.py again and add these lines to your list of installed apps: + +<pre> +INSTALLED_APPS = ( + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.sites', + 'django.contrib.admin', + 'djangoblog.tagging', + 'djangoblog.blog', +) +</pre> + + +Okay, head over to the terminal and run <code>manage.py syncdb</code>. Refresh your admin section and you should see the tagging application we downloaded. Very cool. + +But where's our blog model? Well, even though Django knows about our blog app, we haven't told the app what to do in the Admin section. + +So head back over to your text editor and add these lines to bottom of the model definition: + +<pre> +class Entry(models.Model): + """ + ...earlier stuff omitted... + """ + + class Meta: + ordering = ('-pub_date',) + get_latest_by = 'pub_date' + verbose_name_plural = 'entries' + + class Admin: + list_display = ('title', 'pub_date','enable_comments', 'status',) + search_fields = ['title', 'body_markdown'] + list_filter = ('pub_date', 'enable_comments', 'status') + fields = ( + (None, { + 'fields': (('title', 'status'), 'body_markdown', ('pub_date', 'enable_comments'), 'tags', 'slug') + }), + ) + + + def __unicode__(self): + return u'%s' %(self.title) + + def get_absolute_url(self): + return "/%s/%s/" %(self.pub_date.strftime("%Y/%b/%d").lower(), self.slug) + + def save(self): + self.body_html = markdown.markdown(self.body_markdown, safe_mode = False) + super(Entry, self).save() + +</pre> + +Okay, what does all that do? Well let's start with the Meta class. Meta handles things like how Django should order our entries and what the name of the class would be. By default Django would refer to our class as 'Entrys', and that offends my grammatical senses so we just explicitly tell Django the plural name. + +The next class, 'Admin,' as you might suspect, controls how the admin interface looks. Now these customizations are entirely optional. You could simple write <code>pass</code> and go with the default admin layout. However I've customized a few things and added some filters to the admin list view so we can sort and filter our entries. + +Then we have a few function definitions. All Python objects should return their name. Django recently added unicode support so we'll return our name in unicode. Then there's <code>get_absolute_url</code>. As you might imagine this refers to the entry's permalink page. + +When we get to creating templates we'll use this to put in our permalinks. That way if you ever decide to change your permalinks you only have to change one line and your entire site will update accordingly -- very slick. + +The last function simply overrides Django's save function. Every Django model has a save function and since we didn't expose the bogy_html field we need to fill it in. So we grab the text from our <code>body_markdown</code> field (which is exposed in the admin), run it through the markdown filter and store it in <code>body_html</code>. + +That way we can just call this field in our templates and we'll get nicely formatted html and yet still keep the process transparent -- write in markdown, display html. + +Now we're going to add a few more line to our models.py file and then we're done: + +<pre> + def get_previous_published(self): + return self.get_previous_by_pub_date(status__exact=1) + + def get_next_published(self): + return self.get_next_by_pub_date(status__exact=1) + + def get_tags(self): + return Tag.objects.get_for_object(self) + +</pre> + +So what's going on here? Django includes a bunch of built-in methods for common tasks, like displaying next and previous links. The function is called <code>get_previous_by_</code> with the last bit of the function being the name of your datetime field, in our case <code>pub_date</code>. However, we included the ability to save drafts in our model, unfortunately Django's built-in function doesn't know about our drafts and will include them in our next/previous links which isn't what we want. + +So what to do? How about just wrapping the Django function with a one-liner? That's what we've done here. + +<pre> + def get_previous_published(self): + return self.get_previous_by_pub_date(status__exact=1) +</pre> + +All we do is wrap the django function with a new name <code>get_next_published</code>, call the original <code>get_previous_by_</code> function, but add a filter so that only published entries are included in the results. + +The last function is just a time saver. There's a good chance you'll want to list all the tags you've added to your entry, so I've included a convenience method that does just that. + +Whew. That's a lot of code to sort through and we've glassed over a few things, but when you look at the models.py file and consider that from these 49 lines of code Django is going to create an entire blog website, it doesn't seem like so much code at all does it. + +So save the file and head back over to your browser. Refresh the admin page and click "add new." Feel free to create a few entries -- blog monkey blog! + +So now we've got our back-end blogging system set up and everything in in place to create a public site. Feel free to take a well deserved break. When you're ready, head over to the next section and we'll [build the public facing side of our blog]. + + diff --git a/wired/old/published/Webmonkey/Frameworks/django-migrate.txt b/wired/old/published/Webmonkey/Frameworks/django-migrate.txt new file mode 100644 index 0000000..9cfe49f --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/django-migrate.txt @@ -0,0 +1,158 @@ +If you started following our Django tutorials back when they first started you may be wondering about the recent news that the [http://code.djangoproject.com/wiki/NewformsAdminBranch NewForms Admin branch] of Django was recently merged to trunk. + +What does that mean? Well it means that, if you update your svn checkout of Django, it's going to break all the code we wrote earlier. But don't worry, the changes aren't too radical and adjusting our code takes only a few minutes. + +The goal of the NewForms Admin branch was two-fold. First the developers wanted to make sure that the admin app (which is a standalone app that ships with Django) used the latest Django froms code (hence the NewForms bit of the name). The other goal was to decouple the admin and make it much easier to customize. + +We're not going to dive into customizations today (see the [http://www.djangoproject.com/documentation/admin/ updated Django docs] if you're itching to know more details), but let's take a look at what we need to do to port our code over to the latest version of Django. + +But first make sure you have the latest version of Django: fire up your terminal and cd over to your Django folder. Then run <code>svn up</code> and Django will update itself. + +== Decoupling == + +The first thing we need to do is create a new file in our blog app folder named admin.py. As part of the decoupling, a model's admin definitions now live in seperate file, which makes sense since the old Admin class really had nothing to do with the model. + +So open up the admin.py file and we'll re-write our admin class definition. Our old code, where the <code>Admin</code> class lived in model.py looked something like this (I've left out a few things for clarity): + +<pre> +class Entry(models.Model): + """ + ...all the field definitions omitted... + """ + + class Meta: + ordering = ('-pub_date',) + get_latest_by = 'pub_date' + verbose_name_plural = 'entries' + + class Admin: + list_display = ('title', 'pub_date','enable_comments', 'status',) + search_fields = ['title', 'body_markdown'] + list_filter = ('pub_date', 'enable_comments', 'status') + fields = ( + (None, { + 'fields': (('title', 'status'), 'body_markdown', ('pub_date', 'enable_comments'), 'tags', 'slug') + }), + ) +</pre> + +Now the <code>Meta</code> class remains part of the models.py file, since it controls model-related behavior. But the <code>Admin</code> class really doesn't relate directly to the model, so open up blog/models.py and we're going to cut all that data out, so our models.py file now looks like: + +<pre> +class Entry(models.Model): + title = models.CharField(max_length=200) + slug = models.SlugField( + unique_for_date='pub_date', + help_text='Automatically built from the title.' + ) + body_html = models.TextField(blank=True) + body_markdown = models.TextField() #note, if you're using Markdown, include this field, otherwise just go with body_html + pub_date = models.DateTimeField('Date published') + tags = TagField() + enable_comments = models.BooleanField(default=True) + PUB_STATUS = ( + (0, 'Draft'), + (1, 'Published'), + ) + status = models.IntegerField(choices=PUB_STATUS, default=0) + + class Meta: + ordering = ('-pub_date',) + get_latest_by = 'pub_date' + verbose_name_plural = 'entries' + + def __unicode__(self): + return u'%s' %(self.title) + + def get_absolute_url(self): + return "/%s/%s/" %(self.pub_date.strftime("%Y/%b/%d").lower(), self.slug) + + def save(self): + self.body_html = markdown.markdown(self.body_markdown, safe_mode = False) + super(Entry, self).save() + +</pre> + +Note that we also deleted the prepopulate_from field in the slug definition. That's another thing that's moved over to the new admin.py file. + +Okay, now we need to define our <code>Admin</code> class according to the new conventions. Jump back to the new admin.py and paste in this code: + +<pre> +from django.contrib import admin + +from djangoblog.blog import Entry + +class EntryAdmin(admin.ModelAdmin): + list_display = ('title', 'pub_date','enable_comments', 'status') + search_fields = ['title', 'body_markdown'] + list_filter = ('pub_date', 'enable_comments', 'status') + prepopulated_fields = {"slug" : ('title',)} + fields = ( + (None, {'fields': (('title', 'status'), 'body_markdown', ('pub_date', 'enable_comments'), 'tags', 'slug')}), + ) + +admin.site.register(Entry, EntryAdmin) +</pre> + +So what's different? Well, first off we import the admin module and new extend the ModelAdmin class with our own <code>EntryAdmin</code> class. Then we brought over the same definitions we use above to control <code>list_display</code>, <code>search_fields</code> and <code>list_filter</code>. Then we use one brand new bit of syntax. Remember in our original model we used <code>prepopulate_from</code> to automatically fill our slug field with whatever is typed in our title field? + +Well the new name is <code>prepopulated_fields</code> and instead of a string, it's now a dictionary. The key is the field to fill and the value is where to pull from. Obviously, since it's a dictionary you could add several fields if need be. + +The fields customizations remain the same in our case, though there is a new fieldsets option if you want to have several, uh, sets of fields. + +The last line of our code just registers our new Admin class and lets Django know that whenever it's displaying info about our Entry model it should follow the rules we set up in EntryAdmin. + +See that wasn't so bad. + +== New URL structures == + +As I said earlier one of the main goals with NewForms Admin ws to make the Django admin more flexible. Part of the way that's achieved is through the urls.py file. So open up our project level urls.py file and you should see something like this: + +<pre> +urlpatterns = patterns('', + # Example: + # (r'^djangoblog/', include('djangoblog.foo.urls')), + (r'^admin/(.*)', include('django.contrib.admin.urls')), +) + +</pre> + +We're going to change that to this: + +<pre> +from django.conf.urls.defaults import * +from django.contrib import admin + +admin.autodiscover() + + +urlpatterns = patterns('', + (r'^admin/(.*)', admin.site.root), + ... the rest stays the same... +) + +</pre> + +Notice that we're no longer simply handing off all the admin urls to an mysterious include statement. That means we could concievably create all sort of urls and pass them to our own custom views. In fact you could have several different admin sites if you so desired. + +== Updating Tagging == + +The last step in our transition to NewForms Admin is to update our django-tagging application. As of this writing, django-tagging hasn't caught up to the newforms admin update yet, so we're actually going to need to checkout the Newforms Admin branch of the django-tagging codebase. + +To do that we'll grab the files using Subversion. Paste this code into your terminal window: + +<pre> +svn checkout http://django-tagging.googlecode.com/svn/branches/newforms-admin django-tagging +</pre> + +Now cd into the new django-tagging folder and type: + +<pre> +python setup.py install +</pre> + +After that just delete the old version (if you're good with Subversion, there are other ways to do this). + +== Other Changes == + +There are quite a few other changes to the admin section, and if you have a lot of old code to port definitely head over and [http://www.djangoproject.com/documentation/admin/ check out the new documentation]. Also highly recommended is [http://oebfare.com/blog/2008/jul/20/newforms-admin-migration-and-screencast/ Brian Rosner's very informative screencast] which covers inlines and some other more complicated things our project isn't using.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Frameworks/django-overview.txt b/wired/old/published/Webmonkey/Frameworks/django-overview.txt new file mode 100644 index 0000000..7856231 --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/django-overview.txt @@ -0,0 +1,87 @@ +Django is web framework written in Python and design to help you build complex web applications simply and quickly. If you're familiar with Ruby on Rails, think of Django as Rails for Python. It might not be technically correct, but it captures the basic idea. + +Django was designed from the ground up to handle two common web developer challenges: intensive deadlines and strict adherance to the [http://c2.com/cgi/wiki?DontRepeatYourself DRY principle]. + +The results are framework that's fast, nibble and capable of generating full site mockups in no time at all. Django's slogan captures it's essence quite nicely: The web framework for perfectionists with deadlines. + +Bu quick doesn't mean sloppy, Django comes with a very slick built-in Admin section for administering sites, support for a variety of cacheing options, including memcached, and a host of other stable, scalable tools. + +But perhaps the best part about Django is its outstanding documentation. Unlike many open source projects, Django has [http://www.djangoproject.com/documentation/ very thorough and readable docs available online]. If you have any problems with our tutorials head over to the Django site for additional reading. Also consider joining the [http://groups.google.com/group/django-users django-users Google Group] which is full of helpful folks who can point you in the right direction. + +== Why Isn't Django a 1.0 Release? == + +As of this writing Django has not yet released an official 1.0 version. The tenative schedule calls for Django 1.0 to arrive in September 2008, though that is subject to change. However both Django .95 and .96 are stable -- if not feature-complete -- releases. + +That said, the best way to use Django is working off the current trunk by doing a Subversion checkout. This will give you access to the latest and greatest tools and improvements and, unlike many projects, the Django trunk is remarkably stable. + +I've been using Django for two years on a number of production sites all built using Django trunk checkouts and have yet to encounter a bug or other issue. + +Of course the fact that Django doesn't have a 1.0 release will make some developers nervous and the Django team is aware of that. Django is close to 1.0 and work is progressing everyday toward that release, but remember all that stuff about perfectionists? It isn't just a slogan. + +The Django devs are probably tired of explaining themselves by now, but on the bright side you can rest assured that when 1.0 does arrive it's going to be rock solid. +== Background == + +Before we dive in it's worth pausing for a moment to understand where Django comes from, which has influenced both what it is and what it is not. + +Django was developed over a two year period by programmers working for an online-news operation (World Online in Lawrence Kansas). Eventually the team realized that they had a real framework on their hands and released the code to the public under an open source BSD license. + +Once it became a community project the development took off and Django began to pop up all over the web. For a complete list of Django sites check out [http://www.djangosites.org/ Django Sites], but notable examples include [http://pownce.com/ Pownce, [http://projects.washingtonpost.com/congress/ The Washington Post] and [http://everyblock.net/ Everyblock]. + +Perhaps the most common misconception is that Django is a content management system. It's not. It's a [http://www.webmonkey.com/tutorial/Get_Started_with_Web_Frameworks framework] and it can be used to build a CMS, but it isn't like Drupal or other CMS systems. + +Django is designed to work in slightly modified Model-View-Controller (MVC) pattern. The original Django developers refer to Django as an "MTV" framework — that is, "model", "template", and "view." + +The central difference is that in Django's version of MVC development the view refers to the data that gets presented to user -- not ''how'' it looks, but ''which data''. In other words, to quote the Django documentation, "the view describes which data you see, not how you see it." + +It's a subtle, but important difference and it explains the additional element -- templates -- which handle how the data looks. + + +== Overview == + +Django was designed to make web development fast and easy, dare I even say fun. And when I say fast I mean it, once you're comfortable with Django it's not hard to go from simple wireframe to working demo site in an hour or so. + +For development purposes Django is entirely self-contained. It includes a command line interface, a web server and everything you need to get up and running without installing anything other than Django. + +That said, the web server included with Django is not intended to be used in a production environment. For that the prefered method is to run Django through mod_python or mod_wsgi. Don't worry we'll get to that in a minute, but first let's look at how you might go about building a Django application. + +As it turns out, building a Django app actually takes much less time than explaining how to build it. + +Before we dive in though, it's worth asking, what do you mean by Django app? Django's official documentation and many of its built-in tools are set up to create projects (think of this a container for your whole site) and then within projects you have many apps (section of your site). + +Note that apps don't need to be in projects though and in many cases it's better not to put them there. + +For the sake of example here's a very high-level overview of building a Django app: + +# Create a project using the built in command line tool (<code>python django-admin.py startproject projectname</code>). This will generate a new folder containing the project's base settings file which you can use to specify database connections, template locations and more, urls.py which defines your base urls, manage.py which contains a standard set of command line tools. +# The next step is to create an app using the built in command line tool <code>python manage.py startapp appname</code>. + +Once the app folder is in place, it you look inside you'll see three files: models.py, urls.py and views.py. These are the files you'll use to actually build the app: + +# design your model (models.py) +# write your URLs (urls.py) +# create your views (views.py) +# build your templates + +Django includes it's own template language, although, as with many elements of Django, it's entirely optional. You can drop in another template language if you like, though you might want to give Django's a try first. It's simple, fast and already there. + +The other thing to keep in mind is that Django is written in Python and requires Python 2.3 or higher. Mac OS X and most Linux distros ship with Python 2.5 so that isn't a problem. Windows users may need to install Python. + +== So just how does Django work? == + +The simplest way to look at Django is to break it down into it's component parts. First off there's a models.py file which defines all your data model and extrapolates your single lines of code into full database tables and a pre-built (totally optional) administration section to add content. + +The next element is the urls.py file which uses regular expressions to capture url patterns for processing. + +The actual processing happens in your views, which, if you haven't seen the pattern yet, live in views.py. This is really the meat of Django, since views are where you grab the data that that you're presenting to the visitor. + +Here's what happens when a visitor lands on your django page: + +First Django consults the various URL patterns you've created and uses that information to retrieve a view. The view then processes the request, querying your database if necessary and passes the requested information on to your template. The template then renders the data in layout you've created and displays the page. + +== Dive in == + +Now that you have at least some idea of how Django works, it's time to dive in and get your hands dirty. For the sake of example we'll be building a blog-type site. It makes a nice intro to Django and takes advantage of some of Django's handy shortcuts and other features. + +But don't worry we aren't going to just build a blog, we'll also walk through adding a contact form, static pages (like an 'about' page) and even integrate Django with del.icio.us web services to display all your del.icio.us links on your new Django blog. + +So head on over to part two of our intro to Django [Installing Django and Building Your First App]
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Frameworks/django-templates.txt b/wired/old/published/Webmonkey/Frameworks/django-templates.txt new file mode 100644 index 0000000..8ded612 --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/django-templates.txt @@ -0,0 +1,239 @@ +When we left off last time we had defined some URLs for our blog and even wrote a custom view to handle displaying posts by tag. But if you point your browser to our development url (http://127.0.0.1:8000/blog/) you'll still see a Django error page complaining that the template blog/list.html does not exist, which is true since we haven't created it yet. + +It's time to tackle the last aspect of Django -- the template syntax. + +If you look back through the code we've written so far you'll find that we've point Django to a number of templates (look in the urlpatterns code and the custom view we wrote). The templates we've defined need to be created as follows: + +djangoblog + - templates + -blog + list.html + detail.html + -tags + list.html + +You can go ahead and create that directory structure -- just create a folder in your main djangoblog folder and name it templates. Then inside that create two folders, blog and tags. Then create your list and detail.html files (note that the .html extension is totally optional, I use it because it turns on the syntax highlighting in my text editor, but you can use any extension you like). + +== Inheritance == + +If we step back for a minute and think about our blog and what our templates need to display, the first thing that jumps out at you is that there's a whole bunch of stuff that's common to every page -- a header, site navigation, sidebar, footer, etc. + +It would be silly (and a egregious violation of the DRY principle) if we wrote that code more than once. Luckily, like most good template languages, Django provides a way to extend a single template file. We can define our site-wide components once and then simple inherit from that file, adding in the aspects of the site that do change. + +So before we dive into the detail pages, let's first create a base file. Being the creative type I generally call the file base.html. So inside the templates folder you created above, add a new file, base.html. + +Now open that file in your text editor and let's sketch out some of the site-wide html we might need. For the sake of this tutorial I've kept things pretty simple, but feel free to get as fancy as you want with your HTML. Here's a basic starting point: + +<pre> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html lang="en"> + <head> + <title>My Site - {%block pagetitle %}{% endblock %}</title> + </head> + <body> + <div id="header">My Site</div> + <div id="nav"> + <ul> + <li><a href="/">home</a></li> + <li><a href="/blog/">Blog</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/about/">About</a></li> + </ul> + </div> + <div id="content"> + <div id="primary"> + <h1>{% block title %}{% endblock %}</h1> + {% block primary %}{% endblock %} + </div> + <div id="secondary"> + <h3>Recent Entries:</h3> + <div> + </div> + </body> +</html> +</pre> + +That should be pretty self explanatory, save perhaps the curious things enclosed in curly brackets, the <code>{% %}</code> bits. What up with that stuff? + +That is Django's template syntax for creating blocks which other templates can plug data into. In this case we're creating a base template with a few blocks (think of them as holes) and our other templates will extend this and fill in the holes. + +To see what I mean let's create the blog/list.html template. Add a new blog folder in the templates folder (if you haven't already) and create a file list.html. Now open that up and past in the line <code>{% extends 'base.html' %}</code>. + +Now if you revisit [http://127.0.0.1:8000/blog/ http://127.0.0.1:8000/blog/] the template not found error should be gone and in its place you should see everything we just put in base.html -- not much I'm afraid. + +But fear not, now that we're extending base.html we can start plugging in some values for those blocks we created earlier. + +Add this below the extends statement: + +<pre> +{% block pagetitle %}Tumblelog{% endblock %} +{% block title %}My Page Headline{% endblock %} +{% block primary %} +{% for object in latest %} + <h2>{{ object.title }}</h2> + <p>{{ object.pub_date }}</p> + {{ object.body_html|truncatewords_html:"20"|safe }} + <p>tags: {% for tag in object.get_tags%}<a href="/blog/tags/{{tag.name|slugify}}/">{{tag}}</a>{% endfor %}</p> + <p><a href="{{object.get_absolute_url}}">read more</a></p> +{% endfor %} +{% endblock %} +</pre> + +Okay, first off we fill in our page title block in the head tags and then we do the same for the displayed title. The next block we fill in is the primary content block. Here's where we display the data that our generic view grabbed for us. + +The Django template syntax is fairly Pythonic in that your define loops using the same <code>for x in dataset</code> syntax. In this case the generic view function object_detail passes in a variable named latest (by default the fifteen latest entries, though you can go back to the urls.py and increase that number using the num_latest param). + +So all we do is construct a loop using the <code>latest</code> variable. Then within that loop we pull out some of our data -- again accessing an objects attributes uses the python-like dot accessor methods. + +The only part that requires additional explaining is the <code>object.body_html</code> section where we've applied two built-in Django template filters, <code>truncatewords_html</code> and <code>safe</code>. + +Truncatewords_html should be fairly obvious, this clips the the body of our post after twenty words, but also preserves the structure of the html by appending any closing tags to make sure the html is intact. + +The <code>safe</code> filter simply tells Django that it's okay to display HTML. Without the safe filter Django will automatically escape all HTML entities and tags. Autoescaping is a nice feature for avoiding nefarious XSS attacks and the like, but in this case, since we trust the source, we'll let the HTML through. + +Okay, cool, but what about tags? We do after all have tags on our entries, might as well display them which is what we do in the next line. Here we have a loop within a loop. Remember when we created our models we added a get_tags method to return all the tags for each entry? Well here it is in action. + +That will loop through all the tags for each entry and display them along with a link to that tag's permalink page. And note that we've used the slugify filter to make sure than any multiword tags will be hyphenated in the URL (if you remember back when we wrote our custom tag view we used a string replace function to "unslugify" the url for lookup in the datebase). + +The last line calls the <code>get_absolute_url</code> function that we defined when we built our model in the last lesson. This provides a link to the permalink page for each entry in the list. + +So click that link and what happens? Error page. You need to define the detail.html template. That's not to hard, just create the file, add the extends base.html instruction at the top and fill in the blank blocks like title and primary. This time there's no need to loop through anything since there's only one object. Just call it directly like we did inside the loop on the archive page: <code>{{object.title}}</code> etc. + +The code might look something like this: + +<pre> +{% block pagetitle %}{{object.title}}{% endblock %} +{% block title %}{{object.title}}{% endblock %} +{% block primary %} + <ul class="page-nav"> + {% if object.get_previous_published%} + <li> + <a href="{{ object.get_previous_published.get_absolute_url }}" title=" {{object.get_previous_published.title}}">« previous</a> + </li> + {%endif%} + {% if object.get_next_published%} + <li> + <a href="{{ object.get_next_published.get_absolute_url }}" title=" {{object.get_next_published.title}}">next »</a> + </li> + {%endif%} + </ul> + <h2>{{ object.title }}</h2> + <p>{{ object.pub_date }}</p> + {{ object.body_html|safe }} + <p>tags: {% for tag in object.get_tags%}<a href="/blog/tags/{{tag.name|slugify}}/">{{tag}}</a>{% endfor %}</p> + <p><a href="{{object.get_absolute_url}}">read more</a></p> +{% endblock %} +</pre> + +Note that I've made use of those <code>get_next_published</code> and <code>get_previous_published</code> functions that we defined way back when wrote our models. That way, users have some handy next and previous links for navigating through your permalink pages. + +Naturally you can get much more sophisticated with your HTML than this simple example. + +To create the templates for the tag pages you'll essentially do the same thing. In our custom tag view we returned a list of all the entries in an object named <code>object_list</code>. So in order to display them, just loop through <code>object_list</code> like we did with the <code>latest</code> variable above. + +==Built-in Template Filters== + +Before we move on, it's worth paying a visit to the [http://www.djangoproject.com/documentation/templates/ Django documentation on template filters and tags]. There's a whole bunch of useful stuff built in. You can use <code>{% if %}</code> tags to narrow and filter results, and there's also <code>{% else %}</code>, <code>{% ifequal var1 var2 %}</code>, <code>{% ifnotequal var1 var2 %}</code> and most other common programming structures. + +Then there's a host of template filters, like the truncatewords_html and safe filters we used above. For instance there's a handy date filter if you'd like to display your post date in something a little sexier than a UNIX timestamp. + +Here's what that would look like using the "date" filter: + +{{object.pub_date|date:"D d M Y"}} + +Another great filter is the "timesince" filter which will automatically convert a date into syntax like "1 week, 2 days ago" and so on. + +There are also filters for escaping ampersands, escaping javascript, adding linebreaks, removing HTML, converting to upper/lowercase and dozens more. In fact in two and a half years of building sites with Django I've only needed to write a custom filter once. Naturally your mileage may vary somewhat. + +==Roll Your Own Template Tags== + +One thing I do frequently do is write custom template "tags." Template tags are perhaps one of the more confusing aspects of Django since they still have a little bit of "magic" in them, but luckily it isn't too hard to work with. + +Template tags are a way of extending the Django template system to use it in project specific ways. For instance, custom template tags are a perfect way to handle things that don't make sense in a view, but do require some database logic. + +Perhaps the best example is something like a sidebar. So far ours is empty, but we can easily add a list of our most recent blog posts. + +Now we could write a filter that specifically fetches blog entries, but then what happens when we add links in the next lesson and want to display the most recent links? Write another template filter? That's not very DRY so let's just write a filter that fetches the most recent entries from any model with a date field. + +In fact we don't even need to really write it. James Bennett has already [http://www.b-list.org/weblog/2006/jun/07/django-tips-write-better-template-tags/ written some great reusable code] so we'll just use that. I strongly recommend that you have read through James' tutorial so you can see how and why this code works. + +Open a new file and paste in this code: + +<pre> +from django.template import Library, Node +from django.db.models import get_model + +register = Library() + +class LatestContentNode(Node): + def __init__(self, model, num, varname): + self.num, self.varname = num, varname + self.model = get_model(*model.split('.')) + + def render(self, context): + context[self.varname] = self.model._default_manager.all()[:self.num] + return '' + +def get_latest(parser, token): + bits = token.contents.split() + if len(bits) != 5: + raise TemplateSyntaxError, "get_latest tag takes exactly four arguments" + if bits[3] != 'as': + raise TemplateSyntaxError, "third argument to get_latest tag must be 'as'" + return LatestContentNode(bits[1], bits[2], bits[4]) + +get_latest = register.tag(get_latest) + +</pre> + +Now save that file in a new folder within the blog app, named templatetags. The folder name and location are important since Django only looks up template tags in specific locations. + +One thing to note about this code, if you look closely you'll notice that our template tag is going to fetch all entries, not just the public ones. In other words, our model allows for draft posts, but our template tag doesn't. + +This is the line in question: + +<pre> +self.model._default_manager.all() +</pre> + +There are two ways around this, one is quick and dirty: just change that line to filter only published entries. In other words: + +<pre> +self.model._default_manager.filter(status=1) +</pre> + +The better and cleaner way to do it would be overwrite the default manager for our Entry model. However, that's a little beyond the scope of this article, so for now we'll just use the quick and dirty method. + +Now open up base.html again and add this line at the top: + +<pre> +{% load get_latest %} +</pre> + +That tells Django to load the template tag, but then we need to grab the actual data, so head down to the sidebar section and replace it with this code: + +<pre> +<div id="secondary"> + <h3>Recent Entries:</h3> + {% get_latest blog.Entry 5 as recent_posts %} + <ul class="archive"> + {% for obj in recent_posts %} + <li> + <a href="{{ obj.get_absolute_url }}" title="Permanent Link to {{ obj.title}}">{{ obj.title}}</a> + </li> + </ul> +<div> +</pre> + +Now if you want to override that in templates that are inheriting from base.html, just wrap that code in a {% block %} tag and then replace it with something else in the new template. + +== Conclusion == + +The Django template system is quite vast in terms of capabilities and we've really just scratched the surface. Make sure you [http://www.djangoproject.com/documentation/templates_python/ read through the documentation for Python programmers] as well as [http://www.djangoproject.com/documentation/templates/ the documentation for template authors] and familiarize yourself with all the various built in tags and filters. Another great article is Jeff Croft's [http://jeffcroft.com/blog/2006/feb/21/django-templates-an-introduction/ Django Templates: An Introduction]. + +It's worth noting that there's an extensive collection of useful filters and template tags on the [http://www.djangosnippets.org/ Django Snippets site], so if you ever find yourself needing a custom tag or filter, have a look through there and see if anyone has already written something that works for your project. + +I should also point out that if you just don't for whatever reason like Django's template system, it's possible drop in your template language, like [http://cheetahtemplate.sourceforge.net/ Cheetah] or others. + +Be sure to stop by for our next installment when we'll tackle a plan to import, store and display our del.icio.us bookmarks. + diff --git a/wired/old/published/Webmonkey/Frameworks/django-website.txt b/wired/old/published/Webmonkey/Frameworks/django-website.txt new file mode 100644 index 0000000..a207154 --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/django-website.txt @@ -0,0 +1,175 @@ +Last time around we installed Django and started building a blog application. We got Django's built-in admin system up and running and explored some third-party libraries like the django-tagging project. + +So far we have some cool administrative tools, but no website for the rest of the world to see. This time around we'll look at building the url patterns and some "views" to sort and display our content to the world. + +Everything we're going to do will make more sense if you understand how Django processes your visitor's request. We went over some of this in our introduction, but here's a quick refresher course. + +The flow is something like this: + +1) Visitor's browser asks for a URL +2) Django matches the request against its urls.py files. +3) if a match is found Django moves on to the view that's associated with the url. Views are generally found inside each app in the views.py file. +4) The view generally handles all the database manipulation. It grabs data and passes it on. 5) A template (specified in the view) then displays that data. + +With that in mind, let's start building our public site by creating some url patterns. Remember the urls.py file where we set up our admin urls in the last lesson? Open that file in your favorite text editor. + +Now we could define all our URLs in this file. But then what happens if we want to reuse this blog in an entirely separate project? + +A far better idea is to define all your app-specific URLs in a file that lives inside the app itself. In this case we're going to use a file inside the blog app, which will also be named urls.py. + +However, before we start with that file, we need to tell Django about it. So add this line to the project-wide urls.py file, just below the line that defines the admin urls, like so: + +<pre> +from django.conf.urls.defaults import * +urlpatterns = patterns('', + (r'^admin/', include('django.contrib.admin.urls')), + (r'^blog/', include('djangoblog.blog.urls')), +) +</pre> + +Okay, now head into the blog app folder and create a new urls.py file, which we'll use to hold all the URLs related to our blog application. + +==Thoughts on URLs== + +One of the nice things about Django is that it forces you to think about your URL designs, something many people don't spend much time considering. If perchance you've never spent too much time thinking about URLs, now is good time to [http://www.w3.org/Provider/Style/URI read the W3C guide on the subject]. + +As the W3C points out, good URLs don't change, in fact, URLs never change, people change them. But change your URLs and you break everyone's bookmarks. So spend a bit of time designing a good URL scheme from the beginning and you shouldn't need to change things down the road. + +I would add one thing to the W3Cs guidelines, good URLs are hackable. So what do I mean by hackable? Let's say our blog has urls like: + +<pre> +http://mysite.com/blog/2008/jul/08/post-slug/ +</pre> + +That would display the post whose slug is "post-slug" and was published on July 8, 2008. Ideally, if the user heads up to their url bar and chops off the <code>post-slug/</code> bit they would see all the entries from July 8, 2008. If they chop off <code>08/</code> they would see all the posts from July 2008 and so on. + +In other words, the url is hackable. Now, most people probably won't do that, but in addition to being useful for those that do, it also creates an easy to use structure around which to build your site. In this case the date-based structure was probably already obvious, but what about tags? + +<pre> +http://mysite.com/blog/tags/tag-slug/ +</pre> + +This url accomplishes the same idea, but one ups it. Not only can you hack the url to get to list of all tags (provided you create such a page), it should be obvious that you could plug just about any word into the url and it effectively functions like a tag-based search engine. + +Okay, that's all good and well, how do we actually build the URLs? + +==Being Generic is Good== + +Let's get started, paste this code into your blog/urls.py file: + +<pre> +from django.conf.urls.defaults import * +from djangoblog.blog.models import Entry +from tagging.views import tagged_object_list + +info_dict = { + 'queryset': Entry.objects.filter(status=1), + 'date_field': 'pub_date', +} + +urlpatterns = patterns('django.views.generic.date_based', + (r'(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'object_detail', dict(info_dict, slug_field='slug',template_name='blog/detail.html')), + (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'object_detail', dict(info_dict, template_name='blog/list.html')), + (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$','archive_day',dict(info_dict,template_name='blog/list.html')), + (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$','archive_month', dict(info_dict, template_name='blog/list.html')), + (r'^(?P<year>\d{4})/$','archive_year', dict(info_dict, template_name='blog/list.html')), + (r'^$','archive_index', dict(info_dict, template_name='blog/list.html')), +) + +</pre> + +Now remember when I said that the url patterns determine which view Django will use to grab data from our database? In that scheme we would write our regular expressions and then point each pattern to a function in views.py. + +But we're cheating a little bit here by taking advantage of some built in views that Django provides, known as generic views. + +The developers of Django wisely figured that date-based archives were likely to be a common problem that just about every site has at least some use for, so they baked in some generic data-based views. + +What we've done here is take advantage of the built in views to construct our urls. + +Let's start with <code>info_dict</code>, which is just a Python dictionary that holds two things: a queryset that contains all our public blog entries and the name of our date field in the database. + +It's important to realize that Django querysets are lazy, that is Django only hits the database when the queryset is evaluated, so there's no performance penalty for defining a queryset that looks for everything and then filtering it on a case by case basis, which is essentially what we've just done. + +Passing the queryset to the generic view enables Django to automatically do whatever date sorting we need, for instance, to show all the entries from a single month or year. For more info on querysets, check out the [http://www.djangoproject.com/documentation/db-api/ database API docs] on the Django site. + +That's all the URL patterns list is, a regular expression that looks at the URL, figures out what view to use and then the view determines which entry or list of entries to show. + +Let's break it down and go through each part of the url pattern; we'll use the first line as an example: +<pre> +(r'(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'object_detail', dict(info_dict, slug_field='slug',template_name='blog/detail.html')), +</pre> + +The first bit: + +<pre> +(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$ +</pre> + +is the regular expression. In this case the expression will match our permalink urls and capture the year, month, day and slug of a particular entry. That information will then be passed to the next bit <code>object_detail</code> which is the name of the generic view that will pull out a single entry. + +The full path to object_detail is actually <code>django.views.generic.date_based.object_detail</code>, but since we started our urlpattern definition by including the <code>django.views.generic.date_based</code> bit, there's no need to retype it every time, we just need to call the individual function, in this case object_detail. + +After we grab the URL info and pass it to the <code>object_detail</code> function, we also pass along a dictionary of data. Most of the time you can just pass <code>info_dict</code> here. The <code>object_detail</code> generic view is something of an exception because it needs to pass along the slug_field variable as well. + +I wanted to show some of the other data you can include as well, so I wrapped it in the <code>dict</code> your see above. In this case we've passed <code>info_dict</code>, the slug_field and the name of the template that Django should use to display the data. + +The rest of the patterns just work their way back up the url using ever-shortening regular expressions until we get to nothing, which would be the url: http:/mysite.com/blog/. We'll be using that as our archive page, so I guess you can think of this as a tumblelog rather than a traditional blog, which would probably have separate archive and home pages. Naturally you can tweak the url patterns to fit whatever design you'd like. + +Django's generic views are incredibly powerful and there are quite a few other options beyond just the date-based ones we've used here (there's also a super-handy built-in pagination system for some generic views). Be sure to read through the [http://www.djangoproject.com/documentation/generic_views/ documentation on the Django website] and also have a look at [http://www.b-list.org/weblog/2006/nov/16/django-tips-get-most-out-generic-views/ James Bennett's excellent guide to the various ways you can wrap and extend generic views]. + +== Go Your Own Way == + +Django's generic views can save you quite a bit of time, but you will probably encounter some situations where they don't quite do what you want. When that happens it's time to write your own views. + +Fear not, writing a custom view isn't hard. + +We've pretty much covered our blogs URLs, from date-based archives to the detail pages, but what about the pages that display our entries by tag? + +The tagging application actually includes some views that we could use, but for the sake of example we'll write some custom views. Rather than overwriting what's already in the tagging application, we're just going to create a views file that lives on its own in our main project folder. + +So, inside the djangoblog folder create a new file named tag_views.py. Now remember, before we get started there we need to tell Django about the tag_views file, so open up djangoblog/urls.py and add the last line below what's already there: + + +<pre> +urlpatterns = patterns('', + (r'^admin/', include('django.contrib.admin.urls')), + (r'^blog/', include('djangoblog.blog.urls')), + (r'^tags/(?P<slug>[a-zA-Z0-9_.-]+)/$', 'djangoblog.tag_views.tag_detail'), +) +</pre> + +Okay, now here we haven't included another url.py file like we did with the lines above. You could argue that we should, but just to show that you don't ''have'' to, we'll just point directly to our tag_views.py file which will soon have a function named <code>tag_detail</code>. Note that in the tag URL, we're capturing the slug param; we'll use that in just a minute to filter our blog entries by tag. + +Now it's time to create the tag_detail function in the tag_views.py file, so open up that file in your text editor and paste in this code: + + +<pre> +from django.views.generic.list_detail import object_detail + +from tagging.models import Tag,TaggedItem +from blog.models import Entry + +def tag_detail(request, slug): + unslug = slug.replace('-', ' ') + tag = Tag.objects.get(name=unslug) + qs = TaggedItem.objects.get_by_model(Entry, tag) + return object_list(request, queryset=qs, extra_context={'tag':slug}, template_name='tags/detail.html') +</pre> + +Okay, so what's going on here? Well, ignore the first line for now, we'll get to that in a minute. We import all the things we need, in this case the Tag and TaggedItem classes from django tagging and then our own Entry class. Then we define the <code>tag_detail</code> function, which is just an ordinary Python function that take two parameters. The first is <code>request</code> which Django passes to all view functions and the second it the slug param we defined in our URL pattern above. + +Now because we're using a slug (a slug is an old newspaper term, which is this context refers to the last bit of the URL and can contain letters and dashes rather than space) for our tag URLs, but words with spaces for our tags we need to get rid of the dashes and replace them with spaces. Because our slug parameter is just a string, we can use the normal Python string function to make that replacement. + +In the next line we look up our tag name in the database using the <code>objects</code> manager. Then we take advantage of django-tagging's built in function <code>get_by_model</code> to grab all the entries with the given tag. + +The last step is to return something so that Django can load our template and display the entries to our visitor. To do that we're going to use another of Django's generic view functions -- <code>object_detail</code> from the generic list views. Object detail requires a few things, first of the request object, then the queryset of results and then I've added an extra context variable named tag, so our template will be aware not just what entries to display, but also the current tag. And then the last item simple tells Django which template to use. + +Now we haven't created a URL for http://mysite.com/blog/tags/ to list all our tags, but that's a good way to practice writing a view function on your own. Here's a hint, you can use pretty much the same code we used for the tag_detail function, but you don't need to worry about the <code>slug</code> param. And instead of looking up TaggedItems, just grab all the tags (i.e. <code>qs = Tag.objects.all()</code>) + +== Conclusion == + +And there you have it, a quick and dirty overview of how url patterns and view work in Django. + +If you point your browser to our development url (http://127.0.0.1:8000/blog/) you should see a Django error page complaining that the template blog/list.html does not exist, which is true since we haven't created it yet (visiting the tag pages will give you "list index out of range" error, also due to the missing templates). + +But don't worry in the next lesson well dive into Django's template system and explore all the cool things we can do, including how to write custom template filters and more.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Frameworks/djangoscreen1.jpg b/wired/old/published/Webmonkey/Frameworks/djangoscreen1.jpg Binary files differnew file mode 100644 index 0000000..fe7fb34 --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/djangoscreen1.jpg diff --git a/wired/old/published/Webmonkey/Frameworks/djangoscreen2.jpg b/wired/old/published/Webmonkey/Frameworks/djangoscreen2.jpg Binary files differnew file mode 100644 index 0000000..67e08d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/djangoscreen2.jpg diff --git a/wired/old/published/Webmonkey/Frameworks/djangoscreen3.jpg b/wired/old/published/Webmonkey/Frameworks/djangoscreen3.jpg Binary files differnew file mode 100644 index 0000000..07c5678 --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/djangoscreen3.jpg diff --git a/wired/old/published/Webmonkey/Frameworks/intro.txt b/wired/old/published/Webmonkey/Frameworks/intro.txt new file mode 100644 index 0000000..e28504e --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/intro.txt @@ -0,0 +1,58 @@ +If you've built a few websites from scratch chances are you've noticed that you have to solve some of the same problems over and over again. Doing so is tiresome and violates one of the core tenants of good programming -- Don't Repeat Yourself (DRY). + +Luckily for you other people long ago noticed that web developers face similar problems when building a new site. Sure, there are always edge cases which will vary from site to site, but for the most part there are four general tasks we developers have to handle -- Create, Read, Update and Delete, otherwise known as CRUD. + +To help you out, a number of web application frameworks have emerged over the years. You might have heard of some of the more famous frameworks -- [http://www.rubyonrails.com/ Ruby on Rails], [http://www.cakephp.org/ CakePHP] and [http://www.djangoproject.com/ Django]. + +== What is a Web Framework? == + +A web framework is a software framework designed to simply your web development life. Frameworks exist to save you from having to re-invent the wheel and help alleviate some of the overhead when you're building a new site. Typically frameworks provide libraries for accessing a database, managing sessions and cookies, creating templates to display your HTML and in general, promote the reuse of code. + +It's important not to confuse a framework with a content management system. While a framework deals with many of the same issues and, in some cases, may make it very easy to build a content management system, a framework is much more general. + +In fact a framework isn't really anything at all. Think of a framework as a collection of tools, rather than a specific thing. + +==What Can You Do With a Web Framework== + +Frameworks exist to make building a website faster and easier. Typically frameworks provide tools to cover the common CRUD cases. For instance you'll likely find libraries for accessing a database, managing sessions and cookies, creating templates to display your HTML pages and more. + +Frameworks also promote the reuse of code. With a good framework you only need to design, for instance, a contact form once. Then you can drop your generic contact form code into all your projects and save yourself some time and effort. + +Nearly any site you're going to build will have to interact with a database. Frameworks generally offer some means of doing so without having to delve into writing your own SQL every time you want to create, read, update or delete a record. + +Similarly, most frameworks either provide a template system, or make it easy to add on your own templating system so that common chunks of HTML that rarely change, for instance, the header and footer of your page, need only be written once. + +==How Do You Choose A Framework== + +Although having a wide range of framework choices is definitely good, it can also be a source of confusion for inexperienced developers. With all of the possibilities out there, choosing one can be a daunting task the newcomer, so how do you decide? + +That's something of a religious question, but a good place to start is to see if your favorite scripting language has a framework available. The Ruby in Ruby on Rails refers to the fact that Rails is a Ruby framework. So if you're a Ruby fan, Rails might be the framework for you, but there's also [http://www.nitroproject.org/ Nitro] and [http://www.merbivore.com/ Merb]. + +Python fans have a few to choose from. Django is fast becoming the Python framework of choice, but there are other options like [http://pylonshq.com/ Pylons] and [TurboGears http://turbogears.org/]. PHP lovers can check out [http://www.cakephp.org/ CakePHP], [http://www.symfony-project.org/ Symfony] and [http://framework.zend.com/ Zend]. There are also Perl and Java frameworks for those that enjoy Perl or Java. + +However, just because there's a framework available in your favorite programming language doesn't mean it's the ideal choice. Each of the frameworks mentioned has its strengths and weaknesses and you'll have to evaluate each to see which is the best fit for your site's needs. + +Although none of these should be the sole criteria, each of these frameworks are noted for certain things. + +For instance, Ruby on Rails offers tight integration with JavaScript, making it a popular choice for Ajax heavy sites. Ruby on Rails even includes the Prototype Javascript Library which you can integrate directly. + +Django was developed for a very large newspaper website and offers a fantastic auto-generated site administration section for your site's users to create, edit and update content. It also includes built-in tools for caching data and building flexible URLs. + +CakePHP borrows many conceptual ideas from Ruby on Rails but applies them to PHP. Given the widespread availability of PHP on shared web hosting servers, and the fact that Cake supports PHP4, it might be the most widely usable framework. + +There are literally dozens, if not hundreds, of more web frameworks in all sorts of programming languages, but there just isn't room to cover them all. Perhaps the best way to choose a framework is to simply dive and and try building a site with each one. That way you can see which frameworks fits the best with your style and goals. + +==Popular Frameworks== + +**Note: I thought this section could just be a list on frameworks with link to the corresponding detail page in the webmonkey wiki.** + +# [Ruby on Rails http://www.rubyonrails.com/] (Ruby) (Dive in with the webmonkey tutorial) +# [Django http://www.djangoproject.com/] (Python) (webmonkey intro) +# [Symfony http://www.symfony-project.org/] (PHP) +# [CakePHP v] (PHP) +# [Zend http://framework.zend.com/] (PHP) +# [Nitro http://www.nitroproject.org/] (Ruby) +# [Merb http://www.merbivore.com/] (Ruby) +# [Pylons http://pylonshq.com/] (Python) +# [TurboGears http://turbogears.org/] (Python) + diff --git a/wired/old/published/Webmonkey/Frameworks/vagablogging_submission.txt b/wired/old/published/Webmonkey/Frameworks/vagablogging_submission.txt new file mode 100644 index 0000000..4c6e8be --- /dev/null +++ b/wired/old/published/Webmonkey/Frameworks/vagablogging_submission.txt @@ -0,0 +1,96 @@ +Vagablogging Editors- + +Hello, my name is Scott Gilbertson and I'm applying for the travel blogger opening at Vagablogging. + +I've read Rolf's book Vagabonding, in fact it was the one of the two books that was key to my own 11 month trip around Southeast Asia (the other was Edward Hasbrouck's, The Practical Nomad) and I think it would be fun to give back to the source and perhaps inspire someone else to attempt the same. + +I've been a freelance writer for five years now. I'm under a full-time contract with Wired.com, though that's limited to technical/computer topics. I also write about internet technology, Linux and more for theregister.co.uk, as well as some other smaller publications. + +I have, when the opportunity presented itself, written about travel for Wired, for instance a how to on recharging gadgets abroad <http://howto.wired.com/wiki/Stay_Plugged_In_While_Traveling> (that's a wiki page, so anyone can edit it). + +I also run my own travel blog at luxagraf.net to keep friends and family abreast of my adventures. + +I would have to say that my travel highlight thus far was a five day camel trek through the Thar desert in India. On the third night, in the middle of nowhere, we finally hit the dunes and made camp. It had been at least 18 hours since we'd seen another living soul. While our guides were cooking dinner, the four of us on the trip decided to climb up to the top of the tallest sand dune and watch the sunset. We were sitting atop the crest of the dune, trying to avoid the rather persistant black beetles that infested all of the scrub bushes on the leeward side of the dune, when an Indian man on a camel came riding slowly over the dune below us. He dismounted and without so much as a hello began selling us beer. To me it was the perfect reminder that no matter how far you go, no matter how much you want to leave "it" all behind, it's just not possible anymore. On one hand that's sort of depressing, but on the other hand it's not -- there is afterall, nothing wrong with "it," us or the world we live in. + +Anyway, here's a couple of unpublished pieces. The first is my take on a newsy item about train travel in the United States, and the second is a bit more personal, some thoughts on travel and life. I've also included a narrative piece from a recent trip to Nicaragua (though I recognize that that's not the focus of Vagablogging.net). + +------------- + +America's train system was once a model for the world -- fast, luxurious and a model of efficiency. Now, if anyone bothered to ride the train, they would find it an absolute nightmare. American trains are expensive, constantly delayed and almost always slower than every other mode of transportation. + +Of course, if you're looking to go on a journey as opposed to just getting somewhere, the last bit might be a good thing. Sometimes it's fun to get stuck,to get off of the train in the middle of nowhere and chat with your fellow passengers while engineers tinker -- to make the old cliche about journeys being more important than destinations into a practical reality. + +For many though, the romance and appeal of rail travel is seriously hindered by the delays and almost inevitable late arrivals. But that's really just train travel in the U.S. In Europe and Asia the trains systems are the lifeblood of travel. In India trains aren't just romance and slow travel, the train system is vital to the economy. Not only do millions of Indians use the train to get around, the Indian Railway system is the largest commercial employer in the world. + +So why do the American railways suck so bad? Ben Jervey over at Good Magazine recently rode the rails from New York to San Francisco to find out. The article is worth a read in its entirety, but from the people he talks to Jervey hears about "stories of 12-hour delays on routes that would take six hours to drive; of breakdowns in the desert; of five-hour unexplained standstills in upstate New York," and worse, a train that spent two days stopped on the tracks in California. In short, riding the rails isn't the smooth, seamless process of Europe and Asia. + +But Jervey also find some signs that things may be improving, especially with gasoline on the rise and people increasingly fed up with air travel in the U.S. Unfortunately some of the bright spots Jervey points to aren't much, like the mag-lev train between LA and Las Vegas, which developers have been talking about ever since I was kid -- and there's still no mag-lev line. + +For now anyway the train in America seems limited to enthusiasts -- people chasing the old North by Northwest romance -- or those of us who don't mind arriving late, so long as the journey proves worth the undertaking. + + +------------- + + +Everywhere I go I think, I should live here... not just travel too and enjoy for a visit, but really inhabit. I should know what it's like to work in a cigar factory in Leon, fish in the Mekong, living in a floating house on Tonle Sap, sell hot dogs at Fenway Park, trade stocks in New York, wander the Thar Desert by camel, navigate the Danube, see the way Denali looks at sunset, the smell the Sonora Desert after a rain, taste the dust of a Juarez street, know how to make tortillas, what Mate tastes like, feel autumn in Paris, spend a winter in Moscow, a summer in Death Valley. + +There is, so far as I know, only one short life. And in this life I will do very few of these things. + +Sometimes I think that's very sad. + + +--------------- + +The bells are a constant cacophony, not the rhythmic ringing out of the hours or tolling from mass that the human mind seems to find pleasant; no, this is constant banging, the sort of atonal banging that only appeals to the young and dumb. The firecrackers bursting back over behind the cathedral add an off rhythm that only makes the whole mess more jarring. + +But Francisco seems entirely unperturbed and only once even glances over at toward the other side of the park, the source of all the noise and confusion. He's too fascinated with the tattoo on Corrinne's shoulder to bother with what slowly just becomes yet another sound echoing through León. + +Francisco is a shoe shiner, but since we're both wearing sandals he's out of luck and has reverted to the secondary universal appeal of travelers — a chance to practice English. + +We're sipping Victorias in a cafe just off the main park in León, Nicaragua. It's our fourth day here — with an extra day spent at the nearby Pacific beaches — in what is, so far, my favorite city in Nicaragua. + +Architecturally León is a bit like Granada, but since it lacks the UNESCO stamp it's somewhat less touristy and a bit more Nicaraguan, whatever that means. + +It's a city of poets and painters, philosophers and political revolutionaries. In fact, Nicaragua as a whole is full of poets and artists, all the newspapers still carry at least one poem everyday (U.S. newspapers used to do that too), but León is perhaps the pinnacle of Nicaraguan writing and painting, if for no other reason than it's a college town — the constant influx of youth always brings with it vitality and art. + +There are three separate Nicaragua universities in León and even though none of them are in session right now, as with Athens, GA the fomenting imprint of students lingers even when they are gone — political graffiti dots the cafes, bars are open later, people seem more active, the bells clang, the fireworks explode on an otherwise ordinary Sunday evening. + +In short, León has something that most of the rest of Nicaragua (and the U.S. for that matter) lacks — a vibrant sense of community. + +Of course in relation to the States nearly everywhere seems to have a much stronger sense of community and togetherness. + +The irony though is that just writing those words together fills me with dread and loathing, a sure sign of my own inherent Americanism. + +But the truth is community doesn't have to mean over-priced "organic" markets, war protests round the maypole and whatever other useless crap passes itself off as community in Athens and elsewhere in America. + +Every time I go abroad, not just Nicaragua, but Asia, Europe, the Caribbean, just about anywhere, the communities are somehow more vibrant, more alive, more sensual — full of bright colors, playing children, people walking to work, to the market, to the gym, to wherever. There is life in the streets. + +In Athens there's mainly just cars in the streets. Big, fast cars. + +For instance, in León the houses are not the stolid tans, boring greys and muted greens you find in Athens, but brightly colored — reds, blues, yellows, crimson, indigo, chartreuse even — the doors are not shuttered and double-bolted, there are no lawns, no barriers between the life of the home and life of the street, everything co-mingles, a great soup of public and private with each overlapping the other. + +The clatter of the Red Sox game drifts out the window, along with the smell of fresh roasted chicken that mingles with the dust of the street, the kids gathering in the park, the declining light of the day, the first streetlights, the evening news, the women in curlers walking in the shadows just behind the half-open wooden doors…. + +And it makes the streets more fun to walk down, there's something to experience, things to see and hear and smell and taste. + +Which isn't to say that León is Paris or New York, but in its own way it sort of is. Certainly it's better than my own neighborhood where I know exactly what color the houses will be before I even step out the door — and not because I know the neighborhood, but because I know what colors comprise the set of acceptable options in the States — where the children are staked in the front yard on leashes (invisible for the most part, but it won't surprise me when the leashes can be seen), neighbors wave, but rarely stop to talk and certainly no one walks anywhere unless it's for exercise. + +Why are American neighborhoods so dull? Why no happy colors? Why make things more lifeless than they already are, given that our neighborhoods are set up in such away that we abandon them all day and return only at night to sleep? + +Dunno, but I can tell you this, León, Paris, Phnom Phen, Prague, Vientiane and just about everywhere else is far more exciting to walk around than the average American town. And it isn't just the exotic appeal of the foreign; it's about architecture, design and the sharp division of public and private those two create to make our neighborhoods into the rigid anti-fun caricature that the rest of the world sees. + +Do I sound like a transcendentalist-inspired, anti-american crank? Sorry about that. I like America, really I do. And I hold out hope. One day my house will be vermillion — my own small step. + +Plus, that's a big part of what I enjoy about traveling — seeing how other people construct their house, their neighborhoods, their cities, their way of life… see not just how it differs from our own, but perhaps see some ways you could improve our lives. + +Like hammocks. We desperately need more hammocks. Lots of hammocks. + +But León isn't perfect. In fact it fails on several levels — take that butt ugly radio/microwave/cell tower on the horizon — why the hell would you put that in the middle of otherwise majestic 18th century Spanish colonial city? + +León, I'll miss you, you're just about perfect as far as Central America goes, maybe just see about moving that radio tower…. + + +-------------------- + + + diff --git a/wired/old/published/Webmonkey/Microformats/hCal.txt b/wired/old/published/Webmonkey/Microformats/hCal.txt new file mode 100644 index 0000000..f79bd07 --- /dev/null +++ b/wired/old/published/Webmonkey/Microformats/hCal.txt @@ -0,0 +1,83 @@ +Calendar and event information is one of the most common chunks of data on the web -- it answers the age old question, what are you doing? Given the prevalence of event announcements and scheduling applications, it makes sense to have a standard format that all sorts of programs can exchange. + +That's exactly what the [http://www.ietf.org/rfc/rfc2445.txt iCalendar standard] does for apps like Apple's iCal or Mozilla's Sunbird; but what about web pages? + +The answer is the hCalendar microformat, which provides an open, distributed means of marking up calendar and event information on your pages. Once your data is marked up in hCalendar format it's easy for search engine spiders and browsers to detect, understand and even convert it back to iCalendar format for importing into desktop applications. + +##Overview## + +If you have a blog, chances are you've mentioned an event at some point -- a conference you're planning to attend or just a get together at a local pub. Using hCalender when you write about upcoming events allows applications to retrieve the details of the event directly from your page without having to reference a separate iCalendar file. + +And that makes it easier for your friends to get the info into their own calendar apps, making them more likely to show up and buy you a round at that pub meet up. + +##The Basics of hCalendar## + +Let's say your blog displays a calendar widget with all your upcoming events in a table, something like this: + +<code> +<tr> + <td>Sat March 14</td> + <td>6pm</td> + <td>Meet up at Enid's</td> +</tr> +</code> + +That's fine, but just adding a few extra detail enriches the data and makes it easy for the spiders and apps to pull it out and do something useful -- like adding the event to a calendar app. + +Here's the same data marked up with the hCalendar syntax + +<code> +<tr class="vevent"> + <td><abbr title="20080314T1800-0500" class="dtstart">March 14th 6pm</abbr></td> + <td><abbr title="20080315T200-0500" class="dtend"> 2am 2008</abbr></td> + <td><span class="location">Enid's Bar, Williamsburg, NY</span></td> + <td class="summary">Meetup at Enid's</td> +</tr> +</code> + +The two main things we've done here are add date-time stamps around our human readable dates and added a few class names to define the data. + +##More Complex exampes## + +As with other microformats, hCalendar data is wrapped in tags and the class names used in those tags define what the data relates to. For instance, the <code>dtstart</code> property let's you know that the text in that HTML element is the starting time for the event. + +The only things required for a hCalendar definition are a <code>dtstart</code> class with the date and time of the event and a <code>summary</code> that gives a brief description of the event. + +Other properties you can define include: + +# location +# url +# dtend (ISO date), duration (ISO date duration) +# rdate, rrule +# category, description +# uid +# geo (latitude, longitude) + +Here's a more complex example: + +<code> +<div class="vevent"> + <h5 class="summary">I am eating bananas</h5> + <div>Posted on: <abbr class="dtstamp" title="20080314T1300Z">March 14, 2008</abbr></div> + <div>Dates: <abbr class="dtstart" title="20080314T1300Z">March 14, 2008, 16:30 UTC</abbr>- + <abbr class="dtend" title="1920080316T1300Z">March 16, 2008 01:00 UTC</abbr></div> + <div>Banana eating is a <span class="class">public</span> and <span class="transp">transparent</span> event.</div> + <div>Filed under:</div> + <ul> + <li class="category">Business</li> + </ul> +</div> +</code> + +Here we have a couple of additional class definitions. The <code>transp</code> class maps to a similar class in the iCalendar format and tells anything searching through our schedule to not include this event. In other words it won't show up when people search to see when we're busy. + +For some even more complex examples, check out the [http://microformats.org/wiki/hcalendar-examples microformats wiki page]. + +But of course there's no need to write hCalendar info out by hand. There's a handy [http://microformats.org/code/hcalendar/creator hCalendar creator], and even better are the [http://structuredblogging.org/formats.php plugins for Wordpress and Movable Type] that make it easy to add hCalendar markup to events you're writing about. + +##Conclusion## + +Although perhaps the most complex of the microformats, hCalendar is also one of the more useful ones. Sure, you can publish your schedule as an iCalendar feed, but unless all your friends are tech savvy nerds, they might not know what to do with the iCalendar feed address. + +Keep in mind that hCalendar is still a work in progress, if you have ideas or suggestions, head over to the Microformats site and [http://microformats.org/wiki/hcalendar-brainstorming let them know]. + diff --git a/wired/old/published/Webmonkey/Microformats/hCard.txt b/wired/old/published/Webmonkey/Microformats/hCard.txt new file mode 100644 index 0000000..b088bb0 --- /dev/null +++ b/wired/old/published/Webmonkey/Microformats/hCard.txt @@ -0,0 +1,82 @@ +VCards are a common format for exchanging address information, business locations, place data and more. But on the web vCards become invisible to search engine spiders and webmail apps often can't import them straight from a download link, which is why the [http://microformats.org/wiki/hcard hCard microformat] was created. + +Designed to be a simple, open and distributed format, hCards are an extension of (X)HTML that makes it easy to represent people, companies, organizations, and places. All the data encapsulated in hCard maps directly to the [http://www.ietf.org/rfc/rfc2426.txt vCard specification] so programs that can handle vCards can easily add hCard support as well (whether or not they do is up the creators). + +##Overview## + +As with other microformats, hCard uses semantic HTML or XHTML to add more meaning to your address data. Using a series of pre-defined class definitions, hCard creates a consistent format that spiders and people alike can easily recognize. + +The root class name for hCard is "vcard," so the standard definition starts like this: + +<div class="vcard"> + <a class="url fn" href="http://yoursite.com/">Your Name</a> +</div> + +As you can see the definition is wrapped in a <code><div></code> tag with the root class of vcard. The next line is an ordinary link to your website with your name as the link text. Note however the class definitions, <code>url</code> and <code>fn</code>. Obviously url denotes the fact that this chunk of data is a url, but what about that <code>fn</code> class. + +It gets a little bit complicated, do some contradictions in the vCard spec, but generally you can think of fn as short for formal name. There is also an <code>n</code> property that can be used, though <code>n</code> can be assumed to be the same as <code>fn</code> in most cases. + +##Full Example## + +So far all we have is a name leading to a website. For many that's all the contact info they're willing to give, but for the sake of example let's consider Joe Monkey, an employee of ACME Banana company. In this case we might create an hCard that looks like this: + +<code> +<div id="hcard-Joe-Monkey" class="vcard"> + <span class="fn">Joe Monkey</span> + <div class="org">ACME Banana</div> + <div class="adr"> + <span class="type">Work</span>: + <div class="street-address">314 Monkey Avenue</div> + <span class="locality">Monkey Island</span>, + <abbr class="region" title="California">CA</abbr> + <span class="postal-code">94301</span> + <div class="country-name">USA</div> + </div> + <div class="tel"> + <span class="type">Work</span> +1-555-555-5555 + </div> + <div class="tel"> + <span class="type">Fax</span> +1-555-555-5555 + </div> + <div>Email: + <span class="email">joe@acmebanana.com</span> + </div> + + <a class="url" href="aim:goim?screenname=monkeybites">AIM</a> +</code> + +Most of the class names here should be self-evident, save perhaps locality, which just means the city of municipal area. + +Note that in this case we're making a card for an individual at a company so we've used separate definitions for <code>fn</code> and <code>org</code>. However, when dealing with a company listing it would be perfectly acceptable to combine the two into one line, like so: + +<code> +<span class="fn org">ACME Banana</span> +</code> + +The various class properties are as follows: + +Required: + +# fn +# n (family-name, given-name, additional-name, honorific-prefix, honorific-suffix) + +Optional: + +# nickname, sort-string +# url, email (type, value), tel2 (type, value) +# adr (post-office-box, extended-address, street-address, locality, region, postal-code, country-name, type, value), label +# geo (latitude, longitude), tz +# photo, logo, sound, bday +# title, role, org (organization-name, organization-unit) +# category, note +# class, key, mailer, uid, rev + +##The hCard Creator## + +There's no need to write out all your hCard markup by hand. The very handy [http://microformats.org/code/hcard/creator hCard creator] can handle the grunt work for you, generating some nice cut and paste code. + +If you're displaying hCards dynamically (say as part of your hot new social network's profile page), just whip up a skeleton like the one above and replace the fake data with the variables from your database. + +It's also worth noting that contact or profile pages aren't the only place you can use hCard. HCard markup works well inside a <code><cite></code> block, for instance when you're citing another blog and want to provide some basic contact info for the author of the blog. + +Once you've got a basic handle on hCards, go ahead and put them in the wild and add your site to list of example on the Microformats Wiki. If you're feeling extra frisky have a read through the [http://microformats.org/wiki/hcard hCard specification] for all the gritty details.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Microformats/overview.txt b/wired/old/published/Webmonkey/Microformats/overview.txt new file mode 100644 index 0000000..1505b3f --- /dev/null +++ b/wired/old/published/Webmonkey/Microformats/overview.txt @@ -0,0 +1,86 @@ +Thus far the promise of the semantic web remains unfulfilled. Machines still aren't very good at understanding the code they're rendering, but Microformats are changing that. + +Perhaps the most difficult part of microformats is explaining what they actually are. The short answer is that microformats are a way of adding semantic meaning to HTML tags. First and foremost, microformats were designed to be easy for humans to read and write. If you know HTML, you know microformats. + +Tantek Çelik, chief Technology Officer at Technorati and creator of microformats, describes them as a way of "making web pages both more useful and more usable to the average person." + +The real power of microformats is in the way they refine data that already exists. + +##What Microformats Do## + + +Right now your data is spread across the internet, photos on Flickr, friends on Facebook, bookmarks at ma.gnolia, calendar on Google Calendar and so on. Microformats can make it easier to track and aggregate that data into one centralized space -- your own domain, a blog or perhaps your personalized homepage. + +In many ways microformats have the potential to replace web-based APIs and make data that was once only available to those with programming skills, available to anyone who knows a bit of HTML. + +And it isn't just people, search engines can use microformats to provide better results. "By marking up contacts with hCard, events with hCalendar, reviews with hReview, listings with hListing, search engines will be (and are) able to find that information on those sites better," Çelik says. + +Instead of guessing what information is on the page, microformats can tell search engines exactly what data they are looking at. For instance, as Çelik points out, "rel-license, the microformat for license links, is parsed and supported by Google and Yahoo's license/CC search." And rel-tag is supported by Technorati and others for browsing tagged blog posts. + +##Usage Overview## + +The basic example used to illustrate the power of microformats is the hCard format. An hCard accomplishes the same thing a vCard does -- click on an hCard on somebody's web page and you can add that person to your address book in an instant. + +The hCard format is probably the most widespread of all microformats, the hCard standard is already in use on contact and profile pages around the web, heck even [http://microformats.org/blog/2006/07/28/steve-martin-has-an-hcard/ Steve Martin] has one -- yes, that Steve Martin. + +Another excellent example of the way microformats can make your life easier is the [http://microformats.org/wiki/hcalendar hCalendar] format. The popular social networking site Facebook is one of many sites that encode calendar events in hCalendar format making it easy to add events to your calendar. + +Click on an event and it gets added to your hCalendar-compatible calendaring application. Most web calendars and desktop calendars have support for these microformats. + +Another, arguably more powerful, application of microformats is the [http://microformats.org/wiki/hlisting-proposal hListing] microformat. Imagine you want to sell something on the web; you could head to an auction site, create an account, list your item and post the information. But why bother with all that when you could just post your item on your blog using the hListing format? + +Sites like [http://www.edgeio.com/ Edgeio] can scrap hListing data and aggregate it to a larger community which can then bid to you directly, without the hassle of creating and listing an item on multiple sites. + +A complete list of microformats can be found on the [http://microformats.org/wiki/Main_Page microformats wiki]. + +##Real World Example## + +To get started with microformats let's consider the most basic example, the rel="tag" format. Many people are probably already using this without even realizing it's a microformat. The syntax is simple, start with an ordinary link tag like this: + + <a href="http://mysite.com/wine/" title="my thoughts on wine">wine</a> + +Now if we just add one additional attribute we'll have a microformat that tells search engine spiders that our link is to a page (at least partly) about wine. + + <code><a href="http://mysite.com/wine/" title="my thoughts on wine" rel="tag">wine</a></code> + +The only thing to note is that the url determines to tag, not the link text. in other words: + + <code><a href="http://mysite.com/wine/" title="my thoughts on wine" rel="tag">beer</a></code> + +would be read as a link to the tag wine, **not** beer. + +So far so good, how about something more sophisticated. Let's give hCard a try. Here's some example code: + +<code> + <div id="hcard-Scott-Gilbertson" class="vcard"> + <a class="url fn" href="http://blog.wired.com/monkeybites/">Scott Gilbertson</a> + <div class="org">Wired News</div> + <a class="email" href="mailto:scott_gilbertson@wired.com">scott_gilbertson@wired.com</a> + <div class="adr"> + <div class="street-address">3rd Floor, 520 Third Street</div> + <span class="locality">San Francisco</span>, + <span class="region">CA</span>, + <span class="postal-code">94107</span> + <span class="country-name">USA</span> + </div> + </div> +</code> + +And here's what it would look like rendered in a browser: + +<div id="hcard-Scott-Gilbertson" class="vcard"> +<a class="url fn" href="http://blog.wired.com/monkeybites/">Scott Gilbertson</a> +<div class="org">Wired News</div> +<a class="email" href="mailto:scott_gilbertson@wired.com">scott_gilbertson@wired.com</a> +<div class="adr"> +<div class="street-address">3rd Floor, 520 Third Street</div> +<span class="locality">San Francisco</span>, +<span class="region">CA</span>, +<span class="postal-code">94107</span> +<span class="country-name">USA</span> +</div> +</div> + +If the writing the code yourself is too laborious there's always the [http://microformats.org/code/hcard/creator hCard creator]. In fact nearly all of the more complicated microformats have code creators that take your input and spit out some cut-and-paste code you can drop into your site. + +For more examples and an in-depth look at various microformats see our more detailed tutorials on [link hCard], [link XFN], [link hCal] and [link hListing].
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Microformats/xfn.txt b/wired/old/published/Webmonkey/Microformats/xfn.txt new file mode 100644 index 0000000..b6c7c4c --- /dev/null +++ b/wired/old/published/Webmonkey/Microformats/xfn.txt @@ -0,0 +1,55 @@ +Tracking social relationships on the web has thus far primarily been something that happens on specific sites like MySpace, Facebook or Friendster. Within those sites you can meet and define relationships with other sites members. + +But what about the larger web? If you have a blog you may keep a "blog roll" or list of sites that you like, in the a sidebar. Some of those sites may be written by your friends; surely there's a way to define relationships between people without joining the latest fad social network? + +And in fact there is, it's known as XFN or the XHTML Friends Network. Using a series of different <code>rel</code> tags in your markup you can indicate who your friends are what the nature of your relationship is. + +While not officially part of Microformats, XNF uses some microformats to define relationships and the two groups share similar goals. + +##XFN Overview## + +You have blog. Your best friend has a blog. Your blog links to your friend's blog, but beyond that there's no way to indicate that that person is your friend. Let's say you link to your friend's blog like so: + +<code><a href="http://yourfriendsblog.net/">Bill</a> </code> + +And here's what the same link would look like after we drop in some XFN markup: + +<code><a href="http://yourfriendsblog.net/" rel="friend met">Dave</a> </code> + +As you can see we've just added a rel tag and defined Dave as a friend that we've met. The XFN specification has a fairly complete range of options for defining various types of relationship. Some of the more common attributes are: + + +# friendship (at most one): friend acquaintance contact +# physical: met +# professional: co-worker colleague +# geographical (at most one): co-resident neighbor +# family (at most one): child parent sibling spouse kin +# romantic: muse crush date sweetheart +# identity: me + +##What XFN Does## + +The primary benefit of XFN is that page scraping tools like spiders can crawl through your code and pick out various relationships you've defined. It gets even more interesting when those spiders follow your links, crawl your friend's site and find a similar link leading back to you. + +The spider then knows that the relations is symmetrical. In other words, you call Dave a friend and Dave calls you a friend and that relationship is confirmed. When symmetry is established page crawlers can give the relationship added validity. + +Symmetry is also useful with the <code>rel="me"</code> tag since it allows you to claim all the various pages you may have. Sites like Flickr allow you to enter your blog on your profile page and then mark that up with a <code>rel="me"</code> tag. + +If you then link to that same page from your blog, the relationship is symmetrical and a claim of ownership can be assumed. If someone else points to your blog from their Flickr page trying to claim your blog as their own, the lack of a reciprocating link tells a web crawler that the claim is suspect and indexing services will ignore it. + +##Using XFN## + +Hand coding your XFN links isn't that hard, but there is a JavaScript widget that can [http://gmpg.org/xfn/creator generate the links for you] if you like. + +So far the primary consumers of XFN have been search engine spiders and some attempts at open social networks like the [http://code.google.com/p/diso/ DiSo project], but Google recently released an oft overlooked [http://code.google.com/support/bin/topic.py?topic=13821 Social Graph API] that relies heavily on XFN data. + +The Social Graph API is somewhat limited at the moment, but there are some interesting tools you can use to see what sort of relationships you might already have defined. To see what sort of things are possible, have a look at the [http://code.google.com/apis/socialgraph/docs/examples.html example applications]. + + +##Limitations## + +While there are reasonably wide range of options for defining relationships there is one common sort of relationship in the web that XFN doesn't account for -- being a fan of someone. That is, while I have never met Ze Frank, for example, I am a fan of his work and XFN doesn't offer a way to define that relationship. + +However there is a proposed solution, though for the time being it only allows the reverse. For instance if someone is a fan of you, you can add a <code>rel="fan"</code> tag to your outbound link. Unfortunately the reverse isn't possible. + +There are of course further fringe cases which also can't be defined (one particular instance, a child with legal guardians rather than parents has been accepted and will be implemented in the future), but the XFN group has does a good job of preventing the list of definitions from getting too out of hand. If you have a compelling argument for including something, you can always join the group and [http://microformats.org/wiki/xfn-issues add your suggestions].
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/acid1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/acid1.jpg Binary files differnew file mode 100644 index 0000000..4786999 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/acid1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/acid2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/acid2.jpg Binary files differnew file mode 100644 index 0000000..8ae3763 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/acid2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/acidsearch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/acidsearch.txt new file mode 100644 index 0000000..2b88e1c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/acidsearch.txt @@ -0,0 +1 @@ +In my [review of Google's Customized Search][2] feature the other day I mentioned in passing that it'd be nice to have access to such functionality from the Google search field in Safari's toolbar. Last night I stumbled across a Safari add-on called [Acid Search][1] which allows you to do just that.
Just download and install Acid Search and the next time you restart Safari you'll have a customizable search menu in your toolbar.
Acid Search comes with a whole boatload of predefined search customizations, which it calls "search channels" and allows you to add your own. It's a handy way to switch between searching Google, Technorati, del.icio.us and any other site you want to add. Even better, you can add prefix and suffix terms to your urls. For instance if you'd like to search Google but add the suffix string that [GMBMG][3] adds you can create and search with the normal Google search URL and then add GMBMG's <code>-inurl</code> terms in the suffix field (just make sure you use the URL encoded string).
Acid Search also allows you to assign each custom search channel a keyboard shortcut so it's simple to switch between your various search engines.
If you're aware of similar functionality for Firefox or IE let me know in the comments.
[1]: http://www.pozytron.com/?acidsearch "Acid Search"
[2]: http://blog.wired.com/monkeybites/2006/10/google_announce_1.html
[3]: http://www.givemebackmygoogle.com/ "Give Me Back My Google"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/del-add-link.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/del-add-link.jpg Binary files differnew file mode 100644 index 0000000..89d2ae2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/del-add-link.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/del-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/del-logo.jpg Binary files differnew file mode 100644 index 0000000..7c6158d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/del-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/delicious.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/delicious.txt new file mode 100644 index 0000000..ef8d457 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/delicious.txt @@ -0,0 +1 @@ +Del.icio.us is the social bookmarking site that started the whole trend and it remains one of the most popular. Thanks to its handy search and sharing features, del.icio.us is also an interesting site to explore even if you don't use it.
####How it Works
The process of saving a bookmark is simple. Just drag del.icio.us' bookmarklets to your browser toolbar and, whenever you're on a site you want to bookmark, click the button and it will be automatically added to your del.icio.us account. The bookmarklet will take you to the "post" page on del.icio.us where you can then fill any additional information you want to add such as a description, notes, tags and privacy setting.
By default del.icio.us sets all your bookmarks to public which means anyone can see what you've bookmarked. If you'd like to make them private you need to check the "do not share" box when you create a new bookmark. Del.icio.us also auto-suggests tags that might fit your bookmark which can save you some typing.
Once you've saved your bookmark, del.icio.us will return you to the page you were viewing.
The whole process is actually much simpler than it may sound; it takes far more time to describe it than to actually do it.
####Give the People What They Want
Once your bookmarks are in del.icio.us you can share them in a variety of ways. There's a search feature that pulls in results from everyone's bookmarks including yours. And you can also search just your bookmarks to find that lost site you've been looking for.
Del.icio.us also allows you to share your bookmarks with designated people through a feature called "your network." To add people to your network you just enter their screenname, and viola! their (public) bookmarks will be added to your "network" page.
Your network is useful for sharing with friends, family and coworkers, but if you want to see everyone's bookmarks, tags are the way to go. To do this you can use the subscriptions feature. Subscriptions can be by tag, person or both. In other words you can limit a subscription to just Uncle Albert's bookmarks tagged "deer trophies" or you could subscribe to all bookmarks tagged "deer trophies" and so on.
It's also possible to designate individual bookmarks for other del.icio.us users. When you save a new bookmark if you add a for:username tag to it, they will see your bookmark under the "for you" link the next time they log in. This sharing feature works for both public and private bookmarks
Nearly every page in del.icio.us has an RSS feed of some sort, whether it' by tag, user, your network or your subscriptions you can always stay up-to-date via your RSS reader. There's also a nice backend API if you'd like to access your account directly with outside programs.
####Personal Gripes
I may be overly anal or perhaps just old-fashioned, but I rather like putting my bookmarks in folders. I suppose you could argue that tags are a kind of folder, at least on the metaphorical level, but tags are really the only organizational tool del.icio.us offers. The newly redesigned Yahoo Bookmarks has folders though, and since Yahoo owns del.icio.us it's possible this feature could find it's way to del.icio.us at some point.
Many people complain about del.icio.us' rather primitive interface, other people love the minimalist look, you'll have to decide for yourself, but in terms of functionality, del.icio.us has been, and continues to be, one of the sites to beat.
####The Low Down
**Pros**
* Simple and easy to use
* Good sharing features
* Nice backend API
**Cons**
* Not enough organizational options
* No screen captures (The bookmarks on the main page have them, but individual pages don't)
* Bookmarked pages aren't cached
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/fulltorrent.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/fulltorrent.jpg Binary files differnew file mode 100644 index 0000000..fa1173e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/fulltorrent.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/fulltorrent.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/fulltorrent.txt new file mode 100644 index 0000000..fd5094f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/fulltorrent.txt @@ -0,0 +1 @@ +Here's a tip for you torrent junkies out there: [FullTorrent][1] is a torrent search engine that returns results for multiple torrent trackers all in one handy spot.
One of the annoying things about torrents is that the trackers are often spread all across the web making it time consuming to search each site individually. FullTorrent makes it easy to search over half a dozen such trackers in one spot. And if FullTorrent doesn't currently search your favorite tracker, you can send them a note asking them to add it.
FullTorrent also allows you to set the timeout limit for your search to avoid long page loads for those sites that respond slowly.
The one downside to FullTorrent is it doesn't take you straight to the actual torrent, but dumps you on the hosting page for whatever site is tracking that torrent. While this is slightly annoying, it's still better than searching each site individually.
And please, there are a lot of perfectly legal torrents, let's limit ourselves to those, mmmkay?
[1]: http://www.fulltorrent.net/ "Fulltorrent.net"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/reboot.txt new file mode 100644 index 0000000..b6c96e0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/reboot.txt @@ -0,0 +1 @@ +* Myspace founder Brad Greenspan has acquired the majority stake in [Flurl][1].
* [Youtube][2] has undergone a partial redesign. While the homepage remains unchanged, other sections are a bit more colorful with "channels" and "groups" now under colored headers.
* Apple [announced a new AJAX webmail interface][3] for its .Mac members complete with drag-and-drop, keyboard shortcuts and more. Welcome to the 21st century Apple.
* The Google blog is announcing a [new Google Alert for blogs][4]. Type in your search params and Google Alert will send you an email whenever there's a new post that fits your search.
[1]: http://www.flurl.com/ "Flurl.com"
[2]: http://www.youtube.com/index "YouTube.com"
[3]: http://www.mac.com/web/en/Tips/825D5958-DE09-499C-94A5-6FC8839DA398.html ".Mac webmail update"
[4]: http://googleblog.blogspot.com/2006/10/on-alert-for-bloggers.html "Google Alerts"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/scial-intro.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/scial-intro.txt new file mode 100644 index 0000000..af12eb4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/scial-intro.txt @@ -0,0 +1 @@ +Today and continuing into next week I'll be taking a look at various social bookmarking sites out there. I'm familiar with [del.icio.us][1] and [ma.gnolia][2] since I use both of them and I'll also be looking at [Wink][3] and [StumbleUpon][4], but what other sites are people using?
I think we'll probably limit this specifically to sites that let you share bookmarks with other people. Services like Yahoo's Bookmarks and Google Bookmarks are more *storage* sites than *sharing* sites, but I'm sure there are other bookmark sharing sites out there that I don't know about so here's your chance to educate me.
And while we're at it, can anyone explain why social bookmarking sites like to put dots in their name?
[Note that our comments feature strips out html so just type the address in directly and it'll show up.]
[1]: http://del.icio.us/ "del.icio.us"
[2]: http://ma.gnolia.com/ "Ma.gnolia"
[3]: http://wink.com/ "Wink.com"
[4]: http://www.stumbleupon.com/ "StumpleUpon"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/social-icons.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/social-icons.jpg Binary files differnew file mode 100644 index 0000000..0698509 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/social-icons.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/ubuntu.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/ubuntu.jpg Binary files differnew file mode 100644 index 0000000..2e351fe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/ubuntu.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/ubuntu.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/ubuntu.txt new file mode 100644 index 0000000..910317e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Fri/ubuntu.txt @@ -0,0 +1 @@ +A new version of [Ubuntu Linux has been released][2]. This brings the popular distro to version 6.10 and adds several welcome new features.
Ubuntu now ships with Firefox 2.0 installed as well as version 2.8 of the Evolution mail client. Ubuntu 6.1 also features F-Spot, a nice looking photo organizer that can upload to many popular photo sharing sites including Flickr. Also included is the very handy Tomboy, a wiki-style note taking tool. For full details see the [6.1 release notes][1].
The new version promises faster boot times and features a new optimized kernal and GNOME 2.16.
I've been playing around with running various Linux distributions under Parallels on my MacBook and I can definitely say if you've never used Linux before, Ubuntu is a great place to start.
Disk images and torrent files can be downloaded from [the Ubuntu site][3].
[1]: https://wiki.ubuntu.com/EdgyReleaseNotes "New Ubuntu Released"
[2]: http://www.ubuntu.com/news/610released "Release Announcement for Ubuntu 6.10"
[3]: http://www.ubuntu.com/products/GetUbuntu/download?action=show&redirect=download "Download Ubuntu 6.10"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/fanpop-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/fanpop-logo.jpg Binary files differnew file mode 100644 index 0000000..a8de6bd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/fanpop-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/fanpop.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/fanpop.txt new file mode 100644 index 0000000..d7decce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/fanpop.txt @@ -0,0 +1 @@ +Fanpop is the latest entry into the world of social network sites, but with a twist. Fanpop aims to be a place where people can swap links and share sites based on common interests. Oh yeah, communities based on what you link to, think deli.ci.ous meets MySpace and feel the nerdy goodness.
Fanpop's concept is simple. Browse links by category. When you find a link that piques your interest, click it and you will be taken to that site. Fanpop leaves a simple, unobtrusive toolbar across the top of your browser window and the external page is in a frame -- very similar to the results from a Google image search. The Fanpop toolbar enables you to jump back to Fanpop to rate or comment on the link and of course you can close the frame and leave Fanpop behind.
Fanpop is built around the concept of "spots" which is really just a poor name for groups. Like groups on say flickr.com, you can join whatever Fanpop "spots" you like and contribute links to a community of like-minded users. All groups have rss feeds you can subscribe to.
Fanpop is an interesting concept, I'm not sure how much the social networking aspect will appeal to people but it seems to me there is a need for some kind of human-filtered means of searching the web. Who wouldn't like to have Google results rated by quality rather than simple page rankings (which admittedly aren't simple)? And what if that quality rating came from people you knew you could trust?
Fanpop is sort of a halfway point, it searches its user posted listings which more than likely came from searching something else. I'd like Fanpop a whole lot more if it limited itself to essentially providing Google-like search results with user ratings... Perhaps there is something like that out there, anyone care to educate me?
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/morning reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/morning reboot.txt new file mode 100644 index 0000000..687e6b2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/morning reboot.txt @@ -0,0 +1 @@ +Good morning, here's today's reboot:
* Google added links to [Google Blog Search][1] on the front page of [Google News][2] this weekend, a quiet reminder that they haven't forgotten about the underused Blog Search service.
* [YouTube wiped nearly 30,000 files][3] from its website this weekend after copyright complaints from Japanese media companies.
* Tomorrow will see the release of the official version of Firefox 2.0 but it appears the new version is [already on the Mozilla foundation's FTP servers][4].
* Regretting those pics from last year's Christmas party that linger on flickr.com? A newly-launched service, [Reputation Defender][5], can help you monitor and erase such info. And if the site in question won't remove the content, Reputation Defender can set the lawyers on them.
* It's that time of year: Google Earth adds U.S. election guide. The new overlays include information with candidate names, parties and links to register to vote. [[Lifehacker]][6]
[1]: http://blogsearch.google.com/ "Google Blog Search"
[2]: http://news.google.com/ "Google News"
[3]: http://arstechnica.com/news.ars/post/20061020-8038.html "Google removes Video files"
[4]: http://www.bitsofnews.com/content/view/4242/44/ "Firefox 2.0"
[5]: https://www.reputationdefender.com/
[6]: http://www.lifehacker.com/software/google-earth/google-earth-adds-us-election-guide-209430.php "Google Earth Adds Election Guide"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/mymemorizer-screen-cap.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/mymemorizer-screen-cap.jpg Binary files differnew file mode 100644 index 0000000..d895130 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/mymemorizer-screen-cap.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/mymemorizer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/mymemorizer.jpg Binary files differnew file mode 100644 index 0000000..d4f4b32 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/mymemorizer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/mymemorizer.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/mymemorizer.txt new file mode 100644 index 0000000..e44e9ff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/mymemorizer.txt @@ -0,0 +1 @@ +Mymemorizer.com is a new service from Sweden offering a web-based calendar app with SMS and Email reminders. Sign up for a free account, add your events via the javascript interface and the site will send you either email or Text/SMS messages to your mobile phone.
The free component cuts off at three message reminders per day. It's possible to buy more, but I was unable to find a price list. Also note that your mobile service provider may charge you for incoming SMS messages depending on your service plan.
The javascript heavy interface may put some people off, but the demo was responsive and easy to use when I tested it. It's not the most attractive interface, but the functionality is impressive.
The SMS test widget that mymemorizer provides worked fine on my phone (cingular) your milage may vary.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/realtravel.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/realtravel.txt new file mode 100644 index 0000000..323d986 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/realtravel.txt @@ -0,0 +1 @@ +Planning a trip this fall? As someone who's traveled a fair bit in the last year I have a kind of fetish for travel sites. Recently I stumbled across [Realtravel][1] which Forbes magazine calls one of the "essential travel sites" of the internet.
Realtravel is not aimed at finding airfares or buying tickets online, though it does have some links and price listings, instead Realtravel's main focus is on user stories, tips and reviews.
Realtravel offers far too many things to cover in a short post, but my favorite section is the destinations tab. Under destinations you'll get a map with the world broken into regions for easy browsing, or you can pick a country from the "most blogged" list. Once you select a country you'll be taken to that country's page which has a wealth of information ranging from dining reviews to travel ideas and everything in between. From there you can continue to tunnel in a get more detailed information by city.
What makes Realtravel worthwhile for travelers is their user-generated content. Anyone can buy a guidebook, but do you know how long it takes for a guidebook to get printed and onto the shelf? Most guidebooks are hopelessly outdated before they even get into your hands. Realtravel and other sites like it are invaluable for their up-to-the-minute stories, reviews and trip suggestions from travelers who've just been in, and in some cases, currently are in, the places you're headed for.
I wish I could say Realtravel has a great interface for creating your own travel blog and contributing to the community, but unfortunately the sign up process is somewhat long and more convoluted than seems necessary and once you have an account set up the process of posting to it is fairly arduous as well. Still if you're willing to jump through the hoops, you can get a free blog, picture uploads, and more.
[1]: http://realtravel.com/ "Real Travel"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/rep-def-pull.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/rep-def-pull.jpg Binary files differnew file mode 100644 index 0000000..785aa56 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/rep-def-pull.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/repdeflogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/repdeflogo.jpg Binary files differnew file mode 100644 index 0000000..873b545 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/repdeflogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/reputation defender.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/reputation defender.txt new file mode 100644 index 0000000..06e5c89 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/reputation defender.txt @@ -0,0 +1 @@ +<p>Reputationdefender.com is a new site with a novel aim — cleaning up your online reputation. It's becoming increasing common for companies to screen potential employees for offensive blog posts, embarrassing MySpace profiles, and damaging photos trawled up with a simple Google search. Yes, it seems we've reached the point where policing your internet reputation might be a viable business model.</p>
<p>Reputation Defender claims they will monitor sites like MySpace, Facebook, Xenga, Bebo, Flickr, LiveJournal and a whole host of others for any material that might be damaging to you. If they do find something they will, on your behalf, ask the site owner to remove it. Should the site owner refuse, Reputation Defender will "use our array of proprietary techniques developed in-house to correct and/or completely remove the selected unwanted content from the web."</p>
<p>Reputation Defender is a paid service with rates starting at $15.95 a month for six months. </p>
<p>The site also offers two other related services they call "mychild" and "myprivacy." My child searches and collects information on your child and provides a monthly report. Setting aside the vaguely Orwellian feeling that gives me, I can see where, with the recently announced number of registered sex offenders on MySpace, this would be an attract service for many parents.</p>
<p>The "my privacy" feature is not yet available but promises to do something about the massive number of companies that buy and sell personal information, much of which is often inaccurate. This sounds like something I'd actually want.</p>
<p>The site didn't have an answer to the first question that popped in my mind — what about duplicate names? For instance there is a Scott Gilbertson serving time in prison in Michigan for something or other, how will Reputation Defender know that's not me?</p>
<p>Another thing I haven't been able to sort out from browsing the site is the exact legal status of the "destroy" component of Reputation Defender. After all, just because you're applying for a job, why does that mean I have to take down those pics from the Animal House-style Halloween Party of 2002? And if I refuse is there any legal ground to compel me to take them down? The user agreement on the site says, "[Reputation Defender] does not guarantee or warrant that it will be successful in effecting removal or alteration," which seems to imply that there may not be a legal way to force content removal.</p>
<p>I'm no lawyer so if you have any insight please leave your thoughts in the comments section.</p>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/skye20.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/skye20.txt new file mode 100644 index 0000000..774b3bb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Mon/skye20.txt @@ -0,0 +1 @@ +[Skype 2.0 for Mac][1] has just been released. The upgrade features support for video calls no matter what kind of computer the call is made to (previously Skype for Mac video calls only worked on calls to other Mac users). The upgrade requires a Mac G4 or better and is a universal binary.
In other Skype-related news, there's a new site, [Anothr][2], that allows you to get RSS feeds delivered via your Skype account. I was impressed with the idea until I ran across this tidbit in the company's blog: "Skype is not only a cool voice-over-IP tool, but also a perfect P2P application platform with high security."
If anyone out there thinks the VOIP protocol has "high security," contact me for some important real estate listings you don't want to miss.
[1]: http://www.Skype.com/download/Skype/macosx/ "Skype 2.0 of Mac"
[2]: http://www.anothr.com/ "RSS to your Skype Account"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/iLike.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/iLike.txt new file mode 100644 index 0000000..bb805cc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/iLike.txt @@ -0,0 +1 @@ +[Ilike][1] is a new music-based social networking site from the people behind [GarageBand][2] (the website not the Mac app). Ilike aims to expose you to new music based on the music you like now.
Ilike has all the familar trapping of a social networking site, create a profile, various ways to meet new members, upload pictures, and more, but iLike also has some very nice tools for finding new music.
The main tool is the iTunes sidebar. The iLike sidebar is an iTunes plugin that adds a sidebar to your iTunes application and makes music recommendations based on what you're listening to at the time. The sidebar adds a little bit of startup time to iTunes, but once it's running it doesn't seem to add any load to the application. Naturally you must be connected to the internet for the iLike sidebar to work.
There are two categories of recommendation from the iLike sidebar: established artists and new, unsigned artists. When you're listening to a song and you see an iLike recommendation you like just click the arrow beside the name and iLike pauses your iTunes playback and streams the new song from its host site. For the established artists you get a 30 second sample and link to buy the song (from iTunes Music Store).
Music for the unsigned artists comes from iLike's partner site, GarageBand and you can listen to the whole song. If you decide you like the song there's a link that will open your web browser and download the file. It would be nice if iLike could somehow just download the song in the background and automatically add it to your library, but that currently isn't possible (if you use Safari this more or less happens anyway).
iLike accounts offers a sort of privacy control that lets you hide "embarrassing" artists which is a good way to hide that fact that I'm currently rockin' the Dio. Not really. Seriously. I'm not.
The search and recommendations feature is fairly good. I tried throwing a few more obscure artists at it and it was stumped by some them, but it surprised me by finding recommendations for many of them. Interestingly enough, while a few randomly selected Sun Ra tracks turned up nothing in the way of matches, other Sun Ra songs did -- go figure. I suppose as time goes on and more members give more information, the recommended tracks will likely become better.
ILife also claims they will be adding support for other music players in the future (in fact they're openly soliciting programmers to help them if that's your bag).
I will confess to being initially ill-disposed toward iLike and I can take or leave the actual website and social network aspect of the service, but the iTunes sidebar is very slick. It integrates nicely with iTunes and it's a great way to explore both established and new, emerging artists. I try out a lot of stuff for this blog and most of it I forget about a month later, but iLike I might actually keeping around.
[1]: http://www.ilike.com/ "iLike Music Networking site"
[2]: http://garageband.com/ "GarageBand.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/ilife-sidebar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/ilife-sidebar.jpg Binary files differnew file mode 100644 index 0000000..731db85 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/ilife-sidebar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/ilike-fullscreen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/ilike-fullscreen.jpg Binary files differnew file mode 100644 index 0000000..989a9b3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/ilike-fullscreen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/ilike-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/ilike-logo.jpg Binary files differnew file mode 100644 index 0000000..c76f923 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/ilike-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/interview.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/interview.txt new file mode 100644 index 0000000..7c7c74d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/interview.txt @@ -0,0 +1 @@ +Why reputation defender? What made you want to start this company?
How does the data collection process work?
What methods do you employ for gathering the data on people -- is it all spiders/bots or is there a human element as well?
How do you sort out name collision? For any given name there are usually several individuals in the country, how do you know who's who? And how do you a pontentially libelous statement is directed at your client and not another person with the same name?
From the site:
--
"Our trained and expert online reputation advocates use an array of proprietary techniques developed in-house to correct and/or completely remove the selected unwanted content from the web"
--
What methods do you use to eliminate content?
Is there a legal component and if so on what basis? Obviously libel law applies in some cases, but what about "embarrassing" content, can you effect the removal of that as well? i.e. drunken prank video on YouTube etc.
How do you handle material posted on sites outside U.S. jurisdiction?
I realize the "myprivacy" feature is in "coming soon" status, but can you say anything about how you plan to get these companies to stop selling personal data?
And finally, this is a bit more abstract, but...
There was a comment on a mashable.com post on reputation defender that talked about human nature being more reactive than proactive and thus people are more likely to care about things of this nature after it's too late (in otherwords after they don't get the job etc). Do you have any response to this thought?
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/neighboroo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/neighboroo.txt new file mode 100644 index 0000000..244fdad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/neighboroo.txt @@ -0,0 +1 @@ +[Neighboroo][1] is a fun little site that gives a visual face to usually faceless data like population density, cost of living indexes, tax rates and more. The site combines neighborhood statistics with color-coded Google maps to display information.
It's an interesting way to dig through census data (or at least I'm assuming the information is coming from census data) without loosing yourself in the numbers. The color codes on the map could be a little bit starker in contrast, sometimes it's hard to tell exactly what shade you're looking at, and deeper zooming on the maps would be nice, but Neighboroo is great at what it does.
Handy for anyone who's moving or thinking of moving and I'm sure there's other uses as well. Found via Folksonomy.
[1]: http://www.neighboroo.com/ "Neighboroo.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/reboot.txt new file mode 100644 index 0000000..9747ea3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/reboot.txt @@ -0,0 +1 @@ +* Mobile Video site [Veeker][6] launches today.
* Struggling podcast site [Odeo][1] was acquired today by [Obvious Corp][2] a new company founded by, among others, Odeo's own founder Evan Williams
* Social music service [iLike][3] launched its public beta last night. Similar to Last.fm, iLike is a social networking site built around the music you listen to. iLike helps connect you with emerging artists based on similarities with music you already like.
* Adobe Labs has release a public beta for a new piece of software it calls [SoundBooth][4]. Soundbooth is designed to allow you to easily clean up and edit your audio recordings.
* And finally here's something for the bored: [all 200,000 Enron emails][5] in a searchable database. From Trampoline: "The Enron Explorer lets you investigate the actions and reactions of Enron's senior management team as the noose began to tighten."
[1]: http://odeo.com/ "odeo.com"
[2]: http://obviouscorp.com/ "Obvious Corp"
[3]: http://www.ilike.com/ "iLike.com"
[4]: http://labs.adobe.com/technologies/soundbooth/ "Adobe Soundbooth Beta"
[5]: http://enron.trampolinesystems.com/ "Browse Enron emails"
[6]: http://veeker.com/veeker/Login.html "Veeker.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/vox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/vox.jpg Binary files differnew file mode 100644 index 0000000..be134cc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/vox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/vox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/vox.txt new file mode 100644 index 0000000..db0bef0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/vox.txt @@ -0,0 +1 @@ +I'm always looking for something to topple MySpace's current dominance and today I think I might have found it -- [Vox][1]. Six Apart, the folks that brought us Movable Type, TypePad and LiveJournal, promise that Vox will be "blogging for the rest of us." Vox has been around for a while in beta testing mode, but today the Six Apart service has been unleashed on the world and it looks very, very nice.Whether or not you're "the rest of us" is up to you, but Vox has some very attractive features and a great look and feel.
The user interface and layout is vaguely reminiscent of Flickr, clean, simple and slick. There is no way to directly customize the code of your pages but Vox gives you a ton of page "themes" (165 of them to be exact) to choose from so your pages can have your personal stamp. Even better, adding external content like YouTube movies dead simple.
There's also very minimal advertising on the site pages, most of the ads are confined to the inside editing pages. Within your page there are monitized Amazon affiliate links and other small things, but for the most part you don't notice it when browsing through the site.
As much as I would like to call Vox a potential MySpace killer, the truth is I think they're after a much different demographic. I don't know that the kids will flock to Vox, but older users looking for a non-technical way to join an online community should be very happy with Vox.
No word on how this affects the future of LiveJournal.
[1]: http://www.vox.com/ "Vox.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/wmv.gif b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/wmv.gif Binary files differnew file mode 100644 index 0000000..690ca3d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/wmv.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/wmv.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/wmv.txt new file mode 100644 index 0000000..80d3f0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Thur/wmv.txt @@ -0,0 +1 @@ +Earlier this week the release of Windows Media Player 11 was pushed back a few days, but the word is it will arrive very soon. Good news -- if you're a Windows user.
As a Mac user, Windows updates tend to slip by me, but Media Player is somewhat cross-platform and I would like to be able to watch .wmv movies on my Mac. Unfortunately Microsoft ceased development on the Mac version of Windows Media Player back at Windows Media Player 9.
Since that time [Flip4Mac][1] has released a set of codecs that allow you to watch .wmv files via Quicktime (Flip4Mac's free offering is essential a set of codecs that allow Quicktime to read .wmv files). With Microsoft's own website pointing Mac users to Flip4Mac, this seems to be the only option at this point.
I've been quite happy with Flip4Mac and in some ways I like .wmv better than Quicktime movies, but with the imminent release of a new version of Windows Media Player it's possible that we Mac users won't be able to view movies made with the new player.
Does anyone have an suggestions on alternate ways a Mac user can view wmv files? Are there any alternative to Flip4Mac? And does anyone know of a Mac program that can handle Windows Media DRM files (something neither Flip4Mac nor the old official WMPlayer 9 can do)?
[1]: http://www.flip4mac.com/ "Flip4Mac"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/cp1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/cp1.jpg Binary files differnew file mode 100644 index 0000000..cbd3496 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/cp1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/cp2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/cp2.jpg Binary files differnew file mode 100644 index 0000000..a877770 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/cp2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/custom-search-sample.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/custom-search-sample.jpg Binary files differnew file mode 100644 index 0000000..ce3a037 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/custom-search-sample.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/fedora core 6.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/fedora core 6.txt new file mode 100644 index 0000000..01ae56a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/fedora core 6.txt @@ -0,0 +1 @@ +[The Fedora Project][1] has just announced the release of [Fedora Core 6][2]. According to the release notes the new version features better "install-time access to third-party package repositories, extensive performance improvements, support for Intel-based Macs, and a new GUI virtualization manager."
The look and feel of Fedora Core 6 have changed a bit too with a new default font and theme. Naturally the new version ships with the latest releases of GNOME and KDE, as well as "some additional options in window managers."
Red Hat claims users will see a noticeable speed boost in application start up, particularly for memory heavy apps like OpenOffice. From the Red Hat press release:
>Enhancements in performance in Fedora Core 6 build upon established, underlying systems. The start-up boost that applications such as OpenOffice.org receive is gained from being rebuilt with DT_GNU_HASH. This hash is optimized for speed and data cache accesses. Another area of enhanced performance is in network file systems, including NFS.
Grab the [torrent from the Fedora site][3].
[1]: http://fedoraproject.org/static-tmp/ "Fedora Core 6 released"
[2]: http://fedoraproject.org/static-tmp/FC6ReleaseSummary.html "Core 6 release notes"
[3]: http://torrent.fedoraproject.org/ "Download Fedora Core 6 via torrent file"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/free411.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/free411.jpg Binary files differnew file mode 100644 index 0000000..c527de4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/free411.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/free411.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/free411.txt new file mode 100644 index 0000000..561149b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/free411.txt @@ -0,0 +1 @@ +I somehow missed the announcement on this one (they told me this rock came with free wireless, but that turned out to be false), and just now discovered a service by the name of [Free411][1]. Free411 allows you to make free directory assistance calls provided you're willing to sit through a fifteen second ad. With most phone service providers charging upward of $1.25 per call, Free411 is a welcome relief (and should scare the daylights out of the already struggling telecom industry which rakes in $8 billion a year on 411 calls alone).
I just gave it a shot and indeed it works as advertised. After you make your request and before you get your answer you have have to sit through fifteen seconds of adverts. I guess the real question is, what do you value more -- those fifteen seconds of your time, or the $1.25 traditional 411 charges?
[1]: http://www.free411.com/index.php "Call information for free"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/google custom search.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/google custom search.txt new file mode 100644 index 0000000..75b94db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/google custom search.txt @@ -0,0 +1 @@ +As I mentioned in the morning reboot, [Google has announced a new feature][1], customized search engines, for their Google Co-op service (a service which, contrary to what some sites have implied, already existed).
A number of competing sites like [Rollyo][2] (which we have [covered in the past][3]) have offered similar services for some time, but the big difference in Google's offering is the ability to monotize your search engine. Which is of course jargon for "it connects to your AdSense account."
Setup is relatively simple. You create a search engine, give it a name, description and some keywords to indicate what it's targeting. Then you add the sites you want to search. According to Google's docs, "you can specify single web pages, entire web sites, and patterns that match certain pages or directories on a site." Which means that target only the content you want found. For instance, if you're including your blog in your search engine, you can tell Google to ignore the homepage (which may change frequently and therefore not be up-to-date in Google's index) and only search your permalinks or individual pages. You can also exclude whole domains using wildcard characters which allows you to build a search engine that can search the whole web, but ignore known link-spam sites (in fact someone has already [start such a search engine][9]).
Once your search engine is built you can collaborate with others by inviting them to contribute to your search engine. Contributors can add sites to include or exclude in your search engine and apply search refinements to them, but they can't change the look or feel of your search, nor can they make money from it. The contributors feature can be open to the world at large or limited to people you invite. This will likely be a popular feature with large organizations looking to build a customized search engine that serves a whole company.
Another useful feature is the "refinements" option which allows you "annotate the websites in your search engine with labels that help users narrow down their search." The labels appear as links at the top of your search results pages and when a user clicks the link that site is given priority in search results.
One nice feature of Rollyo that Google's offering thus far lacks is the [Rollbar][4]. True, Google has [a bookmarklet for easily adding sites to your search][10] as you find them, but the Rollyo Rollbar takes this a step further and let's you search whatever page you're on, whether you add it to your search engine or not. Hopefully Google will offer something similar soon.
You can customize the look and feel of your search engine, colors, logo, and more. And there's about half a dozen other [tweaks][6] and [customizations][5] you can apply that I don't have time to cover in detail.
####But what does it all mean?
Well there's really two possibilities here. One is for web users like you and me who want to be able to control which sites get searched and, perhaps more importantly, which sites *don't* get searched. There is also the potential to earn some revenue via AdSense, but let's be honest, for the average user that isn't going to be much.
And then there's the other side of it for those looking to build a custom search feature into a webpage. For instance, if you have a blog where you write posts but you also pull in photos from your Flickr page, you might want to make a search engine that will search both you blog posts and your Flickr pages for a given term. Most blogging software can do a fairly decent job of searching your posts, but it's useless for the Flickr content. By embedding your custom Google search page in an iframe, you've suddenly got a more powerful search with very little setup effort. To see a real world example of a customized Google search try using the search feature at [RealClimate][7].
All and all Google's new customized search is a very impressive offering, but there are some downsides. if you use the service on your site in an iframe you'll get Google's text ads in addition to your results (you can only get rid of adds if your site qualifies as a "501(c)(3) non-profit, university, or government agency website"). Then there's the whole iframe concept, which is annoying. Thankfully Google is offering what they call an [AJAX Search API][8] for advanced users.
Now if I could just figure out how to get Safari's toolbar Google search to automatically use my new customized search page....
[1]: http://googleblog.blogspot.com/2006/10/eureka-your-own-search-engine-has.html "Google Announces new Customized Search"
[2]: http://www.rollyo.com/ "Rollyo.com"
[3]: http://blog.wired.com/monkeybites/2006/08/rollyo_introduc.html "Monkeybites on Rollyo"
[4]: http://www.rollyo.com/bookmarklet.html "Rollbar Bookmarklet"
[5]: http://www.google.com/coop/docs/cse/cse_file.html "Custom Search Engine XML Specification"
[6]: http://google.com/coop/docs/cse/label_file.html "Annotations label file "
[7]: http://www.realclimate.org/ "Try Real Climate's implementation of Google's Customized search engine"
[8]: http://code.google.com/apis/ajaxsearch/documentation/ "Google Custom Search AJAX API"
[9]: http://www.putch.com/
[10]: http://www.google.com/coop/cse/marker "Google marker bookmarklet"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/mediafire.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/mediafire.txt new file mode 100644 index 0000000..381e12f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/mediafire.txt @@ -0,0 +1 @@ +File this under things that seem to good to be true: [MediaFire][1] offers free unlimited file storage with no sign up required.
The internet has been all abuzz since MediaFire launched last weekend and so far the reaction seems positive. This is one of those services where I keep waiting for someone to find the hidden catch, but to the best of my knowledge no one seems to have found a catch.
MediaFire acts as a file transfer and storage facility. You upload a file and MediaFire stores it for you. Pretty simple. Transfer times will depend on your internet connection speed.
Once you've uploaded a file MediaFire gives you some cut-and-paste links, one for direct download url, one to create links on your site and one even give you the link in forum code for phpBB and similar bulletin boards. You can also chose send a link via AIM or Yahoo messenger services, or you can send out an email to notify people of your upload.
As some users have pointed out, the email sent vaguely resembles spam, which could cause problems if you have aggressive spam filters, but otherwise the site is excellent. The interface is simple and easy to use with nice AJAXy progress bars and upload status information.
Though you don't have to, you can sign up for a free account.
There's no ads on the site, and in fact Mediafire might be one of the simplest sites I've seen in a long time. There isn't much in the way of advertising either which is nice. The only thing I can't figure out is how they plan to make money. Of course that never stopped YouTube.
[1]: http://www.mediafire.com/ "MediaFire.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/mediafirelogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/mediafirelogo.jpg Binary files differnew file mode 100644 index 0000000..22ca421 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/mediafirelogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/mediafirescreen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/mediafirescreen.jpg Binary files differnew file mode 100644 index 0000000..c00af08 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/mediafirescreen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/reboot.txt new file mode 100644 index 0000000..bf8bf0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/reboot.txt @@ -0,0 +1 @@ +Buenos Dias Capt. Crunch. Here's your morning reboot.
* [Apple computer announced][1] that "its entire MacBook Pro line of notebooks now includes the new Intel Core 2 Duo processor and delivers performance that is up to 39 percent faster than the previous generation."
* Google launched a customized search service this morning. Called [Google Co-op][2], the service allows a user to create and launch a search engine with just a few specific websites included in the results.
* [IBM is suing Amazon][3] over some e-commerce patents, most notably the technology that powers the product recommendation features.
* CrunchGear is reporting an interesting rumor (note that, *rumor*) that Microsoft's upcoming [Zune mp3 player will offer referral payments][4] which you can cash in for free songs or other items from the Zune Marketplace.
*
[1]: http://www.apple.com/pr/library/2006/oct/24macbookpro.html "New Macbook Pros"
[2]: http://www.google.com/coop/cse/ "Google Co-op"
[3]: http://www.cio-today.com/story.xhtml?story_id=47239 "IBM sues Amazon"
[4]: http://crunchgear.com/2006/10/23/zune-to-pay-you-back-for-sharing-songs/ "Earn credits for sharing music? Maybe."
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/travelistic b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/travelistic new file mode 100644 index 0000000..5c48bfa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Tue/travelistic @@ -0,0 +1 @@ +I got several emails about yesterday's write up of RealTravel including one that pointed me to [Travelistic][1] a new site that claims to have "more video that any other travel site." At this point Travelistic is basically a YouTube for travelers with a mixture of professional and user submitted videos, but it claims to be expanding soon.
I found the user content more appealing, but Travelistic does license some fairly big-name video content like ThirstyTraveler and others. The site also claims to be looking for "Rocketboom of Travel" so if you feel you've got the talent... (Note to Travelistic: I think this would be more compelling if advertised as "the Ze Frank of travel").
Travelistic also has a super handy feature named "mapify" that lets you generate cut-n-paste code to drop a Google map on your profile page so others can track where you are in the world.
[1]: http://www.travelistic.com/ "Travelistic.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/OLPC.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/OLPC.txt new file mode 100644 index 0000000..1c8cdc4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/OLPC.txt @@ -0,0 +1 @@ +[Nicholas Negroponte's One Laptop Per Child][1] (OLPC) initiative is preparing to launch it's $100 laptop dubbed the 2B1. Quanta Computer of Taiwan, the world's largest manufacturer of laptops, will ship 5,000 test units later next month.
When you write about the happenings of the tech world Muammar Qaddafi doesn't come up much, but in this case he's one of the first customers of the 2B1 and he hopes to put one in the hands of every child in Libya. China, Argentina, Brazil and others are also slated to receive the new machines.
But it seems that no good deed must go uncriticized and in this case the winner of the Monty Burns Jackass Award is Intel CEO Craig Barrett who has roundly criticized the project and, according to Forbes magazine, wrote an internal memo claiming "the OLPC represents a limited version of the modern PC, reliant on old hardware that limits its functionality."
I think what he means by this is that the 2B1 uses cutting edge hardware from rival chip maker AMD. Bill Gates is no big fan of the project either. Would it shock you to learn that the 2B1 ships with Linux pre-installed? I didn't think so.
Having just returned from traveling in some of the countries slated to receive these machines I thought I'd share a few thoughts. First off no one who's living a small rural village cares whether or not they have the latest hardware or software. Many of the potential recipients of these machines would be happy to get running water or electricity.
The other thing that I think get's overlooked quite a bit in the 2B1 coverage is that these machines can form an ad-hoc wireless network with each other. I haven't been able to track down distance specs for the network, but one of things that limits the lives of people in remote locations is lack of communication and anything that addresses this need is going to be welcome.
If current plans hold, OLPC will ship at least 50 million 2B1s a year by the end of 2008. That's more than all the laptops sold worldwide last year.
[1]: http://laptop.org "One Laptop Per Child"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/Yahoo Bookmarks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/Yahoo Bookmarks.txt new file mode 100644 index 0000000..572e904 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/Yahoo Bookmarks.txt @@ -0,0 +1 @@ +As we mentioned earlier today, Yahoo has updated/released a new service called [Yahoo Bookmarks][2]. At first I thought Bookmarks was an improvement for the existing Yahoo MyWeb service (which has long offered a bookmark storage service), but it turns out it's a separate product. What makes it all even more confusing is that Yahoo actually acquired De.lico.us some time ago so now they technically have three bookmarking services (Del.icio.us users there's no need to freak out, [Del.icio.us isn't going anywhere][1]).
Yahoo's services have always been a bit of a jumble (go the home page and try to find a link to MyWeb) and frankly I still haven't figured out a way to get to the new Bookmarks service without typing it straight in the url. But it is in beta so we'll leave that alone for now.
If you'd like to see what all the new Bookmarks service has to offer there's [an excellent screencast available][3], but I'll give a quick overview anyway.
Yahoo Bookmarks has all the standard bells and whistles we've come to expect in bookmarking sites such as annotations, tags and thumbnails. It also offers a caching feature much like [Ma.gnolia][4] which stores the content of the page so it's accessible even if the page disappears. Personally this is the reason I switched from Del.icio.us to Magnolia some time ago so kudos to Yahoo for offering this feature. Unfortunately the "view saved copy" link didn't actually work when I tested it, but it may just take a little while for Yahoo to actually cache the page.
The integration with the Yahoo toolbar is seamless and quite nice, something I wish other services were better at providing. Yahoo also claims it's working on integrating with FireFox which would be nice for users that don't want to be bound to the Yahoo toolbar.
While at first glance Bookmarks looks a lot like a better designed, AJAX heavy De.lico.us, they're really quite different. For one thing, Yahoo Bookmarks is not a social bookmarking site, it's a way to store your bookmarks online. You can share bookmarks by emailing them to others, but there is no "community pool" feature and no searching through other users bookmarks such as del.ici.ous offers.
There are more powerful bookmarking sites out there, but Yahoo's interface is nice and for existing Yahoo users the addition of Bookmarks will no doubt prove useful. As for those already using Del.icio.and other services, or those wanting the sharing aspect of social bookmarking site, Yahoo's new service may leave you wanting.
And finally I should note that Safari had some issues with Yahoo's JavaScript features, but everything worked well in FireFox. Your mileage may vary.
[1]: http://www.techcrunch.com/2006/10/24/Yahoo-bookmarks-enters-21st-century/#comment-298831
[2]: http://beta.bookmarks.Yahoo.com/ "Yahoo Bookmarks"
[3]: http://beta.bookmarks.Yahoo.com/welcome "Yahoo Bookmarks Screencast"
[4]: http://ma.gnolia.com "Social bookmarking with Ma.gnolia"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/briefli.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/briefli.jpg Binary files differnew file mode 100644 index 0000000..21a0970 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/briefli.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/briefly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/briefly.txt new file mode 100644 index 0000000..73ed09b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/briefly.txt @@ -0,0 +1 @@ +While it's nothing you can't do on your own, the recently launched [Briefli][1], provides a nice AJAX frontend to some advanced Google search features. Using the <code>inurl</code> and <code>intitle</code> operators, Briefli allows you to search for music, videos, torrents and more in open directories. You type in your search and the results load into the page in realtime.
Briefly is simple and efficient. I was able to very easily find a PDF manual for my Canon s50 camera without wading through the results of a traditional search. Briefli ignores links in pages in favor of the actual files those links point to, making it more efficient for finding files than an "I'm Feeling Lucky" search.
Along the same lines is the nice [GMBMG][4] (Give Me Back My Google), which strips out affiliate links in Google searches.
And yes I know I can do all this stuff myself on Google, but services like Briefli and GMBMG save me from having to remember all those keywords and operators.
For those that have never explored the extensive list of keywords and operators that Google offers for refining searches, check out the [Advanced Operators][3] documentation.
[1]: http://www.briefli.com/
[2]: http://www.marcandangel.com/2006/10/13/turn-google-into-napster-2000/ "Google Advanced Search Techniques"
[3]: http://www.google.com/help/operators.html "Google Advanced Operators"
[4]: http://www.givemebackmygoogle.com/ "Give Me Back My Google"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/olpc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/olpc.jpg Binary files differnew file mode 100644 index 0000000..f6a98ed --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/olpc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/parlophone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/parlophone.jpg Binary files differnew file mode 100644 index 0000000..9b651a6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/parlophone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/parlophone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/parlophone.txt new file mode 100644 index 0000000..b7baa42 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/parlophone.txt @@ -0,0 +1 @@ +[Parlophone][1], a British record label under the EMI umbrella, [announced earlier this week][2] that it will now accept music submissions in MP3 format via an online portal. A new piece of software designed by a former musician allows aspiring artists to upload their music files directly to the Parlophone site.
It's almost like a record company has suddenly realized what century it is. But not really, because after an hour on Google I'm no closer to finding a link to said service than I was when I read about it yesterday. Oh there's half a dozen pages of news blurbs culled from Parlophone press releases, but nothing like an actual link. Parlophone's own website resembles a link spam page and offers nothing more than links to its artist's websites.
Assuming Parlophone (and the several other labels that already use this service) ever get their act together and provide some information to these struggling artists they purport to support, the question remains -- will the kids today even care?
Let's see, upload your music to Parlophone and hope a suit will hear the money in your songs, or upload it to MySpace and reach millions of fans directly... Gosh. It's almost like, uh, maybe we don't need these record companies anymore.
[1]: http://www.parlophone.co.uk/newsite/ "Parlophone Website"
[2]: http://arts.guardian.co.uk/news/story/0,,1930202,00.html "Guardian Article on Parlophone Announcement"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/reboot.txt new file mode 100644 index 0000000..a80b7ac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/reboot.txt @@ -0,0 +1 @@ +
* Windows Defender [the free anti-spyware package][1] from Microsoft has entered the final release phase. Finally. After two years.
* Yahoo announces [Yahoo Bookmarks][2] a delicious like bookmarking service for Yahoo members.
* [Amazon has said no to Google's request][3] for information about Amazon's book search feature. Amazon lawyers claim Google wants "essentially all documents concerning Amazon's sale of books on its Web sites, and all searching and indexing functions." Ya think? Google says it needs the information to fight copyright infringement allegations from a group of authors and book publishers.
* [Nicholas Negroponte's $100 laptop][4] is going into production in November. The goal is to provide cheap technology for children around the world.
[1]: http://www.microsoft.com/downloads/details.aspx?FamilyId=435BFCE7-DA2B-4A6A-AFA4-F7F14E605A0D&displaylang=en "Download Windows Defender"
[2]: http://beta.bookmarks.yahoo.com/ "Yahoo Bookmarks"
[3]: http://www.businessweek.com/ap/financialnews/D8KV7AUO0.htm "Google wants Amazon Search Info"
[4]: http://money.cnn.com/magazines/fortune/fortune_archive/2006/10/30/8391805/ "$100 laptop starts production"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/vista.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/vista.jpg Binary files differnew file mode 100644 index 0000000..529a6a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/vista.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/vista.txr b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/vista.txr new file mode 100644 index 0000000..5e46752 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/vista.txr @@ -0,0 +1 @@ +If you've been putting off the purchase of a new PC or laptop because you're waiting for Windows Vista, wait no more. No Vista isn't here, but at least if you buy a new machine now you won't have to pay to upgrade to Vista when it finally does arrive. Yes, that's right, Microsoft announced that new hardware purchases made from October 26th onward will be eligible for a [free upgrade to Windows Vista][1].
Or a nearly free upgrade since the exact process varies somewhat between manufacturers. [NotebookReview][2] has a detailed rundown of what different vendors are offering in terms of rebates.
The upgrade program is good from October 26, 2006 thru March 15, 2007. In some ways there's never been a better time to buy a new machine since you'll effectively get both Vista and XP for the price of one.
[1]: http://www.microsoft.com/windowsvista/getready/expressupgrade.mspx "Free Upgrade to Vista for eligible Purchases"
[2]: http://www.notebookreview.com/default.asp?newsID=3302
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/yahoo-book-add-new.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/yahoo-book-add-new.jpg Binary files differnew file mode 100644 index 0000000..e1b3514 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/yahoo-book-add-new.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/yahoo-book.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/yahoo-book.jpg Binary files differnew file mode 100644 index 0000000..1e5c0ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.23.05/Wed/yahoo-book.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/amazon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/amazon.jpg Binary files differnew file mode 100644 index 0000000..2f5f3f3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/amazon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/amazon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/amazon.txt new file mode 100644 index 0000000..64805e6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/amazon.txt @@ -0,0 +1 @@ +They say the future of the web is in web services and if [Amazon][1] is any indicator they're right. Amazon has been working overtime to position itself as the leading provider of web services for a new generation of companies looking to ex
You probably think of Amazon as a store, but Amazon would like to change that impression. Today's Business Week has a long article entitled *[Jeff Bezos' Risky Bet][2]* that focuses on Amazon's attempt to transform from an e-commerce giant to a software company.
One of the big problems with e-commerce packages is that they're either too customized or not customizable enough. Amazon's strength lies in the fact that Amazon, as an article on [Web Services Journal][3] puts it, "eats it's own dog food."
To solve this problem of the gap between what a programmer thinks is necessary in a web service and what a business actually wants, Amazon effectively forked itself into components. As it set about developing web services for internal use, Amazon became a consumer of its own services. The feedback that happened internally at Amazon has led to a package of web services that take some remarkably complex engineering problems and wrap them up in easy to use APIs. That Amazon has turned around and started offering various web service APIs to the world at large, is indicative of it's transformation from online store to online service provider.
And the services that Amazon is now slowly releasing are in fact the same tools it uses to power it's own e-commerce offerings.
From an engineer point of view what makes Amazon's offerings, for instance the S3 storage service, compelling is that the services are completely decoupled from each other. If a small business wants to use S3 to store data but doesn't want any other service from Amazon and in fact wants to use a competing service for the other areas of their business, that's fine. The S3 service has no lock-in with anything else. Amazon has essentially just taken the core principles of Object Oriented Programming and scaled them to encompass whole web services.
While this is a somewhat technical point that may be lost on many observers, for savvy web 2.0 startups this means they aren't entangled in a spider web of interconnected components. It also means Amazon's services scale well. Because of the loose coupling between them, Amazon makes it easy to add new services as a company grows or to discard services that are no longer needed.
It might sound too simple to be remarkable, but Amazon's greatest strength in the web services game may be that it has taken to heart an old engineering quip, do one thing and do it well. In Amazon's case this means have each individual part do one thing and do it well. Doing one thing well is far often more valuable to businesses than a huge unwieldy service that attempts to do everything and ends up doing nothing very well.
But as the Business Week article points out, Wall Street is still scratching it's head trying to figure out where the money is. Analysts seem so far skeptical of a model that takes e-commerce necessities like search, storage, lookup and management of data and turns them into pay-per-use services.
And In some respects Wall Street is right, the target market here is small and medium size businesses, larger companies may well stay with in-house solutions. Is Amazon betting on the long tail effect for revenue? That remains to be seen, but it is worth noting that some big players have already taken advantage of Amazon's services, most notably Microsoft which uses the Elastic Compute Cloud service to help speed software downloads.
Amazon will very likely be rolling out some more services and an overview of it's strategy at next week's Web 2.0 Conference.
Monkey Bites coverage of the Web 2.0 Conference begins on Wednesday, be sure to check here for all the latest news.
[1]: http://Amazon.com/ "Amazon.com"
[2]: http://www.businessweek.com/magazine/content/06_46/b4009001.htm "Business Week"
[3]: http://webservices.sys-con.com/read/262024.htm "Web Services Journal"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/comedy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/comedy.jpg Binary files differnew file mode 100644 index 0000000..1887591 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/comedy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/comedycentral.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/comedycentral.txt new file mode 100644 index 0000000..41755c0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/comedycentral.txt @@ -0,0 +1 @@ +Hot on the heels of its [YouTube waffling][1], Comedy Central has announced it will be revamping its online video distribution.
According to [The Hollywood Reporter][2], the new site plans on "offering a syndication capability allowing users to grab and embed their favorite clips for posting on their own Web pages."
Hmm. That sounds like another site I've heard of.
The new site will also feature clips in Flash for better cross-platform capability (the current site shows .wmv movies).
The good news is that the Comedy Central website has no where to go but up. The current site is a disaster, the kind of site the haunts Jakob Nielsen's darkest nightmares
In researching this post, the current site managed to crash Safari three times and in Firefox produced a bizarre flickering effect and overlaid content on top of the menus. Hopefully these and myriad of other issues will be addressed in the revamping.
It's nice to see Comedy Central trying to improve their site and reaching out to viewers wanting online content, but I can't help thinking that a partnership with YouTube might make more sense. I manage to watch The Daily Show almost every day and until today I'd never actually been to the Comedy Central site. I suspect that I am not alone in this.
YouTube already offers a distribution network exactly like what Comedy Central claims they are building, why not use it? Comedy Central may be a destination channel on the dial, but that doesn't translate to a destination website, which is something corporate media companies fail to understand. The audience doesn't want all their Comedy Central video content in one place, they want *all* their video content in one place.
[Update: It would seem that the flickering effect I witnessed was actually due to an adblocking plugin. But hey, if you can't block the ads, what's the point in browsing the internet?]
[1]: http://blog.wired.com/monkeybites/2006/11/comedy_central_.html "Monkey Bites on CC and YouTube"
[2]: http://www.hollywoodreporter.com/hr/content_display/television/news/e3iBJfr5p%2BGfIe4f6SRiNPJ7w%3D%3D
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/evoca.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/evoca.jpg Binary files differnew file mode 100644 index 0000000..5f645b5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/evoca.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/evoca.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/evoca.txt new file mode 100644 index 0000000..c2975ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/evoca.txt @@ -0,0 +1 @@ +[Evoca][1], a web service that allows you to share voice recordings, is now offering widgets for MySpace and blogs that allow you to receive audio comments on your pages.
With the "Evoca Browser Mic", you can let visitors post audio comments. The comments are private and accessible only by the site owner. To get your comments you need to login to your Evoca account.
I suspect that the default private comments setting will change fairly soon as I think most people would be more interested in public audio comments.
There are currently plugins for TypePad, Wordpress and Blogger.
There are other services that have previously offered similar features, but none that I'm aware of offer the plugin support that Evoca gives.
Can't wait to hear the first audio spam comments
[found via [Mashable][2]]
[1]: http://www.evoca.com/ "Evoca.com"
[2]: http://mashable.com/2006/11/03/evoca-launches-voice-comments-for-myspace-blogs/ "Mashable.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/fsf-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/fsf-logo.jpg Binary files differnew file mode 100644 index 0000000..2cfe03d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/fsf-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/fsf.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/fsf.txt new file mode 100644 index 0000000..821b435 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/fsf.txt @@ -0,0 +1 @@ +The Free Software Foundation announced today an new distribution of Linux that is made entirely of free software. Named [gNewSense][1], the new package was created by two Irish free software advocates, Brian Brazil and Paul O'Malley.
The developers' goal was to create a GNU/Linux distribution where all sources, from the kernal itself to the applications in the system, were free and available to user.
Ted Teah, the FSF's software directory maintainer says, "with all the kernel firmware and restricted repositories removed, and the reliance on Ubuntu's proprietary distribution management tool gone, this distribution is the most advanced GNU/Linux distribution that has a commitment to be 100% free."
The developers added that their aim is "to produce a fully free distribution, not to have as many features as possible."
I want to get behind this because I'm a big supporter of free software, but there seems to be something perverse about ditching features and therefore usefulness just to gain total freedom. What good is freedom if I can't use it? And I get the pun in the name, but I also can't help wondering if perhaps the FSF isn't becoming more of fringe "nuisance" than a viable "new sense."
[1]: http://www.gnewsense.org "gNewSense"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/reboot.txt new file mode 100644 index 0000000..2148f0f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot, brought to you by the miracle of coffee:
* Apple is offering a [free 30-day trial][1] of their post-production photo tool, Aperture. The trial gives you an uncrippled version of Aperture, but it doesn't come with samples or tutorials and it expires 30 days after the first launch.
* One of the first things I noticed about Firefox 2.0 was that it ditched the option to block 3rd part cookies. [Here's a thread in the MozillaZine Forums][2] that tells how to restore that setting.
* CNet reports that Microsoft's failed MSN music site will soon be [redirecting to the Zune Marketplace Web][3].
* Did you know the NSA uses Linux? Did you know you can [download their "security enhanced"][4] version?
* And finally, there's an interesting (and long) [story on IEEE Spectrum][5] about a new project named Parakey, from Blake Ross the creator of Firefox.
[1]: http://www.apple.com/aperture/trial/
[2]: http://forums.mozillazine.org/viewtopic.php?t=478545&sid=dc67fdf31128b1926968063cd7f6247f
[3]: http://news.com.com/MSN+Music+presses+mute+on+downloads/2100-1027_3-6132201.html
[4]: http://www.nsa.gov/selinux/code/download0.cfm
[5]: http://www.spectrum.ieee.org/nov06/4696
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/travelhiker.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/travelhiker.jpg Binary files differnew file mode 100644 index 0000000..1d286cf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/travelhiker.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/travelhiker.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/travelhiker.txt new file mode 100644 index 0000000..a97b3ab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Fri/travelhiker.txt @@ -0,0 +1 @@ +There's a whole host of travel related sites out there, I've looked at a few in past, but I found one today with an interesting twist. [Travelhiker][1] has all the usual trappings of travel networks, blogs, reviews, photos and more, but Travelhiker allows you to integrate your reviews with an AdSense account so you can earn money.
Travelhiker is looking for people to write detailed city guides. Travelhiker calls this "[The Travelhiker Project][2]." Once you've signed up for an account you enter your Google Adsense ID and you'll get half the revenue generated by your page. It's a nice incentive to get people contributing and its always nice to get a little something for your writing. I don't think anyone is going to get rich, but in many places a little bit of money can go a long way.
The interesting thing about Travelhiker's program is there's really no need to be a traveller to take advantage of it. In fact hometown knowledge is usually better since you can offer inside information and cool hidden treasures for out-or-towners looking for things the guidebooks will miss.
Travelhiker has another cool feature that isn't new. There's a whole section of site devoted to helping you plan a trip and find people who might be interested in going with you. Some places can be overwhelming on your own (India comes to mind), and this way you can kind find other people interested in going to the same places you're headed.
Travelhiker is relatively new and doesn't have a huge user base yet, but I expect the site to grow. I should note that the site didn't work very well in Safari, but it was fine in Firefox.
[1]: http://travelhiker.com/index.php "Travelhiker.com"
[2]: http://travelhiker.com/about_travelguides.php
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/MSaccounting b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/MSaccounting new file mode 100644 index 0000000..da7c26c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/MSaccounting @@ -0,0 +1 @@ +Microsoft has announced the availability of [Office Accounting Express 2007][1] -- for free. Office Accounting Express 2007 has been a publicly available beta for some time and garnered some good reviews for its integration with eBay and PayPal.
Microsoft claims it's aiming Office Accounting Express at eBay sellers and other home and small businesses, which probably accounts for the give away. Such users are unlikely to be willing to spend money on new software when they already have Excel and other programs.
While the basic software is free certain online premium services are also available for additional fees.
Office Accounting Express 2007 requires Windows XP, 2003 Server or Vista.
[1]: http://www.ideawins.com/ "Microsoft Office Accounting Express 2007"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/bonecho.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/bonecho.txt new file mode 100644 index 0000000..e6a5293 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/bonecho.txt @@ -0,0 +1 @@ +BonEcho
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/magnolia-logo.gif b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/magnolia-logo.gif Binary files differnew file mode 100644 index 0000000..9652ac1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/magnolia-logo.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/magnolia-roots.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/magnolia-roots.jpg Binary files differnew file mode 100644 index 0000000..e6c7ca5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/magnolia-roots.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/magnolia.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/magnolia.txt new file mode 100644 index 0000000..5b12cb8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/magnolia.txt @@ -0,0 +1 @@ +I first discovered [ma.gnolia][1] when I was trying to figure out the del.icio.us API. Since I wasn't terribly committed to del.icio.us at that point, I decided to investigate ma.gnolia and ended up liking it better that del.icio.us. Of course that's based on some purely subjective criteria and is in no way meant to slag del.icio.us.
Ma.gnolia works very similar to del.icio.us and offers almost all the same basic features but it adds a few more. Ma.gnolia allows you to rate your bookmarks using a 5 star rating system (very similar to NetFlix), and ma.gnolia allows you to cross post with del.icio.us so you can in effect use both at the same time.
Ma.gnolia also recently added a feature they call "roots." Roots is a javascript bookmarklet that you can save in your browser and when you're on a page, just click the bookmarklet and a javascript window will overlay the page and display how many ma.gnolia users have linked to that site and give their ratings and descriptions of the site.
I switched to ma.gnolia because of their backend API. I love online storage of bookmarks and I like the sharing aspect of all these services, but I also like to share bookmarks through my own site. Both del.icio.us and ma.gnolia offer programming APIs which allow you to connect and pull out bookmarks, but del.icio.us truncates the description field and ma.gnolia doesn't.
This was the main reason I switched (though in fairness this was some time ago and it's possible that del.icio.us no longer does that). The ma.gnolia API is both deep and rich in methods allowing you to do just about anything you want with the data retreived.
Ma.gnolia also has an [API that mirrors the del.icio.us API][2] so that tools built for del.icio.us can also work with ma.gnolia.
Ma.gnolia has a very well designed user interface and makes nice use of AJAX without being bogged down in useless tricks.
####The Low Down
**Pros**
* Feature rich and actively developed
* Screen captures and page cache
* Excellent backend API
**Cons**
* No folders for organization
* The interface design is nice, but some may find it slower than del.icio.us
Previously reviewed:
[del.icio.us][3]
[1]: http://ma.gnolia.com/ "Ma.gnolia.com"
[2]: http://ma.gnolia.com/blog/2006/08/23/the-mirrord-api "Ma.gnolia's del.icio.us API mirror"
[3]: http://blog.wired.com/monkeybites/2006/10/delicious_is_th.html "Monkeybite's review of del.icio.us"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/officeaccounting.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/officeaccounting.jpg Binary files differnew file mode 100644 index 0000000..cf6ad30 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/officeaccounting.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/opt-firefox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/opt-firefox.txt new file mode 100644 index 0000000..3c1b463 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/opt-firefox.txt @@ -0,0 +1 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/firefoxlogo_1.png" title="Firefoxlogo_1" alt="Firefoxlogo_1" style="margin: 0px 0px 5px 5px; float: right; width: 133px; height: 133px;" />Every time there's a new build of Firefox, Neil Lee over at Beatnikpad compiles a bunch of [Mac optimized builds][2] for various different Mac processors (G4, G5 & Intel). I picked up a copy of the MacTel version this weekend and I'm happy to report that it is indeed noticeably faster than the standard Firefox build.
Some people claim they can't tell the difference so don't expect miracles, but i've noticed that javascript seems to execute faster (making GMail much quicker) and the overall memory footprint seems smaller.
All of my Firefox plugins and add-ons work perfectly and updating them in one build also updates the other builds. I haven't tried running both versions at the same time since that seems like asking for trouble.
Swiftfox offers a similar set of [optimized builds for linux users][1], and further digging revealed that Mozilla has a [whole forum full of different optimized builds][3]
[1]: http://getswiftfox.com/ "Swiftfox optimized Firefox builds"
[2]: http://www.beatnikpad.com/archives/2006/10/26/firefox-20 "Beatnikpad Mac-optimized Firefox Builds"
[3]: http://forums.mozillazine.org/viewforum.php?f=42 "Third Party/Unofficial Firefox builds"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/reboot.txt new file mode 100644 index 0000000..b5d09cb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/reboot.txt @@ -0,0 +1 @@ +* [YouTube removed all Comedy Central materials][5] from the site over the weekend. All Daily Show, Colbert Report and South Park clips are gone, instead you'll now see a message stating "This video has been removed due to terms of use violation." All good things end when the suits arrive.
* On a similar note, [MySpace is expected to announce a partnership with Gracenote][6] today. Gracenote will help MySpace "detect and block copyrighted music from being posted on MySpace member pages." [via [TechCrunch][7]]
* The very first global [Internet Governance Forum][1] gets together starting today to discuss the future of the internet [via [LifeHacker][2]]
* [Minglenow][8] is a new social networking site based around the club and bar scene, providing yet another excellent resource for stalkers. [via [Mashable][9]]
* The NBA kicks off its season this week and with that in mind here's a link to a set of [RSS feeds from the official NBA website][3]. [via [MicroPersuasion][4]]
[1]: http://news.bbc.co.uk/2/hi/technology/6087174.stm "The BBC of the Internet Governance Forum"
[2]: http://www.lifehacker.com/ "LifeHacker"
[3]: http://www.nba.com/rss/index.html "NBA RSS feeds"
[4]: http://www.micropersuasion.com/2006/10/sports_finds.html "MicroPersuatsion.com"
[5]: http://www.newscloud.com/read/75528 "YouTube Removes Comedy Central materials"
[6]: http://www.techcrunch.com/2006/10/29/myspace-moves-to-protect-copyright-holders/ "TechCrunch: MySpace Moves to Protect Copyright Holders"
[7]: http://www.techcrunch.com/ "TechCrunch"
[8]: http://minglenow.com/ "Minglenow.com"
[9]: http://mashable.com/2006/10/30/minglenow-launches-myspace-for-events-and-nightlife/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wink-large.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wink-large.jpg Binary files differnew file mode 100644 index 0000000..fce04ba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wink-large.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wink-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wink-logo.jpg Binary files differnew file mode 100644 index 0000000..be76567 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wink-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wink.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wink.txt new file mode 100644 index 0000000..60bd51e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wink.txt @@ -0,0 +1 @@ +All the sites I've looked at for this review feature some sort of search capabilities, but none of them has extended their search abilities as far as [Wink][1]. In many ways Wink is much better at searching bookmarks than it is at storing them.
On the storage side, Wink offers many of the same features as del.icio.us and ma.gnolia, but focuses more on the search and discover aspects of social bookmarking. Wink offers a feature that allows you sync your del.icio.us bookmarks with your Wink account, making it easy to migrate from del.icio.us to Wink, or simply use both sites. That said, I couldn't get it to work for me. Clicking the "sync with del.icio.us" link opened an AJAXy window on top of the page, but never displayed anything else.
For adding bookmarks Wink provides the same sort of bookmarklet setup that other sites offer, just drag it to your toolbar and click it whenever you're on a page you want to save. Beware that Wink's bookmarklet opens in a popup window which some browsers may block. Of course if you know Javascript, you could change this behavior.
Wink links can be shared among fellow users by creating what Wink calls "collections." Collections are roughly analogous to what over sites call groups or subscriptions. Collections are tag-based and you can make new collections or join and contribute to existing ones.
In addition to the bookmarks users submit and store, Wink also scrapes tags from del.icio.us, Yahoo MyWeb, Flickr and other sites to provide search results based on those tags. What you end up with is a Google Search with a Wink tags search on top.
Wink's genius lies in a search results feature that it calls "PeopleRank." PeopleRank allows anyone to rate the quality of the results which Wink then stores and uses next time it serves up results for that search. In theory it could add a nice human element to all the search algorithms out there. Of course it could also lead to results slanted toward the preference of the heaviest Wink users, only time will tell.
Wink is interesting and I'll be keeping a closer eye on it since I think the "PeopleRank" concept has some merit, but on the whole there are better places to go for social bookmarking.
####The Low Down
**Pros**
* Search Engine crawls other sites offering better listings
* Can sync with del.icio.us
* Search results rating system
**Cons**
* Poor Documentation
* JavaScript errors abound
* No page cache
Previously reviewed:
[del.icio.us][3]
[ma.gnolia][4]
[1]: http://Wink.com/
[3]: http://blog.wired.com/monkeybites/2006/10/delicious_is_th.html "Monkeybite's review of del.icio.us"
[4]: http://blog.wired.com/monkeybites/2006/10/the_social_book_1.html "Monkeybite's review of ma.gnolia"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wmvupdate.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wmvupdate.txt new file mode 100644 index 0000000..ec04b99 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Mon/wmvupdate.txt @@ -0,0 +1 @@ +<img alt="Wmv" title="Wmv" src="http://blog.wired.com/photos/uncategorized/wmv.gif" border="0" style="float: left; margin: 0px 5px 5px 0px;" />Here's a quick update on last week's post concerning [WMV support for Mac users][4]. I contacted Flip4Mac regarding the new WMV player and codecs and the answer is yes, they will support them when they are released. It also appears that the new WMPlayer will arrive sometime before the new codecs. From Flip4Mac:
>Yes, we work with Microsoft and do plan support for upcoming codecs as needed. One common misperception is the new Windows Media Players. The introduction of the player doesn't necessarily mean the introduction of new codecs (as in recent player introductions). We currently support [the codecs listed on our website][1].
As for MPlayer, yes, it does support most WMV codecs. You can check [the complete list on the official website][2]. It also turns out you *can* use MPlayer to view movies in [Mozilla browsers][3]. I haven't tested mplayerplug-in on a Mac, but it claims to work on any *nix platform so it should be possible to use it on a Mac. Your mileage may vary.
As for DRM, Microsoft has thus far limited its DRM technology to the Windows platform so there is no way for Mac (or Linux) users to view Windows DRM protected movies, nor, based on reader comments, does there seem to be much demand for the ability to do so.
[1]: http://www.flip4mac.com/images_06/wmv_supported_codecs.jpg "Flip4Mac Codecs"
[2]: http://www.mplayerhq.hu/DOCS/codecs-status.html#vc "MPlayer official list of supported codecs"
[3]: http://mplayerplug-in.sourceforge.net/ "MPlayer Plugin"
[4]: http://blog.wired.com/monkeybites/2006/10/wmv_on_a_mac.html "The original MonkeyBites post"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/itunes-latino.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/itunes-latino.txt new file mode 100644 index 0000000..d3a0e2c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/itunes-latino.txt @@ -0,0 +1 @@ +In yesterday's coverage of iTune 7.0.2 I somehow overlooked the fact that Apple also added a Latino section to the iTunes Music store. In addition to a greatly improved catalog of Latino music, the new section features Spanish language movies and television shows from the popular Telemundo network.
Like most of the iTunes Music Store, the focus is on mainstream artists and at the moment the selection is a bit wanting (particularly in Brazilan Jazz) but hopefully that will improve in the future.
There is also a whole section of Spanish language podcasts, audio books and music videos. Unfortunately there does not seem to be any Spanish language movies at the moment.
Many of the artists now in the iTunes Latino Store were formerly listed under the "world" genre, but there are also new artists as well. It's nice to see Apple at least partially abandon what I've always considered the most meaningless of genres, "world," in favor of something that makes sense.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/reboot.txt new file mode 100644 index 0000000..a97e34d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Here's your morning reboot:
* [Gmail for mobile devices][1] launched this morning. Prior to today, you could only access Gmail via a mobile browser. Requires a java-enabled phone and data plan.
* [CNet reports that a denial-of-service bug has been found in Firefox 2.0][2]. According to the CNet report, "The vulnerability lies in the way the open-source browser handles JavaScript code."
* Microsoft's [Zune.net][3] is now up and running.
* Utube, an American piping and tubes manufacturer, is [suing YouTube][4] seeking damages for bandwidth usage by millions of users seeking the video sharing network. See, the internet really is a bunch of tubes. [via [TechMeme][5]]
[1]: http://www.google.com/mobile/ "Gmail for mobile"
[2]: http://news.com.com/2100-1002_3-6131624.html?part=rss&tag=6131624&subj=news "CNet on a Firefox 2 bug"
[3]: http://www.zune.net "Zune.net"
[4]: http://news.com.com/2061-10812_3-6131594.html "UTube sue YouTube"
[5]: http://www.techmeme.com/ "Techmeme"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/vista.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/vista.txt new file mode 100644 index 0000000..da61a59 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/vista.txt @@ -0,0 +1 @@ +A Microsoft spokesperson says the planned release date for Windows Vista and Microsoft Office 2007 is November 30.
Of course that announcement only applies to business customers, consumers will have to wait until January 30 2007 for the consumer versions. November 30th will also see the release of Microsoft Exchange Server 2007 which works with the upgraded Outlook 2007.
Vista is the first major new release of the Windows operating system in over five years.
Vista has previously been announced and then pushed back a number of times, but with the beta release now in "release candidate" stage it seem likely that Microsoft will in fact deliver on their promise to ship Vista in 2006.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yahoo-food-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yahoo-food-logo.jpg Binary files differnew file mode 100644 index 0000000..6585db0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yahoo-food-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yahoo-food.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yahoo-food.jpg Binary files differnew file mode 100644 index 0000000..9de0b0f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yahoo-food.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yahoofood.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yahoofood.txt new file mode 100644 index 0000000..9db9b0a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yahoofood.txt @@ -0,0 +1 @@ +Yahoo launched new "lifestyle" site today called [Yahoo Food][1]. The new service offers recipes, videos, and how to lessons for what Yahoo refers to as "the everyday cook."
In a former life I ran a restaurant kitchen for five years and I have something of a fetish for online recipe collections. [Epicurious][2] has always been my favorite food destination on the web, but Yahoo's new offering looks nice and in fact includes recipes from the the Epicurious database.
Yahoo Food has a sleek user interface with good search features to help you sift through thousands of recipes. You can search by ingredient, course, cuisine, dish, "taste," and more. I was intrigued by the taste search filter, I'm not aware any other recipe sites that let you search for recipes that "taste" "creamy" or "cheesy."
Like many other sites, all of Yahoo's recipes are user rated and you can leave comments, tips and suggestions for other cooks. Recipes can be shared via email and IM. If you sign in to your Yahoo account, Yahoo Food will show a list of your recently viewed articles, recipes and searches.
Yahoo Food is also integrated with Yahoo Answers, which will now highlight relevant questions about food, and Yahoo Local, which has dining guides, restaurant ratings and reviews from around the U.S.
As with so many food websites Yahoo Food focuses heavily on celebrity chefs and their branded recipes and product plugs. While it may be my own snobbishness nothing turns me off to a food site quicker than seeing a recipe from Rachel Ray on the front page (today we'll be making learning how to make *toast* in 23 seconds).
But in spite of the inevitable celebrity chef emphasis, Yahoo Food is a very well done and comprehensive food site.
That said, I'd really like to see a true "social" site for food that doesn't rely on over-hyped celebrity chefs, but instead allows users to post their own recipes, videos and advice. I want a site that doesn't just pay lip service to the concept of the "everyday cook," but actually draws it's content from everyday cooks.
[1]: http://food.yahoo.com/ "Yahoo Food"
[2]: http://www.epicurious.com/ "Epicurious"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yourminis-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yourminis-logo.jpg Binary files differnew file mode 100644 index 0000000..ce9b556 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yourminis-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yourminis.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yourminis.txt new file mode 100644 index 0000000..b60ea06 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/yourminis.txt @@ -0,0 +1 @@ +[Yourminis][1], a new site from the folks that brought us [goowy.com][2], looks and behaves a whole lot like Apple's dashboard app. The chief difference being that yourminis is housed in your browser window.
Yourminis is a Flash-based web app that creates a homepage with a number of little widgets that pull in whatever web services you'd like to track. The default set includes a Google search widget, quote of the day, RSS feed reader, weather, YouTube videos, Flickr images and more.
I was always impressed with the UI of Goowy, which has to be one of the more impressive attempts to duplicate your desktop within a browser window, but the appeal of yourminis is kind of lost on me.
Is it just me or does it seem like lately we're living in some revenge of the portal movie? I've been playing with yourminis off and on for most of the day and the more I look at it the more I have flashbacks to Lyco's "homepage portals" of yesteryear. Of course yourminis is better looking, infinitely more functional and easier to use, but the concept is essentially the same.
Then again, I've never used Apple Dashboard app either. Maybe I'm just not a widget guy, if widgets and homepages are your thing, yourminis is certainly a very impressive rendering of the concept.
[1]: http://www.yourminis.com/ "yourminis.com"
[2]: http://www.goowy.com/ "goowy.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/zamzar-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/zamzar-logo.jpg Binary files differnew file mode 100644 index 0000000..32fadf0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/zamzar-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/zamzar-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/zamzar-screen.jpg Binary files differnew file mode 100644 index 0000000..dec8de3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/zamzar-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/zamzar.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/zamzar.txt new file mode 100644 index 0000000..8c8b436 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Thur/zamzar.txt @@ -0,0 +1 @@ +[Zamzar][1] is a new free online document converter service. Zamzar will convert your documents from one format to another through it's simple web-based interface. Currently Zamzar supports various formats in four categories, documents, images, video and audio. For complete details on what formats are supported [see Zamzar website][2].
A quick glance at my applications folder revealed five small, one-off programs on my whose sole purpose is to convert various document formats. It makes so much more sense to have a web service to take care of this process.
Zamzar allows for multiple file conversions (provided all files are to and from the same formats) and will send and email with a link to your converted file(s).
I frequently have to send .doc files to clients and since I don't have an office program, this has always been quite a pain for me. Zamzar easily converted my plain text file into .doc format, eliminating the one headache of not having an office program.
Video and audio conversion will of course have some loss of quality when moving between compressed formats. I didn't tested those features, but Zamzar did successfully convert a cvs file to a MS Excel spreadsheet.
Currently Zamzar has a size limit of 100mb, but frankly even uploading that over http is masochistic, I don't imagine there's too great of demand for bigger files.
Thanks to [LifeHacker][3].
[1]: http://www.zamzar.com/ "Zamzar.com"
[2]: http://www.zamzar.com/conversionTypes.php "Zamzar conversion types"
[3]: http://www.lifehacker.com/software/conversions/online-file-conversion-with-zamzar-211968.php "LifeHacker on Zamzar"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/amarok-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/amarok-logo.jpg Binary files differnew file mode 100644 index 0000000..f8f8b5d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/amarok-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/amarok.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/amarok.txt new file mode 100644 index 0000000..57eb358 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/amarok.txt @@ -0,0 +1 @@ +[Amarok][1], the linux music player is shipping a new version that integrates with an online store to sell DRM-free music. The store integration is through [Magnatune][3], an online record company whose motto is "we're not evil." At the moment Magnatune has a relatively small roster of artists compared to iTunes, but as more artists and consumers alike become fed up with draconian DRM restrictions, Magnatune's possiblities look good.
For those that aren't familiar with Amarok, it's somewhat like iTunes, but has additional features like integrated Wikipedia entries for bands, auto-discovery of newly added songs, lyrics download, and more. And yes it does sync with your iPod.
Amarok version 1.4.4 is a free download and requires the KDElibs.
OS X users interested in Amarok can install the package via Fink, though it's good to have some experience with the command line before attempting an install. There are [instructions on the Amarok Wiki][2].
[1]: http://amarok.kde.org/content/view/84/66/ "Amarok 1.4.4"
[2]: http://amarok.kde.org/amarokwiki/index.php/On_OS_X "Install Amarok on OS X"
[3]: http://www.magnatune.com/ "Magnatune.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/furl-add-new.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/furl-add-new.jpg Binary files differnew file mode 100644 index 0000000..6824495 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/furl-add-new.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/furl-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/furl-logo.jpg Binary files differnew file mode 100644 index 0000000..5247f8a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/furl-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/furl.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/furl.txt new file mode 100644 index 0000000..87b8a4d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/furl.txt @@ -0,0 +1 @@ +<img alt="Furllogo" title="Furllogo" src="http://blog.wired.com/photos/uncategorized/furllogo.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />LookSmart's [Furl][1] is an old standby in the social bookmarking scene with a rich feature set, excellent export formats and a plethora of metadata options. To be honest, I had forgotten about Furl. Luckily for me, the savvy readers of this blog corrected my oversight.
Furl works according to the same principles that should be familiar by now if you're following this series. To aid in the collecting of bookmarks, Furl offers bookmarklets for your browser or, if you use IE or Firefox, you can download and install a toolbar which will give you access to your bookmarks without having to go to the site.
Sharing and searching features are on par with the field and, Furl caches bookmarked pages for you. Furl also allows you to export your archives, cached pages and all to a zip file for easy backup. All your bookmarks are available via RSS as well.
Furl offers tagging, though it refers to tags as "topics," and also adds the ability to save keywords. I'm not really clear on what the difference between "topics" and "keywords" is other than what the FAQ says: "the keywords you assign are search hints." But aren't tags search hints as well since I can search my bookmarks by tags?<img alt="Furladdnew" title="Furladdnew" src="http://blog.wired.com/photos/uncategorized/furladdnew.jpg" border="0" style="float: left; margin: 0px 0px 5px 5px;" />
Furl also allows you to save considerably more metadata than competing services. In fact the edit form is almost overwhelming, but thankfully you needn't provide any more than a url and title. For those that like to store more information about their bookmarks, this is the site for you.
Furl offers one thing I haven't found on other sites, the ability to leave comments on other people's bookmarks. Naturally Furl has privacy controls so if you don't want comments on your bookmarks, you can make the bookmark private, but comments allows people to stop by and say "hey, if you liked this you might like..." all without you having to lift a finger.
Furl also offers a number of export options above an beyond the ordinary HTML/XML formats that most of these sites use. With Furl you can export your bookmarks to some obscure formats like MLA, APA, Chicago, CBE, BibTeX, RIS/EndNote citations. Just to test this out I exported my del.icio.us bookmarks to HTML, imported those into Furl and then exported them again as BibTex and I am happy to report that it worked. This could be very handy for academics and other authors who frequently collect and quote online sources.
####The Low Down
**Pros**
* Excellent wide range of export options
* Browser toolbars available (IE and Firefox only)
* Caches page and allows export of cached pages
**Cons**
* Organizational options are limited
* No thumbnails
<p>Previously Reviewed: <br /><a href="http://blog.wired.com/monkeybites/2006/10/delicious_is_th.html" title="Monkeybite's review of del.icio.us">del.icio.us</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_1.html" title="Monkeybite's review of ma.gnolia">ma.gnolia</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_2.html" title="Monkeybite's review of wink">Wink</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_3.html" title="Monkeybite's review of StumbleUpon">StumbleUpon</a></p>
[1]: http://www.furl.net/ "Furl.net"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/reboot.txt new file mode 100644 index 0000000..9d96e64 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/reboot.txt @@ -0,0 +1 @@ +* [Google has acquired JotSpot][1] the online wiki service. JotSpot will be integrated into Google's existing suite of web-based applications. [via [Micro Persuasion][2]]
* According to CNN, Yahoo may be trying to [acquire AOL][7]
* [FairGame][3] will strip Apple-DRM protected iTunes Store purchases leaving you with an unprotected .mp3 file that can be used as you see fit. [via [BoingBoing][4]]
* [FindMeOn][5] attempts to keep track of all the social networks you have joined. According to the site, "FindMeOn is a new way to assert and verify ownership over online elements , identities and personalities. We empower you to verifiably extend your true identity across social networks and blogs, essentially creating an ad-hoc social network out of everything you join." [via [LifeHacker][6]]
[1]: http://googleblog.blogspot.com/2006/10/spot-on.html "Google acquires JotSpot"
[2]: http://www.micropersuasion.com/2006/10/google_buys_jot.html "Micro Persuasion"
[3]: http://seidai.50webs.com/Seidai%20Software.html "FairGame"
[4]: http://www.boingboing.net/2006/10/31/fairgame_cracks_itun.html "BoingBoing"
[5]: http://findmeon.com/ "FindMeOn.com"
[6]: http://www.lifehacker.com/software/social-networking/findmeoncom-identity-aggregator-211211.php "LifeHacker"
[7]: http://money.cnn.com/2006/10/28/magazines/fortune/yahoo.fortune/index.htm?postversion=2006102810 "Yahoo acquiring AOL?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumble-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumble-logo.jpg Binary files differnew file mode 100644 index 0000000..4ef53b4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumble-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumble-options.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumble-options.jpg Binary files differnew file mode 100644 index 0000000..994076f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumble-options.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumble-toolbar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumble-toolbar.jpg Binary files differnew file mode 100644 index 0000000..6938d6e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumble-toolbar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumblupon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumblupon.txt new file mode 100644 index 0000000..2282ecc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Tue/stumblupon.txt @@ -0,0 +1 @@ +*This is another installment in the Social Bookmarking Showdown*
As its name implies, StumbleUpon takes social bookmarking into the realm of randomness -- instead of searching, you stumble. Of course you can search too, and technically you could achieve the randomness of StumbleUpon with any of these sites, but StumbleUpon makes it easy and fun. The biggest downside to StumbleUpon is that it requires the installation of a toolbar which is only available for IE and Mozilla browsers.
Once you have the toolbar installed and your account set up, just click "Stumble!" and you'll be transported to a random page that fits your preferences. Your preferences are based in part on what categories you specify an interest in, and also what tags you use. You can change these settings at any time by visiting your profile page. You can also import tags from your del.icio.us account.
Of course you don't have to use the stumble button, you could just use StumbleUpon like any of the other sites we've looked at -- find a page you like, click the "I Like It" button in the toolbar and it's saved -- but after a few clicks of the Stumble button you'll probably find yourself hooked. You might even find that you start getting emails from your editor that read, "uh are you gonna post anything today...?" or maybe that's just me.
When you're using the stumble feature you can filter results by a number of categories like, video, photos, news, Wikipedia and more. Of course what sites fall in which categories is determined entirely by other users, but you always have the option to correct their mistakes.
StumbleUpon keeps track of the pages you view so if you decide later that you'd like to see a random site again, you can browse back through your history.
Your saved bookmarks are sorted a number of ways, for instance you can view sites you found, sties you stumbled upon and liked, sites you didn't like and more. It's not exactly folders, but it is the best organizational tool out of the sites I've reviewed.
Like Wink, StumbleUpon puts additional emphasis on *using* bookmarks rather than simply storing and sharing them. Thanks to the simple and yet feature rich toolbar, StumbleUpon makes browsing fun again. Beware productivity drops.
####The Low Down
**Pros**
* Fun, random way to browse
* Can import del.icio.us tags
* Good bookmark organization options
**Cons**
* Requires toolbar (Mozilla and IE only)
* No thumbnail or page cache
* Highly addictive
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink-add-new.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink-add-new.jpg Binary files differnew file mode 100644 index 0000000..f3a6a74 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink-add-new.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink-lab.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink-lab.jpg Binary files differnew file mode 100644 index 0000000..13a5d1f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink-lab.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink-logo.jpg Binary files differnew file mode 100644 index 0000000..e738e10 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink.txt new file mode 100644 index 0000000..90a5cca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/blink.txt @@ -0,0 +1 @@ +[BlinkList][1] is another popular player in the social bookmarking scene. Started in June of last year, BlinkList has already gained quite a following. Indeed, if imitation is any indicator of popularity than BlinkList must be doing well since they had their entire [design ripped off][2] by a site calling itself wirefan. For shame wirefan, for shame.
Never mind the imitators, let's have a look at BlinkList.
Signup is painless and once you verify your account via a link BlinkList will send to your email address, you're ready to go. During the signup process BlinkList served up the usual bookmarklet for my browser toolbar, but unfortunately it didn't work in Safari. Switching to Firefox solved the problem. Your mileage may vary.
BlinkList allows you to import links from a browser, del.icio.us or Furl. Once you've got things set up and all your bookmarks imported, you can share them with other users via RSS, friendslists or email.
BlinkList has some nice options for those that want to display link or tags on their blog. BlinkList will give you Javascript widgets to show both links and tags, just cut-and-paste the provided code into your site, MySpace page or where ever you like.
BlinkList has a star ratings system like ma.gnolia, and BlinkList also allows you to mark links or tags as favorites. Favorites then show up at the top of your profile page so you can get to them quickly.
The standout feature for me though was BlinkList's ability to take any highlighted text on the screen and auto fill a bookmark's description field with the text. This is really nice for quickly getting snippets of descriptive text into your bookmarks.
BlinkList has a very intuitive interface and a nice clean design that makes it simple and pleasant to use. And as a sidenote I always like to see a company with a sense of humor, the folks behind BlinkList have a Ozzy the Labradoodle as their offical PR rep.
####The Low Down
**Pros**
* Can import a number of formats
* Has bookmark thumbnails
* autofill a description field
**Cons**
* No backend API
<p>Previously Reviewed: <br /><a href="http://blog.wired.com/monkeybites/2006/10/delicious_is_th.html" title="Monkeybite's review of del.icio.us">del.icio.us</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_1.html" title="Monkeybite's review of ma.gnolia">ma.gnolia</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_2.html" title="Monkeybite's review of wink">Wink</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_3.html" title="Monkeybite's review of StumbleUpon">StumbleUpon</a></p>
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_4.html" title="Monkeybite's review of furl">Furl</a><br />
[1]: http://www.blinklist.com "BlinkList.com"
[2]: http://blog.mindvalley.com/2006/10/20/copyright-in-web20-blatant-code-theft-of-a-web-20-site/ "Wirefan steals BlinkList Design"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/install-ubuntu.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/install-ubuntu.txt new file mode 100644 index 0000000..c4766fe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/install-ubuntu.txt @@ -0,0 +1 @@ +About six months ago a [couple of prominent][1] [mac users announced][2] they were leaving the platform and switching to [Ubuntu Linux][3]. Ever since then I've been curious about this Ubuntu Linux. I'm okay with OS X, but I do love a new toy and Ubuntu looks like a great new toy.
With a new version of Ubuntu announced recently I thought it was high time I installed Ubuntu and gave it a hands on trial.
My options are as follows, I could install Ubuntu under Parallels on a new MacBook or I could install the PPC version of Ubuntu natively on an old G3 iBook.
I would prefer to run Ubuntu without the virtualization of Parallels just so I know that any problems I might have are not connected to the virtual environment. But at the same time, a PPC G3 processor is pretty outdated and I don't know how Ubuntu performs on PPC chips, let alone ancient ones like my iBook.
If you have experience with either set up and can offer any tips or recommendations let me know in the comments section below. And *please* let's not let this degrade into an OS superiority contest. I like OS X, I like Windows and I want to like Ubuntu. Every operating system has its merits and weaknesses and none is better than the other, they're just different mmmkay?
[1]: http://diveintomark.org/archives/2006/06/02/when-the-bough-breaks "Mark Pilgrim switches to Ubuntu"
[2]: http://www.boingboing.net/2006/06/29/mark_pilgrims_list_o.html "Corey Doctorow switching to Ubuntu"
[3]: http://www.ubuntu.com/ "Ubuntu: Linux for Human Beings"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/itunes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/itunes.jpg Binary files differnew file mode 100644 index 0000000..9fa64d9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/itunes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/itunes7.02.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/itunes7.02.txt new file mode 100644 index 0000000..2b141bb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/itunes7.02.txt @@ -0,0 +1 @@ +After mentioning it in the morning reboot, I [downloaded and installed iTunes 7.0.2][1]. The update promises "stability and performance improvements" as well as support for the new 2nd generation iPod Shuffle, due to be release tomorrow.
I've never actually had any stability issues with iTunes, but I can say that the update does indeed address the performance issues that appeared with iTunes 7.0. Since upgrading to 7.0, iTunes had been almost unusable for me on a MacBook Core Duo. But the new update returns iTunes to its former snappy self.
Before upgrading importing new music was one of those tasks that I would start and then head off for a cup of coffee while iTunes effectively locked up my computer until it was complete. The 7.0.2 update vastly improves importing times. Just to test it out I threw a large import of five new albums at once (I've been avoiding iTunes) and it handled it quite nicely. The gapless playback processing that used to hold things up, slipped by without me noticing its existence. I was able to create new playlists and interact with the UI while the songs imported, something that was largely impossible with earlier 7.0.x releases.
I highly recommend the upgrade for all iTunes 7.0 users based on the speed improvement alone. That said, I have no way to test the Windows version and I believe that the Windows version was even worse than what we Mac users have been putting up with. If you install the new version on windows, let us know how your experience goes.
I'm happy with the new update, but having reviewed the Linux jukebox software, Amarok yesterday, I suddenly find iTunes somewhat lacking. Where is my integration with Wikipedia? Where is my nice tabbed interface? Are there any kindly Cocoa programmers out there trying to port Amarok to OS X (yes I know I can install Amarok via Fink, but a native port, would be so much nicer)? Apple needs a competitor in the software jukebox world, if for no other reason than to drive them to improve iTunes.
As for the shuffle, it looks nice, but personally I think I'd loose it by the end of the day. It reminds me a bit of the scene in Zoolander when Ben Stiller answers an impossibly, ridiculously small cellphone.
[1]: http://www.apple.com/itunes/download/ "Download iTunes"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-events.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-events.jpg Binary files differnew file mode 100644 index 0000000..97583ab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-events.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-logo.jpg Binary files differnew file mode 100644 index 0000000..a126657 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-player.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-player.jpg Binary files differnew file mode 100644 index 0000000..0dcd0c3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-player.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-taste.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-taste.jpg Binary files differnew file mode 100644 index 0000000..d266558 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/last-taste.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/lastfm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/lastfm.txt new file mode 100644 index 0000000..fc3165e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/lastfm.txt @@ -0,0 +1 @@ +[We've looked at Last.fm before][1] back when it launched three years ago, but with today's release of new features I'd thought I'd check in a see what's changed.
Last.fm's bread and butter feature is it's collaborative filtering which is analogous to Amazon's recommendations and that remains unchanged. Instead today's update focuses on auxiliary features, an improved Flash music player, concert listings, free downloads, a "Taste-o-meter" and slightly redesigned music pages.
The most immediately noticeable change is the new Flash music player embedded in nearly music every page. The new music player means you can listen to Last.fm either through the browser or through the Last.fm client. To set your preference head to your user profile and adjust the setting to the playback method of your choice.
The ability to listen through the browser is nice, but the biggest feature in today's announcement is undoubtedly the addition of concert and event listings. The breadth of listings is subpar at the moment (apparently no one is playing in Los Angeles this week), but Last.fm has promised to add more listings and of course you can always add your own events. In addition to your own listings, you can view what events your friends are attending and Last.fm will recommend events based on your profile.
Last.fm offers free downloads for bands/labels that will allow it. Unfortunately finding tracks you want requires quite a bit of digging at the moment. Last.fm claims they're trying to come up with a better system, but until they do, the downloads feature is almost more work than it's worth.
The new "Taste-o-meter" is an extension of the collaborative filtering mechanism Last.fm employs. The taste-o-meter tells you at a glance whether you have any common musical ground with other listeners. Whenever you visit another listeners profile page, the taste-o-meter appears in the top left corner so you can see at a glance what music you have in common.
Judging by user comments on the site, the new artist pages aren't very popular. A number of people dismiss them as simply "ugly." As with the rest of the site, how you feel about the redesigned artist pages may be somewhat determined by how you feel about gradients.
Regardless of how the interface design strikes you, Last.fm's changes bring some welcome new features and should make users happy.
[*This post was written by Scott Gilbertson of [Monkey Bites][2] the Wired News blog covering daily developments in software and web services.*]
[1]: http://www.wired.com/news/culture/0,1284,59522,00.html "Wired News: Last.fm: Music to Listeners' Ears"
[2]: http://blog.wired.com/monkeybites/ "Monkey Bites"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/onlywire-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/onlywire-logo.jpg Binary files differnew file mode 100644 index 0000000..21a6e3f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/onlywire-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/onlywire.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/onlywire.jpg Binary files differnew file mode 100644 index 0000000..8b37f3b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/onlywire.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/onlywire.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/onlywire.txt new file mode 100644 index 0000000..cfc4480 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/onlywire.txt @@ -0,0 +1 @@ +There are, in the immortal words of either Bill or Ted, I don't recall which, a *plethora* of social bookmarking websites out there. I thought I'd end my review with a site that doesn't actually store your bookmarks at all. [OnlyWire][1] is a refreshing change in the realm of bookmarking, it offers almost no features, no sharing to speak of and very limited searching.
And it might be the most useful site of the bunch. OnlyWire is really just a bookmarklet. Drag it to your toolbar like any other and when you're on a site you want to save, hit the bookmark.
But if OnlyWire doesn't save my page why would i want to to do that you ask? Because this is the one ring to, well, nevermind. When you click OnlyWire's bookmarklet your page and whatever descriptive info you fill in will be submitted to up to seventeen bookmarking sites.
Yes, this is for those that want it all. Just provide your sign in name and password for all your social bookmark sites and OnlyWire will submit the info to all of them. You can simultaneously maintain bookmarks on seventeen sites. And if that's not enough you can send OnlyWire a note asking them to add your favorite site.
Note that if I were to review two social bookmarking sites a day, I might be done by the holidays, but I'm cutting it off here. If your favorite site was omitted from out reviews, don't feel slighted, just plug it in the comments section.
And we'll have a complete wrap up for you in the very near future.
<p>Previously Reviewed: <br /><a href="http://blog.wired.com/monkeybites/2006/10/delicious_is_th.html" title="Monkeybite's review of del.icio.us">del.icio.us</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_1.html" title="Monkeybite's review of ma.gnolia">ma.gnolia</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_2.html" title="Monkeybite's review of wink">Wink</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_3.html" title="Monkeybite's review of StumbleUpon">StumbleUpon</a><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_4.html" title="Monkeybite's review of furl">Furl</a><br /><br />
<a href="http://blog.wired.com/monkeybites/2006/10/the_social_book_5.html" title="Monkeybite's review of BlinkList">BlinkList</a><br /></p>
[1]: http://onlywire.com/ "OnlyWire.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/reboot.txt new file mode 100644 index 0000000..cb68a5e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/reboot.txt @@ -0,0 +1 @@ +No. More. Candy. Here's your morning reboot:
* [Apple has updated iTunes][1]. According to Apple, "iTunes 7.0.2 adds support for the [Second Generation iPod shuffle][2] and addresses a variety of stability and performance issues found in iTunes 7 and 7.0.1." The update is 25.7 MB and can be [downloaded from the Apple website][3].
* Microsoft Corp. announced yesterday that [Microsoft Office Live will be coming out of beta][4] on Nov. 15. Office Live is a set of Internet-based services for small business owners. [via [ZDNet][5]]
* [Last.fm][6], the popular music-centric social network, will apparently be [upgrading its services tomorrow][8]. New features include a new flash player, an events system, free MP3 downloads and revamped profile pages. [via [Mashable][7]]
* Scrybe, an online organizer and calendar application, launched its beta release last night. [via [TechCrunch][10]]
* Photo sharing site [Zooomr has increased user's monthly photo upload limits][11]. Free accounts now get 100 MB per month and pro accounts 4 GB per month, which is nearly double the offerings of rival Flickr. [also via [TechCrunch][12]]
[1]: http://www.apple.com/itunes/overview/ "Apple iTunes"
[2]: http://www.apple.com/ipodshuffle/ "iPod Shuffle"
[3]: http://www.apple.com/itunes/download/ "Download iTunes"
[4]: http://www.microsoft.com/presspass/press/2006/oct06/10-312007OfficeLivePR.mspx "Microsoft Announces Office Live"
[5]: http://blogs.zdnet.com/microsoft/?p=72 "ZDNet"
[6]: http://www.last.fm/ "Last.fm"
[7]: http://mashable.com/2006/10/31/lastfm-to-announce-free-mp3s-events-and-more/ "Mashable on Last.fm"
[8]: http://www.last.fm/updates/ "Last.fm upgrade"
[9]: http://iscrybe.com/main/index.php "Scrybe.com"
[10]: http://www.techcrunch.com/2006/10/31/scrybe-syncing-calendar-has-launched-in-beta/ "TechCrunch on Scrybe"
[11]: http://blog.zooomr.com/2006/11/01/trickr-or-treatr-pro-accounts-upgraded-to-4gbmo-free-accounts-to-100mmo/ "Zooomr upgrades bandwidth limits"
[12]: http://www.techcrunch.com/2006/11/01/zooomr-doubles-flickrs-monthly-photo-upload/ "TechCrunch on Zooomr"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/scrybe.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/scrybe.jpg Binary files differnew file mode 100644 index 0000000..bb407c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/scrybe.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/scrybe.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/scrybe.txt new file mode 100644 index 0000000..c7e157d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/scrybe.txt @@ -0,0 +1 @@ +As I mentioned in this morning's reboot, the web service [Scrybe announced its public beta][1] release today. Scrybe joins a host of other online organizational tools from major players like Google, Yahoo and others, but Scrybe has some significantly different features that merit a closer look.
In fact Scrybe offers so much that it would take some time to run through everything, so instead of that I'll offer this official video that the creators of Scrybe released earlier today.
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/Mr1YE_xS_n8"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Mr1YE_xS_n8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
I should note that the entire interface is done in Flash which may put some people off, but the ability to work offline and sync your changes the next time you're online probably necessitates Flash. And for the old-fashioned folks like me, the ability to print out foldable copies of calendars and lists is fantastic, but for me the real drool-worthy feature is the Thought pages which allow you to browse the internet a create a clipbook of images, text and sites.
I will confess to being somewhat ignorant of alternative offerings and should probably say that I'm not a heavy user of calendar apps and organizational tools (I still favor the offerings of Monte Blanc and Moleskine when it comes to this stuff). But, that said, if Scrybe is really capable of everything shown in the above video, it will likely prove a very popular offering.
[1]: http://iscrybe.com/main/index.php "Scrybe.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/shuffle.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/shuffle.jpg Binary files differnew file mode 100644 index 0000000..21fa778 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/10.30.06/Wed/shuffle.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/ipod solicit.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/ipod solicit.txt new file mode 100644 index 0000000..5608d77 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/ipod solicit.txt @@ -0,0 +1 @@ +As we all know it's simple to load music into the iPod whether it's with iTunes or any number of alternatives.
But what about getting music off your iPod? That's not so simple.
In fact, using only the tools provided by Apple, it's impossible; there is no way to transfer songs from an iPod to anywhere else.
Ostensibly the reason is so we don't all go copying each others music from one iPod to another. Personally, I find this assumption of criminality irritating, there are in fact a number of legitimate reasons you might need to transfer songs from an iPod to your hard drive.
For instance, suppose you hard drive crashes taking all your MP3's with it? What if the capacity of your iPod is larger than your notebook hard drive and as you load music onto your iPod, you delete it off your hard drive to conserve space?
In short there are potentially dozens of reasons you might want to transfer music off your iPod and Apple has left you with no options, but they did leave the back door open so to speak.
There are no hardware or firmware restrictions that stop you from transferring music off an iPod and so a number of non-Apple, third party developers have released tools to help you get your tunes off your iPod and put them wherever you like.
Next week we'll be doing some reviews of this software and we'd like the hear from you. What tools do you use? We're especially interested in Windows and Linux options. Share your experiences and suggestions in the comments below.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/ipod.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/ipod.jpg Binary files differnew file mode 100644 index 0000000..1c8dfde --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/ipod.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/nottr-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/nottr-logo.jpg Binary files differnew file mode 100644 index 0000000..6cd0118 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/nottr-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/nottr-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/nottr-screen.jpg Binary files differnew file mode 100644 index 0000000..78b7a0d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/nottr-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/nottr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/nottr.txt new file mode 100644 index 0000000..3da6202 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/nottr.txt @@ -0,0 +1 @@ +[Nottr, a new online note taking application][1], launched yesterday. Nottr offers the ability to create and save notes, organize them with tags, and share them with others.
Although not currently available, the site promises to eventually feature a way to send notes via cellphones and email and plans to allow for scheduled reminders via SMS or e-mail.
The site is simple and easy to use, in fact it's layout felt somehow familiar... oh yeah it's an orange GMail. A lot of sites use fairly similar layouts and designs, and there is something to be said for a standardization of interfaces, but some may feel Nottr has crossed the line between imitation and rip-off.
Perhaps the derivative design is simply to ease the transition in the event of a sale to Google. I have to admit that Nottr on it's own probably won't be a regular destination for me, but if Google were to snatch it up and roll it into GMail it would fit nicely with the Gmail feature set.
I like Nottr and it think it has the potential to be useful for students especially, but at the moment its feature set is fairly limited. I would like to see a way to export saved notes to other formats. A simple text file export would be nice, multiple text files in a zip download would be even better. RSS support is conspicuously lacking which means there's little or no way to share your notes beyond your public page.
[1]: http://www.nottr.com/ "Nottr.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax-logo.jpg Binary files differnew file mode 100644 index 0000000..4940f35 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax-menu.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax-menu.jpg Binary files differnew file mode 100644 index 0000000..a283482 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax-menu.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax-track.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax-track.jpg Binary files differnew file mode 100644 index 0000000..c6e5f82 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax-track.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax.txt new file mode 100644 index 0000000..bbe2789 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/offertrax.txt @@ -0,0 +1 @@ +Offertrax, an innovative online shopping service, announced its public beta earlier today. Offertrax uses a combination of social bookmarking tools and RSS to help you track your online shopping.
Offertrax allows you to create what it call's "tracks." Tracks are bookmarks you make on products you interested in. Taking a tip from the social bookmarking scene offers a bookmarklet that allows you to add any page to your tracks with a single click.
Once you sign up, just drag the bookmarklet to your toolbar and go find a product you'd like to track. Click the bookmarklet and Offertrax will take ask you to give the bookmark a title, description and a choice of images to represent the product. You can then add the bookmark to any of your existing tracks, or create a new track.
In addition to bookmarks Offertrax lets you add reviews, notes and control wether or not your tracks are public.
So far it sounds pretty much like del.icio.us, but here's the difference: Offertrax gives you an RSS feed and will send you announcement whenever prices change or special offers are available. Offertrax sends out bots once an hour to check all the bookmarks in your tracks. If they find a change you'll be notified in your RSS reader (or on the site obviously).
Offertrax's bots did a great job with Amazon, but weren't able to find prices for some of the smaller sites I bookmarked.
Offertrax is a great time saver and looks very promising, but there are a number of features I would like to have seen. For one thing there doesn't seem to be an immediately obvious way to see other people's tracks. There are links to leave comments when you view your own profile so obviously there must be a way to do this for other people's tracks as well, but I couldn't figure out how to do it.
Also, while Offertrax lets you add reviews, the reviews are intended to be you doing the reviewing. That's fine and I like that, but what if I want to collect other reviews from around the web? I'd like to see is a way to bookmark existing reviews and add then to my tracks. For instance, if I'm sopping for new camera, I'd like to have all my camera bookmarks be joined with bookmarks to reviews on say dpreview.com in the same track container. That way I could see my research and track products all in one interface. As it is the track feature is the only dynamic off-site feature.
But Offertrax is in beta and I'm sure that they'll be adding new features in the future.
Offertrax is also offering it's services to online retailers in the form of a "track this" badge which can be added to the bottom of any page. Curious customers who might otherwise abandon the page can click the track this button and they'll be prompted to create an Offertrax account and start tracking that merchant. The pitch to merchants is that Offertrax can help them convert browsing customers into actively watching customers, which probably sounds good to retailers.
I suppose the cynical might point out that Offertrax stands to learn a lot about your online shopping habits, which is ture and there's no doubt that if the service catches Offertrax will have some valuable market statics at it's disposal. But in the end there's really no way to connect your Offertrax account to the final purchase so your privacy should be relatively secure.
Overall Offertrax is solid offering and well timed with the Holiday shopping season nearly upon us.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/reboot.txt new file mode 100644 index 0000000..aa97618 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Weekend? *Week*end? I have not heard of this thing you speak of, *Weekend*. But I do have your morning reboot:
* Internet analysts [ComScore released a study][1] today that finds more than 14 of the top 25 U.S. web properties draw more traffic from outside the US than within. There's a fair amount of buzz about this this morning, but I don't follow. Given that the vast majority of the world's population lives outside the U.S. this seems like a fairly obvious statistic.
* Walt Disney Co. announced yesterday that it has [sold 500,000 films][2] through its fledgling distribution deal with the iTunes Music Store. Total revenue for the sales is around $4 million, not bad for a the first two months.
* The W3C has [proposed a standard for widgets][3]. The W3C definition of widgets includes "clocks, stock tickers, news casters, games and weather forecasters." The W3C proposal is currently in draft status and looking for comments. [via [MicroPersuasion][4]]
* FCC commissioner Mjchael J. Copps wrote an op/ed piece in the Washington Post yesterday [calling the U.S a laggard in broadband internet access][5]. Anyone living in rural America could have told you that. No word on the possible connection between this and point number one in today's reboot. [Ars Technica][6] has some suggestions for the FCC.
[1]: http://www.comscore.com/press/release.asp?press=1057 "Comscore Internet Usage Study"
[2]: http://www.appleinsider.com/article.php?id=2222 "Apple Insider on Disney"
[3]: http://www.w3.org/TR/widgets/ "W3C widget Standard"
[4]: http://www.micropersuasion.com/2006/11/w3c_proposes_wi.html "Micro Persuasion on the W3C"
[5]: http://www.washingtonpost.com/wp-dyn/content/article/2006/11/07/AR2006110701230.html "Copps on Broadband"
[6]: http://arstechnica.com/news.ars/post/20061109-8185.html "Ars Technica on Broadband"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/wink-people-search.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/wink-people-search.jpg Binary files differnew file mode 100644 index 0000000..3d34869 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/wink-people-search.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/winknews.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/winknews.txt new file mode 100644 index 0000000..1b0b12c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Fri/winknews.txt @@ -0,0 +1 @@ +[Wink][3], the social networking site (see [the Monkey Bites review][1]), has added a new feature called People Search. Wink now indexes profiles from MySpace, LinkedIn and Bebo and plans to add more social networking sites every two weeks.
As [TechCrunch points out in their write up][2], Wink's indexing is not simply pulling from MySpace's search features, they've actually indexed more than 100 million profiles.
The new People Search feature get's it's own tab at the top of the page next to "the web." The results show the user's name, gender and a few lines from their profile. Searches can be refined by specific social network, gender, age and relationship status.
When I reviewed Wink it stood out as fundamentally different than most social bookmarking sites and this announcement underscores those differences. What Wink seems to be aiming for in a search engine with human ratings more than a simple bookmark sharing platform.
Wink appears to headed more and more for the social search market which is so far largely untapped. With a new niche social network popping up nearly every day, Wink's indexing puts the site in a position to be the one stop search destination for all your social networks.
[1]: http://blog.wired.com/monkeybites/2006/10/the_social_book_2.html "Monkey Bites on Wink"
[2]: http://www.techcrunch.com/2006/11/10/wink-now-searches-myspace-linkedin-and-beebo/ "TechCrunch on Wink"
[3]: http://wink.com/ "Wink.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/daily strength.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/daily strength.txt new file mode 100644 index 0000000..b177a1a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/daily strength.txt @@ -0,0 +1 @@ +Earlier this week Doug Hirch (of Yahoo fame) and few others [launched a new social networking site named DailyStrength][1]. Normally I wouldn't consider that too remarkable given the rapid proliferation of such sites, but DailyStrength actually has a purpose, something most social networking sites lack.
Daily Strength is centered around health "wellness support," and aims to build a network for people who are, in the site's words "going through challenges." Some people might sneers at such semantics, but I expect it will be appreciated by those who don't like experiences like paralysis being referred to as a disease.
In addition to those directly affected, DailyStrength also has communities for caretakers, family and friends.
Daily Strength uses the term communities to describe groups that form around various health issues. But the site isn't limited to physical health alone, there are groups on parenting, mental health and addiction, relationships, sexuality and more.
Every user gets a "wellness journal" for sharing with the community, as well as a standard profile page. One of the great things about DailyStrength is that each member in a group lists what medical and psychological treatments they have undergone and whether or not those were effective.
Assuming the pharma companies don't start paying bloggers to write fake positive experiences, this could be a good way to get some advice if your doctor has recommended a treatment you know nothing about.
DailyStrength does a nice job of tracking numbers within communities. For each community there is front page bulletin that lists the top ten treatments for that ailment. Click on any of the links then take you to a list of members and how that treatment worked for them.
Each community also has news feeds that pull in headlines relative to the groups focus,
As with any online medical community, you'll have to decide what advice to follow and what is nonsense and it's certainly not an alternative to seeing a doctor. That said, DailyStrength does list a number of doctors as "community advisors" whom it claims are active in their relative areas of expertise.
With so many social networking sites that end up as little more than vanity mouthpieces, it's nice to see one that has a real purpose.
[1]: http://www.dailystrength.org/ "DailyStrength"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/dailyStrength.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/dailyStrength.jpg Binary files differnew file mode 100644 index 0000000..9f430e6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/dailyStrength.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/dailystrength-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/dailystrength-screen.jpg Binary files differnew file mode 100644 index 0000000..f79d10a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/dailystrength-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/freesmug-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/freesmug-logo.jpg Binary files differnew file mode 100644 index 0000000..7ccba3d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/freesmug-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/likebetter-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/likebetter-logo.jpg Binary files differnew file mode 100644 index 0000000..7777ccd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/likebetter-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/likebetter-pic.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/likebetter-pic.jpg Binary files differnew file mode 100644 index 0000000..8176fe0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/likebetter-pic.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/likebetter.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/likebetter.txt new file mode 100644 index 0000000..4f6719b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/likebetter.txt @@ -0,0 +1 @@ +[Likebetter][1] is a fun way to kill some downtime at the office. The new game is the brainchild of Pairwise, the same company behind the very similar [MoreHotter][2].
The concept is pretty simple, given two photographs, which do you like better? The site then attempts to calculate what your choices say about you. Whenever the site thinks it knows something about you the brain turns pink and if you click on it the brain will tell what it knows about you.
The extrapolations based on your answers are bit far fetched, and yet can be creepily accurate. For instance, based on my choices of only five sets of photos Likebetter guessed that I lived in an apartment or condo, which is true. I went back through the photos and tried to figure out what might be the reasoning behind that, but I came away empty.
It is just a game though, and it's wildly inaccurate as often as it is correct (not only do I not watch a lot of television I don't even own one).
Some of the picture combinations are bizarre, like the one below, and it's tough to say what that choice might say about you.
As with anything remotely like a personality test I tried to game Likebetter to see if I could control what it thought about me, but for the most part Likebetter's image are too random for that. Really, what does it say about you if you choose a fat Elvis impersonator over Adam Sandler?
LikeBetter is hardly earth shattering, but it's a silly and fun way to waste a bit of the company time.
[1]: http://www.likebetter.com/ "What do you Likebetter?"
[2]: http://www.morehotter.com/ "Morehotter"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/macportableapps.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/macportableapps.txt new file mode 100644 index 0000000..10288f1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/macportableapps.txt @@ -0,0 +1 @@ +Mac users no longer need to feel left out of the "portable app" craze. If you have a USB stick and you'd like to have Firefox, Thunderbird, OpenOffice, Gimp or other apps in portable form, you can [grab them from FreeSMUG][1]. Mac users will be happy to know the list also includes some of Apple's stock apps like Safari, Mail, iCal, iChat and Address Book.
For those that don't know, portable applications are packaged so you can carry them on a USB thumb drive, iPod, memory card, or any other portable memory storage device. They're compiled in such a way that your preferences are read and written to the portable drive so you can have your settings and preferences available on any machine.
The ubiquitous presence of USB stick drives has seen an growing demand for portable apps. There's several repositories of portable Windows application out there, but this is the first I've seen that is Mac specific. I suppose you could argue that there aren't as many Macs out there to plug your USB stick into which might make these less useful, but I'm sure Mac users will appreciate the possibility.
It's small point, but I'm curious why a group calling itself the Free OpenSource Software Mac User Group lists Safari and other Apple software that isn't open source.
[1]: http://www.freesmug.org/portableapps/ "Portable Mac Apps"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/ms-universal.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/ms-universal.txt new file mode 100644 index 0000000..bf06701 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/ms-universal.txt @@ -0,0 +1 @@ +[According to the New York Times][1] Microsoft has agreed to pay Universal Music "more the $1" for every Zune sold. The article claims:
>Under the deal, Universal, the world's largest music corporation, will receive a percentage of both download revenue and digital player sales when the Zune and its related service are introduced next week.
Ever since I mentioned it in the morning reboot, I've be trying work exactly why Microsoft would cut Universal Music in on the deal. [Several analysts have suggested][3] that this [has the makings of a new business model][4] -- hardware manufacturers cut content producers in on the profits of device sales.
The logic is that since online music sales aren't picking up with near the pace at which retail CD sales are declining, kindly hardware manufacturers can cut them in on some profits.
That would make sense if Microsoft were a charity organization, but obviously it's not. But Google has reportedly reached similar set of agreements with various entertainment companies regarding YouTube, so maybe this idea is gaining some traction.
Canada tried to institute an "iPod tax" for a while in an attempt to compensate the music industry for what it perceives as lost revenue through file sharing. The law was later struck down by Canadian courts.
Apple's tactic so far has been to compensate the music companies through sales on the iTunes Music Store. But online music sales aren't exactly raking in the money. According to an unnamed study quoted by the Times: "Apple has sold an average of 20 songs per iPod."
Naturally music industry claims the decline in sales is directly attributable to file sharing. To a certain extent they're probably right. But presupposing that your entire consumer base is criminal, which is what something like the Canadian tax does, seems a bit extreme.
Perhaps this wouldn't be a bad model for the music industry to adopt. I for one would much rather pay $25 or $50 more for an iPod or Zune if I could avoid DRM and download whatever I wanted whenever I wanted.
Personally I think that with more and more bands selling their music outside the traditional realms of the music industry, and many of them making a healthy profit doing so, that alternatives to current structure are more likely. Already sites like [Amie Street][5] offer musicians better ways of delivering their music to the world and I expect we'll see many more similar services pop up soon.
Of course well established acts like U2 and Britney Spears aren't going to go this route, but the acts that will inevitably supplant them as the new industry leaders may well be coming from outside the existing industry.
What do you think?
[1]: http://www.nytimes.com/2006/11/09/technology/09music.html?ex=1320728400&en=b380ce3d90e6a342&ei=5090&partner=rssuserland&emc=rss "New York times says Microsoft to pay Universal Music a portion of Zune proceeds"
[3]: http://techdirt.com/articles/20061108/235014.shtml "Techdirt on the microsoft Universal deal"
[4]: http://www.techcrunch.com/2006/11/09/on-universal-music-groups-zune-tax/ "TechCrunch on the Microsoft Universal deal"
[5]: http://amiestreet.com/home.php "Amiestreet.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/reboot.txt new file mode 100644 index 0000000..c7c5fc4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot you ordered has arrived sir:
* Google has fessed up to [accidentally sending out some e-mail containing the Kama Sutra mass mailing worm][1]. The official statement begins, "On Tuesday evening, three posts were made to the Google Video Blog-group that should not have been posted." Mmmhmm.
* And in other Google News, Mashable is reporting that [Google Video is being sued][2] for copyright infringement. The announcement comes straight from Google, but so far there are no details beyond that.
* MagiQ Technologies claims to have [developed an unbreakable encryption scheme][3] that exploits Heisenberg's Uncertainty Principle to generate cypher keys. While that sounds good, I can't help thinking that unsinkable ships sounded good at one point too.
* And finally in TSIA category: [Microsoft To Give A Cut Of Every Zune Sold To The Recording Industry -- Though It's Not Clear Why][4]
[1]: http://www.pcworld.com/article/id,127788-c,worms/article.html "Google emails Kama Sutra worm"
[2]: http://mashable.com/2006/11/09/google-video-sued/ "Google Video Sued"
[3]: http://www.businessweek.com/technology/content/nov2006/tc20061106_302053.htm?campaign_id=bier_tcv.g3a.rssm1109z "Unbreakable Encryption?"
[4]: http://techdirt.com/articles/20061108/235014.shtml "Microsoft To Give A Cut Of Every Zune Sold To The Recording Industry -- Though It's Not Clear Why"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/zune.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/zune.jpg Binary files differnew file mode 100644 index 0000000..820d4fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Thu/zune.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/Safari Bookmarks.html b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/Safari Bookmarks.html new file mode 100644 index 0000000..8e0f38d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/Safari Bookmarks.html @@ -0,0 +1,898 @@ +<!DOCTYPE NETSCAPE-Bookmark-file-1> + <HTML> + <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> + <Title>Bookmarks</Title> + <H1>Bookmarks</H1> + <DT><H3 FOLDED>Bookmarks Bar</H3> + <DL><p> + <DT><A HREF="javascript:var%20m='';var%20d='';var%20metas=document.getElementsByTagName('meta');for(count=0;count%3Cmetas.length;count++){if(metas[count].name=='description'){m=metas[count].content;}};if(m!=''){d=encodeURIComponent(m);}location.href='http://ma.gnolia.com/bookmarklet/add?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)+'&description='+d;">Mark in Magnolia</A> + <DT><A HREF="javascript:(function(){var%20s=document.createElement(%22script%22);s.charset=%22UTF-8%22;s.src=%22http://ma.gnolia.com/meta/magframe%22;document.body.appendChild(s)})();">Roots</A> + <DT><A HREF="http://www.readwriteweb.com/archives/elephants_and_evolution.php">changing web</A> + <DT><A HREF="http://www.newslinx.com/">NewsLinx</A> + <DT><A HREF="javascript:location%20=%20'http://www.google.com/search?q=link:'%20+%20escape(location);">Linking to this site on Google</A> + <DT><A HREF="javascript:void(d=document);void(el=d.getElementsByTagName('div'));for(i=0;i%3Cel.length;i++)%7Bvoid(el%5Bi%5D.style.border='1px%20dashed%20gray')%7D;void(el=d.getElementsByTagName('span'));for(i=0;i%3Cel.length;i++)%7Bvoid(el%5Bi%5D.style.border='1px%20solid%20black');%7D">Show divs with colour</A> + <DT><A HREF="javascript:void(open('http://validator.w3.org/check?uri='+escape(document.location)))">Validate XHTML</A> + <DT><A HREF="javascript:(function()%7Bvar%20T=%7B%7D,W=%5B%5D,C=0,s,i;%20function%20F(n)%7Bvar%20i,x,a,w,t=n.tagName;if(n.nodeType==3)%7Ba=n.data.toLowerCase().split(/%5B%5Cs%5C(%5C)%5C:%5C,%5C.;%5C%3C%5C%3E%5C&%5C'%5C%22%5D/),i;for(i%20in%20a)if(w=a%5Bi%5D)%7Bw=%22%20%22+w;T%5Bw%5D=T%5Bw%5D?T%5Bw%5D+1:1;++C;%7D%7Dif(t!=%22SCRIPT%22&&t!=%22STYLE%22)for(i=0;x=n.childNodes%5Bi%5D;++i)F(x)%7DF(document);for(i%20in%20T)W.push(%5BT%5Bi%5D,i%5D);W.sort(function(a,b)%7Bvar%20x=b%5B0%5D-a%5B0%5D;return%20x?x:((b%5B1%5D%3Ca%5B1%5D)?1:-1)%7D);%20s=%22%3Ch3%3E%22+C+%22%20words%3C/h3%3E%22;for(i%20in%20W)s+=W%5Bi%5D%5B0%5D+%22:%22+W%5Bi%5D%5B1%5D+%22%3Cbr%3E%22;with(open().document)%7Bwrite(s);close()%7D%7D)()">Word count</A> + <DT><A HREF="http://luxagraf.net/">luxagraf</A> + </DL><p> + <DT><H3 FOLDED>Bookmarks Menu</H3> + <DL><p> + <DT><H3 FOLDED>Bills</H3> + <DL><p> + <DT><A HREF="https://online.octfcu.org/hb/">OCTFCU CU@Home 55</A> + <DT><A HREF="https://www.myaccount.cingular.com/olam/loginAction.olamexecute">Sign In to My Cingular</A> + <DT><A HREF="https://service.capitalone.com/oas/login.do?objectclicked=LoginSplash">Capital One Online Account Services - Login</A> + </DL><p> + <DT><H3 FOLDED>Mac OS X Info</H3> + <DL><p> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20050130184054216">macosxhints.com - Convert Real Audio files to MP3s</A> + <DT><A HREF="http://maczealots.com/tutorials/movabletype/panther/">MacZealots > Tutorials > Installing Movable Type on Panther</A> + <DT><A HREF="http://maczealots.com/tutorials/movabletype/">MacZealots > Tutorials > Installing Movable Type on Tiger</A> + <DT><A HREF="http://www.lifehacker.com/software/top/hack-attack-how-to-set-up-a-personal-home-subversion-server-188582.php">Hack Attack: How to set up a personal home Subversion server - Lifehacker</A> + <DT><A HREF="http://www.flickr.com/photos/ianlloyd/100594775/">Setting up SSL on IMAP mail, Dreamhost on Flickr - Photo Sharing!</A> + <DT><A HREF="http://modmini.com/theatre/howto/dvdjukebox/index.php">How-To: Turn Your Mac mini into a DVD Jukebox</A> + <DT><A HREF="http://www.macdevcenter.com/pub/a/mac/2004/02/03/latex.html"> LaTeX</A> + <DT><A HREF="http://www.macworld.com/2000/04/create/sharperimages.html">Macworld: Sharper Images in Photoshop</A> + <DT><A HREF="http://www.macworld.com/2000/05/create/scanright.html">Macworld: Scan Right and Save Time</A> + <DT><A HREF="http://macgpg.sourceforge.net/docs/howto-install-IDEA.txt.asc">macgpghowto-install-IDEA.txt.asc</A> + <DT><A HREF="http://www.macdevcenter.com/pub/a/mac/2002/12/27/macosx_firewall.html?page=1">O'Reilly Network: Firewall [Dec. 27, 2002]</A> + <DT><A HREF="http://www.macdevcenter.com/pub/a/mac/2003/05/28/iphoto2.html">O'Reilly Network: Automating iPhoto 2 with AppleScript [May. 28, 2003]</A> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20030719230615357">macosxhints - A workaround to hide the desktop in 10.2</A> + <DT><A HREF="http://www.mezzoblue.com/archives/2004/08/05/virtual_host/">mezzoblue § Virtual Hosts for Dummies</A> + <DT><A HREF="http://www.stepwise.com/Articles/HTMLEditorX/">Stepwise</A> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20050130184054216">macosxhints - Convert Real Audio files to MP3s</A> + <DT><A HREF="http://www.mecheng.adelaide.edu.au/~will/texstart/">What do I need for TeX on Mac OS X?</A> + <DT><A HREF="http://www.cs.bris.ac.uk/~ian/Resources/Latex/node1.html">Introduction TEX</A> + <DT><A HREF="http://www.macdevcenter.com/pub/a/mac/2005/03/15/firewall.html">MacDevCenter.com: Exploring the Mac OS X Firewall</A> + <DT><A HREF="http://www.macdevcenter.com/pub/a/mac/2004/08/10/subversion.html?page=2">MacDevCenter.com: Making the Jump to Subversion</A> + <DT><A HREF="http://mundy.org/blog/index.php?s=web+sites+101&submit=Search">Nerd Vittles</A> + <DT><A HREF="http://bignosebird.com/apache/a10.shtml">Protecting private directories with APACHE's .htaccess and htpasswd authorization.</A> + <DT><A HREF="http://www.oreillynet.com/pub/wlg/6971">Tiger Tip #5: Using Tiger's Built-in, Use-it-Anywhere, Dictionary</A> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20050422172929402">macosxhints - 10.4: Detach widgets from the Dashboard</A> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20050429153115383">macosxhints - How to securely control another Mac over the internet</A> + <DT><A HREF="http://www.macmerc.com/reviews.php?op=showcontent&id=100">MacMerc.com: Review >> SendStation PocketDock series</A> + <DT><A HREF="http://www.oreillynet.com/pub/wlg/7050">Folksonomise your files with Automator</A> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20050503002453669">macosxhints - 10.4: Unleash Spotlight through Other and Raw queries</A> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20050503165951266">macosxhints - 10.4: Use Boolean (NOT, OR) searches in Spotlight</A> + <DT><A HREF="http://features.engadget.com/entry/6336778455600767/">How-To Turn your iPod in to a Universal Infrared Remote Control - Features - features.engadget.com</A> + <DT><A HREF="http://www.engadget.com/entry/4722730173095828/">pt’s How-to Fridays: Read RSS feeds on your iPod - Engadget - www.engadget.com</A> + <DT><A HREF="http://ipod.hackaday.com/entry/1234000147025394/">how-to record on your ipod (for free) - ipod hacks - ipod.hackaday.com _</A> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20050508111303465">macosxhints - 10.4: Use Automator to batch add Spotlight comments</A> + <DT><A HREF="http://www.macworld.com/2005/05/features/takecontroltigercust/index.php?lsrc=mwrss">Macworld: Feature: Take Control of Customizing Tiger, Page 1</A> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20050508000838365">macosxhints - 10.4: Easily add the date to the menubar</A> + <DT><A HREF="http://www.macosxhints.com/article.php?story=20050429153115383&query=reverse+ssh">macosxhints - How to securely control another Mac over the internet</A> + <DT><A HREF="http://www.macdevcenter.com/pub/a/mac/2005/06/07/dashboard.html">MacDevCenter.com: Let's Build Another Dashboard Widget</A> + <DT><A HREF="http://www.mcelhearn.com/article.php?story=200506071404232">Kirkville - Access your Smart Folders from the Spotlight Menu</A> + <DT><A HREF="http://www.macworld.com/2005/07/features/photosprepare/index.php?pf=1">Macworld: Feature: Prepare your photos</A> + <DT><A HREF="http://www.macworld.com/weblogs/macosxhints/2005/08/spotlightsetup/index.php?lsrc=mwrss">Macworld: Mac OS X Hints: Spotlight set-up</A> + <DT><A HREF="http://www.macgeekery.com/tips/how_to_execute_raw_spotlight_queries_in_the_finder">Mac Geekery - How to Execute Raw Spotlight Queries in the Finder</A> + <DT><A HREF="http://www.entropy.ch/software/macosx/">Marc Liyanage - Software - Mac OS X Packages</A> + <DT><A HREF="http://www.versiontracker.com/">VersionTracker: Mac OS X Software</A> + <DT><A HREF="http://daringfireball.net/">Daring Fireball</A> + <DT><A HREF="http://macgpspro.com/html/newhtml/menu/topomaps.html">MacTopos USA</A> + <DT><A HREF="http://www.lifehacker.com/software/parallels/hack-attack-sidebyside-windows-and-mac-os-with-parallels-201451.php">Hack Attack: Side-by-side Windows and Mac OS with Parallels - Lifehacker</A> + <DT><A HREF="http://www.macdevcenter.com/pub/a/mac/2004/04/27/bbedit_pt1.html?page=2">MacDevCenter.com -- BBEdit: Its Unix Support Doesn't Suck Either, Part 1</A> + <DT><A HREF="http://www.dcresource.com/">Digital Camera Reviews from the Digital Camera Resource Page</A> + <DT><A HREF="http://www.theserials.com/">THESERIALS.COM: Your Only Source For Serials</A> + <DT><A HREF="http://www.freesmug.org/portableapps/">OS X Portable Applications — FreeSMUG</A> + </DL><p> + <DT><H3 FOLDED>Luxagraf</H3> + <DL><p> + <DT><A HREF="http://gmail.google.com/gmail">Gmail - Inbox (1)</A> + <DT><A HREF="http://luxagraf.net/photos/ssp_director/">SSP Admin Login</A> + <DT><A HREF="https://panel.dreamhost.com/">[ DreamHost : Login ]</A> + <DT><A HREF="http://luxagraf.net/mt/mt.cgi">lux movable</A> + <DT><A HREF="http://www.castagraf.net/mt/mt.cgi">cast movable</A> + <DT><A HREF="http://status.dreamhost.com/">DreamHost - Emergency Status</A> + <DT><A HREF="http://webmail.dreamhost.com/src/login.php">SquirrelMail - Login</A> + <DT><A HREF="http://luxagraf.net/">Luxagraf</A> + <DT><A HREF="http://luxagraf.net/dh_phpmyadmin/mysql.luxagraf.net/">luxagraf.net / mysql.luxagraf.net | phpMyAdmin 2.8.0.3</A> + <DT><A HREF="http://www.loc.gov/issn/issnbro.html">ISSN is for serials (Library of Congress)</A> + </DL><p> + <DT><H3 FOLDED>PhotoShop</H3> + <DL><p> + <DT><A HREF="http://www.adobe.com/products/tips/photoshop.html">Adobe Photoshop Tutorials raw</A> + <DT><A HREF="http://www.digitalmediadesigner.com/splash/tutorialssplash.htm">Digital Media Designer: Tutorials</A> + <DT><A HREF="http://www.russellbrown.com/body.html">Russell Brown's Tips</A> + <DT><A HREF="http://www.dubtastic.com/resources.php">brushes</A> + <DT><A HREF="http://www.blakems.com/archives/000072.html">The Awesome Antiquated Look: Blakems.com</A> + <DT><A HREF="http://veredgf.fredfarm.com/vbrush/main.html">vbrush.tmp.layout</A> + <DT><A HREF="http://www.dreaminfinity.com/tutorials/photoshop/grundge.php">di_execution III</A> + <DT><A HREF="http://www.dreaminfinity.com/tutorials/photoshop/grunge2.php">di_execution III</A> + <DT><A HREF="http://www.macmerc.com/articles/Graphics_Tips/70">aquastylebuttons</A> + <DT><A HREF="http://yallara.cs.rmit.edu.au/~tbujor/blog/archives/000010lomo_effect_in_photoshop.php">My Life...: LOMO Effect in Photoshop</A> + <DT><A HREF="http://www.creativepro.com/story/feature/22413.html?cprose=6-04">creativepro.com - Photoshop How-To: Lens Blur with Alpha Channels</A> + <DT><A HREF="http://www.sxc.hu/">stock.xchng - the leading free stock photography site</A> + <DT><A HREF="http://www.russellbrown.com/tips_tech.html">Russell Brown Tips & Techniques</A> + <DT><A HREF="http://www.slower.net/slowerlog/2004/09/bw-conversion.php">slower.net log: B&W Conversion</A> + <DT><A HREF="http://194.100.88.243/petteri/pont/How_to/n_Digital_BW/a_Digital_Black_and_White.html">Digital Black and White</A> + <DT><A HREF="http://www.oreillynet.com/mac/blog/2006/04/great_prints_from_your_mac.html">Great Prints from your Mac - O'Reilly Mac DevCenter Blog</A> + <DT><A HREF="http://www.oreillynet.com/digitalmedia/blog/2006/04/perfect_bw_prints_from_digital.html">Perfect B&W Prints from Digital Files - O'Reilly Digital Media Blog</A> + <DT><A HREF="http://www.thelightandtheland.com/">Bruce Percy ~ The Light and the Land Photography</A> + <DT><A HREF="http://www.creativepro.com/story/feature/22546.html">Quiet Those Noisy Images</A> + <DT><A HREF="http://veerle.duoh.com/blog/comments/creating_grunge_brushes/">Veerle's blog | Creating grunge brushes</A> + <DT><A HREF="http://www.photojojo.com/content/tips/fix-hazy-photos/">Photojojo » Quick Tip: Fix Your Hazy Shots</A> + <DT><A HREF="http://www.photoshoplab.com/aging-people.html">Aging People | Photoshop Lab</A> + <DT><A HREF="http://community.livejournal.com/icon_tutorial/4994818.html#cutid1">icon_tutorial: Pattern/silhouette tutorial using a layer mask</A> + <DT><A HREF="http://www.melissaclifton.com/tutorial-popart.html">Pop Art Inspired by Lichtenstein - Online Tutorial at Melissa Clifton page 1</A> + <DT><A HREF="http://tricks.onigo.net/">2 Minute Photoshop Tricks</A> + </DL><p> + <DT><H3 FOLDED>Programming</H3> + <DL><p> + <DT><H3 FOLDED>python/django</H3> + <DL><p> + <DT><A HREF="http://www.wilsonminer.com/posts/2006/may/10/are-you-generic/">Are you generic? / Wilson Miner Live</A> + <DT><A HREF="http://www.rossp.org/blog/2006/jan/23/building-blog-django-1/">rossp.org - Blog Entry: Building a Blog with Django</A> + <DT><A HREF="http://cavedoni.com/2005/django-osx">Installing Django on OS X</A> + <DT><A HREF="http://www.vonautomatisch.at/django/filebrowser/">vonautomatisch | Django FileBrowser</A> + <DT><A HREF="http://fallingbullets.com/blog/2006/aug/06/wordpress-clone-27-seconds-part-1-40/">Falling Bullets - Blog - WordPress Clone in 27 Seconds (Part 1 of 40)</A> + <DT><A HREF="http://www.rossp.org/tag/django/">rossp.org - Tag: Django</A> + <DT><A HREF="http://www.djangoproject.com/documentation/templates/#timesince">Django | Documentation | Template guide</A> + <DT><A HREF="http://www.willmer.com/kb/2006/10/django-geoip-templatetag/">Rachel’s Knowledge Base » Blog Archive » Django GeoIP templatetag</A> + <DT><A HREF="http://www.ivfx.com/2006/06/21/have-you-ever-kissed-a-snake/">IVfx | Web Design, Graphic Design, and Illustration » Have You Ever Kissed a Snake?</A> + <DT><A HREF="http://code.djangoproject.org/wiki/WikiStart">Django | Code</A> + <DT><A HREF="http://code.djangoproject.org/wiki/FlickrIntegration">Django | Code | FlickrIntegration</A> + <DT><A HREF="http://code.djangoproject.com/attachment/ticket/2228/better_comments2.diff">Django | Code | #2228: better_comments2.diff</A> + <DT><A HREF="http://swik.net/django/The+Django+weblog/Presentation+at+Harvard/ohcb">Django : The Django weblog : Presentation at Harvard - SWiK</A> + <DT><A HREF="http://www.b-list.org/weblog/2006/11/02/django-tips-auto-populated-fields">The B-List: Django tips: auto-populated fields</A> + <DT><A HREF="http://fallingbullets.com/blog/2006/nov/02/falling-bullets-source-code-you-ninnies/">Falling Bullets - Blog - Falling Bullets Source Code (You Ninnies)</A> + <DT><A HREF="http://docs.python.org/lib/lib.html">Python Library Reference</A> + <DT><A HREF="http://docs.python.org/ref/ref.html">Python Reference Manual</A> + <DT><A HREF="http://www.djangoproject.com/documentation/tutorial2/#customize-the-admin-look-and-feel">Django | Documentation | Writing your first Django app, part 2</A> + </DL><p> + <DT><H3 FOLDED>PHP</H3> + <DL><p> + <DT><A HREF="http://www.php.net/">PHP: Hypertext Preprocessor</A> + <DT><A HREF="http://sourceforge.net/projects/linpha">SourceForge.net: Project Info - The PHP Photo Archive</A> + <DT><A HREF="http://www.phpbuilder.com/">PHPBuilder.com</A> + <DT><A HREF="http://www.phpmac.com/">PHPmac.com - Tutorials, Articles, Support, Mac OS X</A> + <DT><A HREF="http://www.freewebmasterhelp.com/tutorials/phpmysql/4">PHP/MySQL Tutorial - Part 4</A> + <DT><A HREF="http://www.freesticky.com/stickyweb/articles/syndicate_php_mysql.asp">Freesticky - Syndicate your content using PHP and MySQL</A> + <DT><A HREF="http://www.onlamp.com/pub/a/php/2003/01/09/php_foundations.html">read directories</A> + <DT><A HREF="http://www.onlamp.com/pub/a/php/2003/02/20/php_foundations.html">changing permissions</A> + <DT><A HREF="http://vulcanonet.com/soft/index.php?pack=uploader">Pear File Uploader by Tomas V.V.Cox</A> + <DT><A HREF="http://www.allthingsalceste.com/calendarflickrphp/">all things alceste » web -> calendarFlickr</A> + <DT><A HREF="http://www.digital-seven.net/?option=com_content&task=view&id=69">Using GeoData XML service with PHP - Digital Seven</A> + <DT><A HREF="http://www.itstud.chalmers.se/~it2bjar/macosx/">Installing Apache2 and PHP 5.0.4</A> + <DT><A HREF="http://us2.php.net/imagecreatefromjpeg">PHP: imagecreatefromjpeg - Manual</A> + <DT><A HREF="http://www.sentex.net/~mwandel/jhead/">Exif Jpeg header and thumbnail manipulator program</A> + <DT><A HREF="http://www.zend.com/zend/tut/tutorial-stump.php">Zend Technologies - Beginner Tutorials - Smarty: A closer look</A> + <DT><A HREF="http://smarty.incutio.com/?page=SmartestSmartyPractices">Smartest Smarty Practices - SmartyWiki</A> + <DT><A HREF="http://www.phpinsider.com/php/code/GoogleMapAPI/">PHP GoogleMapAPI by Monte Ohrt</A> + <DT><A HREF="http://smarty.php.net/manual/en/language.function.include.php">Smarty</A> + <DT><A HREF="http://smarty.php.net/manual/en/language.function.if.php">Smarty</A> + <DT><A HREF="http://www.phpinsider.com/php/code/SmartyPaginate/">PHP SmartyPaginate by Monte Ohrt</A> + <DT><A HREF="http://www.phpinsider.com/smarty-forum/viewtopic.php?t=5597">Smarty :: View topic - [SmartyPaginate] a better solution for an issue..</A> + <DT><A HREF="http://www.whenpenguinsattack.com/2006/08/14/using-php-in-large-websites-redone/?5">Jaslabs » Have a slow PHP script? use these tips to speed it up!</A> + <DT><A HREF="http://www.apifinder.com/APIFinder/APIsByCategory/28880?catID=2526">www.apifinder.com - the essential directory for application programming interfaces</A> + <DT><A HREF="http://smarty.incutio.com/?page=SmartyPlugins">Smarty Plugins - SmartyWiki</A> + <DT><A HREF="http://www.mostrom.pp.se/node/112">Preview Markdown documents using BBEdit | Jan Erik Moström</A> + </DL><p> + <DT><H3 FOLDED>AJAX</H3> + <DL><p> + <DT><A HREF="http://www.macaddict.com/forums/post/1257606">MacAddict Forums / Couloir slideshow - play feature?</A> + <DT><A HREF="http://www.couloir.org/js_slideshow/#3">Couloir.org: Resizing, Fading Slideshow Demo (November 28, 2005)</A> + <DT><A HREF="http://www.maxkiesler.com/index.php/weblog/comments/ajax_slideshow/">Max Kiesler - AJAX Slideshow AJAX Slideshow</A> + <DT><A HREF="http://www.htmldog.com/ptg/archives/000050.php#comments">Son of Suckerfish Dropdowns - HTML Dog Blog - HTML Dog</A> + <DT><A HREF="http://alistapart.com/articles/dropdowns/">A List Apart: Articles: Suckerfish Dropdowns</A> + <DT><A HREF="http://developer.yahoo.com/yui/">Yahoo! UI Library</A> + <DT><A HREF="http://www.flickrshow.com/">flickrshow › Simple javascript slideshows for Flickr</A> + <DT><A HREF="http://www.lawrence.com/jobs/wol/">good js calender</A> + <DT><A HREF="http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/">Upload multiple files with a single file element » StickBlog</A> + </DL><p> + <DT><H3 FOLDED>flash</H3> + <DL><p> + <DT><H3 FOLDED>mm</H3> + <DL><p> + <DT><A HREF="http://www.macromedia.com/cfusion/tipsubmission/subtopic_browse.cfm?topicid=4&subtopicid=70">Macromedia - DevNet : Tips Library</A> + <DT><A HREF="http://www.macromedia.com/support/flash/ts/documents/flashvars.htm">Macromedia - Flash TechNotes Using FlashVars to pass variables to a SWF</A> + <DT><A HREF="http://www.macromedia.com/devnet/mx/dreamweaver/articles/php_macintosh.html">Macromedia - Developer Center : Setting up PHP, MySQL and Apache on Macintosh OS X</A> + <DT><A HREF="http://www.macromedia.com/support/flash/ts/documents/sharedfonts.htm">Flash TechNotes: Using font symbols</A> + <DT><A HREF="http://www.macromedia.com/devnet/mx/flash/actionscript.html">as 2.0</A> + </DL><p> + <DT><H3 FOLDED>old stuff</H3> + <DL><p> + <DT><A HREF="http://www.actionscript.org/tutorials/intermediate/Control_of_Text_Size/index.shtml">text size change</A> + <DT><A HREF="http://actionscript-toolbox.com/samplemx_loadvars.php">LoadVars object for Flash MX-server communications (actionscript-toolbox.com)</A> + <DT><A HREF="http://www.macromedia.com/support/flash/publishexport/stream_optimize/">Flash - file optimization</A> + <DT><A HREF="http://www.digitalmediadesigner.com/2002/12_dec/tutorials/illustratorswf0212164.htm">Flash Animations in Adobe Illustrator</A> + <DT><A HREF="http://www.flashkit.com/tutorials/Special_Effects/Real_Tim-Boban_Kl-144/index.php">Flash Kit: magnifying glass</A> + <DT><A HREF="http://www.flashkit.com/tutorials/Special_Effects/Old_Scra-Black-754/index.php">Flash Kit:old movie effect</A> + <DT><A HREF="http://www.quasimondo.com/archives/000165.php">Flash Supported HTML Tags</A> + <DT><A HREF="http://members.lycos.co.uk/netclub22/FlashTutorials/actionScriptBible/Text/05TextUse.htm">Text Use in FlashMX</A> + </DL><p> + <DT><A HREF="http://www.xfactorstudio.com/Actionscript/AS2/XPath/">XPath AS</A> + <DT><A HREF="http://www.w3schools.com/xpath/xpath_syntax.asp">XPath Syntax</A> + <DT><A HREF="http://www.flashcomponents.net/">:: flashcomponents.net ::</A> + <DT><A HREF="http://www.flashcomponent.com/components.php">FlashComponent.com -</A> + <DT><A HREF="http://www.actionscript.org/tutorials.shtml">Actionscript.org tutorials</A> + <DT><A HREF="http://www.sitepoint.com/subcat/95/flashcircle">Flash tutorials</A> + <DT><A HREF="http://www.ultrashock.com/ff.htm?http://www.ultrashock.com/tutorials/flashmx/moose1.php">Ultrashock.com</A> + <DT><A HREF="http://proto.layer51.com/d.aspx?f=804">Prototype ¬ Detail (BETA)</A> + <DT><A HREF="http://broadcast.artificialcolors.com/stories/2003/02/01/xmlForUiDescriptionInFlashMx.html">XML for UI Description</A> + <DT><A HREF="http://www.actionscript.org/tutorials/advanced/trigonometry_and_flash/index.shtml">trig and 3D circles</A> + <DT><A HREF="http://www.flashkit.com/tutorials/Special_Effects/LED_spec-Raymond_-843/index.php">Flash Kit: random spectrum analyiszer</A> + <DT><A HREF="http://www.flashkit.com/tutorials/Special_Effects/text_scr-Ryan_Nie-783/index.php">scrolling fading text</A> + <DT><A HREF="http://www.jurjans.lv/flash/RegExp.html">RegExp class for Flash</A> + <DT><A HREF="http://chattyfig.figleaf.com/search.php">search flashcoders arc</A> + <DT><A HREF="http://hacks.oreilly.com/pub/h/340">javascript frameset hack mightbe useful for flash</A> + <DT><A HREF="http://www.img2swf.com/">About img2swf</A> + <DT><A HREF="http://www.arlduc.org/VERT/mingHowTo.html">Ming on Mac OS X</A> + <DT><A HREF="http://www.macromedia.com/support/flash/ts/documents/flashfonts.htm#devicelimit">Flash Fonts macro technot</A> + <DT><A HREF="http://proto.layer51.com/d.aspx?f=804">tween Functions</A> + <DT><A HREF="http://www.simonf.com/flap/code.html">FLAP - Flash Remoting in Perl</A> + <DT><A HREF="http://www.macromedia.com/devnet/mx/flash/articles/amfphp_05.html">Macromedia - DevNet : Connecting Macromedia Flash and PHP, Page 5</A> + <DT><A HREF="http://www.flash-db.com./">Dynamic Flash database with PHP, ASP, CFM remoting and web services community</A> + <DT><A HREF="http://www.moock.org/blog/archives/000044.html">moockblog: a taste of actionscript 2.0</A> + <DT><A HREF="http://www.nwebb.co.uk/nw_htmlsite/?page=tutorials">nwebb</A> + <DT><A HREF="http://www.purephotoshop.com/article/95">flash xml menu</A> + <DT><A HREF="http://builder.com.com/5100-6371-5061241.html">shared objects</A> + <DT><A HREF="http://www.miniml.com/v5/index.htm">miniml | fonts</A> + <DT><A HREF="http://www.kirupa.com/developer/mx2004/contextmenu.htm">kirupa.com - Context Menus in Flash MX 2004</A> + <DT><A HREF="http://www.brendandawes.com/headshop/">brendandawes.com / headshop</A> + <DT><A HREF="http://www.sharedfonts.com/eng/index.html#demo">Shared Fonts Manager</A> + <DT><A HREF="http://www.peterjoel.com/Samples/?go=logoskew">peterjoel - open source samples for Flash 5/MX</A> + <DT><A HREF="http://www.mustardlab.com/developer/flash/jscommunication/">MustardLab.Developer.Flash.JavascriptToFlashCommunication</A> + <DT><A HREF="http://www.actionscripthero.com/adventures/viewforum.php?f=5&sid=17404597627585116127b03dfa2eb6c7">ActionScript Hero Adventures</A> + <DT><A HREF="http://www.flashgoddess.com/html/resources.html">Flash Goddess :: Resources</A> + <DT><A HREF="http://www.flashstar.de/tutlist/index.php3?bereich=fsmxcreate">FlashStar Portal - Links</A> + <DT><A HREF="http://www.sharedfonts.com/eng/help.html">Shared Fonts Manager</A> + <DT><A HREF="http://www.miniml.com/v5/index.htm">miniml | fonts</A> + <DT><A HREF="http://www16.brinkster.com/gazb/ming/index.html">gazb : ming cvs test files</A> + <DT><A HREF="http://www.macromedia.com/devnet/mx/flash/articles/flash_xmlphp_03.html">Macromedia - Developer Center : Business Directory Sample: Flash MX 2004 Professional with PHP and MySQL</A> + <DT><A HREF="http://flashloaded.com/ultimate.php">Flash Scroller - Flashloaded - ultimateScroller</A> + <DT><A HREF="http://www.flashloaded.com/userguides/ultimatescroller/">Flashloaded - ultimateScroller Userguide</A> + <DT><A HREF="http://atomicmedia.net/fontcartkare-mac.php">Atomic Media</A> + <DT><A HREF="http://www.search-this.com/website_promotion/ASP.NET_redirection.aspx">Optimizing Flash with ASP.NET Auto-redirection</A> + <DT><A HREF="http://www.actionscript.org/tutorials/advanced/Tween-Easing_Classes_Documented/index.shtml">easing tut</A> + <DT><A HREF="http://www.fudgefonts.com/info.html">Fudge - Font Putty</A> + <DT><A HREF="http://www.illogicz.com/">::: illogicz.com :::</A> + <DT><A HREF="http://www.macromedia.com/devnet/mx/flash/articles/skinning_2004.html">Skinning the Flash MX 2004 Components</A> + <DT><A HREF="http://www.macromedia.com/support/flash/ts/documents/sharedfonts.htm">shared fonts info</A> + <DT><A HREF="http://www.gskinner.com/blog/archives/000104.html#more">Internal Preloading in Flash MX 2004</A> + <DT><A HREF="http://www.person13.com/articles/components/creatingcomponents.html">Creating Components</A> + <DT><A HREF="http://www.communitymx.com/content/article.cfm?page=1&cid=52C8C">Understanding Try/Catch in ActionScript</A> + <DT><A HREF="http://www.macromedia.com/support/flash/ts/documents/uber_detection.htm">Macromedia -FlashTechNotes:How to detect the presence of the Flash Player</A> + <DT><A HREF="http://www.webqs.com/experiment.php?id=10">webqs.com :: experiment - Search Engines and Flash</A> + <DT><A HREF="http://www.impossibilities.com/blog/flashvarstip.php">Flash MX Tip Submission</A> + <DT><A HREF="http://www.dafont.com/en/bitmap.php?page=2">bitmap fonts</A> + <DT><A HREF="http://www.mustardlab.com/developer/flash/objectresize/">MustardLab.Developer.Flash.ResizeFlash</A> + <DT><A HREF="http://www.blogbox.com/photoblox.php">Blogbox.com</A> + <DT><A HREF="http://www.sephiroth.it/phpwiki/index.php/Step%20by%20step%20library%20installation">FlashPhpWiki - Step by step library installation</A> + <DT><A HREF="http://www.person13.com/articles/proxy/Proxy.htm">Proxy</A> + <DT><A HREF="http://www.macromedia.com/devnet/mx/flash/articles/skinning_2004.html">Macromedia - Developer Center : Skinning the Flash MX 2004 Components</A> + <DT><A HREF="http://www.v2components.com/">V2Components.com :: V2CSplitterPane</A> + <DT><A HREF="http://www.actionscript-toolbox.com/index.php">ActionScript Toolbox: Resources, Code Samples, Tutorials for Flash MX and Flash 5 Actionscript</A> + <DT><A HREF="http://moock.org/asdg/technotes/skinningV2ProgressBar/">moock.org>> asdg>> technotes>> skinning the V2 ProgressBar component</A> + <DT><A HREF="http://www.communitymx.com/content/article.cfm?page=1&cid=243EE">Automating sIFR Font SWF Creation With Flash MX 2004 and JSFL</A> + <DT><A HREF="http://www.blogbox.com/photoblox.php">Blogbox.com</A> + <DT><A HREF="http://www.larsdahlstrom.se/">FOTOGRAF LARS DAHLSTRÖM</A> + <DT><A HREF="http://www.ambience.sk/flash-valid.htm">Valid Flash XHTML web standards webstandards Flash validates at Ambience.sk</A> + <DT><A HREF="http://blog.deconcept.com/2004/10/14/web-standards-compliant-javascript-flash-detect-and-embed/">deconcept › Web standards compliant Javascript Flash detect and embed</A> + <DT><A HREF="http://www.alistapart.com/articles/flashsatay/">Flash Satay: Embedding Flash While Supporting Standards: A List Apart</A> + <DT><A HREF="http://wahlers.com.br/claus/blog/?page_id=18">Claus Wahlers » w3blog » SEFFS: To Flash Or Not To Flash</A> + <DT><A HREF="http://wiki.novemberborn.net/sifr/show/How+to+use">How to use in sIFR Documentation and FAQ</A> + <DT><A HREF="http://www.zappos.com/n/p/dp/4775480/c/21641.html">etnies Arto - etnies Men's Collection (Olive/Red)</A> + <DT><A HREF="http://chattyfig.figleaf.com/mailman/htdig/flashcoders/2005-March/133631.html">[Flashcoders] Convert Color</A> + <DT><A HREF="http://www.macromedia.com/devnet/mx/flash/articles/creating_events.html">eventListeners</A> + <DT><A HREF="https://store.beamjive.com/demos.php">Beam Jive Consulting | Webstore</A> + <DT><A HREF="http://www.yofla.com/flash/3d-rotate/">3D Object Rotate: Flash VR Tool</A> + <DT><A HREF="http://www.flashmove.com/forum/showthread.php?t=12891">FlashMove Forum - Skinning 2004 Components : Tutorial</A> + </DL><p> + <DT><H3 FOLDED>sites</H3> + <DL><p> + <DT><A HREF="http://www.copyscape.com/">Copyscape - Website Plagiarism Search - Web Site Content Copyright Protection</A> + <DT><A HREF="http://www.oxygen-productions.com/">Flash Presentations</A> + <DT><A HREF="http://hotwired.lycos.com/webmonkey/">Webmonkey</A> + <DT><A HREF="http://genevieveparis.com/new/thankyou.html">GENEVIEVEPARIS.COM</A> + <DT><A HREF="http://www.briantaylor.com/websitecontract.htm">Website Design Contract Form</A> + <DT><A HREF="http://www.typorganism.com/">...t.y.p.o.r.g.a.n.i.s.m...</A> + <DT><A HREF="http://www.phorensic.com/phorensic.htm">//:::. phorensic .:::\\</A> + <DT><A HREF="http://www.coolhomepages.com/">Best Web Designs</A> + <DT><A HREF="http://www.wddg.com/v.X.html">- WDDG -</A> + <DT><A HREF="http://www.seoleuna.com/2nd/menu/menuframe.htm">Welcome to Glance by Seoleuna.com</A> + <DT><A HREF="http://www.verne.be/">verne photography - online portfolio</A> + <DT><A HREF="http://www.nadavkander.com/#">Nadav Kander</A> + <DT><A HREF="http://www.eskedahl.se/#">||| MEGD |||</A> + <DT><A HREF="http://www.1000dreams.com/photography/details/">: : The beauty of Details : :</A> + <DT><A HREF="http://www.flazoom.com/">Flazoom.com</A> + <DT><A HREF="http://www.group94.com/">group94 /</A> + <DT><A HREF="https://www.myfonts.com/members/home">Login : MyFonts.com</A> + <DT><A HREF="http://actionscript-toolbox.com/index.php">ActionScript Toolbox:</A> + <DT><A HREF="http://a.wholelottanothing.org/features.blah/entry/007162">A Whole Lotta Features</A> + <DT><A HREF="http://63.144.246.231/information/archives/000062.html">Samuel Wan : News, Information and Resources: Flash-based Blog: Read Me!</A> + <DT><A HREF="http://www.moock.org/asdg/news/">moock.org>> asdg>> news</A> + <DT><A HREF="http://flash.granato.org/archives/cat_3rd_party_flash.php">Granato® {Flash MX Blog}: 3rd Party Flash Archives</A> + <DT><A HREF="http://www.marc-klein.com/site/index.html">Marc Klein</A> + <DT><A HREF="http://www.trollback.com/">Trollbäck & Company</A> + <DT><A HREF="http://www.noomeejah.com/">Noomeejah - new media development</A> + <DT><A HREF="http://www.ziggystudio.com/v1/main.htm">Welcome to Ziggy Studio V1</A> + <DT><A HREF="http://www.quasimondo.com/">Quasimondo - Mario Klingemann's Flash Blog</A> + <DT><A HREF="http://www.haiku.alienmelon.com/">Haiku Forge - Moments Lost in Time</A> + <DT><A HREF="http://www.atmosgrafik.com/">... [atmosphere.grafik] ...</A> + <DT><A HREF="http://www.designchapel.com/">The DesignChapel</A> + <DT><A HREF="http://www.417north.com/v7/">417north - The Letterbox Edition™</A> + <DT><A HREF="http://www.imageafter.com/">Image * After</A> + <DT><A HREF="http://www.n-gised.com/">- ANTONIO CARUSONE PHOTOGRAPHY -</A> + <DT><A HREF="http://www.halleck.com/index_nn.html">Halleck</A> + <DT><A HREF="http://ihearithurts.com/archive/ihih/v4/ihih.html">I Hear It Hurts</A> + <DT><A HREF="http://www.internetisshit.org/index.html">The internet is shit</A> + <DT><A HREF="http://www.domanistudios.com/">Domani Studios | ©2004</A> + <DT><A HREF="http://www.basseq.com/index.php">Basseq • portfolio and hobby of John Whittet</A> + <DT><A HREF="http://www.lousco.com/">Lousco Labradors</A> + <DT><A HREF="http://elmcottageballarat.com/">Elm Cottage Ballarat Accommodation - Home</A> + <DT><A HREF="http://www.paumanokreview.com/index.php?page=archive">The Paumanok Review :: Archive</A> + <DT><A HREF="http://www.cssbeauty.com/archives/category/personal/index.php?page=11">CSS Beauty | Category Archives</A> + </DL><p> + <DT><H3 FOLDED>html</H3> + <DL><p> + <DT><A HREF="http://hotwired.lycos.com/webmonkey/98/03/index2a.html#">Thau's JavaScript Tutorial</A> + <DT><A HREF="http://searchenginewatch.com/sereport/03/04-rss-making.html">Making An RSS Feed</A> + <DT><A HREF="http://hotwired.lycos.com/webmonkey/html/97/25/index2a_page2.html?tw=authoring">Introduction to CSS Positioning</A> + <DT><A HREF="http://www.webreference.com/perl/tutorial/8/">Using RSS News Feeds </A> + <DT><A HREF="http://developer.apple.com/internet/webservices/soapphp.html">Using SOAP with PHP</A> + <DT><A HREF="http://blogspace.com/rss/">Latest RSS News (RSS Info)</A> + <DT><A HREF="http://backend.userland.com/rss">RSS 2.0</A> + <DT><A HREF="http://javascript.internet.com/">JavaScript Source:</A> + <DT><A HREF="http://www.htmlhelp.com/reference/css/box/margin-right.html">Right Margin</A> + <DT><A HREF="http://www.movabletype.org/docs/mtinstall.html#using%20cgiwrap%20or%20suexec">mtinstall - Installing Movable Type</A> + <DT><A HREF="http://www.w3schools.com/html/html_ref_urlencode.asp">URL-encoding Reference</A> + <DT><A HREF="http://bumppo.net/projects/amputator/">Amputator: an ampersand-encoding plugin for Movable Type</A> + <DT><A HREF="http://daringfireball.net/projects/smartypants/">Daring Fireball Projects: SmartyPants</A> + <DT><A HREF="http://brainstormsandraves.com/archives/2003/07/15/creating_an_entire_site_with_movable_type/">Creating an Entire Site with Movable Type - Brainstorms and Raves-</A> + <DT><A HREF="http://www.stopdesign.com/log/2003/07/11/adaptive_paths_mt_setup.html">Stopdesign | Adaptive Path's MT Setup</A> + <DT><A HREF="http://www.healyourchurchwebsite.com/archives/000913.shtml">Heal Your Church Web Site: Beyond the Blog and other links on making MovableType a Content Managment System</A> + <DT><A HREF="http://www.healyourchurchwebsite.com/archives/000864.shtml">Heal Your Church Web Site: A little advice for a Friend</A> + <DT><A HREF="http://bradchoate.com/weblog/2002/11/06/movable-type-is-a-cms">Brad Choate: Movable Type is a CMS</A> + <DT><A HREF="http://bradchoate.com/weblog/2003/07/15/movable-type">Brad Choate: Doing your whole site with MT</A> + <DT><A HREF="http://larsholst.info/blog/">mono</A> + <DT><A HREF="http://gtmcknight.com/">Taylor McKnight - //gtmcknight</A> + <DT><A HREF="http://www.das-netzbuch.de/">das Netzbuch</A> + <DT><A HREF="http://www.scriptygoddess.com/archives/004014.php#004014">scriptygoddess</A> + <DT><A HREF="http://www.elise.com/mt/">Learning Movable Type</A> + <DT><A HREF="http://www.elise.com/mt/archives/000451html_or_php.php">Learning Movable Type: HTML or PHP?</A> + <DT><A HREF="http://cssbeauty.com/">CssBeauty | Css Design Showcase</A> + <DT><A HREF="http://www.elise.com/mt/archives/000246concerning_spam.php">Learning Movable Type: Concerning Spam</A> + <DT><A HREF="http://www.squidfingers.com/patterns/?type=extras&id=18">squidfingers / patterns</A> + <DT><A HREF="http://validator.w3.org/">Validation Results</A> + <DT><A HREF="http://validator.w3.org/detailed.html">The W3C Markup Validation Service</A> + <DT><A HREF="http://www.movabletype.org/docs/mt26.html">mt26 - Guide to the New Features in Movable Type 2.6</A> + <DT><A HREF="http://hotwired.lycos.com/webmonkey/00/09/index2a_page3.html?tw=e-business">Adding Search to Your Site</A> + <DT><A HREF="http://sidesh0w.com/">sidesh0w.com</A> + <DT><A HREF="http://fawny.org/blog/2003/07/#workflow-h1">Le «blog personnel» de Joe Clark: July 2003</A> + <DT><A HREF="http://sidesh0w.com/_share/css/prime.css">http://sidesh0w.com/_share/css/prime.css</A> + <DT><A HREF="http://www.thoughtanomalies.com/archives/2004/06/20/fluid_shadows/">thought anomalies. archives. fluid shadows.</A> + <DT><A HREF="http://www.alistapart.com/articles/fauxcolumns/">Faux Columns: A List Apart</A> + <DT><A HREF="http://www.sideshowlive.com/">Sideshow</A> + <DT><A HREF="http://www.w3schools.com/tags/tag_form.asp">The form tag</A> + <DT><A HREF="http://www.movabletype.org/docs/mtmanual_tags.html">TEMPLATE TAGS</A> + <DT><A HREF="http://www.brandient.com/en/">Brandient : brand strategy & design</A> + <DT><A HREF="http://www.innocence-movie.jp/">イノセンス</A> + <DT><A HREF="http://www.stopdesign.com/log/2003/07/16/rebuilding_a_portfolio.html#comments">Stopdesign | Rebuilding a Portfolio</A> + <DT><A HREF="http://www.shauninman.com/mentary/">ShaunInman.com // Commentary</A> + <DT><A HREF="http://www.e-lusion.com/design/menu/">Free Menu Designs - e-lusion.com</A> + <DT><A HREF="http://www.mezzoblue.com/archives/2004/09/16/minheight_fi/index.php">mezzoblue § min-height: fixed;</A> + <DT><A HREF="http://zovirl.com/2003/software/blosxom/">Zovirl Industries</A> + <DT><A HREF="http://www.theideabasket.com/modules/news/article.php?storyid=26">The Idea Basket - News</A> + <DT><A HREF="http://zovirl.com/2003/software/blosxom/">Zovirl Industries</A> + <DT><A HREF="http://www.bstpierre.org/Projects/sublog/sublog">http://www.bstpierre.org/Projects/sublog/sublog</A> + <DT><A HREF="http://homepage.mac.com/barijaona/download/static_file">http://homepage.mac.com/barijaona/download/static_file</A> + <DT><A HREF="http://www.robotstxt.org/">robotstxt.org</A> + <DT><A HREF="http://scribbling.net/help_the_googlebot_understand_your_web_site">Help the Googlebot understand your web site [Scribbling.net]</A> + <DT><A HREF="http://usabletype.com/articles/2004/how-and-when-to-use-sifr/">How and when to use sIFR »Articles » Usable Type: Typography for the world wide web</A> + <DT><A HREF="http://www.csszengarden.com/?cssfile=/106/106.css&page=4">css Zen Garden: The Beauty in CSS Design</A> + <DT><A HREF="http://www.csszengarden.com/050/zengarden.jpg">zengarden.jpg 740x330 pixels</A> + <DT><A HREF="http://www.csszengarden.com/?cssfile=/010/010.css&page=16">css Zen Garden: The Beauty in CSS Design</A> + <DT><A HREF="http://www.couloir.org/js_slideshow/#1">Couloir.org: Resizing, Fading Slideshow Demo</A> + <DT><A HREF="http://www.typeworks21.com/">TypeWorks™</A> + <DT><A HREF="http://www.stopdesign.com/examples/">Stopdesign | Examples</A> + <DT><A HREF="http://dmoz.org/Computers/Data_Formats/Style_Sheets/CSS/Examples/Layout/">Open Directory - Computers: Data Formats: Style Sheets: CSS: Examples: Layout</A> + <DT><A HREF="http://www.456bereastreet.com/lab/developing_with_web_standards/csslayout/2-col/finished.html">Simple 2 column CSS layout, final layout</A> + <DT><A HREF="http://www.mezzoblue.com/archives/2004/09/16/minheight_fi/">mezzoblue § min-height: fixed;</A> + <DT><A HREF="http://centricle.com/ref/css/filters/">centricle : css filters (css hacks)</A> + <DT><A HREF="http://glish.com/css/">glish.com : CSS layout techniques</A> + <DT><A HREF="http://www.nytimes.com/2005/05/29/opinion/29brooks.html?ex=1275019200&en=9970f3282b0b87cc&ei=5090&partner=rssuserland&emc=rss">Karl's New Manifesto - New York Times</A> + <DT><A HREF="http://www.456bereastreet.com/archive/200505/transparent_custom_corners_and_borders/">Transparent custom corners and borders | 456 Berea Street</A> + <DT><A HREF="http://www.javascriptkit.com/script/script2/contenttabs.shtml">Cut & Paste Content Tabs script</A> + <DT><A HREF="http://www.sixapart.com/pronet/plugins/">Six Apart ProNet - Plugin Directory</A> + <DT><A HREF="http://daringfireball.net/2005/09/bbedit_css_checker">Daring Fireball: BBEdit CSS Syntax Checker 1.0</A> + </DL><p> + <DT><H3 FOLDED>MySQL</H3> + <DL><p> + <DT><A HREF="http://www.mysql.com/">MySQL: The World's Most Popular Open Source Database</A> + </DL><p> + <DT><H3 FOLDED>perl</H3> + <DL><p> + <DT><A HREF="http://www.perl.com/">Perl.com: The Source for Perl -- perl development, perl conferences</A> + <DT><A HREF="http://regexlib.com/">Regular Expression Library</A> + <DT><A HREF="http://www.karlnelson.net/nestedlists/">Expanding Nested Lists</A> + <DT><A HREF="http://www.w3schools.com/css/css_examples.asp">CSS Examples</A> + <DT><A HREF="http://www.macdevcenter.com/pub/a/mac/2004/11/09/weblog.html">MacDevCenter.com: Build Your Own Blogging Application, Part 1</A> + <DT><A HREF="http://www.stanford.edu/~epop/igal/">iGal: online image gallery generator</A> + <DT><A HREF="http://vergil.chemistry.gatech.edu/resources/programming/perl-tutorial/regex.html">Perl Programming Tutorial: Regular Expressions and String Manipulation</A> + <DT><A HREF="http://www.regular-expressions.info/perl.html">Perl Text Patterns for Search and Replace</A> + <DT><A HREF="http://members.fortunecity.com/scs245/245wisse/www.scs.carleton.ca/_weiss/courses/205/slides/Perl-3/lecture.html">http://members.fortunecity.com/scs245/245wisse/www.scs.carleton.ca/_weiss/courses/205/slides/Perl-3/lecture.html</A> + <DT><A HREF="http://www.infocopter.com/perl_corner/perlre.htm">Regular Expressions: Perl Scripts</A> + <DT><A HREF="http://www.sorgonet.com/linux/regular-expressions/">Regular Expressions (Regex) Tutorial</A> + <DT><A HREF="http://perldoc.perl.org/perlop.html#Regexp-Quote-Like-Operators">perlop - perldoc.perl.org</A> + <DT><A HREF="http://marvin.ibest.uidaho.edu/~heckendo/CS445/regex.html">A Regular Expression Primer</A> + <DT><A HREF="http://faq.perl.org/perlfaq6.html#How_can_I_hope_to_us">perlfaq6</A> + </DL><p> + <DT><H3 FOLDED>rss</H3> + <DL><p> + <DT><A HREF="http://www.webreference.com/authoring/languages/xml/rss/intro/3.html">Introduction to RSS: WebRef and the Future of RSS - WebReference.com</A> + <DT><A HREF="http://www.newarchitectmag.com/archives/2000/02/eisenzopf/">New Architect: Features</A> + <DT><A HREF="http://www.xml.com/pub/a/2002/12/18/dive-into-xml.html?page=2">XML.com: What is RSS? [Dec. 18, 2002]</A> + </DL><p> + <DT><H3 FOLDED>Design Theory</H3> + <DL><p> + <DT><A HREF="http://members.tripod.com/vismath/kappraff/kap3.htm">Repetition of Ratios</A> + <DT><A HREF="http://home.att.net/~vmueller/prop/theo.html">Proportions: Golden Section</A> + <DT><A HREF="http://members.tripod.com/vismath/kappraff/kap7.htm">Root 3 System</A> + <DT><A HREF="http://www.jasonsantamaria.com/archive/2004/05/24/grey_box_method.php">Jason Santa Maria | Grey Box Methodology</A> + <DT><A HREF="http://porn.tblog.com/">Porn</A> + <DT><A HREF="http://www.pentacom.jp/soft/ex/font/edit.html">FontEditor BitfontMaker</A> + <DT><A HREF="http://www.uxmag.com/design/86/the-layers-of-design-the-style-layer">UX Magazine - The Layers of Design: the style layer</A> + <DT><A HREF="http://fenopy.com/index.php?keyword=oneida&x=0&y=0&select=c_1">Fenopy : Search results for : oneida</A> + <DT><A HREF="http://soundpedia.com/discover">SoundPedia : Music Community</A> + <DT><A HREF="http://www.cssremix.com/page/2/">CSS Remix: CSS-Based Website Gallery</A> + <DT><A HREF="http://www.cssbloom.com/page/47/">CSS Bloom - Cool CSS Gallery, CSS Examples, Website Showcase and Design Inspiration, CSS Design, CSS Designs, Best Looking Blogs, CSS Tricks, Blog's and Online Portfolio's Designs, css & xhtml</A> + <DT><A HREF="http://www.spine.ro/">Web studio : Spine ™</A> + <DT><A HREF="http://www.peopleofourtime.com/">People Of Our Time</A> + <DT><A HREF="http://www.i-marco.nl/weblog/">The Net is Dead - 100% gradient free!</A> + <DT><A HREF="http://www.casasastre.com/">Casa Sastre, Apartamentos de turismo rural</A> + <DT><A HREF="http://tuscany.cssmastery.com/">Tuscany Luxury Resorts</A> + <DT><A HREF="http://www.ashwebstudio.com/resources/7-days.html">New website for San Diego businesses in just 7 days</A> + <DT><A HREF="http://www.alvit.de/blog/article/20-best-license-free-official-fonts">Vitaly Friedman's Notebook: 25 Best Free Quality Fonts</A> + </DL><p> + <DT><A HREF="http://www.ace.net.nz/tech/TechFileFormat.html">file formats</A> + <DT><A HREF="http://www.stevenhargrove.com/redirect-web-pages/">How to redirect a web page, the smart way</A> + <DT><A HREF="http://fckeditor.wikiwikiweb.de/Developer's_Guide/Participating/Server_Side_Integration#Samples">Developer's Guide/Participating/Server Side Integration - FCKeditor Wiki</A> + <DT><A HREF="http://source.mihelac.org/x/simple_parser/tinymce.php">Simple Parser TinyMCE Example</A> + </DL><p> + <DT><H3 FOLDED>Freelance Job Info</H3> + <DL><p> + <DT><A HREF="http://www.awpwriter.org/joblist/">AWP Interim Job List</A> + <DT><A HREF="http://www.journalismjobs.com/">www.journalismjobs.com</A> + <DT><A HREF="http://www.freelancewriting.com/forumdir/fjb/index.html">PAYING - Freelance Writing Opportunities</A> + <DT><A HREF="http://www.inscriptionsmagazine.com/Jobs.html">Inscriptions: </A> + <DT><A HREF="http://www.sunoasis.com/jobpostings.html">SUNOASIS JOBS for Writers, Editors, and Copywriters</A> + <DT><A HREF="http://www.writersweekly.com/markets/122602-04.html">Markets and Freelance Writing Jobs - 12-26-02</A> + <DT><A HREF="http://www.journalismjobs.com/Search_Jobs_All.cfm">JournalismJobs.com - Job Listings</A> + <DT><A HREF="http://atlanta.craigslist.org/atl/sls/7177448.html">Creative Maximizer</A> + <DT><A HREF="http://writerswrite.com/messages/tech.html">Writers Write Technical Writing Message Board</A> + <DT><A HREF="http://www.mamohanraj.com/Writing/porn.html">Porn/Erotica Magazine Resource List for Writers</A> + <DT><A HREF="http://www.nwu.org//hotline/hotsurv.htm">Writer's Rates</A> + <DT><A HREF="http://www.comteck.com/~tanuki/links/jobs.html">Freelance Mailing List: Links/Jobs</A> + <DT><A HREF="http://www.writerswrite.com/journal/dec97/gak3.htm"> Job Online *Writers Write -- The IWJ*</A> + <DT><A HREF="http://www.journalism.berkeley.edu/jobs/">Graduate School of Journalism -- Jobs Database</A> + <DT><A HREF="http://www.writerswrite.com/cgi-bin/job.pl?job=1910">The Write Jobs: Job Listings</A> + <DT><A HREF="http://www.mymac.com/about/reviewinfo.shtml">MyMac.com: About</A> + <DT><A HREF="http://www.constant-content.com/">Constant Content - Web Site Content, Articles, Tutorials, Reviews and other Content</A> + <DT><A HREF="http://www.backpacker.com/guidelines/0,3132,,00.html">Backpacker Magazine - Contributor's Guidelines</A> + <DT><A HREF="http://www.thebackpacker.com/articles/addart.php">thebackpacker.com - articles - submit an article</A> + <DT><A HREF="http://www.sidejobtrack.com/index.php?CALLBACK=%2Funo%2Findex.php">Side Job Track</A> + <DT><A HREF="http://www.saltonstall.org/fellowships/guidelines.php">Saltonstall Summer Fellowship Guidelines</A> + <DT><A HREF="http://www.nypl.org/research/chss/scholars/fellowship.html">NYPL, Cullman Center for Scholars and Writers</A> + <DT><A HREF="http://www.macdowellcolony.org/indexalt.html">The MacDowell Colony</A> + <DT><A HREF="http://www.jentelarts.org/">Jentel Artist Residency Program</A> + <DT><A HREF="http://www.i-park.org/">I-PARK</A> + <DT><A HREF="http://www.hiddenriverarts.org/articles/article.php?3">Hidden River Arts | Residencies</A> + <DT><A HREF="http://www.fawc.org/">Fine Arts Work Center in Provincetown</A> + <DT><A HREF="http://www.nypl.org/research/chss/scholars/fellowship.html">NYPL, Cullman Center for Scholars and Writers</A> + <DT><A HREF="http://www.saltonstall.org/fellowships/guidelines.php">Saltonstall Summer Fellowship Guidelines</A> + <DT><A HREF="http://www.writtenroad.com/archives/cat_market_leads.shtml">Market Leads Archives - written road blog</A> + <DT><A HREF="http://boards.bootsnall.com/eve/ubb.x?a=frm&f=979095755">Travel Writing - Forum BootsnAll Travel Network</A> + <DT><A HREF="http://www.electricpenguin.com/ohi/inkygirl/">Inkygirl - A weblog for writers who work from home</A> + <DT><A HREF="http://www.fundsforwriters.com/submissions.htm">submissions</A> + <DT><A HREF="http://www.mediabistro.com/content/archives/howtopitch.asp">mediabistro.com: Content: How to Pitch</A> + <DT><A HREF="http://programmermeetdesigner.com/listing/view/172">Listing 172 - Designer looking for Programmer - Programmer Meet Designer - where web developers find web designers</A> + <DT><A HREF="http://schaver.com/websites.htm">The Most Useful Web Sites for Reporters</A> + </DL><p> + <DT><H3 FOLDED>Recipes</H3> + <DL><p> + <DT><A HREF="http://www.italianmade.com/recipes/recipe71.cfm">ItalianMade.com - RECIPES: AGRODOLCE</A> + <DT><A HREF="http://www.paoloslacucina.com/archive.html">Recipe Archives</A> + <DT><A HREF="http://foodandwine.com/">Food & Wine</A> + <DT><A HREF="http://eat.epicurious.com/">EPICURIOUS</A> + </DL><p> + <DT><H3 FOLDED>Blogs</H3> + <DL><p> + <DT><A HREF="http://www.snackfight.com/">snackfight</A> + <DT><A HREF="http://www.angelfire.com/ca2/agentofdiscord/contents.html">agent</A> + <DT><A HREF="http://www.theonionavclub.com/">The Onion A.V. Club</A> + <DT><A HREF="http://www.theonion.com/">The Onion | America's Finest News Sourceª</A> + <DT><A HREF="http://www.mcsweeneys.net/">mcsweeneys</A> + <DT><A HREF="http://www.skankypossum.com/">skankypossum</A> + <DT><A HREF="http://www.ubu.com/">www.ubu.com</A> + <DT><A HREF="http://ub3.homepagetools.com/Dashboard/">Dashboard</A> + <DT><A HREF="http://www.wordriot.org/">wordriot.org</A> + <DT><A HREF="http://www.pigironmalt.com/issue.htm">pigironmalt</A> + <DT><A HREF="http://factoryschool.org/content/sounds/poetry/frontenac.html">Poetry and Literature</A> + <DT><A HREF="http://www.soundtoys.net/a/journal/index.html">S O U N D T O Y S . N E T</A> + <DT><A HREF="http://www.zefrank.com/">ze's page</A> + <DT><A HREF="http://openguides.org/">OpenGuides - Home</A> + <DT><A HREF="http://www.chompy.net/blogs/jacob/">remake/remodel</A> + <DT><A HREF="http://www.mariesworldtour.com/">Marie's World Tour</A> + <DT><A HREF="http://agentofdiscord.blogspot.com/">everything or nothing at all.</A> + </DL><p> + <DT><H3 FOLDED>Travel</H3> + <DL><p> + <DT><A HREF="http://nycsubway.eyebeamresearch.org/">NYC Subway Flash Overlay for Google Maps : Using VGMap by Eyebeam R&D</A> + <DT><A HREF="http://www.workonaboat.com/">Work on a Boat | Yacht Jobs, Crew Houses, and Cruise Ship Jobs</A> + <DT><A HREF="http://www.workonaboat.com/work-on-a-yacht">Work on a Yacht | Work on a Boat</A> + <DT><A HREF="http://www.boatcrew.com/">BoatCrew.com - Oceans of Opportunity</A> + <DT><H3 FOLDED>RTW</H3> + <DL><p> + <DT><A HREF="http://www.roundtheworldflights.com/">RoundTheWorldFlights.com</A> + <DT><A HREF="http://www.statravel.co.uk/index.asp?bhcp=1">STA Travel: cheap student flights and deals for young people, discounted travel, cheap flights New York, Sydney, Bangkok, Auckland, round the world, Hong Kong, Beijing, Johannesburg, Melbourne, Los Angeles, Amsterdam, Paris, Athens, San Francisco, Cairo, Boston, Brisbane, Prague, Delhi, Cape Town, Tokyo</A> + <DT><A HREF="http://www.thetravellerslounge.co.uk/round-the-world/rtwsurface_sector.htm">The Travellers Lounge: Your Round the World Flight Plan</A> + <DT><A HREF="http://www.amazon.co.uk/exec/obidos/ASIN/1864501588/thetravellerslou/026-5964431-0494025">Amazon.co.uk: : Explore similar items</A> + <DT><A HREF="http://www.talesofasia.com/cambodia-overland-bkksr-self.htm">Tales of Asia - Overland - BKK-SR - Self</A> + <DT><A HREF="http://www.airtreks.com/">Airtreks.com: Affordable International Airline Tickets</A> + <DT><A HREF="http://www.travellerspoint.com/round-the-world-tickets.cfm">Round the World Tickets & Airfares - Around the World Travel - Travellerspoint</A> + <DT><A HREF="http://www.teaching-abroad.co.uk/index.php">..:: Teaching&Projects Abroad ::..</A> + <DT><A HREF="http://www.ochealthinfo.com/mcah/immuniz.htm">MCAH - Immunization Services</A> + <DT><A HREF="http://hasbrouck.org/blog/archives/000303.html">The Practical Nomad blog: Practical Nomad night at Airtreks.com in San Francisco</A> + <DT><A HREF="http://hasbrouck.org/blog/archives/000031.html">The Practical Nomad blog: Overseas? Dial home on the cheap</A> + <DT><A HREF="http://www.thetravelinsider.info/roadwarriorcontent/quadbandphones.htm">Do you need a Dual Tri or Quad Band GSM Cell Phone</A> + <DT><A HREF="http://www.gsmworld.com/roaming/gsminfo/cou_th.shtml">GSM Roaming - Thailand</A> + <DT><A HREF="http://www.bankrate.com/brm/news/cheap/20030923a2.asp#switch">Getting a deal on an overseas cell phone, page 2</A> + <DT><A HREF="http://www.pac-safe.com/wheretobuy.aspx?pId=641&pName=backpack%20&%20bag%20protector">Pacsafe</A> + <DT><A HREF="http://www.rei.com/online/store/ProductDisplay?langId=-1&catalogId=40000008000&storeId=8000&partNumber=709207&memberId=-2000&link=1&source=9021">PacSafe 55 Security Web - Small from REI.com</A> + <DT><A HREF="http://www.vagabonding.com/about/000126.html">V A G A B O N D I N G > About > Press/Awards</A> + <DT><A HREF="http://www.wompom.ca/vietnam/vntrvext10.htm">VietNam | Getting There » HongKong » GuangZhou » VietNam | WomPom.ca /¯)/¯)/¯)</A> + <DT><A HREF="http://www.seat61.com/Thailand.htm">How to travel by train in Thailand - a complete guide</A> + <DT><A HREF="http://www.letsgo.com/connect/forum/viewtopic.php?t=7006&sid=74527036f13d34be84e25495438b3515">Let's Go Travel Guides | View topic - Must see places in Laos, Cambodia & Vietnam</A> + <DT><A HREF="http://www.letsgo.com/connect/forum/viewforum.php?f=17">Let's Go Travel Guides | View Forum - Southeast Asia</A> + <DT><A HREF="http://plasma.nationalgeographic.com/mapmachine/">MapMachine--online dynamic atlas, street maps (National Geographic)</A> + <DT><A HREF="http://www.magellans.com/store/Electrical___Plug_AdaptorsEA256?Args=">Transformer Voltage Converter with Adaptor Plug Kit - Magellan's Travel Supplies</A> + <DT><A HREF="http://catalog.belkin.com/IWCatProductPage.process?Merchant_Id=&Section_Id=201526&pcount=&Product_Id=182400#">Travel Surge Protector</A> + <DT><A HREF="http://www.magellans.com/store/Comfort___Security___Locks__Alarms___Safety_DevicesSP643?Args=">Door Stop Alarm - Magellan's Travel Supplies</A> + <DT><A HREF="http://www.escapeartist.com/global/photos.html">Diagrams of Adapter Plugs</A> + <DT><A HREF="http://www.nepalhomepage.com/travel/places/hilly/outktm.html">Nepal Home Page Travel Guide: The Most Comprehensive Guide to Nepal Travellers. News, Travel, Himalayas, Music, Food, Business, Arts, Society, Politics, Government, Chat, Discussion Forums, Economy, Yellow Pages, Phone, White Pages, and everything else you would ever want to know.</A> + <DT><A HREF="http://www.traveldocs.com/th/vr.htm">Thailand Visa Requirements Page</A> + </DL><p> + <DT><A HREF="http://www1.mobissimo.com/travel/search_airfare.php">Mobissimo Travel | Search airfare</A> + <DT><H3 FOLDED>_camping</H3> + <DL><p> + <DT><A HREF="http://www.recreation.gov/">Recreation.gov</A> + <DT><A HREF="http://www.nationalparks.com/">National Parks: Accommodations, Lodging, and Information for U.S. National Parks</A> + <DT><A HREF="http://www.nps.gov/">National Park Service - Experience Your America</A> + <DT><A HREF="http://www.reserveusa.com/">Camping and Campground Reservation Site</A> + <DT><A HREF="http://www.state.me.us/doc/parks/">Maine Department of Conservation's Bureau of Parks & Lands</A> + <DT><A HREF="http://gorp.away.com/index.html">GORP.com - Adventure Travel and Outdoor Recreation</A> + <DT><A HREF="http://www.hermitisland.com/">Hermit Island - Ocean Camping on Maine's Beautiful Rockbound Coast</A> + <DT><A HREF="http://www.mainecamping.addr.com/">Maine Camping Online - a directory of links to Maine campgrounds and rv parks with websites</A> + <DT><A HREF="http://www.baxterstateparkauthority.com/index.html">Welcome to Baxter State Park</A> + <DT><A HREF="http://www.greenmountainclub.org/hikes.htm">Hikes</A> + <DT><A HREF="http://www.summitpost.org/">SummitPost.org - Mountaineering, Climbing, Hiking</A> + <DT><A HREF="http://www.bettercamper.com/show/mountain_link.pl/mountain_id/2275">SummitPost.org - Stratton Mountain Climbing Information</A> + <DT><A HREF="https://www.trails.com/explore/subscription_order.asp?mscssid=2A9UVKF4KS8J9L3X9KEFUT7GFH2N13WB">Trails.com : Subscription Check Out</A> + <DT><A HREF="http://www.hike-nh.com/trips/readers/nancy.shtml">Hike-NH.com: Reader's Trips - Nancy and Noecross Pond</A> + <DT><A HREF="http://www.hike-nh.com/trips/nancy/index.shtml">Hike-NH.com: Nancy Pond & Norcross Pond Hike</A> + <DT><A HREF="http://sherpaguides.com/tennessee/lower_cumberland_plateau/bowaters_pocket_wild_areas.html">Sherpa Guides | Tennessee | The Tennessee Mountains | Lower Cumberland Plateau | Bowaters Pocket Wilderness Areas</A> + <DT><A HREF="http://goldstarmountaincabins.com/trails1.htm#virgin%20falls">Trails</A> + <DT><A HREF="http://gorp.away.com//gorp/resource/us_national_forest/nh_white.htm">White Mountain National Forest Campgrounds</A> + </DL><p> + <DT><A HREF="http://mis.easygroup.co.uk/easyHotel/news/index.html">easyHotel.com : latest news</A> + <DT><A HREF="http://www.travelistic.com/video/featured">Travelistic</A> + <DT><A HREF="http://www.tripmates.com/">tripmates™ - the interactive travel community</A> + </DL><p> + <DT><H3 FOLDED>Music</H3> + <DL><p> + <DT><A HREF="http://www.geocities.com/SunsetStrip/Palladium/1131/nmhtab.html">Neutral Milk Hotel Guitar Tablature</A> + <DT><A HREF="http://www.azchords.com/">AZChords.com >>> Tablatures, Tabs, Chords for Guitar and Bass</A> + <DT><A HREF="http://home.quicknet.nl/qn/prive/romeria/bittorrentsites.htm">500+ Bittorrent Sites @ BTsites.tk</A> + <DT><A HREF="http://elephant6.com/sound/neutral.html">The Elephant Six Recording Company - MP3s - Neutral Milk Hotel</A> + <DT><A HREF="http://www.geocities.com/jff_77/nmh/">Guitar Tabs For You: Neutral Milk Hotel</A> + <DT><A HREF="http://www.bbc.co.uk/radio3/beethoven/downloads.shtml">BBC - Radio 3 - Beethoven Experience - downloads</A> + <DT><A HREF="http://homemadeporntorrents.com/index.php">Home Made Porn Torrents</A> + <DT><A HREF="http://www.cmj.com/articles/browse_reviews.php">CMJ.com: new music first</A> + <DT><A HREF="http://www.time.com/time/magazine/printout/0,8816,1118376,00.html">TIME.com Print Page: TIME Magazine -- The Road Ahead</A> + <DT><A HREF="http://www.classicreader.com/read.php/sid.6/bookid.1736/">Bertrand Russell : Why I Am Not A Christian</A> + <DT><A HREF="http://www.writing.upenn.edu/pennsound/">PENNsound</A> + <DT><A HREF="http://www.hiphopmusic.com/radio.html">DJ Mixes</A> + <DT><A HREF="http://www.oddmusic.com/gallery/index.html">Musical Instruments Gallery, Music Gallery, Experimental music, and Music Downloads</A> + <DT><A HREF="http://www.oddmusic.com/gallery/index.html">Musical Instruments Gallery, Music Gallery, Experimental music, and Music Downloads</A> + </DL><p> + <DT><H3 FOLDED>Research for Articles</H3> + <DL><p> + <DT><A HREF="http://nytimes.blogspace.com/genlink">New York Times Link Generator</A> + <DT><H3 FOLDED>ipod harbinger</H3> + <DL><p> + <DT><A HREF="http://www.timesonline.co.uk/printFriendly/0,,1-1501-1491500-1501,00.html">http://www.timesonline.co.uk/printFriendly/0,,1-1501-1491500-1501,00.html</A> + <DT><A HREF="http://www.thenewatlantis.com/archive/7/rosen.htm">The New Atlantis - The Age of Egocasting - Christine Rosen</A> + <DT><A HREF="http://www.guardian.co.uk/online/comment/story/0,12449,1396485,00.html">Guardian Unlimited | Online | John Naughton: A generation lost in its personal space</A> + <DT><A HREF="http://www.nytimes.com/2005/03/20/magazine/20WWLN.html?ex=1268974800&en=fca8190266cc6b78&ei=5088&partner=rssnyt">The New York Times > Magazine > The Way We Live Now: Bad Connections</A> + </DL><p> + <DT><H3 FOLDED>web not bell curve</H3> + <DL><p> + <DT><A HREF="http://observer.guardian.co.uk/business/story/0,6903,972764,00.html">The Observer | Business | Web's lack of bell curve is alarming</A> + <DT><A HREF="http://reason.com/9808/fe.mccracken.shtml">Reason magazine -- August/September 1998</A> + </DL><p> + <DT><H3 FOLDED>reading on decline</H3> + <DL><p> + <DT><A HREF="http://www.csmonitor.com/2005/0524/p11s01-legn.html">Matching boys with books | csmonitor.com</A> + <DT><A HREF="http://www.boston.com/news/local/articles/2005/05/22/reading_lists_speak_volumes_in_schools?pg=2">Reading lists speak volumes in schools - The Boston Globe - Boston.com - Local - News</A> + <DT><A HREF="http://www.villagevoice.com/news/0436,essay,56522,1.html">village voice > news > The Essay by Paul Collins</A> + <DT><A HREF="http://www.nea.gov/news/news04/ReadingAtRisk.html">NEA News Room: Literary Reading in Dramatic Decline, According to National Endowment for the Arts Survey</A> + <DT><A HREF="http://www.powells.com/cgi-bin/biblio?inkey=62-0465078443-0">Powell's Books - Bookmark Now: Writing in Unreaderly Times by Kevin Smokler</A> + <DT><A HREF="http://marksarvas.blogs.com/elegvar/2005/05/about_a_book_.html">The Elegant Variation: About a Book:</A> + <DT><A HREF="http://spaces.msn.com/members/estundesaje/Blog/cns!1pPxRJ-Eide0N3QJa2JuonJQ!107.entry">Aktivní dlouhá hláska a mít klid: The Mind is a Terrible Thing to Waste.</A> + </DL><p> + <DT><H3 FOLDED>Coffee</H3> + <DL><p> + <DT><A HREF="http://www.saudiaramcoworld.com/issue/197305/wine.in.arabia.1.htm">coffee history</A> + <DT><A HREF="http://www.google.com/search?client=safari&rls=en&q=Shaikh+ash-Shadhili&ie=UTF-8&oe=UTF-8">coffee history Shaikh ash-Shadhili - Google Search</A> + <DT><A HREF="http://en.wikipedia.org/wiki/Coffee">Coffee - Wikipedia, the free encyclopedia</A> + <DT><A HREF="http://www.2basnob.com/coffee-history.html">A Brief History of Coffee and Coffee Timeline</A> + <DT><A HREF="http://www.telusplanet.net/public/coffee/history.htm">History of Coffee</A> + </DL><p> + </DL><p> + <DT><H3 FOLDED>Search Engines</H3> + <DL><p> + <DT><A HREF="http://print.google.com/">Google Print</A> + <DT><A HREF="http://www.blogexplosion.com/directory/">Blog Directory - BlogExplosion.com</A> + <DT><A HREF="http://blogsearch.google.com/">Google Blog Search</A> + <DT><A HREF="http://www.bloglines.com/login?r=/myblogs">Bloglines | Log In</A> + <DT><A HREF="http://babelfish.altavista.com/">AltaVista - Babel Fish Translation</A> + <DT><A HREF="https://www.google.com/accounts/ServiceLogin?service=reader&nui=1&continue=http%3A%2F%2Fwww.google.com%2Freader%2F">Google Reader</A> + <DT><A HREF="https://www.google.com/adsense/default?destination=%2Fadsense%2Fhome">Google AdSense</A> + <DT><A HREF="http://trkcnfrm1.smi.usps.com/PTSInternetWeb/InterLabelInquiry.do">USPS - Track & Confirm</A> + <DT><A HREF="http://en.wikipedia.org/wiki/Main_Page">Main Page - Wikipedia, the free encyclopedia</A> + <DT><A HREF="http://scout.wisc.edu/Reports/ScoutReport/Current/">The Scout Report -- Volume 11, Number 8</A> + <DT><A HREF="http://www.wga.hu/frames-e.html?/html/p/parmigia/convex.html">Web Gallery of Art, image collection, virtual museum</A> + <DT><H3 FOLDED>Torrent Search Engines</H3> + <DL><p> + <DT><A HREF="http://www.mininova.org/search/?search=avant+garde+project">mininova : Search</A> + <DT><A HREF="http://torrentspy.com/latest.asp">TorrentSpy.com : The Largest BitTorrent Community</A> + <DT><A HREF="http://www.scrapetorrent.com/index.php">Torrent Search - ScrapeTorrent.com - The Torrent Search Engine</A> + <DT><A HREF="http://www.scrapetorrent.com/index.php">Torrent Search - ScrapeTorrent.com - The Torrent Search Engine</A> + <DT><A HREF="http://www.novatina.com/">novatina - Your Torrents Site.</A> + <DT><A HREF="http://torrentreactor.net/index0.php">Torrent Reactor new</A> + <DT><A HREF="http://www.sharingthegroove.org/msgboard/archive/index.php/f-17-p-2.html">Sharing the Groove - Audio Bit Torrent Downloads</A> + <DT><A HREF="http://www.epitonic.com/">Epitonic.com: Hi Quality Free and Legal MP3 Music</A> + <DT><A HREF="http://torrentreactor.net/">Torrent Reactor NET</A> + <DT><A HREF="http://www.mybittorrent.com/">myBittorrent - Bittorrent Releases From Across The Web</A> + <DT><A HREF="http://69.25.58.102/index.php">CDDVDHeaven.co.uk</A> + <DT><A HREF="http://www.evolutiontt.org/browse.php?cat=6">Evolution :: Downloads</A> + <DT><A HREF="http://www.torrentreactor.to/index.php">Home - Torrentreactor.TO/.COM - The most active torrents on the web</A> + <DT><A HREF="http://www.torrentz.ws/">Torrentz.ws Rss BitTorrent Search Engine</A> + <DT><A HREF="http://btjunkie.org/">btjunkie - the largest bittorrent search engine</A> + <DT><A HREF="http://www.torrentportal.com/">Torrent Portal - Free Bit Torrent Downloads</A> + <DT><A HREF="http://www.fulltorrent.net/">FullTorrent.net - Search and find more torrents</A> + </DL><p> + </DL><p> + <DT><H3 FOLDED>Shopping</H3> + <DL><p> + <DT><H3 FOLDED>lingerie</H3> + <DL><p> + <DT><A HREF="http://www.stardustlingerie.com/">Stardust Lingerie, Leather and Clothing</A> + <DT><A HREF="http://www.amazon.com/exec/obidos/tg/detail/-/B0000TPOSE/sr=1-9/qid=1101664733/ref=sr_1_9/002-8690869-1450440?%5Fencoding=UTF8&n=1036682&s=apparel&v=glance">arianne camisole black $28</A> + <DT><A HREF="http://www.figleaves.com/us/brand.asp?brand=92&node_id=109">Beau Bra-Figleaves</A> + <DT><A HREF="http://www.figleaves.com/us/brand.asp?brand=187&node_id=109">Arianne-Figleaves (very nice $$$)</A> + <DT><A HREF="http://www.figleaves.com/us/brand.asp?brand=186&node_id=109">Fleur T-Figleaves (very nice $$$)</A> + <DT><A HREF="http://www.lingeriedreams.blogspot.com/">Lingerie Dreams (blog)</A> + <DT><A HREF="http://www.nysexshop.com/p_drmgl.asp?offset=120">Dreamgirl Sexy Lingerie for lovers of sexy lingerie</A> + <DT><A HREF="http://www.enchanted-dreams.com/clothing/new-dreamgirl-6.html">dg fishnet</A> + <DT><A HREF="http://www.nysexshop.com/a4.asp?m=4921">Enchanted Stripe 2 Piece Set by Dreamgirl</A> + <DT><A HREF="http://www.enchanted-dreams.com/clothing/new-dreamgirl-11.html">tattoo lace</A> + <DT><A HREF="http://www.3wishes.com/sale3.asp">Ribbon lace sale 25.17</A> + <DT><A HREF="https://www.3wishes.com/ssl/confirm.asp">3 Wishes Lingerie-SF Order Confirmation Page</A> + <DT><A HREF="http://www.pfieldwalker.com/index.html">Exclusive designer silk lingerie with custom lace from France.</A> + <DT><A HREF="http://www.boutique-fifichachnil.com/fr/index.php">Boutique Fifi Chachnil</A> + <DT><A HREF="http://www.wildheartsranch.com/index2.html">Sacred Sexuality :Women's Arts, Lesbian Artists Photography, Poetry, Free Lesbian Postcards: A Women Artists Place</A> + <DT><A HREF="http://www.cafepress.com/posters_tshirts">Fine Art Vintage Erotica Philosophy Prints Clothes : CafePress.com</A> + <DT><A HREF="http://www.pfieldwalker.com/lingerie-shopping.html">Wholesale Silk Lingerie Shopping</A> + <DT><A HREF="http://www.damaris-london.com/#">Damaris 'sine qua non'</A> + <DT><A HREF="http://www.irs.gov/pub/irs-pdf/i1099msc.pdf">http://www.irs.gov/pub/irs-pdf/i1099msc.pdf</A> + <DT><A HREF="http://www.pamperedpassions.com/sensuous_bracli_pearl_thong_1703_prd1.html">PP Lingerie - Sexy Lingerie Gifts > Pearl Thong G-String by Bracli</A> + </DL><p> + <DT><H3 FOLDED>camping</H3> + <DL><p> + <DT><A HREF="http://www.rei.com/online/store/ProductDisplay?storeId=8000&catalogId=40000008000&productId=47588321&parent_category_rn=0&">Leki Makalu Anti-Shock 3 Trekking Poles - Pair from REI.com</A> + <DT><A HREF="http://www.backpacker.com/article/1,2646,7725__2_4,00.html">Backpacker.com - REI/BACKPACKER Camp Cook-off</A> + <DT><A HREF="http://www.bellaonline.com/articles/art30535.asp">Backpacking Breakfast Ideas - Hiking & Backpacking</A> + <DT><A HREF="http://www.backpacker.com/gear/article/0,1023,5169,00.html">Backpacker Magazine - ULA Equipment P-2</A> + <DT><A HREF="http://order.store.yahoo.com/cgi-bin/wg-order?unique=f4686&catalog=trailfoods&et=425f4d8e&basket=b%3D5C1d8088d8006df2425f4686d0d03bea9a3428a413c18fba58dd21a32f04d7e19%26l%3D%26s%3DnYC25ec9v55ji5bjZXLGzKyY39U-">egg powder</A> + <DT><A HREF="http://www.bushwalking.org.au/FAQ/FAQ_Stoves.htm#EN417">FAQ - Stoves</A> + <DT><A HREF="http://www.backpacking.net/rv-ul-03.html">Ultralight Stoves, Cookware - Titanium</A> + <DT><A HREF="http://www.alacer.com/cgi-bin/dbsearch.exe?mdb=/products.mdb,tbl=products,DB_code=81,DBCOMP=ABS,template=/products/returntitle.htm">http://www.alacer.com/cgi-bin/dbsearch.exe?mdb=/products.mdb,tbl=products,DB_code=81,DBCOMP=ABS,template=/products/returntitle.htm</A> + </DL><p> + <DT><H3 FOLDED>printer info</H3> + <DL><p> + <DT><A HREF="http://www.steves-digicams.com/2004_reviews/olympus_p440_pg4.html">Steves Digicams - Olympus P-440 Photo Printer - Page 4</A> + <DT><A HREF="http://www.olympus.com/cpg_section/cpg_product_lobbypage.asp?l=1&p=19&bc=23&product=935&fl=4">P-440 Photo Printer Specs</A> + <DT><A HREF="http://www.digital1234.com/product.jsp?x=P440">Digital1234.com Online Consumer Electronics Store</A> + <DT><A HREF="http://macworld.pricegrabber.com/search_getprod.php?sort_type=bottomline&masterid=1903973&isbn=&pid=">P-440 Digital Photo Printer (Olympus-201115) - Macworld - Price Comparison</A> + <DT><A HREF="http://db.tidbits.com/getbits.acgi?tbart=07840">TidBITS: Colour & Computers</A> + <DT><A HREF="http://www.kodak.com/global/en/professional/products/printers/1400/qAndA.jhtml?id=0.1.18.22.9.14.20&lc=en">KODAK PROFESSIONAL 1400 Digital Photo Printer: Questions and Answers</A> + </DL><p> + <DT><A HREF="http://www.swallet.com/order.HTML">Swallet - Rubber wallets and accessories</A> + <DT><A HREF="http://www.amazon.com/exec/obidos/ASIN/0300099258/ref=ase_photoguidejap-20/102-5415414-4261739">Amazon.com: Books: The History of Japanese Photography</A> + <DT><A HREF="http://www.amazon.com/gp/product/customer-reviews/1585422509/ref=cm_cr_dp_2_1/102-0918923-2551332?%5Fencoding=UTF8&customer-reviews.sort%5Fby=-SubmissionDate&n=283155">Amazon.com: Books: The Secret Teachings of All Ages (Reader's Edition)</A> + <DT><A HREF="https://rei.com/online/store/YourAccountLoginView?catalogId=40000008000&storeId=8000&langId=-1&URL=http://rei.com/">REI Login</A> + <DT><A HREF="http://www.google.com/search?client=safari&rls=en&q=bed+stu+shoes&ie=UTF-8&oe=UTF-8">Google Search: bed stu shoes</A> + <DT><A HREF="http://www.etrailer.com/products.asp?model=F-100%2C+F-150%2C+F-250%2C+F-350&category=hitch&year=1969&make=Ford&t1=&h=e">1969 Ford F-100, F-150, F-250, F-350 hitch search by etrailer.com (800)298-8924</A> + <DT><A HREF="http://www.dpreview.com/reviews/panasonicfx7/page9.asp">Panasonic Lumix DMC-FX7 Review: 9. Conclusion: Digital Photography Review</A> + <DT><A HREF="http://www.bustedtees.com/shirt/dysentery">Busted Tees -dysentry t-shit</A> + <DT><A HREF="http://www.bobross.com/supplies.cfm#Q10">Bob Ross - t-shirts</A> + <DT><A HREF="http://www.choiceshirts.com/item/k/pl-00576a/">Piggly Wiggly T-Shirt by ChoiceShirts</A> + <DT><A HREF="http://www.founditemclothing.com/t-shirts/Baseball.html">The Dude's Baseball Shirt from The Big Lebowski - founditemclothing.com</A> + <DT><A HREF="http://www.founditemclothing.com/t-shirts/gorillas.html">International Order for Gorillas T-Shirt from Real Genius - founditemclothing.com</A> + <DT><A HREF="http://www.luminous-landscape.com/reviews/cameras/lx1.shtml">Panasonic LX1</A> + <DT><A HREF="http://www.dcresource.com/reviews/panasonic/dmc_lx1-review/index.shtml">DCRP Review: Panasonic Lumix DMC-LX1</A> + <DT><A HREF="http://www.backpackinglight.com/cgi-bin/backpackinglight/mountainsmith_ghost_lt_backpack_review.html">Mountainsmith Ghost LT Backpack REVIEW @ Backpacking Light</A> + <DT><A HREF="http://www.sierratradingpost.com/basket.aspx">Your Sierra Trading Post Shopping Basket</A> + <DT><A HREF="http://www.backcountry.com/store/MOU0022/Mountainsmith-Ghost-Backpack-2800-cu-in.html?CP=Affiliate&AID=10281785&PID=1779627&GCID=C2000x067-datafeed&ATT=040306&CMP=AFC-Affiliate">Mountainsmith Ghost Backpack - 2800 cu in - Free Shipping!</A> + <DT><A HREF="http://www.pulpcards.com/e-pcs/gay_lesb.htm">DIGITAL PULP FICTION POSTCARDS: Gay & Lesbian</A> + <DT><A HREF="http://www.dennis-carpenter.com/">Dennis-Carpenter.com - Ford Restoration and Reproduction parts for Ford Cars 1932-72, Ford Trucks 1932-89, Ford Tractors 1939-54, and Cushman Scooters 1937-65</A> + <DT><A HREF="http://www.vistaprint.com/vp/ns/splash/freebc.aspx#here">Free Business Cards</A> + <DT><A HREF="http://www.cafepress.com/">Create, Buy & Sell Unique Gifts - T-Shirts, Bumper Stickers, Mugs, Hoodies, Jerseys and over 80 Customizable Products</A> + <DT><A HREF="http://www.radtech.us/Products/SpecialtyBags.aspx#Glove">RadTech Products - Specialty Bags</A> + <DT><A HREF="http://www.marware.com/cgi-bin/WebObjects/Marware.woa/7/wa/selectedCategory?catalogCatID=224&wosid=RXOCvkxpZct3rSNNtuC8XM">Marware Laptop and iPod Cases - Apple iPod Accessories and iPod nano Case Styles</A> + <DT><A HREF="http://www.boingboing.net/2006/11/06/be_the_coolest_dad_o.html">Boing Boing: Be the Coolest Dad on the Block -- book pick</A> + </DL><p> + <DT><H3 FOLDED>Random Articles</H3> + <DL><p> + <DT><A HREF="http://dogmatika.com/dm/stuff_more.php?id=1941_0_2_0_C">Dogmatika :: books >> culture >> stuff</A> + <DT><A HREF="http://memeticdrift.net/bucky/index.html">bucky fuller</A> + <DT><A HREF="http://www.wwcd.org/issues/Lakoff.html">Metaphor, Morality, and Politics</A> + <DT><A HREF="http://homepage.mac.com/paulstephenson/trans/lpd1.html">Letopis' Popa Dukljanina, 1</A> + <DT><A HREF="http://books.guardian.co.uk/news/articles/0,,1781112,00.html?gusrc=rss">Guardian Unlimited Books | News | Author on slow train to adulation across Siberia</A> + <DT><A HREF="http://inertiacrept.livejournal.com/43187.html">The Musty Man - Hating America</A> + <DT><A HREF="http://www.downhillbattle.org/interviews/ian_mackaye.php">Ian MacKaye Interview</A> + <DT><A HREF="http://dieoff.org/page95.htm">The Tragedy of the Commons, by Garrett Hardin (1968)</A> + <DT><A HREF="http://fairuse.stanford.edu/commentary_and_analysis/2004_03_kasunic.html">Stanford Copyright & Fair Use - Solving the P2P "Problem" - An Innovative Marketplace Solution by Rob Kasunic</A> + <DT><A HREF="http://www.nytimes.com/2005/01/20/politics/20BUSH-TEXT.html?oref=login&oref=login&oref=login">Transcript: Inaugural Address by George W. Bush</A> + <DT><A HREF="http://www.bookforum.com/boynton.html">BOOKFORUM | feb/mar 2005</A> + <DT><A HREF="http://www.grist.org/comments/dispatches/2005/01/25/mckibben/?source=daily">Bill McKibben sends dispatches from a conference on winning the climate-change fight | Grist Magazine | Dispatches | 25 Jan 2005</A> + <DT><A HREF="http://wwics.si.edu/index.cfm?fuseaction=wq.essay&essay_id=105519">Wilson Quarterly @ the Woodrow Wilson International Center for Scholars</A> + <DT><A HREF="http://www.reason.com/0502/fe.mg.neal.shtml">Reason: Neal Stephenson’s Past, Present, and Future: The author of the widely praised Baroque Cycle on science, markets, and post-9/11 America</A> + <DT><A HREF="http://prospectmagazine.co.uk/article_details.php?id=6761">Prospect - article_details</A> + <DT><A HREF="http://www.thenation.com/doc.mhtml?i=20050221&s=allen">The Nation | Article | Our Godless Constitution | Brooke Allen</A> + <DT><A HREF="http://www.centerforbookculture.org/context/no1/barth.html">CONTEXT: Barth, Calvino, Borges</A> + <DT><A HREF="http://www.wired.com/news/culture/0,1284,66785,00.html">Wired News: Comfortably Numb Relations</A> + <DT><A HREF="http://www.infosci.cornell.edu/about/Feb02.html">Cornell Information Science</A> + <DT><A HREF="http://www.hoboes.com/html/NetLife/Children/">What Your Children Are Doing on the Information Highway</A> + <DT><A HREF="http://wileywiggins.blogspot.com/2005/01/bill-gates-copyright-reformists-are.html">News of the dead: Bill Gates: Copyright reformists are commies, all will bow before Windows Media</A> + <DT><A HREF="http://www.hoboes.com/Mimsy/?ART=9">Copyright: A Broken Contract with the Public</A> + <DT><A HREF="http://mafihe.hu/~bnc/feynman/">feynman lectures</A> + <DT><A HREF="http://memory.loc.gov/ammem/collections/madison_papers/">The James Madison Papers - (American Memory from the Library of Congress)</A> + <DT><A HREF="http://www.nytimes.com/2005/04/25/books/25ster.html?pagewanted=2&ei=5088&en=f899e60757a58e23&ex=1272081600&partner=rssnyt&emc=rss">The New York Times > Books > He's a Literary Darling Looking for Dear Readers</A> + <DT><A HREF="http://www.newcriterion.com/archive/23/may05/dalrymple.htm">An imaginary “scandal” by Theodore Dalrymple</A> + <DT><A HREF="http://www.wired.com/news/culture/0,1284,67552,00.html">Wired News: The Beeb Shall Inherit the Earth</A> + <DT><A HREF="http://blogs.salon.com/0002007/2005/05/18.html#a1150">How to Save the World</A> + <DT><A HREF="http://www.arts.telegraph.co.uk/arts/main.jhtml?xml=/arts/2005/03/10/bocam10.xml&sSheet=/arts/2005/03/10/bomain.html">Telegraph | Arts | Rhyme and reason</A> + <DT><A HREF="http://chronicle.com/temp/reprint.php?id=rus8zx389vmlru6y5azc2lehaybc71">The Chronicle: 4/1/2005: B.F. Skinner, Revisited</A> + <DT><A HREF="http://www.prospect.org/web/page.ww?section=root&name=ViewWeb&articleId=9389">American Prospect Online - ViewWeb</A> + <DT><A HREF="http://www.opinionjournal.com/columnists/dhenninger/?id=110006501">OpinionJournal - Wonder Land</A> + <DT><A HREF="http://www.markme.com/mesh/archives/007432.cfm">Mike Chambers</A> + <DT><A HREF="http://www.unc.edu/~cigar/">Koleman Strumpf's Home Page</A> + <DT><A HREF="http://chronicle.com/temp/reprint.php?id=y0przoap7fzws5o9ez7p7vv3h95hdg6a">The Chronicle: 4/15/2005: Microsoft Word Grammar Checker Are No Good, Scholar Conclude</A> + <DT><A HREF="http://www.policyreview.org/apr05/morse.html">Marriage and the Limits of Contract by Jennifer Roback Morse - Policy Review, No. 130</A> + <DT><A HREF="http://www.culturecult.com/spiked.htm">ROGER SANDALL - Spiked.</A> + <DT><A HREF="http://www.thenation.com/doc.mhtml?i=20050404&s=guttenplan">The Nation | Book Review | Free World: America, Europe and the Surprising Future of the West; Beyond Paradise and Power: Europe, America, and the Future of a Troubled Partnership; The Accidental American: Tony Blair and the Presidency; The United States of Europe: The New Superpower and the End of American Supremacy; The European Dream: How Europe's Vision of the Future Is Quietly Eclipsing the American Dream; The New World Disorder | D.D. Guttenplan</A> + <DT><A HREF="http://wiki.rayners.org/plugins/MultiBlog">MultiBlog - David Raynes Plugin Wiki</A> + <DT><A HREF="http://www.nytimes.com/2005/04/15/books/15book.html?ei=5088&en=0c099157258885b8&ex=1271217600&adxnnl=1&partner=rssnyt&emc=rss&adxnnlx=1113537797-YRXimNCT2oGTWW7gvIIk8g">The New York Times > Books > Books of The Times | 'The Seven Basic Plots': The Plot Thins, or Are No Stories New?</A> + <DT><A HREF="http://service.spiegel.de/cache/international/spiegel/0,1518,350042,00.html">Sex in the Stone Age: Pornography in Clay - International - SPIEGEL ONLINE</A> + <DT><A HREF="http://www.globalpolicy.org/empire/analysis/2004/03illusions.htm">Illusions of Empire: Defining the New American Order -Empire? - Global Policy Forum</A> + <DT><A HREF="http://www.theregister.co.uk/2005/02/05/riaa_sues_the_dead/">RIAA sues the dead | The Register</A> + <DT><A HREF="http://www.nytimes.com/2005/05/08/books/review/08SIEGELL.html?pagewanted=2&ei=5088&en=3c5a65caca51bb7c&ex=1273291200&partner=rssnyt&emc=rss">Freud and His Discontents - The New York Times - New York Times</A> + <DT><A HREF="http://www.edge.org/3rd_culture/debate05/debate05_index.html">Edge: THE SCIENCE OF GENDER AND SCIENCE</A> + <DT><A HREF="http://www.guardian.co.uk/life/feature/story/0,13026,1481368,00.html">Guardian Unlimited | Life | 'This is how science is done'</A> + <DT><A HREF="http://chronicle.com/temp/email.php?id=j5bz06szmg04x7tl2g23dag5zeu13nw2">The Chronicle: 5/20/2005: Rhyme & Unreason</A> + <DT><A HREF="http://www.levenger.com/PAGETEMPLATES/WELLREADLIFE/WellReadLife.asp?Params=category=541%7Clevel=2%7Cpageid=3221&FileName=column">Well-Read Life™</A> + <DT><A HREF="http://tor.eff.org/">Tor: An anonymous Internet communication system</A> + <DT><A HREF="http://shirky.com/writings/ontology_overrated.html">Shirky: Ontology is Overrated -- Categories, Links, and Tags</A> + <DT><A HREF="http://www.thenation.com/docprint.mhtml?i=20050530&s=anderson">The Family World System</A> + <DT><A HREF="http://www.lrb.co.uk/v27/n10/dasg01_.html">LRB | Partha Dasgupta : Bottlenecks</A> + <DT><A HREF="http://chronicle.com/temp/email.php?id=j5bz06szmg04x7tl2g23dag5zeu13nw2">The Chronicle: 5/20/2005: Rhyme & Unreason</A> + <DT><A HREF="http://www.melvillehousebooks.com/rm.html">A Reader's Manifesto</A> + <DT><A HREF="http://www.thenation.com/doc.mhtml?i=20050606&s=mailer">The Nation | Essay | On Sartre's God Problem | Norman Mailer</A> + <DT><A HREF="http://foetry.com/mailfraud.pdf">http://foetry.com/mailfraud.pdf</A> + <DT><A HREF="http://slate.msn.com/id/2118854/entry/2118924">That Barnes & Noble Dream - What's wrong with the David McCulloughs of history. By David Greenberg</A> + <DT><A HREF="http://mitpress.mit.edu/catalog/item/default.asp?ttype=6&tid=14403">Daedalus - How not to buy happiness - The MIT Press</A> + <DT><A HREF="http://www.wired.com/wired/archive/12.10/tail.html?pg=2&topic=tail&topic_set=">Wired 12.10: The Long Tail</A> + <DT><A HREF="http://www.boingboing.net/2005/05/24/book_publishing_stat.html">Boing Boing: Book publishing stats: more titles, fewer sales, higher prices</A> + <DT><A HREF="http://www.eluminateconsulting.com/publications/writings/essays/spirit_fulfill_work.php">eLuminate Consulting Group - Spirit and Fulfillment at Work: Why Soulistic Organizations Have the Ultimate Competitive Advantage</A> + <DT><A HREF="http://www.washingtonpost.com/wp-dyn/content/article/2005/06/02/AR2005060201593_pf.html">A's for Everyone!</A> + <DT><A HREF="http://www.nytimes.com/2005/06/12/magazine/12FILTER.html?ex=1276228800&en=6f21e100a117b0e8&ei=5090&partner=rssuserland&emc=rss">Incendiary Device - New York Times</A> + <DT><A HREF="http://www.thenation.com/docprint.mhtml?i=20050606&s=nussbaum">Epistemology of the Closet</A> + <DT><A HREF="http://www.nytimes.com/2005/06/19/books/review/19PERLL.html?ex=1276920000&en=83355dd3b6780b7d&ei=5088&partner=rssnyt&emc=rss">'Imagined Cities': The Urban Mirror - New York Times</A> + <DT><A HREF="http://www.sciam.com/print_version.cfm?articleID=000ACE3F-007E-12DC-807E83414B7F0000">Scientific American: Mindful of Symbols</A> + <DT><A HREF="http://harpers.org/ExcerptTheChristianParadox.html">The Christian Paradox (Harpers.org)</A> + <DT><A HREF="http://walmartwatch.com/blog">Wal-Mart Blog | WalmartWatch.com</A> + <DT><A HREF="http://www.thenewatlantis.com/archive/8/rubin.htm">The New Atlantis - Daedalus and Icarus Revisited - Charles T. Rubin</A> + <DT><A HREF="http://books.guardian.co.uk/print/0,3858,5243410-99930,00.html">Books | Author's ally</A> + <DT><A HREF="http://www.foreignpolicy.com/story/cms.php?story_id=3084&print=1">Foreign Policy: The State of Nature</A> + <DT><A HREF="http://www.nytimes.com/2005/07/28/technology/28scene.html?ex=1280203200&en=33765024cbf62d4c&ei=5090&partner=rssuserland&emc=rss">Reading Between the Lines of Used Book Sales - New York Times</A> + <DT><A HREF="http://www.americanscientist.org/template/BookReviewTypeDetail/assetid/44476">American Scientist Online - Evolution's Many Branches</A> + <DT><A HREF="http://www.joshkaufman.net/archives/2005/07/the_personal_mb.html">Josh Kaufman: Inside My Bald Head: The Personal MBA 40</A> + <DT><A HREF="http://www.nytimes.com/2005/09/18/magazine/18bono.html?ex=1284696000&en=4ee2bd1c063c5803&ei=5088&partner=rssnyt&emc=rss">The Statesman - New York Times</A> + <DT><A HREF="http://www.nytimes.com/2005/09/27/business/27road.html?ex=1285473600&en=dc10e3c500e20c23&ei=5090&partner=rssuserland&emc=rss">If Parks Offer Free Internet, Why Can't Costly Hotels? - New York Times</A> + <DT><A HREF="http://www.boingboing.net/2005/09/30/copyright_scholars_a.html">Boing Boing: Copyright scholars and publishers on crazy auctorial theories about books and tech</A> + <DT><A HREF="http://www.theatlantic.com/doc/print/200511/unpublished-journalism">The Atlantic Online | November 2005 | The Greatest Stories Never Told | Alex Beam</A> + <DT><A HREF="http://www.dailypennsylvanian.com/vnews/display.v/ART/2005/09/28/433a337d16fea">dailypennsylvanian.com - Cartoonist highlights history through art</A> + <DT><A HREF="http://www.bookforum.com/aronson.html">BOOKFORUM | Oct/Nov 2005</A> + <DT><A HREF="http://www.incharacter.org/article.php?article=46">Incharacter.org</A> + <DT><A HREF="http://hasbrouck.org/blog/archives/000042.html">The Practical Nomad blog: Copyright infringement by Amazon.com</A> + <DT><A HREF="http://www.latimes.com/news/opinion/commentary/la-op-mediavore25sep25,0,185479.story?coll=la-news-comment-opinions">You authors are saps to resist Googling - Los Angeles Times</A> + <DT><A HREF="http://www.boingboing.net/2005/09/27/authors_guild_v_goog.html">Boing Boing: Authors' Guild v Google: opt-out is evil, except when we do it</A> + <DT><A HREF="http://news.bbc.co.uk/1/hi/magazine/4293978.stm">BBC NEWS | Magazine | Britain's secret sex survey</A> + <DT><A HREF="http://www.oriononline.org/pages/om/05-5om/Monke_FT.html">Orion > Orion Magazine > September | October 2005 > Lowell Monke > Charlotte's Webpage</A> + <DT><A HREF="http://www.wired.com/news/technology/0,1282,69080,00.html">Wired News: A Challenge to MS Office</A> + <DT><A HREF="http://www.mindhacks.com/blog/2005/10/the_moral_brain.html">Mind Hacks: The moral brain</A> + <DT><A HREF="http://www.zeit.de/online/2005/41/suchmaschinen_en?page=all">Die Zeit - Computer : David vs. Google</A> + <DT><A HREF="http://www.economist.com/world/europe/displaystory.cfm?story_id=5323762&tranMode=none">French anti-Americanism | Spot the difference | Economist.com</A> + <DT><A HREF="http://www.newyorker.com/printables/critics/051226crat_atlarge">The New Yorker: PRINTABLES</A> + <DT><A HREF="http://www.zefrank.com/zesblog/">ze's blog</A> + <DT><A HREF="http://www.nysun.com/article/25029">The Philosophy of Philosophy - December 28, 2005 - The New York Sun - NY News</A> + <DT><A HREF="http://www.washingtonpost.com/wp-dyn/content/article/2005/12/22/AR2005122201607.html">Women in Love</A> + <DT><A HREF="http://www.boingboing.net/2006/01/07/interview_with_lsd_i.html">Boing Boing: Interview with LSD inventor, Albert Hofman, who's now 100</A> + <DT><A HREF="http://enjoyment.independent.co.uk/books/reviews/article335264.ece">Independent Online Edition > Reviews</A> + <DT><A HREF="http://www.nytimes.com/2006/03/12/magazine/312food.html?ex=1299819600&en=83b4af14eb74d119&ei=5088&partner=rssnyt&emc=rss">The Way We Eat: Rabbit Is Rich - New York Times</A> + <DT><A HREF="http://www.nytimes.com/2006/03/12/magazine/312funny_serial.html?ex=1299819600&en=78cae0c13c0366df&ei=5088&partner=rssnyt&emc=rss">At Risk - New York Times</A> + <DT><A HREF="http://blog.wired.com/cultofmac/">powerbook alarm</A> + <DT><A HREF="http://www.wired.com/news/columns/0,70461-0.html?tw=rss.index">Wired News: How France Is Saving Civilization</A> + <DT><A HREF="http://chronicle.com/temp/reprint.php?id=m7vcn3w92t3gvzf1qp6j7m0n0985j5y4">The Chronicle: 4/7/2006: Can We Talk?</A> + <DT><A HREF="http://vielmetti.typepad.com/superpatron/books/index.html">Superpatron: Books</A> + <DT><A HREF="http://creative-writing-mfa-handbook.blogspot.com/2006/04/top-nonfiction-programs.html">The Creative Writing MFA Handbook</A> + <DT><A HREF="http://www.macdevcenter.com/pub/a/mac/2006/01/04/mdfind.html?CMP=OTC-13IV03560550&ATT=The+Power+of+mdfind">MacDevCenter.com -- The Power of mdfind</A> + <DT><A HREF="http://www.oceanwanderers.com/index.html">Ocean Wanderers: The Ultimate Resource for Pelagic Birding Enthusiasts</A> + <DT><A HREF="http://www.oceanwanderers.com/Seabird.Home.html">Annotated List of the Seabirds of the World</A> + <DT><A HREF="http://www.oceanwanderers.com/AUDOUG.html">Audouin's Gulls (Larus audouinii) in Spain</A> + <DT><A HREF="http://www.thalassa.gr/2002/to/en/t05.asp">Beauty in the skies</A> + <DT><A HREF="http://scott.heiferman.com/notes/2006/03/50_reasons_why_.html">50 Reasons Why People Aren't Using Your Website</A> + <DT><A HREF="http://www.trettin-tv.de/tamb.htm">Wilhelm Reich media</A> + <DT><A HREF="http://streetvendor.netfirms.com/public_html/staticpages/index.php?page=20050628194452282">Street Vendor Project - Vendy Awards Nomination</A> + <DT><A HREF="http://lifehacker.com/software/digital-photos/how-to-make-a-stopmotion-video-193140.php">How to make a stop-motion video - Lifehacker</A> + </DL><p> + <DT><H3 FOLDED>Books, Poetry, etc</H3> + <DL><p> + <DT><A HREF="http://www.metaweb.com/wiki/wiki.phtml?title=Main_Page">Neal Stephenson Main Page - Metaweb</A> + <DT><A HREF="http://www.manchesternh.gov/CityGov/LIB/booksales.html">Friends of the Library Book Sales</A> + <DT><A HREF="http://thenonist.com/index.php/weblog/permalink/the_erotic_coloring_book/">the erotic coloring book</A> + <DT><A HREF="http://www.hti.umich.edu/cgi/t/text/text-idx?c=amverse;cc=amverse;sid=05924e4e118709ad818a99f16e2c2c2a;q1=Sea%20Garden;tpl=home.tpl">HTI American Verse Project</A> + </DL><p> + <DT><A HREF="http://www.deyoungmuseum.org/deyoung/visiting/subpage.asp?subpagekey=805">De Young museum SF</A> + <DT><A HREF="http://www.cancer.org/docroot/PED/content/PED_10_13X_Guide_for_Quitting_Smoking.asp">ACS :: Guide to Quitting Smoking</A> + <DT><A HREF="http://www.instructables.com/id/EUO2ZWGMX3EQEC14US/?ALLSTEPS">Only the best magic card trick in the world!</A> + <DT><A HREF="http://www.luminous-landscape.com/">The Luminous Landscape</A> + <DT><A HREF="http://www.chesscorner.com/tutorial/learn.htm">Chess Corner - Chess Tutorial</A> + <DT><A HREF="http://www.apple.com/trailers/">Apple - Movie Trailers</A> + <DT><A HREF="http://www.flickr.com/signin/flickr/">Flickr: Login</A> + <DT><A HREF="http://fo.rtuito.us/learn_more.php">Fo.rtuito.us</A> + <DT><A HREF="http://www.techcrunch.com/2006/09/19/moo-flickrize-your-business-cards/">Techcrunch » Blog Archive » Moo: Flickrize your business cards</A> + <DT><A HREF="http://www.lifehacker.com/software/vpn/geek-to-live--create-your-own-virtual-private-network-with-hamachi-201786.php">Geek to Live: Create your own virtual private network with Hamachi - Lifehacker</A> + <DT><A HREF="http://www.transitionsabroad.com/information/writers/expatriate_writing_contest.shtml">Expatriate Writing Contest Guidelines</A> + <DT><A HREF="http://www.metafilter.com/mefi/54976">And all I got was this crappy... | MetaFilter</A> + <DT><A HREF="http://www.oddica.com/catalog/product_info.php?products_id=31">Oddica</A> + <DT><A HREF="http://www.heavytees.com/store/ProductDetails.aspx?productID=440">I See The End | Heavy Rotation | Vintage T-Shirts</A> + <DT><A HREF="http://www.ibiblio.org/obp/thinkCSpy/index.html">How to Think Like a Computer Scientist: Learning with Python</A> + <DT><A HREF="http://www.typepad.com/t/app">TypePad</A> + <DT><A HREF="http://content.sharebuilder.com/MgdCon/Jump/Web/welcome/newwelc/learn.htm">Welcome to ShareBuilder</A> + </DL><p> + <DT><H3 FOLDED>grad apps</H3> + <DL><p> + <DT><A HREF="https://websql.brooklyn.cuny.edu/admissions/graduate/personal.jsp">brooklyn college</A> + <DT><A HREF="http://www.applyweb.com/apply/ugg/">uga</A> + <DT><A HREF="http://web.english.ufl.edu/programs/grad/admissions/mfa_checklist.html">florida</A> + <DT><A HREF="http://www.english.uga.edu/grad/">UGA Graduate English</A> + <DT><A HREF="http://www.brown.edu/Divisions/Graduate_School/admissions/index.php?p=1-1&s=1">Brown Graduate School: Admissions</A> + <DT><A HREF="https://webapp.spire.umass.edu/admissions/htdocs/app/gradapp_display.html">umass</A> + <DT><A HREF="https://apply.embark.com/grad/nyu/gsas/29/ReqForms.asp">NYU Graduate School of Arts and Science Supplemental Forms - Embark Apply Online</A> + <DT><A HREF="http://www.english.uga.edu/creative/graduate/admissions.html">Creative Writing at UGA</A> + <DT><A HREF="http://www.boisestate.edu/english/mfa/admissions.htm">boise state</A> + <DT><A HREF="http://www.boisestate.edu/english/mfa/gradstudents.htm">boise state 2</A> + <DT><A HREF="http://www.brown.edu/Divisions/Graduate_School/admissions/index.php?p=1-1&s=1">Brown Graduate School: Admissions</A> + <DT><A HREF="http://www.brown.edu/Departments/Literary_Arts/admissions.htm">brown 3</A> + <DT><A HREF="http://www.umass.edu/english/eng/mfa/admission.html">umassAdmissions & Contact Information</A> + <DT><A HREF="http://www.english.uga.edu/grad/applinfo.html#5">ugaApplication info. packet master document</A> + <DT><A HREF="http://depthome.brooklyn.cuny.edu/english/graduate/mfa/admissions.htm">Brooklyn College MFA Program</A> + <DT><A HREF="http://www.slc.edu/index.php?pageID=2590">Sarah Lawrence College - Graduate Studies in Writing: Apply</A> + <DT><A HREF="http://www.reg.uga.edu/or.nsf/html/transcripts">uga transcripts address Office of the Registrar -</A> + <DT><A HREF="http://noendpress.com/caleb/graduate_school_application_help/">Get Into Graduate School. Tips, Tricks and Statement of Purpose That Got Me Accepted</A> + </DL><p> +</HTML> diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/adobe-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/adobe-logo.jpg Binary files differnew file mode 100644 index 0000000..4846189 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/adobe-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/adobeopensource.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/adobeopensource.txt new file mode 100644 index 0000000..f59fcde --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/adobeopensource.txt @@ -0,0 +1 @@ +As we reported in this morning's reboot, [Adobe has open-sourced a bundle of code][1] to the Mozilla Foundation under the name Tamarin. The whooping 135,000 lines of code in today's release constitute the largest single contribution to the Mozilla foundation since its inception.
The code consists primarily of the source behind Adobe's ActionScript Virtual Machine, but that doesn't mean Adobe is open sourcing the Flash player.
ActionScript 3.0, the language used in the Flash Player v9.0, is based on an International Standard by the name of ECMAScript. ECMAScript is also the basis of Javascript, which is the language behind the ever-growing AJAX technologies.
But the difference between ActionScript and Javascript is more than just semantics. ActionScript requires the Flash plugin which handles the rendering of code. Javascript on the other hand, is processed and rendered by the web browser.
One of the problems for AJAX developers is that every major browser has its own Javascript virtual machine. Internet Explorer uses what it calls JScript, while Mozilla uses an implementation known as SpiderMonkey. Adobe's ActionScript on the other hand has always used a third renderer which is built into the Flash player.
While all three of these renderers are *based* around ECMAScript, they all vary somewhat on how they process the actual code. These variations make developing complex cross-platform AJAX applications difficult and sometimes impossible.
Today's announcement essentially means that the Mozilla and Internet Explorer now have access to the same rendering implementation that Adobe uses in ActionScript. Adobe hopes that this release will help build a standardized rendering engine for all implementations of ECMAScript.
Adobe claims it's "Just In Time" compiler can render up to ten times faster than Mozilla's SpiderMonkey.
The end result will see Adobe's virtual machine built into future versions of the Firefox browser in early 2008. Microsoft hasn't publicly commented on Adobe's release yet, but given the five years between IE 6 and IE 7 it seems unlikely we'll see IE incorporating the new VM any time soon.
[1]: http://www.adobe.com/aboutadobe/pressroom/pressreleases/200611/110706Mozilla.html "Adobe releases Tamarin"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/mojiti-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/mojiti-logo.jpg Binary files differnew file mode 100644 index 0000000..8762235 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/mojiti-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/reboot.txt new file mode 100644 index 0000000..7fdec31 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Make the bad man stop. Here's your morning reboot.
* Adobe releases Flash VM as open source. The release has been named Tamarin and will be hosted by the Mozilla foundation. This doesn't mean that the Flash player is open source, just the EMCAScript 4 virtual machine, frameworks and garbage collection engine.
* [CNet reports that an "extremely critical"][2] vulnerability has been discovered in Microsoft's XML Core Services. The exploit threatens Windows 2000, Windows XP SP 2, and Windows Server 2003. Microsoft's next patch release is scheduled for November 14, but so far [no word on whether this will be included in the patch][3].
* Time magazine has [picked YouTube as "Invention of the Year."][4] Nevermind that YouTube isn't exactly an invention.
* Microsoft has announced that it will be [offering movie and tv downloads][5] through its XBox Live online service. The movies will be playable for a 24 hour period and can't be burned to DVD and won't play back on other devices.
[1]: http://www.adobe.com/aboutadobe/pressroom/pressreleases/200611/110706Mozilla.html "Adobe releases Tamarin"
[2]: http://news.com.com/2100-1002_3-6133028.html?part=rss&tag=6133028&subj=news "CNet Windows security exploit"
[3]: http://www.microsoft.com/technet/security/advisory/927892.mspx?tag=nl "Microsoft Security advisory"
[4]: http://www.time.com/time/2006/techguide/bestinventions/inventions/youtube2.html "YouTube: Invention of the Year"
[5]: http://www.nytimes.com/2006/11/06/technology/07xboxcnd.html?_r=1&adxnnl=1&oref=slogin&adxnnlx=1162917687-33kUEqXt4SBVXW9M9q2IgA "NYTimes on Microsoft Downloads"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/xbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/xbox.jpg Binary files differnew file mode 100644 index 0000000..f69f9db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/xbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/xbox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/xbox.txt new file mode 100644 index 0000000..7e0b520 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Tues/xbox.txt @@ -0,0 +1 @@ +As we reported this morning, Microsoft will soon be delivering HD Video to your living room via the XBox 360. From the New York Times:
>In the last few years, Microsoft has been pushing the idea of Media Center PCs, which are meant to sit in the living room and supply music and video to the stereo and the television set. But the concept has not caught on, in part because of the complexity of setting up and using these systems.
Microsoft apparently hopes to change this by streaming movies not to your computer but to your XBox 360 which is, in most cases, already hooked up to the internet.
One of the interesting things about this is it seems to circumvent Microsoft's previous push of its "Media Center PC."
While the HD delivery is pretty cool, the size of the files is significantly larger and ruins the whole impulse purchase factor. You can still impulsively decided to order a movie, you just might have to wait an hour or two before it's viewable.
Microsoft is positioning this as movie-rental service. Licensing agreements and DRM will prevent you from moving your content from the XBox to any other playback devise.
Given the XBox 360's paltry storage capacity (currently 20gigs), this means you can only store about 4 hours of high-def video at a time. For movies this won't matter since they are "rentals" that expire after 24 hours. Television shows on the other hand can be stored and, to address the lack of storage space, Microsoft says that television shows you delete can be downloaded again at no additional charge.
The DVR market is currently saturated with some pretty awful technology, but hopefully with Microsoft entering the foray, consumers will see some better options become available.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/like-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/like-logo.jpg Binary files differnew file mode 100644 index 0000000..4f88fcd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/like-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/like-search.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/like-search.jpg Binary files differnew file mode 100644 index 0000000..3db63e8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/like-search.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/like.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/like.txt new file mode 100644 index 0000000..c1ddfcf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/like.txt @@ -0,0 +1 @@ +As I reported earlier this morning, [Like.com][1] is a new shopping site based around an image search engine. Like's image search lets you browse and search by visual similarity rather than textual descriptions. [Riya][2], the folks behind Like, already have an image recognition search engine that has seen limited success, but the company has shift focus slightly with Like.
At the moment Like focuses on shopping searches and you can't upload an image, rather you start out with a text search and then Like gives you a choice of images based on your search terms. You can also browse by celebrity photos and find products similar to those that Paris Hilton, Tom Cruise and others are wearing in the pictures.
The idea is that if you find an item you like in a photograph, for example, a particular watch, pair of shoes, handbag or jewelry, Like will find related products by examining the actual image. Like.com then presents a link to purchase the item from Amazon an other online retailers.
I'm probably not the target market for finding shopping results based on celebrity photos, but the search results themselves are pretty impressive. And you can specify that like match against various criteria including, color texture and shape. So if you see a photo on the site of Paris Hilton in red shoes, but you decide you'd like to see them in black, just select black from the color picker and Like narrows your search. You can also weight your criteria's importance using sliders at the top of each results page. This way you can search by color, but emphasis results based on shape.
Because the site is currently limited to images already in its database, the experience is somewhat less than spectacular, but Like claims to be launching an image upload feature in the next few months. Although Like claims to be in alpha status, I had no problems using the site and I'm looking forward to using like with uploaded images wherever that feature becomes available.
[1]: http://www.like.com/ "Like.com"
[2]: http://riya.com/ "Riya.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/mojiti.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/mojiti.txt new file mode 100644 index 0000000..d45a518 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/mojiti.txt @@ -0,0 +1 @@ +Mojiti is a video annotation service that allows you to add captions and highlights to your uploaded video. Mojiti supports YouTube, Revver, MySpace Video, Metacafe, iFilm and more.
Mojiti offers what it calls a "Spot Ticker" which allows you to add a subtitle at any point in the movie.
To use Mojiti you just paste in the URL of whatever clip you'd like to annotate and then add your caption. Mojiti also lets you add highlights to parts a video, for instance to point out your crazy cousin picking his nose at the family picnic.
Aside from the obvious fun of doing more with your videos, Mojiti has a large base of users who add subtitles to foreign language clips. Of course there's no way to verify the accuracy of the translations, but it's nice to see people making an effort.
Once you're done adding your content you can host the new movie with Mojiti or download it and post it on your own site.
The Mojiti video player is not quite as nice as YouTube's and it seems to have a nasty habit of crashing the Safari browser, but Firefox was unfazed.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/reboot.txt new file mode 100644 index 0000000..4da4766 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />And there you have it. Here's your morning reboot:
* [Like.com][6] is a new image search engine that can search using an image as input. This has been the holy grail of image search for some time. If Like can do what it says it can do, this will be huge. [via [TechCrunch][5]
* [Skype has released v3 beta][1] which features, among other things, a completely redesigned UI. The beta is Windows only and has a couple of known issues you should review before jumping in with both feet.
* Google has announced it will be increasing its presence in the radio advertising market. Advertisers will be able to sign up via their AdWords accounts. Google Audio Ads should begin testing by the end of the year. [via [CNet][3]]
* Apple has [announced new MacBooks featuring the Intel Core 2 Duo][4]. Now where did I put that receipt for my month old Core Duo?
[1]: http://www.skype.com/download/skype/windows/downloading_beta.html "Download Skype Beta 3"
[3]: http://news.com.com/2100-1024_3-6133325.html?tag=nefd.top "CNet on Google Audio Ads"
[4]: http://www.apple.com/ "MacBook Core 2 Duo"
[5]: http://www.techcrunch.com/2006/11/08/riyas-likecom-is-first-true-visual-image-search/ "TechCrunch on Like.com"
[6]: http://www.like.com/ "Like.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/flixster-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/flixster-logo.jpg Binary files differnew file mode 100644 index 0000000..0d49b18 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/flixster-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/flixster-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/flixster-screen.jpg Binary files differnew file mode 100644 index 0000000..fb65d03 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/flixster-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/flixster.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/flixster.txt new file mode 100644 index 0000000..fd85354 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/flixster.txt @@ -0,0 +1 @@ +[Flixster][1], the social networking site based around movies, is beginning to rise up from its below-the-radar status. Flixster has been around for almost a year now, but it's largely been quiet while the founders worked out the kinks. Now Flixster looks like it's ready for prime time. And don't let the phonetic similarity with Friendster fool you, Flixster doesn't suck.
Flixster has a staggering amount of content. I played around with the site this morning and lost a good hour of productivity browsing through reviews and movie listings.
Imagine Netflix and IMDB mashed together and mixed with user generated pages and you'll have the basic idea. The most addictive thing on the site is the never-ending movie quiz, which is sure to suck you in after a few questions.
It may just be me, I'm a bit of movie freak, but I loved Flixster. With all the hallmarks of a successful social networking site, seamless integration with your existing MySpace page, YouTube hosted movie previews and skinnable user pages, Flixster has enormous potential.
I've always been disappointed in Netflix's offerings when it comes to reviewing and sharing movie reviews and now I find that I'm disappointed that Flixster doesn't rent movies. But it seems like a fairly obvious step for Flixter to eventually partner with movie studios for sales, rentals, downloads, promotions and of course advertisements.
[1]: http://www.flixster.com/ "Flixster.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/googleprintads.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/googleprintads.txt new file mode 100644 index 0000000..f402b34 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/googleprintads.txt @@ -0,0 +1 @@ +Just when you thought [Google][1] had achieved the maximum amount of legal heads for a Hydra, they're back with a new one -- Google Ads for Print.
Google has tried venturing into the print realm before. Around this time last year Google tried brokering with some magazines to resell ad space to AdWords users, but the project met with limited success.
Round two sees Google with a prodigious number of big name newpapers on its side and looks like a much more promising venture. At the moment the Google Print Ads program is in "alpha" status and limited to
Google's partners in this new venture include some impressive names in old media, including The New York Times, The Washington Post, The Boston Globe, the Chicago Tribune and nearly fifty others. So far Google has declined to release a list of advertisers.
Google Print Ads begins its test run later this week and the initial period will last through January. Google claims that it will be adding weekly newspapers and magazines at some point in the future.
[1]: http://www.google.com "Google"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/googletorrents.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/googletorrents.jpg Binary files differnew file mode 100644 index 0000000..aad6101 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/googletorrents.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/googletorrents.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/googletorrents.txt new file mode 100644 index 0000000..d38e728 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/googletorrents.txt @@ -0,0 +1 @@ +[Google Torrents][1] leverages Google's recently released customized search features to give you torrent results. Torrent search engines don't tend to last too long, especially when they have Google in their name, so jump on this one quick.
Google torrents give you access to all the popular torrent reactors, plus whatever else happens to indexed on the Google servers. I few test searches turned up results from mininova, isohunt and other big trackers as well as a few I hadn't heard of before.
I have no idea why the folks behind the site chose to use the word Google in their name, but I suspect they'll be getting a cease-and-desist letter before too long. However, I also have no doubt that similar search engines will pop up soon. Heck, you could even make one just for yourself.
[1]: http://googletorrents.com/ "Googletorrents.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/meebo-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/meebo-logo.jpg Binary files differnew file mode 100644 index 0000000..42f40f7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/meebo-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/meebo-pop-out.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/meebo-pop-out.jpg Binary files differnew file mode 100644 index 0000000..24ab909 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/meebo-pop-out.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/meebo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/meebo.txt new file mode 100644 index 0000000..5d21570 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/meebo.txt @@ -0,0 +1 @@ +As I mentioned in this morning's reboot, the web-based chat service [Meebo][1] has announced a 1.0 release. The new release features a redesign, support for drag-and-drop buddy list management, support for AIM profiles and a feature called "pop out."
Pop out opens your buddy list and chat screen in new windows, though if you have a popup blocker installed you may have to disable it get this working.
The new version of Meebo also reportedly boosts speed improvements and a fantastic selection of localizations, including Thai, Swiss German and a host of others.
The layout and design of Meebo is clean, simple and intuitive. I will confess to never using the old Meebo so I can't comment much on the redesign except to say that it has a very heavy Windows XP influence. If you're a long-time Meebo user and you like the old interface, you can revert to that by choosing a different skin.
My favorite feature of Meebo is that it doesn't require you to sign up for an account, just login with your existing IM information and Meebo will open up a chat session for you.
For those looking to do even more with Meebo, there's a Javascript widget, [Meebome][2] that allows you put a chat window on your website, MySpace page or anywhere else. Now you can chat with people as they browse your site.
Like the man said, the url bar is the new command line, and Meebo brings the ability to IM to any computer with a web browser. This should be handy for travelers and others who don't want to, or don't have the admin access to, install client IM programs.
[1]: http://wwwm.meebo.com/index-en.html "Meebo.com"
[2]: http://www.meebome.com/ "Meebome.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/reboot.txt new file mode 100644 index 0000000..bbd5c0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Good Morning internets! Here's your Monday rebbot:
* Wikipedia as a virus platform -- German hackers exploited the anyone-can-edit feature of Wikipedia to spread the blaster worm. The hackers added a note to the existing page on the Blaster Worm with a link to a "fix" which actually downloaded the worm. Wikipedia quickly changed the page. [via [Tech2][2]
* [Meebo][3], the web-based IM client, has announced its 1.0 release. New features include custom skins, drag-and-drop groups, and "pop-out," a feature that opens your chat session in a new window. [via [Mashable][4]]
* [WhoToTalkTo][5] is a new job search tool built around the idea of referrals. It's a simple but potentially helpful concept, post about places you know that are hiring and see posts by others. [via [Lifehacker][6]
* Fox Interactive announced a new desktop/browser widget platform this morning. The service, going under the name [SpringWidgets][7], offers customized news feeds, weather and more. The desktop version is currently limited to Windows. [via [TechCrunch][8]]
* Technorati has released a new "[State of the Blogosphere][9]" report
which claims, among other things, to now be tracking 57 million blogs.
[2]: http://www.tech2.com/india/news/telecom/wikipedia-hijacked-to-spread-malware/2667/0 "Tech2.com"
[3]: http://wwwm.meebo.com/index-en.html "Meebo.com"
[4]: http://mashable.com/2006/11/04/meebo-im-launches-10-version/ "Mashable on Meebo"
[5]: http://www.whototalkto.com/ "whototalkto.com"
[6]: http://www.lifehacker.com/software/job-search/turn-job-referrals-into-new-jobs-212630.php "LifeHacker on WhoToTalkTo"
[7]: http://www.springwidgets.com/ "Spring Widgets"
[8]: http://www.techcrunch.com/2006/11/06/fox-interactive-launches-desktopwebsite-widget-platform/ "TechCrunch on SpringWidgets"
[9]: http://technorati.com/weblog/2006/11/161.html "Technorati: State of the Blogosphere"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/soundloud.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/soundloud.jpg Binary files differnew file mode 100644 index 0000000..0257832 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/soundloud.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/soundstation b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/soundstation new file mode 100644 index 0000000..eb04d94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.06.06/mon/soundstation @@ -0,0 +1 @@ +Listen up starving musicians, a new service called [SoundStation][1] from SoundLoud.com can help speed your transformation from rags to riches. SoundStation is music player that can be embedded in any page and it allows you to sell your songs within the page.
Similar to Snocap, the MySpace music player/store, SoundStation makes it easy to embed your music in a page and sell it, rather than having to redirect listeners to iTunes, Napster or other dedicated music store.
But SoundStation has it's work cut out for them. Snocap is already way ahead in terms of market share and profile, but SoundStation offer better royalty rates for musicians and in a world where nearly everything seems to be cut-and-paste simple, royalties could tip the balance.
SoundSation offers artists a slightly lower fee of $0.33 on a $0.99 track whereas iTunes takes $0.34 and MySpace Music and Snocap scrape a whopping $0.45 off every track.
As part of the service, SoundLoud automatically tracks all the activity of your SoundStation Music Stores. You can view your total visitors, plays, downloads, and earnings information at SoundLoud.
At the moment you are limited to selling 7 songs, but SoundLoud promises unlimited downloads and whole album downloads are both in the works.
Oh and a note to SoundLoud, just because you're building a Flash-based music paler is no reason to build your whole site in Flash. Yuck.
[1]: http://soundloud.com/ "SoundStation from SoundLoud.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/copyscape.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/copyscape.jpg Binary files differnew file mode 100644 index 0000000..5cf405d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/copyscape.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/copyscape.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/copyscape.txt new file mode 100644 index 0000000..cfaa573 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/copyscape.txt @@ -0,0 +1 @@ +According the Monkey Bite's reader who sent this to me, I am "the last person on the internet" to hear about [Copyscape][1].
Fair enough.
Back when I [wrote about Reputation Defender][2] a bunch of comment came in suggesting that Reputation Defender should expand their services to track stolen blog content. The problem for many blog owners is that spam blogs (splogs) often scrape out content and then include it on their own sites.
Most of the time splogs aren't claiming credit for what you write, but they are taking your content and making money off it via advertising and that amounts to copyright infringement in many cases.
Copyscape lets you track these people down using their search engine. The premium version of the site allows for automated tracking at the rate of $0.05 per search and allows you to track your responses.
But Copyscape doesn't provide any way of actually dealing with people stealing your work, which is what people wanted Reputation Defender or someone else to offer.
But until such a service arises, you can at least use Copyscape to keep tabs on who's ripping off your content.
[1]: http://copyscape.com "Copyscape"
[2]: http://blog.wired.com/monkeybites/2006/10/need_someone_to.html "Monkey Bites on Reputation Defender"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/curbly.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/curbly.jpg Binary files differnew file mode 100644 index 0000000..f0f4cf9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/curbly.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/curbly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/curbly.txt new file mode 100644 index 0000000..05e31e3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/curbly.txt @@ -0,0 +1 @@ +DIY design enthusiast's unite, you now have your own social network for sharing design tips, trick and projects -- [Curbly.com][1].
Curbly offers the familiar features of social networking sites, a blog, profile page, photos etc. Curbly also offers what it calls "clippings," for grabbing photos around the web. Just put the Curbly bookmarklet in your toolbar and next time you see a photo you'd like to save, click the bookmark and you're away.
the clippings feature works quite well too, I click a page rather than a photo and Curbly pulled out all the photos on the page and asked which one I wanted.
But the focus of the site is sharing design tips and home-decor projects with other users. if anyone has seen the DIY Photo Wall project that I've come across on several sites lately, well, that [comes from a Curbly user][2].
I discovered everything from bathroom remodeling tips to how to [make window blinds out of punch cards][3].
If you're looking to spruce up your home or just want a new DIY project for the weekend, Curbly is a good place to start.
[1]: http://www.curbly.com/ "Curbly.com"
[2]: http://www.curbly.com/alttext/posts/74-Easy-Photo-Wall-on-a-Shoe-s-string-s-wire-Budget "Easy Photo Wall Project"
[3]: http://www.curbly.com/benmoore/posts/84-DIY-Computer-Punchcard-Window-Blinds "Curbly project: window blinds out of computer punch cards"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/liberated.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/liberated.txt new file mode 100644 index 0000000..3e66269 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/liberated.txt @@ -0,0 +1 @@ +<p><a href="http://liberatedfilms.com/" title="LiberatedFilms">LiberatedFilms, a new film and video publishing site</a>, launched earlier today. LiberatedFilms focuses on creating exposure for independent film makers beyond the usual film circuits and traditional publicity venues.</p>
<p>At the same time it’s a nice way for film fans to find new work without having to wade through the overwhelming amount of video available on more traditional video sharing sites like YouTube. LiberatedFilms is not for posting videos of your cat chasing string, it’s a bit more highbrow than that.</p>
<p>To keep the quality of the site high, all uploaded films are screened and reviewed by a panel of filmmakers before they are made public. Of course this means there are less films posted everyday, but it also means you don’t have to wade through the massive amount of not-so-great content found on more public sites.</p>
<p>At the moment there are only 41 films and 62 members, but keep in mind when we say just launched we mean just launched as in hours ago.</p>
<p>Casual browsers can watch films in low-fi broadcast similar in quality to the best of what you see on YouTube, but LiberatedFilms also offers a hi-res alternative (for some films). Unfortunately but you’ll have to pay to access the hi-res versions; a one month membership is $4.99, but buying long subscriptions drop the rates somewhat. Of course keep in mind that not all films are available in the higher resolution format.</p>
<p>The remainder of LiberatedFilms functions like a typical social site, you can sign up for an account, reviews and rate films, leave comments for other members and more. There is also nice tagging support and browsing by genre.</p>
<p>As for the films, I only had time to watch two and while neither of them were exactly what I would call groundbreaking, they were light years better than the average YouTube upload. If you’re a film nut, keep an eye on this one it could prove interesting.</p>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/liberatedfilms.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/liberatedfilms.jpg Binary files differnew file mode 100644 index 0000000..80c49e2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/liberatedfilms.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/reboot.txt new file mode 100644 index 0000000..d4b4ace --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/reboot.txt @@ -0,0 +1 @@ +* Microsoft claims [Linux infringes on MS intellectual property][1]. CEO Steve Ballmer said "every Linux customer basically has an undisclosed balance-sheet liability." Ballmer had gave no specifics, nor have any lawsuits been filed.
* [According to ITWire][2], German security company, SecurStar, claims that "Simply by sending an invisible and unnoticeable SMS message to a particular cellphone, spying on cell phone users has become child's play." The technique uses a SMS delivered trojan horse to make every call from the victimized phone a 3-way call.
* The EFF reports that [movie studios are suing to stop the loading of DVDs onto iPods][3]. The suit targets Load N' Go Video, a DVD to iPod transfer service.
* The BBC has announced it will be [paying citizen reporters][5] for their cellphone and camera footage. Now you too can discover just how little journalists actually make. [via [Micro Persuasion][4]]
[1]: http://www.computerworld.com.au/index.php/id;839593139;fp;16;fpid;1 "Computer World on MS's Linux claims"
[2]: http://www.itwire.com.au/content/view/7216/127/ "ITWire on cellphone attack"
[3]: http://www.eff.org/deeplinks/archives/005010.php "EFF on Studio's lawsuit"
[4]: http://www.micropersuasion.com/2006/11/bbc_to_pay_citi.html "Micro Persuasion on BBC"
[5]: http://www.editorsweblog.org/news/2006/11/bbc_will_pay_for_citizen_journalism.php
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesaba.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesaba.jpg Binary files differnew file mode 100644 index 0000000..dda3632 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesaba.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe-freak.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe-freak.jpg Binary files differnew file mode 100644 index 0000000..712d73f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe-freak.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe-logo.jpg Binary files differnew file mode 100644 index 0000000..5d61c32 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe.jpg Binary files differnew file mode 100644 index 0000000..bd0eb4c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe.txt new file mode 100644 index 0000000..19330e4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Fri/wesabe.txt @@ -0,0 +1 @@ +Wesabe is new community niche site designed to help you take control of your personal finances. We've been [watching Wesabe develop][1] for a while, but now that it's live and kickin' I decided to dive in and give it a try.
Wesabe is a community site that lets users share their finance tips, suggestions and more in hopes that the advice will help you make better financial decisions and take control of your personal spending.
I should note upfront that I don't have a lot of experience with personal finance management, I haven't even seen my checkbook in two years, let alone balanced it. My finances are pretty simplistic, I round up whatever is under the couch cushions and deposit it once a week into a checking account. I tried using Quicken a few years ago, but found it tedious and in the end it didn't tell me anything I didn't already know -- I'm broke.
So let's just say I was prepared for Wesabe to bore me out of my skull and not much more. But as it turns out, I'm a huge fan of Wesabe.
Once you create an account Wesabe will let you upload your financial data using a desktop program which you can download (Mac & Windows) or you can manually export data from your bank or credit card accounts and upload it using Wesabe's web form.
I hesitated a bit about uploading my data, this is after all some pretty sensitive stuff, but after digging around a bit on site and reading some reviews I decided that Wesabe was probably just as secure as my bank website. For those that have similar concerns I recommend reading [Wesabe's security and privacy page][2]. Also bear in ming that Wesabe doesn't store you bank login information on their servers.
Imagine Quicken in a web interface with the tagging powers of Flickr and you'll pretty much have Wesabe pegged. Once I uploaded my bank data I used the Wesabe interface to add tags to all my expenditures.
Wesabe's tag system is incredibly smart, for instance I generally always fill up my tank at the Shell station near my house so I tagged one of those entries as "gasoline" and Wesabe added that tag to all the other entries with the same title. what's more, every time I upload a new statement Wesabe will automatically add that tag to the new entries.
One the right hand side of your account page there's a list of your tags and clicking a tag will take you to a page showing how much you spent on those items. As with any tagging-based site you can be a detailed and/or general as you want with your tags.
In addition to the organizational tools and account tracking Wesabe collects user submitted tips and displays relevant bits of advise based on how your tags overlap with other user's tags. Tips range from enlightening to obvious (hasn't everyone's mother been telling them not to grocery shop when you're hungry since you first moved out of the house?). If you have a tip to share you can add it to the site, or comment on existing tips with add insight or further suggestions.
Wesabe's third main feature is creating personal goals. You can choose from existing goals that other users have posted (such as saving up for new computer, paying off credit cards etc) or create your own. Like everything else goals are tied in with tips via tags, but you can also leave comments for the community.
There's a whole lot more to the site that I don't have time to go into, but I should note if you're not comfortable uploading your financial data you can still use Wesabe, you just won't have the personalized access.
My favorite part of Wesabe: at the bottom of every Wesabe page there's a "I'm Freaking Out" link that leads away from all things finance related and gives you a Flickr slideshow of kittens.
[1]: http://blog.wired.com/monkeybites/2006/09/wesabe_promises.html "Monkey Bites on Wesabe"
[2]: https://www.wesabe.com/page/security "Wesabe"
[3]:
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/blogmailr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/blogmailr.jpg Binary files differnew file mode 100644 index 0000000..900176b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/blogmailr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/blogmailr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/blogmailr.txt new file mode 100644 index 0000000..42fda1e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/blogmailr.txt @@ -0,0 +1 @@ +[Blogmailr][1], a new service from [Telligent][2] that allows you to post to your blog via email, launched last week. I've been playing with Blogmailr for a few days now and I have to say I'm impressed. If all goes well I'll be posting this using Blogmailr.
Blogmailr takes advantage of the Metablog API and uses it's own e-mail parsing tools to pull out your post, images, and tags and then posts that info to your blog via the Metablog API.
to get it working you sign up for an account, tell Blogmailr your blog address and login information and you're done. Blogmailr then generates an email address something@blogmailr.com. Just add that address to your address book with the handy vcard Blogmailr generates and you're ready to go.
Write your blog post however you normally do and instead of logging into your admin section, you just email it to your Blogmailr.com address.
Blogmailr supports most major blogging platforms. If yours isn't on the list there's a very good chance it doesn't support the Metablog API, which means there isn't a whole lot Blogmailr can do about it.
The range of support varies somewhat by blogging service, most allow file uploading via email attachments and tags give in the form <code>[tags: tagname1, tagname2]</code>
The usefulness of Blogmailr will depend somewhat on your work habits. Many people live in their email program and it's always open which makes Blogmailr an attractive way to post without having to open a new browser window. But the big appeal here seems to be posting from mobile devices. I haven't used it myself, but there's already a lot of buzz around the web attesting to how easy Blogmailr makes mobile posting.
Which means I could probably post to Monkey Bites from, say, Tahiti, just as easily as this apartment. Hmm.
Blogmailr is free, but will leave a "posted with blogmailr" badge at the bottom of your post. There is also a commercial version available. The Single-User commercial account is $2.99/mo per-user. Blogmailr asks that if you make more than $300/mo from your blog that you use the commercial license.
[1]: https://www.blogmailr.com/
[2]: http://telligent.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/gearth-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/gearth-logo.jpg Binary files differnew file mode 100644 index 0000000..ca0b4bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/gearth-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/googlearth.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/googlearth.txt new file mode 100644 index 0000000..96ade21 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/googlearth.txt @@ -0,0 +1 @@ +A few weeks ago Google quietly released [Google Earth Release 4 Beta][3]. I downloaded the new version and have been playing with it for a couple weeks. This morning I realized I had overlooked what's now my favorite feature -- historical maps. I first noticed that Google Earth has added historical maps when I [saw a blog post about it on ZDNet][4] this morning.
But first a bit about Google Earth beta 4. Speed. Oh the speed. GE beta 4 sees much improved performance, particularly if you have a lot of overlays activated. Beta 4 is much faster at rendering, zooming and coming into focus.
GE Version 4 features a new icon set for markers and various overlays. There are also numerous improvements and new features like altitude for overlays. If you use [the popular Global Cloud Layer][2], you can now zoom through the cloud layer and pan back toward the sky and you'll see clouds instead of the generic blue. You can also set the clouds to cast shadows on the surface if you like. The altitude settings can apply to any overlay you want to add.
GE always was and continues to be a RAM hog, but that's somewhat expected given what it's capabilities. With about five overlays activated asking GE to zoom into Manhattan gobbled up almost 400 MB of RAM. As with the previous releases, the more RAM you have the better performance you'll see.
My favorite part of GE beta 4 is definitely the historical maps feature which allows you to overlay Rumsey Historical maps. Regular features like the state and national border overlay will still outline the current layouts so you can see how things have changed over the centuries. At the moment there are about twenty maps available, including the world globe of 1790, London in 1843, New York in 1836, the Lewis and Clarke expedition of 1814 and more. Below is a screenshot of New York in 1836 and one of the present day Manhattan.
Google Earth remains a one of kind program and beta 4 sees some great new features and a welcome speed boost. If your computer is up for it, I highly recommend downloading Google Earth beta 4.
[2]: http://www.gearthblog.com/blog/archives/2006/09/global_clouds_w.html "Google Earth Global Could Overlay"
[1]: http://earth.google.com/ "Google Earth"
[3]: http://earth.google.com/earth4.html "Google Earth Beta 4"
[4]: http://blogs.zdnet.com/Google/?p=387 "ZDNet blog on Historical Maps"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/jamglue-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/jamglue-logo.jpg Binary files differnew file mode 100644 index 0000000..221fc55 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/jamglue-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/jamglue-mixing.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/jamglue-mixing.jpg Binary files differnew file mode 100644 index 0000000..1280308 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/jamglue-mixing.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/jamglue.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/jamglue.txt new file mode 100644 index 0000000..5ba9ada --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/jamglue.txt @@ -0,0 +1 @@ +[Jamglue is new remixing website][1] with some social networking features thrown in for good measure. The folks behind Jamglue were kind enough to give me a beta invite over the weekend.
There are a couple of other sites out there offering similar services, but none of the ones I've tried have anywhere near the simple, streamlined and easy to use interface that Jamglue offers.
Jamglue is bit like a simplified version of Apple's garageband, living in the confines of your browser. After you set up your account, just upload any audio clips you'd like to play with. During the upload process you have the option to attach a creative commons license to your work, which is a nice touch. Alternately you can make use of clips that other users have uploaded.
The next step is to create a mix, give it a title, brief description, set the tempo and pick a license. You will then be take into Jamglue's Flash-based mixing app. For the most part everything is pretty intuitive and much of the interface is accomplished via very nice drag-and-drop features.
Once you're happy with your mix you can save it, share it with the Jamglue community or use some YouTube-style cut-and-paste code to embed it in any page you like.
Jamglue is a private beta at the moment so you'll have to sign up and wait for a while. Most people seem to have gotten an invite sent within a few days at the most.
The only real side to Jamglue was how quickly it revealed that I have no talent for remix tracks. But that's no fault of Jamglue.
[1]: http://www.jamglue.com/ "Jamglue.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/newyork1836.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/newyork1836.jpg Binary files differnew file mode 100644 index 0000000..71e2eb6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/newyork1836.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/newyorknow.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/newyorknow.jpg Binary files differnew file mode 100644 index 0000000..8961d5e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/newyorknow.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/podworks scree.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/podworks scree.jpg Binary files differnew file mode 100644 index 0000000..075650b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/podworks scree.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/podworks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/podworks.txt new file mode 100644 index 0000000..de00034 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/podworks.txt @@ -0,0 +1 @@ +Next up in our series on ways to get songs off your iPod is Podworks, another Mac-only program, Podworks (I'll be focusing on Windows and Linux options later in the week). Podworks is a PowerPC app, which means it will be running under Rosetta on Intel Macs.
Podworks has a number of ways to recover your music from an iPod, the easiest of which is to simply click "Copy All," which copies everything on your iPod to whatever location you select. Alternately you can select a range of songs and only copy those songs.
Podworks can also send the songs straight into iTunes by using the "Send All to iTunes" or "Send Selected to iTunes" options.
Podworks lacks the drag and drop features of Senuti, but makes up for it by being smarter about duplicate songs. Podworks still doesn't warn or ask about duplicates, instead it just silently skips them (or overwrites them depending on your settings.
Like others, Podworks can play songs on your iPod though when I say play I mean literally play, not skip or fast-forward and changing views will stop playback.
Podworks is shareware and costs $8. There is 30 day trail version which is limited to 250 song transfers.
####The Lowdown
**Good**
* Doesn't duplicate tracks when transfering songs
* Can sync iTunes to iPod with one click
* Easy to use
**Bad**
* Lack of Universal binary makes it a bit slower than others
* No way to view your iTunes Library along side your iPod
* No drag-and-drop transfers.
[1]: http://www.scifihifi.com/podworks/ "Podworks"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/reboot.txt new file mode 100644 index 0000000..d4a95e8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Have a reboot why dontcha?
* Sun Microsystems announced today that it will [release the Java source code under a GPL license][1]. The software will be under the version 2 of the General Public License (GPLv2), which governs Linux and many other open-source products, but Sun is employing the so-called "classpath exception," so that programs shipping with Java, need not use the GPL.
* More on Microsoft/Universal deal: According to Universal CEO Doug Morris the iPod and Zune, "are just repositories for stolen music." He went on to [tell Billboard Magazine][2], "So it's time to get paid for it." So does this mean it's okay for Zune owners to steal music from Universal artists, since Universal has already taken their cut?
* Google has [introduced a new start page for Google Apps for Your Domain][3] which allows for more customization, including the use of GMail with customized addresses in place of @gmail.com.
* [Lycos announced a new service today called Lycos Cinema][4]. The company claims Cinema will combine online video and social networking. Lycos claims the technology it has created "allows for the virtual living room." No word on whether anyone has told them about YouTube.
[1]: http://news.zdnet.com/2100-3513_22-6134584.html "ZDNet on Sun Announcment"
[2]: http://billboard.com/bbcom/news/article_display.jsp?vnu_content_id=1003380831 "Billboard.com"
[3]: http://www.earthtimes.org/articles/show/10413.html
[4]: http://news.yahoo.com/s/nm/20061113/wr_nm/media_lycos_dc "Yahoo on Lycos"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/senuti-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/senuti-screen.jpg Binary files differnew file mode 100644 index 0000000..fcd1667 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/senuti-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/senuti.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/senuti.txt new file mode 100644 index 0000000..fe179cb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Mon/senuti.txt @@ -0,0 +1 @@ +[Author's note: Before we get started a couple of quick points. As many commenters in our initial post pointed out, you can always copy songs off your iPod via the command line (or by making hidden files visible in the disk browser of your choice). While that's true, it's also true that you can read your email in Mutt or Pine, but most of us don't. I consider the hidden files method to be a last resort, especially give that a number of the programs we'll be looking at are free and make the process of recovering music streamlined and painless.]
First up in our review of iPod circumventors is a [Mac-only program by the name of Senuti][1]. Senuti is free (as in beer) and open source, licensed under the GNU GPL.
Senuti's interface mimics that of iTunes circa version 6 and should be easy for most users to figure out.
You can copy songs in Senuti by simply selecting the songs on your iPod and clicking the copy button. You can also copy playlists via drag-and-drop. By default Senuti will copy the songs to the music folder set in your iTunes preferences, but if you'd like the change that you can do so in Senuti's preferences.
I had no problems copying songs with Senuti and even discovered some music I had forgotten about using the "Hide iTunes Songs" feature. Invoking hide iTunes songs will show only those songs that are only on your iPod, select them, click copy and your songs will be recovered.
The main downside to Senuti is that it doesn't know to not duplicate tracks. If you have a playlist with ten songs on your iPod and the same playlist already exists in itunes, Senuti won't warn your about duplicates. Instead is will simply make copies of songs so you end up with a playlist that now has twenty songs. You can stop Senuti from duplicating the actual song files by choosing "overwrite songs" in the preferences, but there doesn't seem to be a way to stop the duplication of songs within playlists.
Senuti can also copy movies just like songs and can even restore photos from you iPod.
Senuti is developed and maintained Whitney Young; if you like the program you can make a contribution by visiting [fadingred.org][2].
*Good*
* Easy to use, interface will be familiar for iTunes users
* Can copy songs from Windows or Mac formatted iPods
* Ability to view only songs not in your music library
*Bad*
* no one-click sync of iPod to iTunes (though this is listed in the Senuti roadmap)
* No way to avoid duplicates when copying playlists
[1]: http://www.fadingred.org/senuti/ "Senuti"
[2]: http://www.fadingred.org/ "fadingred.org"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/google-maps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/google-maps.jpg Binary files differnew file mode 100644 index 0000000..107c1e8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/google-maps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/googlecalllink.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/googlecalllink.txt new file mode 100644 index 0000000..8dadb09 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/googlecalllink.txt @@ -0,0 +1 @@ +[The Google blog annouced][1] a new feature on [Google Maps][2] today. When you search for business on Google Maps there is now a "click to call" link which will call the selected business for you.
Clicking the link reveals a dropdown menu asking for your phone number. Enter your number and click "connect for free" and Google will call your phone number and automatically connect you to the business.
The call is free, but if you use a mobile number airtime minutes will still be used.
There is also an option to remember your number so in the future you can make calls with just two clicks.
It's a small but handy addition, especially since the call from Google will cause the phone number to show up on your caller ID in case you need later.
[1]: http://googleblog.blogspot.com/2006/11/click-to-call-in-google-maps.html "The Official Google Blog"
[2]: http://maps.google.com/ "Google Maps"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/internetporn.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/internetporn.txt new file mode 100644 index 0000000..2991a59 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/internetporn.txt @@ -0,0 +1 @@ +It turns out that the internet isn't all porn, in fact the internet is 99 percent porn free.
[According to a newly release U.S. government study][1], only one percent of the sites indexed by Google and Microsoft contain sexually explicit content. The study goes on the conclude that less than 6 percent of all searches return any sexually explicit results at all.
The government's new study, conducted by Philip B. Stark, a professor of statistics at the University of California, Berkeley, was commissioned by the Justice Department in the hopes of reviving the 1998 Child Online Protection Act.
The U.S. Supreme Court blocked the Child Online Protection Act in 2004, ruling that it would also stifle the free speech rights of adults on the Internet. The court went on to say that filtering software may work better than such laws.
Stark's research also looked at software filters and concludes that the strictest filter they tested, AOL's Mature Teen, blocked 91 percent of the sexually explicit Web sites. I'm no mathematician, but I think that means the odds of children finding porn on computers with filter software are, uh, low.
The less restrictive filters typically blocked about 40 percent of sexually explicit sites in Google and Microsoft's indexes.
The ACLU, which has long fought the Child Online Protection Act, is citing the new study as evidence that software filters are an effective alternative to legislation.
Additional Stark's study found that roughly half of all sexually explicit sites are foreign and thus beyond the reach of the Child Online Protection Act, whereas software filters retain their effectiveness regardless of the origin of the content.
The burgeoning field of image recognition software holds some promise that in the future software filters will get smarter and more effective, but in the mean time the debate over legislation will likely continue.
[1]: http://www.mercurynews.com/mld/mercurynews/business/technology/16007733.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/maps-call.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/maps-call.jpg Binary files differnew file mode 100644 index 0000000..7482cef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/maps-call.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/mp3.com.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/mp3.com.jpg Binary files differnew file mode 100644 index 0000000..3cb8a7f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/mp3.com.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/mp3com.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/mp3com.txt new file mode 100644 index 0000000..6c30d04 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/mp3com.txt @@ -0,0 +1 @@ +As noted in this morning's reboot, [MP3.com][1] is back from the dead and has reopening its servers to audio uploads. The landmark site is in no small part responsible for ushering in the online music era we've all come to know and love.
MP3.com, founded in 1997 by Michael Robertson, once had one of the largest collections of downloadable music on the net. A series of lawsuits forced MP3.com to pay out millions in copyright infringement damages. After being acquired by Universal Music in 2001 it was later sold to its current owner, CNET, in 2003.
However CNET only acquired the domain name not the millions of files once hosted on MP3.com's servers. CNET had transformed MP3.com into a music news and editorial site, but now the site is once again offering audio uploads for aspiring bands.
MP3.com is now offering band profiles, 100 MB of audio storage, and software to upload and edit music, videos, and photos. There's also a new Flash audio player that creates and saves playlists.
The feature set of the redesign seems targeted at going after MySpace Music, but having browsed around the site for the last hour, as much as I hate to admit it, from a band's point of view, I think MySpace is better.
The pages lack the customization features of MySpace (though the defaults look better than most MySpace pages) and the emphasis is less organic, community-based. MP3.com tries to integrate established artists with unknowns and claims to put them on equal footing, but in the end if comes off more like your favorite local band hired some slick PR company to turn them into an pseudo-established artist.
Like many CNET properties MP3.com feels like it's trying to do too much. And the advertising is prolific and annoying.
I want to be excited about MP3.com's redesign and new features, but frankly I found it less than compelling as a way to discover new bands.
[1]: http://www.mp3.com/ "MP3.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/sling.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/sling.jpg Binary files differnew file mode 100644 index 0000000..e14fee9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/sling.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/slingmedia.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/slingmedia.txt new file mode 100644 index 0000000..5190259 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/slingmedia.txt @@ -0,0 +1 @@ +Hutchinson Whampoa, which operates British mobile provider [3][2], has teamed up with [Sling Media][1] to delivery streaming cable television to mobile devises.
The announcement is part 3's new "X-series" service which aims to more broadband services to mobile subscribers. The X-series service, which for now will only run on the Nokia N73 and the Sony Ericsson W950i, will come with Sling Player Mobile pre-installed.
Also included in the package are offerings from Orb, Google and Microsoft. For the time being 3 has declined to give any pricing details, but a SlingMedia spokesperson I talked to said the new package plans will move away from a bandwidth-based price structure to a subscription model.
The new service is available in the UK beginning December 1st.
SlingPlayer Mobile is software that allows you to watch their regular television on your mobile handset. The company first introduced the software earlier this year and currently supports Windows Mobile smart phones.
The version to be installed on UK phones will be running on the Symbian software found in popular Nokia and Erikson handsets.
Hutchinson, 3's parent company has 3G networks in eight countries worldwide and is expected to follow the UK rollout with similar offerings in its Australian, European and Asian markets.
This is the first time SlingMedia has partnered with a mobile carrier to deliver its software and services.
Entertainment companies and content providers have historically been reluctant to support any technology that delivers content outside the traditional channels, but Brian Jaquet of SlingMedia claims the company has been working with not against the entertainment industry.
"We've had a lot of discussions with content holders to address their concerns," he says adding, "It's a fine line that you walk, you want to deliver a great application and service, but you want to be mindful of the content providers rights as well."
I asked about the possibility of a similar U.S offering, but so far SlingMedia has no immediate plans. Jaquet says, "you can't look at it as a cookie cutter situation, every market is very different."
[1]: http://www.slingmedia.com/indexa.php "SlingMedia.com"
[2]: http://www.three.com/ "3 X-series"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/untitled text b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/untitled text new file mode 100644 index 0000000..0ffa0ba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Thu/untitled text @@ -0,0 +1 @@ +
* [Microsoft, Yahoo and Google have agreed on a standardized format for sitemaps][1]. The structure, currently [available at Sitemaps.org][6], allows web masters to install an XML file on their servers that all three engines can use to track site updates.
* Google has added a new feature to Google Calendar that allows you to search public events. The search feature helps you find out what's happening in your area.
* [MP3.com officially relaunched][2] itself yesterday, with some nice new features for bands. The site now offers bands a profile page, 100 MB of audio storage and unlimited video hosting. [via [Mashable][3]]
* [Skype has released a new beta version its Mac software][5] with support for SMS and conference-calling. Skype 2.5 also lets you leave messages for offline users. It still doesn't have all the features of the Windows-only Skype 3.0, but it's getting there.
* Rumor: A number of news agencies are [reporting that production of the ever elusive Apple iPhone][4] has been contracted out to Hon Sio a Taiwanese manufacturing company. Rumor also claims that the iPhone will be sold unlocked. But just who is this "Rumor," That's what I'd like to know.
[1]: http://blogs.msdn.com/livesearch/archive/2006/11/15/microsoft-google-yahoo-unite-to-support-sitemaps.aspx "Microsoft, Yahoo and Google unite"
[2]: http://www.mp3.com/ "MP3.com"
[3]: http://mashable.com/2006/11/15/mp3com-to-challenge-myspace-in-music/ "Mashable on MP3.com"
[4]: http://www.bloomberg.com/apps/news?pid=conewsstory&refer=conews&tkr=AAPL:US&sid=a5skb65I7L4c "Bloomberg.com on the Apple iPhone"
[5]: http://www.skype.com/download/skype/macosx/25beta.html "Skype 2.5 beta"
[6]: http://www.sitemaps.org/ "Sitemaps.org"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/anapod explorer.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/anapod explorer.txt new file mode 100644 index 0000000..5630b16 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/anapod explorer.txt @@ -0,0 +1 @@ +Anapod Explorer raises the bar somewhat compared to the other programs we've looked at. AE is not just a way of recovering files, it also features a whole bunch of other stuff as well. The downside to the additional features is accompanying price increase. A full version of Anapod Explorer is $30 and available for Windows Only.
Anapod Explorer features all the basic stuff you'll find in the other programs, one-click back ups, duplicate file detection and drag-and-drop transfers. But in addition to that AE features the "Window's Integration," which allows you to browse your iPod like you would in Windows Explorer, but without the quirky file-names. AE can also sync your photos and movies as well.
AE includes a separate program, Anapod Xtreamer, which allows you to browse your iPod via any standard browser. Xtreamer makes it easy to transfer files, not just from your iPod to the connected computer, but to any computer on the network.
But the coolest feature in my opinion is the ability to do alter bitrates on the fly using AE's AudioMorph when transferring songs. This means you can keep high bitrate copies of your music on your hard drive and compress them during transfer to save space on your iPod.
Just in case all that wasn't enough for you, Anapod Explorer goes completely over the top and includes a database search engine that lets you execute SQL statements to search for music. Holy nerdy goodness.
There are about a dozen more features I haven't haven't touched on, but since most of them go far beyond our review goals (get music off your iPod) I'll leave them for you to discover.
It's not the cheapest way to get music off your iPod, but if you're looking to do more with your iPod and music, Anapod Explorer is worth a closer look.
####The Lowdown
**Good**
* Can sync iTunes to iPod with one click
* Excellent additional features (too many to list)
* Avoids duplicating songs
**Bad**
* Not free
* Overkill if all you want to do is get songs off your iPod
Previously reviewed:
[Senuti][1] (Mac only)<br />
[Podworks][2] (Mac only)<br />
[IPod Access][3] (Mac & Windows)<br />
[IPodRip][4] (Mac & Windows)<br />
[1]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o.html "Monkey Bites on Senuti"
[2]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_1.html "Monkey Bites on PodWorks"
[3]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_2.html "Monkey Bites on iPod Access"
[4]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_3.html "Monkey Bites on iPodRip"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/anapod-explorer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/anapod-explorer.jpg Binary files differnew file mode 100644 index 0000000..6754349 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/anapod-explorer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/anapode-Xtreamer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/anapode-Xtreamer.jpg Binary files differnew file mode 100644 index 0000000..26ce337 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/anapode-Xtreamer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/intel-core2-extreme.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/intel-core2-extreme.jpg Binary files differnew file mode 100644 index 0000000..e734aeb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/intel-core2-extreme.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/intel.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/intel.txt new file mode 100644 index 0000000..8ceca54 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/intel.txt @@ -0,0 +1 @@ +Intel announced today that its new quad core [Core 2 Extreme QX6700 (nicknamed "Kentsfield") will begin shipping][1] in time for the holiday season. The chips were originally set to begin shipping next year, but Dell had already jumped the gun and said they would be using the chip in their new servers and high end workstation.
Today's announcement puts Intel on top again in the never-ending chip race with AMD, whom Intel has been trailing for several years. AMD is planning on releasing its own quad cores sometime next year.
Intel claims the quad cores, which are essentially two dual cores sandwiched on the same chip, will give some applications as much as a 70% performance boost.
Before you get too excited, bear in mind that there isn't a whole lot of software out there that can really take advantage of a quad core chip. The most immediate beneficiaries of the new chips will likely be servers and grid computing projects. There are some high-end multimedia and scientific programs that are capable of using however many cores are present, but your average office and desktop programs will likely see only marginal performances gains from the new chips.
Intel's performance figures may however prove correct at some point in the future when software catches up with hardware. With more and more consumer machines already using dual cores and the new quad cores hitting the market, we will undoubtedly see more programs becoming multithread capable in the near future.
ZDNet has put together an interesting informal benchmark test using Intel's new quad-core Xeon 5355. The folks over at ZDNet reconfigured a Mac Pro to fit it with two quad cores, making an eight core machine, and [ran some benchmark tests][2]. In some tests the original Mac Pro actually out performs the new chips, though as ZDNet points out their custom machine does not benefit from optimized firmware or other components that Apple would likely add if they use the new chips.
So far Dell, IBM and a few others have announced plans to use the new chips. Apple, who typically does not announce such things, has so far not said anything about the new chips.
At $999 per chip, Intel's quad cores probably aren't going to fit most consumer budgets, but early adopters, gaming junkies and those who just have to have the latest and greatest will no doubt be excited.
[1]: http://www.cbronline.com/article_news.asp?guid=49E53381-F875-4EAE-96E8-DE26355F2A94 "Intel to Ship Kentsfield"
[2]: http://reviews.zdnet.co.uk/0,1000000193,39284700,00.htm "ZDNet benchmarks"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodaccess.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodaccess.txt new file mode 100644 index 0000000..0a99b2b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodaccess.txt @@ -0,0 +1 @@ +Out of the programs we'll be looking at only [iPod Access][3] is available for both Windows and Macintosh. While this is nice for users that have both platforms, unfortunately you'll have to buy separate licenses for each, but that's the case with most software. Licenses for iPod Access are $19.99.
We tested iPod Access on both Windows and Mac with very similar results. The Mac interface is definitely not the most refined we've seen in our tests, but it functions well enough and gives you the information you need.
Ipod Access works very similar to PodWorks, just highlight the songs you want to copy and click "Add to iTunes." The trial version only allows you transfer five songs at a time, but I had no problems copying songs within the limit.
The "Clone Playlist" feature is not available in the trial version so I wasn't able to test it.
When it comes to handling song transfers, IPod Access gives you more options than the other programs reviewed, including the option to rename the songs in a variety of formats. Ipod Access did a great job of not making duplicate copies and offers the option to only overwrite existing files if the iPod copy is newer.
Like Podworks, iPod Access is not currently a universal binary so performance on Intel Macs is lackluster. In Windows XP we had no issues with speed.
Ipod Access may not be the prettiest of the bunch, but it offers the most features (albeit at the slightly higher price).
####The Lowdown
**Good**
* Doesn't duplicate tracks when transferring songs
* Can sync iTunes to iPod with one click
* Available for Windows and Mac
**Bad**
* Interface is basic (some might say ugly)
* Trial version had numerous errors/warnings
* No drag-and-drop transfers.
Previously reviewed:
[Senuti][1] (Mac only)<br />
[Podworks][2] (Mac only)<br />
[1]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o.html "Monkey Bites on Senuti"
[2]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_1.html "Monkey Bites on PodWorks"
[3]: http://www.findleydesigns.com/products.html "iPod Access"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodaccess1a.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodaccess1a.jpg Binary files differnew file mode 100644 index 0000000..5aba4e1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodaccess1a.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodrip.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodrip.jpg Binary files differnew file mode 100644 index 0000000..5b46aef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodrip.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodrip.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodrip.txt new file mode 100644 index 0000000..845d428 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/ipodrip.txt @@ -0,0 +1 @@ +<img alt="Ipod_2" title="Ipod_2" src="http://blog.wired.com/photos/uncategorized/ipod_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Well, at the last minute I discovered I was wrong about iPod Access being the only cross platform solution we're reviewing. Our next program, [iPodRip][4] from [The Little App Factory][5], is also available in both Mac and Windows flavors. Not only that, but the Mac version is a universal binary. Our review applies to the Mac version only.
IPodRip is shareware and costs $14.95. The unlicensed version is not crippled, but will expire after 10 uses, which means if you just need to recover from a hard drive failure or similar one-time problem, iPodRip can do it for free.
IPodRip features, drag-and-drop support for moving songs off your iPod directly into iTunes, as well as one-click importing to restore everything. Alternately you can select individual songs and import them one at a time or in groups.
<img alt="Ipodrip" title="Ipodrip" src="http://blog.wired.com/photos/uncategorized/ipodrip.jpg" border="0" style="display: block; margin: 10px 0px 10px 5px;" />IPodRip also has a very nice feature that allow you to restore all your playlists with one-click. IPodRip also allows for something it terms "smart sync" which allows you to copy songs based on various criteria (pretty much like "smart playlists" in iTunes).
IPodRip also features a number of nice extras not found elsewhere, such as a database check for your iPod DB, an option to export your library information to HTML or XML formats, and sync metadata between your iPod and iTunes.
####The Lowdown
**Good**
* Can sync iTunes to iPod with one click
* Available for Windows and Mac
* Excellant additional features
**Bad**
* Not free (though it can be used 10 times with no limitations)
Previously reviewed:
[Senuti][1] (Mac only)<br />
[Podworks][2] (Mac only)<br />
[IPod Access][3] (Mac & Windows)<br />
[1]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o.html "Monkey Bites on Senuti"
[2]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_1.html "Monkey Bites on PodWorks"
[3]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_2.html "Monkey Bites on iPod Access"
[4]: http://www.thelittleappfactory.com/application.php?app=iPodRip "iPodRip"
[5]: http://www.thelittleappfactory.com/software/index.php "The Little App Factory"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/reboot.txt new file mode 100644 index 0000000..9b7a1bf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Tue/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The traditional morning reboot, brewed the same way since roughly 1894:
* Later today TiVo will [announce a plan to allow users to download videos][1] from the Internet and watch them from their television sets. For now the service will be limited to non-copyrighted material from services like YouTube, though TiVo hopes to add iTunes Music Store content in the future. This is reportedly only one of several new features TiVo will be announcing.
* Bloomberg.com reports that, according the Steve Ballmer, [Microsoft plans to add video-sharing and a phone feature][2] to future versions of its Zune music player.
* The AP reports you will be able to [buy Windows Vista licenses at CompUSA][3] starting November 30th. Microsoft claims the move is aimed at small businesses most of whom purchase software at retail stores. The licensing purchase is reported cheaper than the traditional boxed product.
* The U.K.-based [OpenStreetMap is collecting cartography information][4] from GPS wielding volunteers in hopes of creating a free, open-source wiki-style map of the planet. [via [CNet][5]]
[1]: http://money.aol.com/news/articles/_a/hold-for-release-1201-am-est-tuesday/n20061113191809990018 "TiVo to allow internet downloads"
[2]: http://www.bloomberg.com/apps/news?pid=20601103&sid=a6kJgarwWLeg "Microsoft's Ballmer on the future of Zune"
[3]: http://news.yahoo.com/s/ap/20061113/ap_on_hi_te/vista_compusa "Microsoft to sell business license through CompUSA"
[4]: http://wiki.openstreetmap.org/index.php/Main_Page "OpenStreetMap.org"
[5]: http://news.com.com/2100-1032_3-6134871.html?part=rss&tag=2547-1_3-0-20&subj=news "CNet on OpenStreetMap"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/aim-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/aim-logo.jpg Binary files differnew file mode 100644 index 0000000..b7e216e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/aim-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/aim.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/aim.txt new file mode 100644 index 0000000..54c2915 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/aim.txt @@ -0,0 +1 @@ +As we mentioned in the ever-prescient morning reboot, AOL has announced version 6.0 of their popular instant messaging service. New features include the ability to send messages to offline users, increased buddy list size (now 1000 buddies), grouped chat windows and more.
The increase in buddy list size brings AIM up to speed with other popular IM services such as those from Yahoo and Microsoft.
Other features include a new "dashboard" which AOL says will make it easier for users to access mobile features like the new IM forwarding. IM forwarding allows you to have messages sent while you are offline forwarded to your mobile device.
AIM 6.0 also adds further integration with the new "AIM Pages," AOL's blogging and social networking feature. You can subscribe to your buddies page (via RSS) and receive updates in your instant messenger.
Some news reports have mentioned that the subscription abilities extend beyond AOL's limited offerings to include sites such as YouTube, Digg and Flickr, but I couldn't find anything about that on the AIM website.
The AIM service remains a lone wolf when it comes to interoperability. Unlike Windows Live Messenger and Yahoo Messenger, which both allow you to chat with members of either service, AIM is a closed system.
AOL says it is in talks with Google about the possibility of linking AIM with Google Talk. Presumably this would function somewhat like the way AIM works with ICQ or Apple's iChat.
AOL has provided an new open SDK for developers so those of us who use the AIM service but not the the client program can expect to see third party developers incorporate the new features soon.
The AIM 6.0 client is thus far Windows only and requires either 2000 or XP.
[1]: http://www.aim.com/index.adp?aolp=0 "AIM 6.0"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/library.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/library.jpg Binary files differnew file mode 100644 index 0000000..b856340 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/library.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/librarything.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/librarything.txt new file mode 100644 index 0000000..259fc08 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/librarything.txt @@ -0,0 +1 @@ +A post from the founder [LibraryThing on the tech blog Mashable][1] caught my eye this morning. [LibraryThing][3] has a new couple of new search features that seem promising so I thought I'd have a look.
I use LibraryThing to grab book covers for display on my blog, but I've never really tinkered with the site too much. However the new feature "UnSuggester" sounded interesting.
But let's start with LibraryThing's "BookSuggester." LibraryThing claims to have 7.1 million books and over 9.5 million user generated tags in it's database. The new BookSuggester feature combs through those books to find things you might like, based on the title of a book you know you like.
The obvious question is why use this over Amazon's recommended books feature? Well for one thing, Amazon's results are included so you get those plus more. LibraryThing also offers more results and separates them into tag-based results and actual humans-have-read-and-liked results.
At the top of each results page there's an intriguing link for Library Thing's other new search feature, called "UnSuggest" which offers "bad" recommendations.
[UnSuggester][2] is a recommendation engine turned on its head. Instead of telling you what you'd like based on what you already like, UnSuggester tells you what you wouldn't like based on what you like.
At first I thought it was a kind of funny, one-off feature that you play with for half an hour and forget about. After all, I don't need a search engine to tell me that a love of Immanuel Kant probably precludes a deep affinity for *Confessions of a Shopaholic*.
But then I started thinking about something Robert Anton Wilson writes about a lot: expanding your reality tunnel.
Based on the Unsuggester search results you can force expose yourself to other things that might otherwise pass quietly by you. The potential for new discoveries is actually much greater with negative suggestions than it ever will be with those that cater to your mold.
With the tunnel narrowing features like selective RSS news feeds and niche base social networks popping up everyday, it's become relatively easy to hear only what you already know you want to hear. UnSuggester can be refreshing chance to expose yourself to books outside your usual preference. And who knows, maybe I would like *Confessions of a Shopaholic.*
[1]: http://mashable.com/2006/11/14/librarything-creates-worlds-worst-recommendation-engine/ "LibraryThing on Mashable"
[2]: http://www.librarything.com/unsuggester/ "LibraryThing's Unsuggester"
[3]: http://www.librarything.com/ "Library Thing"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/reboot.txt new file mode 100644 index 0000000..34e8ec6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />What is that curious beeping noise? Perhaps something in your morning reboot:
* A phenomenon called "evanescent coupling" could [allow for wireless power sources][1]. The technology uses resonant frequencies to transfer energy without wires over a distance of several meters. So far the idea is just on paper, but the MIT scientists involved say they are working on a prototype, which frankly, would be the coolest thing since the wireless remote.
* Apparently [Zune is incompatible with Windows Vista][2]. Yes, as other have said that's ridiculous, but to be fair, Vista hasn't been released yet. If Vista is released and it still isn't compatible, then you can start jeering.
* [AOL announces version 6 of its popular AIM messaging service][3]. Among some of the cool new features is the ability to forward IMs to you phone when you're offline so you can see what you missed.
* [iTWire reports][4] that cellphone company BoostMobile has launched "a cellphone-based social networking service that enables users to plot the location of their friends on a map." No word on the accuracy of the service.
* And finally, news of the strange kind: [YouTube sent a cease-and-desist letter][5] to the popular tech blog, TechCrunch.
[1]: http://www.newscientisttech.com/article/dn10575-evanescent-coupling-could-power-gadgets-wirelessly.html "New Scientist Tech"
[2]: http://blogs.zdnet.com/microsoft/?p=104 "Vista and Zune not compatible"
[3]: http://www.aim.com/get_aim/win/latest_win.adp?aolp=0 "AIM 6.0"
[4]: http://www.itwire.com.au/content/view/7141/990/ "iTWire on BoostMobile"
[5]: http://www.techcrunch.com/2006/11/15/huh-youtube-sends-techcrunch-a-cease-desist/ "TEchCrunch on their cease-and-desist letter"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/unsuggest.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/unsuggest.jpg Binary files differnew file mode 100644 index 0000000..1a64b19 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/unsuggest.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/yamipod.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/yamipod.jpg Binary files differnew file mode 100644 index 0000000..524a1cf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/yamipod.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/yamipod.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/yamipod.txt new file mode 100644 index 0000000..9a95165 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.13.06/Wed/yamipod.txt @@ -0,0 +1 @@ +[Yamipod][6] is the only tool out of the bunch that supports all three major operating systems. It's also free. Yamipod can transfer songs to and from our iPod and offers a good range of options for how to handle duplicates.
In addition, Yamipod will find and remove duplicate files on your iPod, though as with this feature in iTunes you have to be careful since you may have live versions and other "duplicates" that you want to keep.
Yamipod also offer some extra features not found in the other programs including the ability to create playlists, send information to last.fm, growl notifications and add lyrics to your iPod.
There's also a feature in Yamipod that I haven't seen elsewhere called "Find Lost Music," which will recover songs on your iPod but not listed in the library. I don't know how that happens and Yamipod didn't find any such files on my iPod, but if you've ever had music disappear from your library, Yamipod might be able to recover them.
Yamipod is a universal binary and was one of the fastest applications tested on my Macbook.
Stay tuned for a wrap up later this week.
####The Lowdown
**Good**
* Can sync iTunes to iPod with one click
* Nice additional features
* Supports all major operating systems
**Bad**
* Some problems with video iPod and iTunes 7 (see Yamipod forums)
Previously reviewed:
[Senuti][1] (Mac only)<br />
[Podworks][2] (Mac only)<br />
[IPod Access][3] (Mac & Windows)<br />
[IPodRip][4] (Mac & Windows)<br />
[Anapod Explorer] (Windows) <br />
[1]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o.html "Monkey Bites on Senuti"
[2]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_1.html "Monkey Bites on PodWorks"
[3]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_2.html "Monkey Bites on iPod Access"
[4]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_3.html "Monkey Bites on iPodRip"
[5]: http://blog.wired.com/monkeybites/2006/11/getting_songs_o_4.html "Monkey Bites on Anapod Explorer"
[6]: http://www.yamipod.com/main/modules/home/ "Yamipod"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/flickr-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/flickr-logo.jpg Binary files differnew file mode 100644 index 0000000..624d547 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/flickr-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/flickr-share.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/flickr-share.jpg Binary files differnew file mode 100644 index 0000000..c8e0823 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/flickr-share.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/flickr-update.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/flickr-update.txt new file mode 100644 index 0000000..235978c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/flickr-update.txt @@ -0,0 +1 @@ +In the process of writing my last post on Phixr, I discovered that [Flickr has launched a bunch of new stuff][1] (and that my pro account has expired, but that's a whole other story).
The popular photo sharing site has added three new features, guest passes, a new mobile version and the ability to search images by camera model.
First and most welcome is the new guest pass. Flickr has always been my favorite way to share photos, but it's annoying for people that don't already have a Flickr account.
I don't know about you're family is like but mine has been known to say "the internets" without a trace of irony. Consequently the odds of any of them bothering to open a Flickr account to see my photos is pretty much nil.
The good folks at Flickr have finally addressed what many consider to be the site's main downfall. The solution is a new guest accounts system.
Beside each of your Flickr sets is a new button that says "Share this set." Add up to fifty email addresses and you're away. Now the family can see your photos without any problems. Guest passes work with secret links so you can send a link yourself or have Flickr batch email it for you using the handy form.
Flickr has also [updated the mobile version][3] of the site. I was rather disappointed to discover that the new mobile version requires a Yahoo ID to login and further disappointed to note that apparently at some point all of Flickr with require a Yahoo ID. But word has it the new mobile site is much snappier and had better search features.
With the holiday shopping season just around the corner, this last feature with likely be very popular: [Flickr Camera Finder][2]. Camera Finder lets you search for images by camera so you can compare cameras by looking at the results.
Purists will point out that most images are probably compressed and may not be the best representative of a camera's true capabilities, but I did a bit of searching and actually found a number of high resolution images. Its especially handy for seeing things like the color noise and low light capabilities of your dream camera.
And for the curious, the most popular SLR on Flickr is the Canon EOS Digital Rebel XT.
[2]: http://www.flickr.com/cameras/ "Flickr Camera Finder"
[3]: http://m.flickr.com/ "Flickr Mobile"
[1]: http://www.flickr.com/ "Flickr.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/phixr-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/phixr-logo.jpg Binary files differnew file mode 100644 index 0000000..945a042 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/phixr-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/phixr-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/phixr-screen.jpg Binary files differnew file mode 100644 index 0000000..e8730d9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/phixr-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/phixr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/phixr.txt new file mode 100644 index 0000000..2be8abe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/phixr.txt @@ -0,0 +1 @@ +There's about a billion pieces of software out there that will help you fix up those bad holiday photos, but should you really need software to do that?
A new online photo editing site, [Phixr.com doesn't think so][1]. Phixr offers most of the commonly used photo editing tools in an easy-to-use web interface. Phixr let's use adjust brightness and saturation, color, sharpen, remove noise and of course red eye reduction.
There's a number of sites out there that offer some of this functionality, but I haven't seen any that are as simple and intuitive as Phixr.
Phixr also offers integration with Flickr, Photobucket and more. I grabbed a photo out of my Flickr stream and Phixr imported it without any troubles. I was then able to edit it and upload it back to Flickr.
Naturally you can upload an image straight from your hard drive, work with it in Phixr and export it as a .jpg, .png, .gif and more.
If you happen to have a Livejournal account or use Fotolog, Phixr can upload your images as blog posts, just enter your login information.
If you're a professional photograph Phixr will probably leave you wanting, but if photoshop confuses you and you just want to crop an image, get rid of some red eye and adjust a few colors without getting a computer science degree in the process, Phixr will be a welcome relief.
[1]: http://www.phixr.com/ "Phixr.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/reboot.txt new file mode 100644 index 0000000..199f03c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Tue/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />A bookstore employee said to me this morning, "no sir, we just provide the wifi, you have to provide the power." Does anyone have a really loud, smoky gasoline-powered generator I could borrow? Nevermind, here's your reboot:
* [An article on ZDNet][3] yesterday led some people to conclude that Microsoft Office Genuine Advantage would put the Office Suite in reduced functionality mode if the software couldn't be validated. Turns out [that isn't true][4].
* According to Yahoo News, the California Supreme Court ruled yesterday that web sites that publish inflammatory information written by other parties [cannot be sued for libel][2]. Should be a boon for flame wars everywhere.
* Nielsen Media Research started [gathering data on the audience for Apple's iPod][5]. It turns out that iPod users spend far more time listening to audio than they do watching TV or movies.
* And finally, TSIA: "[RIAA toilet paper][6]" [via [BoingBoing][1]]
[6]: http://www.jinx.com/scripts/details.asp?productID=285 "Wipe your ass with the RIAA"
[5]: http://news.yahoo.com/s/zd/20061120/tc_zd/194424 "Ipod user habits"
[4]: http://tech.cybernetnews.com/2006/11/21/microsoft-confirms-no-kill-switch-in-office-2007/ "No kill Switch in Office 2207"
[3]: http://blogs.zdnet.com/microsoft/?p=111 "ZDNet get's it wrong"
[2]: http://news.yahoo.com/s/ap/20061121/ap_on_hi_te/internet_libel
[1]: http://www.boingboing.net/2006/11/20/riaa_toilet_paper.html "RIAA toilet paper"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/mpire-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/mpire-logo.jpg Binary files differnew file mode 100644 index 0000000..777ea71 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/mpire-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/mpire.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/mpire.jpg Binary files differnew file mode 100644 index 0000000..f6b6e6b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/mpire.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/mpire.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/mpire.txt new file mode 100644 index 0000000..44c0387 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/mpire.txt @@ -0,0 +1 @@ +Online shopping site [Mpire][1] has [released a new Firefox plugin][2] that lets you compare prices at nearly 200 retailers from any page. Mpire lets you track prices from various retailers across the web and with the new Firefox plugin you can now call up that data from any supported retailer page. The plugin essentially put the MPire site data just a click away from nearly any shopping site.
The MPire plugin includes some nice features for comparison shopping. Similar to [Farecast][4], my favorite airline ticket site, there are predictive graphs indicating whether the price of an item is likely to go up or down based past sales.
Mpire can also point you to online coupons and other discounts as well as track Ebay auctions.
I'm very impressed with the new plugin. I've used the Mpire site a few times in past, but frankly I forget about it. With the plugin makes it's easier to take advantage of what Mpire offers without having to visit the actual site.
Right now the Plugin is only available for Firefox, but hopefully we'll see something similar for Internet Explorer in the near future.
[found via [TechCrunch][3]]
[1]: http://mpire.com/ "Mpire.com"
[2]: http://www.mpire.com/corporate/plugin.html "Mpire.com Firefox Plugin"
[3]: http://www.techcrunch.com/2006/11/21/mpire-offers-power-shopping-plug-in/ "TechCrunch on Mpire.com"
[4]: http://farecast.com/ "Farecast.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/reboot.txt new file mode 100644 index 0000000..600a554 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Holy turkey's Batman, it's a chicken, er, reboot.
* There have been a couple of minor security exploits found in Mac OS X this month, but today there's one that much more serious, though in fact it's been around a while. The exploit in question [allows a corrupted .dmg file to cause a kernal panic][1], which could be used to inject malicious code. Apple hasn't addressed the problem publically yet, but if you want to avoid any issues, just [disable Safari's auto-open feature][2] and avoid downloading .dmg files from unknown parties.
* CBS is reportedly happy with its YouTube experiment. CBS says that viewers are flocking to CBS TV shows after seeing the clips on YouTube. Perhaps this will encourage other companies to drop the lawsuits and embrace the future of video. [via [Mashable][4]]
* Microsoft Windows will be stumbling out of a bar blindingly drunk later this evening in [celebration of its twenty-first birthday][5].
* To celebrate the launch of Windows Vista, Microsoft and Deal have partnered up to create a pretty sweet [special edition computer][6]. The new box features, among other things, a one terabyte raid drive and a 30' widescreen flat panel monitor.
* <b>Rumor:</b> Because everybody loves a good fantasy story, Read/Write Web has an [analysis of the as yet ficticious GoogleOS][7]. "There's no such thing as the GoogleOS in reality - but despite that, it is one of the most talked about Web products."
[1]: http://www.itwire.com.au/content/view/7375/53/ "ITWire on OS X exploit"
[2]: http://daringfireball.net/2006/11/dmg_kernel_panic "Daring Fireball on the .dmg kernal panic"
[4]: http://mashable.com/2006/11/21/the-youtube-effect-cbs-gets-massive-boost/ "Mashable on CBS"
[5]: http://www.mstechtoday.com/2006/11/20/microsoft-windows-is-21-years-old-today/ "MS Windows turns 21"
[6]: http://windowsvistablog.com/blogs/windowsvista/archive/2006/11/21/windows-vista-custom-pc-design.aspx "Windows Vista PC"
[7]: http://www.readwriteweb.com/archives/googleos_what_to_expect.php "The GoogleOS?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/zemble-screen.gif b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/zemble-screen.gif Binary files differnew file mode 100644 index 0000000..b532628 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/zemble-screen.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/zemble.gif b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/zemble.gif Binary files differnew file mode 100644 index 0000000..890bfba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/zemble.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/zemble.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/zemble.txt new file mode 100644 index 0000000..8d90611 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.20.06/Wed/zemble.txt @@ -0,0 +1 @@ +[Zemble][1], a new social networking site with group text messaging, launched earlier today. The service is somewhat similar to sites like [Twitter][2] or [3jam][3], but has a cleaner interface and is somewhat easier to use.
The signup process is painless, just pick a username, fill out some basic info, and enter your phone numbers. Zemble then sends you a text message with a confirmation number. Enter that number on the sign up page and you're done.
From there you can create your profile and invite friends. Zemble offers integration with MySpace and Facebook so you can batch email your friends from either social network. You can also import your address book from GMail, Yahoo, MSN or Hotmail. I'm sure you friends will love the spam invites.
Once you have a group of friends set up, the messaging process is pretty straight forward. Say you want to invite everyone in your group to Thanksgiving dinner, just go to the "My Zembles" page and create a new Zemble.
Once you've given your Zemble a name and description, Zemble.com will send you a text message with address for that Zemble. Then you add that address to your phone contacts, for instance thanksgiving@zemble.com, and whenever you want to send a message to that Zemble group, just send an SMS message to the address and Zemble will forward the message on to your friends.
To respond to a Zemble just sent a message to re@zemble.com and the message creator will get your reply. To reply to everyone that got a message, use the same address but begin your replay with an exclamation point.
Zemble has a nice feature set and if you can convince your friends to join it might be a good way to batch message invites.
[1]: http://www.zemble.com/ "Zemble.com"
[2]: http://twitter.com/ "Twitter.com"
[3]: http://www.3jam.com/ "3Jam"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/fakespace.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/fakespace.txt new file mode 100644 index 0000000..116ef91 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/fakespace.txt @@ -0,0 +1 @@ +Friends? We don't need your stinking friends. We bought our friends cheap at [FakeYourSpace][1]. FakeYourSpace is new service that will create friends you to list on your MySpace, Facebook and other social networking sites profiles.
For $.99 cents a month you can buy "hotties" both male and female to add to your profile as friends and what's more they even post 2 comments a week. Oh and fear not, those comments will be germaine because you'll be the on writing them.
FakeYourSpace claims to make it "easy for any regular person to make it seem like they have a Model for a friend." Which is really all we want right -- the illusion of friends?
When I worked in a coffeeshop in college we found that starting off the morning by "seeding" the tip jar with a few dollars universally led to bigger tips, so will seeding your MySpace profile with models lead to more models finding your page?
[Update: In the time it took to write this, FakeYourSpace seems to have disappeared, the site now leads to generic, "this domain is for sale" page. Damn, I knew it was too good to be true. What is the world coming to when you can't even buy some decent looking friends?]
[1]: http://www.fakeyourspace.com/ "FakeYourSpace"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/reboot.txt new file mode 100644 index 0000000..ad279e8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Holy copyright madness Batman! (wait, does Robin own exclusive rights to that sentence structure?) Anyway, here your reboot:
* U.S. companies will have to [track all e-mail, IM and other electronic documents][1] created by their employees thanks to new federal laws that take effect today. The rules will require companies involved in federal litigation to show all "electronically stored information." Even better, making backups by re-burning a CD-RW could be considered "virtual shredding."
[1]: http://news.yahoo.com/s/ap/20061201/ap_on_hi_te/storing_e_mails "Law requires Companies to track e-documents"
* Here's a shocker: Movie Studios are demanding that [Apple add more restrictive DRM][2] before they will sell their movies through iTunes. Among other things the studios want Apple to "reduce the number of devices that can use a film downloaded from iTunes."
[2]: http://www.ft.com/cms/s/6c6aa286-7f08-11db-b193-0000779e2340.html "Movie studios want more DRM"
* On the brighter side of the DRM fight, Russian site [AllofMP3 is fighting back][3] against the U.S.-Russia trade deal which essential calls for the demise of AllofMP3. A lawyer for AllofMP3 told Ars Technica, "Legality is not decided by a legislative branch or an executive branch. It's decided by a court." It's nice to see AllofMP3 fighting the good fight, but personally I'd just head to the Bahamas, no legal hassles, better weather...
[3]: http://arstechnica.com/news.ars/post/20061130-8330.html "Ars Technica on AllofMP3"
* And finally, more good copyright news: [The Internet Archive][5] has [won an exemption from the Digital Millennium Copyright Act][4] which will allow them to continue archiving the internets.
[5]: http://www.archive.org/index.php "The Internet Archive"
[4]: http://www.theregister.co.uk/2006/12/01/internet_archive_copyright_reprieve/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/stylefeeder-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/stylefeeder-logo.jpg Binary files differnew file mode 100644 index 0000000..3ba0de2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/stylefeeder-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/stylefeeder.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/stylefeeder.jpg Binary files differnew file mode 100644 index 0000000..e9be7f8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/stylefeeder.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/stylefeeder.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/stylefeeder.txt new file mode 100644 index 0000000..8139d70 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/stylefeeder.txt @@ -0,0 +1 @@ +[Stylefeeder is a shopping community site][1] with a focus on the familiar trappings of social bookmarking sites. To say Stylefeeder is *just* a social bookmarking site focused on shopping is not entirely accurate, it is that, but because the bookmarks are products and because the community is public it is in effect shopping site in its own right.
Stylefeeder is the shopaholics friend, rather than trying to maintain a wishlist on Amazon, Yahoo and others, you can keep everything in one place. Stylefeeder offer and nice bookmarklet that sits in your browser's toolbar. When you're on a site that has something you'd like to buy, just click the bookmarklet and it will be saved to your Stylefeed.
The bookmarklet features a nice piece of javascript that lets you select any image on the bookmarked page to use for that bookmark. It's so dead simple even your grandmother could use it.
Stylefeeder helps you create a wishlist or just track products your interested in. Stylefeeder has all the features you'd expect from a social bookmarking site such as tags, ratings, RSS feeds and groups.
Unlike a lot of more traditional social bookmark sites, Stylefeeder is decidedly not geek-oriented, in fact the Leica camera I bookmarked looked decidedly out of place on the front page, sandwiched between a kimono dress and a yoga outfit.
Once you add a page to your stylefeed you can keep track of it via RSS, share it with a group if you're a member or email it to a friend. There's also an OPML feed, which means if you're tech savvy you could pull your Stylefeed content into just about anywhere.
For those that want to display their wishlist on a blog or MySpace page, Stylefeeder offers some cut-and-paste code that will embed a nice flash widget on whatever page you would like. You should be aware that some blog sites block Flash plugins, LiveJournal comes to mind, so the widget may or may not work depending on the service you use.
In my cursory browsing I noticed that so far Stylefeeder's users aren't making heavy use of the comments feature which is a bit disappointing since half of what I look for when I'm shopping online is user commentary on a product. Perhaps as the site grows users will start taking advantage of the comments feature.
Stylefeeder does has a nice feature called Watchlist that lets you track what other users bookmark. This allows you in effect to use other Stylewatchers as personal shoppers, just find someone whose taste you like and every time they add a new product you'll get notified.
The one thing Stylefeeder doesn't feature that I would like to have seen is some kind of price tracking. Since [reviewing Offertrax for Monkey Bites][2], I've grown semi-addicted to the idea of tracking prices via RSS. Stylefeeder is decidedly more fun and better looking than Offertrax, but Offertrax has a feature set that's tough to beat.
[1]: http://www.stylefeeder.com/ "Stylefeeder.com"
[2]: http://blog.wired.com/monkeybites/2006/11/offertrax_an_in "Monkey Bites on Offertrax"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/verisign.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/verisign.jpg Binary files differnew file mode 100644 index 0000000..dfee51d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/verisign.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/verisign.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/verisign.txt new file mode 100644 index 0000000..93e7d8d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/verisign.txt @@ -0,0 +1 @@ +The U.S. government has [signed off on a revised contract for the ownership of the dot-com registry][1]. [VeriSign Inc.][3] will control the key directories that keep track of .com domain names until 2012.
The fundamental change in the contract is that it now allows the U.S. government sole control over .com price increases and sole control over whether or not VeriSign gets to renew the contract in 2012.
The international community has been pushing to turn this authority over to ICANN who oversees the internet, but the U.S. rejected that idea. As part of the contract VeriSign must recognize the authority of ICANN, but answers only to the U.S government, effectively neutering ICANN.
Currently the U.S. also oversees ICANN but that is schedule to end in 2009. What has irked many countries about the new contract is that it extends U.S authority three years past the point that internet is scheduled to be turned over to an international body. The new contract furthermore adds the option for the U.S. to extend that authority even longer should it choose to renew VeriSign's contract in 2012.
Although somewhat better than the original VeriSign contract revealed earlier this year, today's official announcement is unlikely to make many outside the U.S. very happy. As the UK newspaper [The Register rather sardonically puts it][2], "a decision with global implications was again decided by a few Congressmen in Washington."
[1]: http://today.reuters.com/news/articleinvesting.aspx?type=governmentFilingsNews&storyID=2006-11-30T194653Z_01_N30191458_RTRIDST_0_VERISIGN-AGREEMENT-UPDATE-1.XML "VeriSign Contract Officially Accepted"
[2]: http://www.theregister.co.uk/2006/12/01/usg_approves_dotcom_contract/ "The Register on VeriSign Contract"
[3]: http://www.verisign.com/ "verisign"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/yahoowii.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/yahoowii.jpg Binary files differnew file mode 100644 index 0000000..f5d2c30 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/yahoowii.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/yahoowii.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/yahoowii.txt new file mode 100644 index 0000000..03758d8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Fri/yahoowii.txt @@ -0,0 +1 @@ +Yahoo has [launched a new "portal" site for Nintendo's Wii][1] console that brings together Flickr photos, del.icio.us links, Yahoo MyWeb, Yahoo Games, and more. According to Variety, this is only [the first of many Yahoo sites][2] which will revolve around various popular brands.
If the Wii offering is any indicator, these sites should prove popular with fans of the represented brands.
Yahoo's Wii site is chock full of geeky fan goodness with everything from flickr photos showing people hooking up their new Wii, to del.icio.us links with various tips, sites and sale prices, to panel with questions and answers from the ever-growing Yahoo! Answers.
The design of the site is clean and simple, something Yahoo seems to be getting better at and it unifies the many diverse offerings that Yahoo often has a hard time bringing together in a cohesive way.
The buyers guide for instance, integrates Yahoo Shopping, EBay Auctions and Yahoo maps to create a nice one-stop destination for anyone looking to purchase a Wii (never mind that every retailer lists the Wii as out of stock).
Of course the primary focus is on content from Yahoo's offerings, which leaves the Video section for instance, a bit lacking, I imagine users would be better served by aggregating YouTube Video rather than relying on Yahoo's paltry offerings, but I don't image that will be happening any time soon.
What's interesting about the Wii portal and future plans is that Yahoo isn't asking permission or partnering with the brand companies in anyway. Yahoo says they hope brand companies will want to work with and support the Yahoo sites, but as Vince Broady, head of entertainment, games and youth properties at Yahoo, tells Variety, "we don't believe we have to have the participation of the brand owners."
If you're a fan of Nintendo's new Wii console you'll enjoy Yahoo's new site, and it will be interesting to see where this brand-universe strategy takes Yahoo.
[1]: http://wii.yahoo.com/
[2]: http://www.variety.com/article/VR1117954662.html?categoryid=18&cs=1&nid=2570
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/break.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/break.jpg Binary files differnew file mode 100644 index 0000000..8849b94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/break.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/break.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/break.txt new file mode 100644 index 0000000..db97530 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/break.txt @@ -0,0 +1 @@ +[Break.com, a video sharing site][1] similar to YouTube [announced yesterday that it will pay $400 for user-generated videos][2] and as much as $2000 for animated shorts. When Break launched last year they offered $50 per video and later raised that to $250 before yesterday's increase to $400.
With Google backing the massively popular YouTube, competitors have increasingly turned to paying contributers in an effort to lure them away from YouTube. [Metacafe launched a similar program called "producer rewards"][3] earlier this year.
In the case of Break, the only stipulation on getting paid is that your video must make it to the homepage. Unfortunately Break doesn't offer much info on how exactly your video can make it to the homepage
The one off payment model differs from sites like [Revver][4] which offer a revenue sharing model where the money earned is based on how many views your video receives. Revver and others like it seem to aim more for serial content (like that of lonelygirl15 or Ze Frank's *The Show* for instance) whereas clips likely to generate only one time views are probably better served by Break, Metacafe and other flat rate services.
A quick browse through the videos on Break failed to find much of what I would call quality content. But to be fair, Break's tag line is "the largest online site for guys," and the content clearly reflects that audience with innumerable videos of backyard stunts, and various sports misshaps as well as a whole NSFW section.
With the online video market still in its infancy, it's tough to gauge where these sites will be in a few years, but one thing is for sure, if you offer money, they will come. Break's homepage claims they have paid out over $300,000 to amateur producers so far.
[1]: http://www.break.com/ "Break.com"
[2]: http://today.reuters.com/news/articleinvesting.aspx?view=CN&storyID=2006-11-26T080107Z_01_N24177992_RTRIDST_0_TECH-WEBVIDEO.XML&rpc=66&type=qcna "Break.com increases Video payments"
[4]: http://one.revver.com/browse/Editor%27s+Picks "Revver.com"
[3]: http://www.wired.com/news/technology/0,72022-0.html?tw=rss.index "Wired on metacafe"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/ewaste.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/ewaste.txt new file mode 100644 index 0000000..57f7cdc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/ewaste.txt @@ -0,0 +1 @@ +The U.N. will meet later this week in Kenya to [discuss the growing problem of "e-waste,"][1] a term that includes, among other things, obsolete electronics. Well intended western donations of old computers, mobile phones and televisions often end up in third world landfills and create environmental problems in those countries.
It may sound like a nice idea to donate your obsolete computer to someone overseas, but in reality you may be doing little more than shuffling junk off to foreign landfills. No one wants to discourage you from donating an old computers to developing nations, but what constitutes a recyclable machine and what is simply a piece of junk is so far open to debate.
According to the Reuters article, one study last year in Nigeria claims that about 500 containers of secondhand electronics arrive at Lagos seaport every month.
>But dealers said as much as three-quarters of the PCs, televisions and phones inside were "junk" -- so obsolete they could not be repaired. Many were burned at open-air dumps, releasing toxic fumes and leaching chemicals like barium, mercury and brominated flame retardants into surrounding soils.
Some of the proposals the U.N. will be hearing next week include a plan to make computer manufacturers take responsibility for the final disposal of their products.
The U.N. estimates 14-20 million PCs are thrown out every year in the United States alone.
Most major computer manufacturers in the U.S. currently offer some kind of recycling program, but few of these programs are set up to handle overseas waste.
[1]: http://today.reuters.com/news/articlenews.aspx?type=scienceNews&storyID=2006-11-27T103113Z_01_L27347882_RTRUKOC_0_US-WASTE-UN.xml&WTmodLoc=NewsHome-C3-scienceNews-3 "Old Computers create environmental hazards"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/gaiagone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/gaiagone.txt new file mode 100644 index 0000000..f9b7871 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/gaiagone.txt @@ -0,0 +1 @@ +[The Gaia project][1], an attempt to reverse engineer Google Earth to create an open source version, was shut down by its owner over the weekend.
It seems Google was worried that Gaia's success would threaten Google Earth because of the licensing agreements Google Earth has with map and data providers which stipulates that the maps not be used outside Google's specific software clients.
It doesn't appear that Google resorted to lawyers or cease-and-desist letters, rather the developer of Gaia was contacted directly by Michael Jones, Chief Technologist of Google Earth, Google Maps and Google Local search.
According to Jones in a letter posted on the Gaia site:
>The data that we license for Google Earth and Google Maps is made available for use under the restriction that it not be accessed or used outside of Google's client software. These products -- Earth, Maps, and Mobile Maps -- each have a data protection mechanism tailored to their environment. ... In all three cases, the ToS are very clear that the data services used by the client software must never be accessed directly and that the
encryption, passkey, and other data protection mechanisms must not be circumvented.
Kudos to Google for not resorting to threatening lawsuits and an equal measure of praise to Gaia's developer for taking the project down, but that said, it's still a shame to see the Gaia project disappear. Perhaps someone could convince the data companies to loosen their license restrictions a bit.
Otherwise, any attempt to create an open source program similar to Google Earth will need to start from scratch and use open earth images from NASA or similar and such a project is certainly not for the faint of heart.
[1]: http://gaia.serezhkin.com/ "Gaia is no more"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/office.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/office.jpg Binary files differnew file mode 100644 index 0000000..7a1b8f3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/office.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/openoffice.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/openoffice.txt new file mode 100644 index 0000000..5f08ae5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/openoffice.txt @@ -0,0 +1 @@ +Open Office version 2.1 has reached the final release candidate stage and [RC1 is now available for download][1].
As with any software still in the development stage, this release is not intended for serious production environments or mission critical data. That said, I have the new version installed under Mac OS X's X11 environment and it seems to very stable.
The final release of version 2.1 is slated to feature some pretty cool new stuff, including a new extensions framework for third party developers. So far there are no actual extensions available, but given the functionality extensions have allowed in Firefox, I think the inclusion of an extensions framework could be the biggest thing to hit OO since it's debut.
I'll be doing a full review of Open Office when the official version is released (currently slated for later this month), by which time hopefully some extensions will be available.
[1]: http://download.openoffice.org/680/index.html "Download OpenOffice 2.1 RC1"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/reboot.txt new file mode 100644 index 0000000..c1ec78f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />And we're back... Here's your morning reboot:
* Cray and IBM will [split a massive $494M grant][1] from the US Defense Advanced Research Projects Agency (DARPA). The money, which will be paid out over four years, is for developing the next generation of supercomputers. Cray says it will use AMD chips and the Linux operating system
[1]: http://webservices.sys-con.com/read/304963.htm "DARPA gives grant to Cray and IBM"
* According to a new British poll, [Britons who watch video on the internet spend less times watching TV][2]. The statistic is yet more bad news for the already beleaguered world of broadcast TV.
[2]: http://today.reuters.co.uk/news/articlenews.aspx?type=internetNews&storyID=2006-11-27T113007Z_01_L27856075_RTRIDST_0_OUKIN-UK-BRITAIN-DOWNLOADS.XML&WTmodLoc=TechInternet-C1-Headline-9
* You can now [download 2,500 hand-picked wikipedia educational articles][6] on a handy CD. The cd was compiled by volunteers from the children's charity SOS. The CD is free and should work on any platform. [via [Lifehacker][3]]
[3]: http://www.lifehacker.com/software/download/download-of-the-day-wikipedia-cd-all-platforms-217250.php
[6]: http://torrentfreak.com/wikipedia-cd-distributed-over-bittorrent/ "Download wikipedia CD torrent"
* ITWire reports that the banking industry is increasingly [worried that Google may come crashing into their industry][4]. As the article points out, Google Checkout may be the first small step in a larger plan.
[4]: http://www.itwire.com.au/content/view/7490/53/
* [Microsoft may be guilt of patent infringement in South Korea][5]. Back in 1997 a Korean professor filed patents for technology used to automatically translate English into Korean within Microsoft Office applications. The CNet article reports that the case "may force Microsoft to temporarily halt sales of Microsoft Office in South Korea."
[5]: http://news.com.com/2061-10805_3-6138379.html "Microsoft patent violations"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/zunemac.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/zunemac.txt new file mode 100644 index 0000000..deaa3c7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Mon/zunemac.txt @@ -0,0 +1 @@ +Microsoft's Zune works only with Windows XP, so what to do if you're a Mac or Linux user? Well of course you could always just choose a different MP3 player, but if you really want a Zune to work with your Mac, there may be hope on the horizon.
Zune Microsoft's [Media Transfer Protocol][3], but thanks to libmtp, a free open source library available for Mac and Linux which implements the MS protocol, you should be able to see your Zune in other OSes.
If you'd like to be able to see your Zune on your Mac, grab a copy of WentNet’s open-source program [XNJB][1] (it's free), which leverages libmtp, and you should be able to view your Zune songs.
XNJB was written to support Creative Nomad MP3 players, but some users have reported that they can read the Zune drive and see their music libraries from from a Mac using XNJB. So far no one has been able to transfer songs though. The problem with transferring is that Zune apparently refuses to transfer files with unknown hosts.
Zune may not actually work with other OSes yet, but I have no doubt that someday soon someone will figure out how to make it work.
If you're interested have a look at [this thread in the Zunescene.com forums][2].
[1]: http://www.wentnet.com/projects/xnjb/ "wentnet's xnjb"
[2]: http://www.zunescene.com/forums/index.php?topic=3550.0 "Zunescene forum thread on Mac connectivity."
[3]: http://en.wikipedia.org/wiki/Media_Transfer_Protocol "Wikipedia definition of MTP"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/betocracy-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/betocracy-logo.jpg Binary files differnew file mode 100644 index 0000000..49c66c8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/betocracy-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/betocracy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/betocracy.jpg Binary files differnew file mode 100644 index 0000000..d6e9457 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/betocracy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/betocracy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/betocracy.txt new file mode 100644 index 0000000..19830fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/betocracy.txt @@ -0,0 +1 @@ +[Betocracy][1] is a new website that allows you to create your own decision markets and opinion polls. If, like me, you have no idea what that means, allow me to give a quick overview.
Some time ago the Pentagon floated up an idea called the Policy Analysis Market, which would have allowed online traders to wager on the likelihood of future terrorist attacks. At first glance such a market may sound like a cynical and politically stupid move, which it was and that's why it was abandoned, but the idea behind the market is more than just a so-called death pool.
Decision markets, or predictive markets as they're sometimes called, operate on the same premise as the stock market; that is, a group of people buy and sell shares, but in this case the value of the shares are determined by the value of the judgments attached to them. [According to Wikipedia][4]:
>People who buy low and sell high are rewarded for improving the market prediction, while those who buy high and sell low are punished for degrading the market prediction. Evidence so far suggests that prediction markets are at least as accurate as other institutions predicting the same events with a similar pool of participants.
It may sound like little more than modified sports betting, but many economists believe that such markets can find hidden information about future events just like the soaring price of a stock can indicate a healthy company. [For the moment we'll ignore cases like Enron.]
Now thanks to Betocracy you can participate in this growing trend and easily create your own decision markets. The markets on Betocracy do not trade in actual money, but use a points system instead. Theoretically if the site takes off, shareholders with the highest points (i.e. those that buy low and sell high) will have a greater influence on the site.
I spoke briefly with Yaron Koren the man behind Betocracy about the site. Koren says he was "inspired to create the site by reading James Surowiecki's *The
Wisdom of Crowds*." He went on to add, "I was really struck by that idea of collective intelligence."
The idea behind Betocracy is to combine easy-to-use social internet tools with the predictive power of decision markets. Koren likens Betocracy to, "a cross between TradeSports and Blogger: bringing the concept of intuitive self-publishing to prediction markets.
The concept is fairly simple. Create an account, customize your page and create a market to display. You can choose to make your page public, publicly viewable but members only for usage or invite only.
I created a decision market based on [how the popular television show Lost will end][3]. My sample isn't probably the best since as I note on the page the results will be arbitrarily (and randomly I might add) decided by me. Hint: you can do better.
I'll admit that the whole things sounded a bit crazy to me when I first ran across it, but then again there were probably some folks that said the same thing four hundred years ago in Amsterdam.
Many thanks to the ever-prescient folks on the NoEnd mailing list for bring Betocray to my attention.
[1]: http://betocracy.com/ "Betocracy"
[3]: http://luxagraf.betocracy.com/market/8
[4]: http://en.wikipedia.org/wiki/Decision_market "Decision markets"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/js-kit.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/js-kit.jpg Binary files differnew file mode 100644 index 0000000..179dfbb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/js-kit.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/js-kit.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/js-kit.txt new file mode 100644 index 0000000..4776cf6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/js-kit.txt @@ -0,0 +1 @@ +Every now and then someone comes up with a way to make a complex thing incredibly simple and leaves you wondering -- why didn't I think of that? That's exactly the case with Lev Walkin's [JS-Kit comment script][1].
One of the outstanding features of social internet sites is the ability to leave comments on just about anything, blog posts, saved links, uploaded videos, you name it and there's probably a way for you to express you opinions via comments.
But for amateur web developers creating a comments system can often be a complex and intimidating undertaking. JS-Kit reduces that undertaking to pasting a single line of code into your webpage. Just add this line to your site:
<script src="http://js-kit.com/comments.js"></script>
That line activates Walkin's comment code which then uses your IP address to fetch the comments from his server.
The script creates threaded comments so you can comment on both the main content and what other people have said. Other niceties including an option to be notified by email whenever some replies to your comment.
You can also embed multiple instances of the script on the same page if you'd like for instance, to have a photo gallery page with individual comments per photo.
For those with the CSS knowhow, it's fairly easy to customize comments to fit the design of your site.
JS-Kit is brand new and lacks a few important comment features like spam protection, but that and other new features are already in the works.
Some people will no doubt be a little nervous about storing their comment data on another person's server, after all what happens if that server crashes or just plain disappears? Perhaps in the future they're will be a way to store comments locally, but for now I don't know of a simpler way to add comments to your web pages.
Found via [TechCrunch][2].
[1]: http://js-kit.com/ "Embed Comments in any page"
[2]: http://www.techcrunch.com/2006/11/29/quick-embed-code-to-add-comments-to-any-site/ "Techcrunch on JS-Kit"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/rebbot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/rebbot.txt new file mode 100644 index 0000000..11f10e2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/rebbot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Just what exactly is irony? Does it change socks every day like the rest of us? Anyway, here's your morning reboot:
* It's official, [Windows Vista for Business launches today][1]. Microsoft has a new website to celebrate to occasion, complete with a video the ever creepy Steve Ballmer welcoming you to "a new day." Office 2007 and Exchange Server 2007 will also be today.
* AMD is expected to [launch the Quad FX Platform today][2]. The new chip consists of two of the dual-core Athlon processors connected to two Nvidia chipsets. The Quad FX Platform is AMD's response to Intel's Core 2 Extreme, but the Quad FX is slightly different in that it isn't two chips in one socket, rather two chips in two sockets. If you know what that means, then this could be the chip for you. AMD plans to release a true quad core chip early next year.
* Fast on the heels of yesterday's Verizon/YouTube deal, comes another announcement that [Verizon has a similar deal with Revver][3]. Revver typically adds adverts to the end of it's video streams, but that won't be the case with the mobile offering, instead uploaders will share in the licensing deal with Verizon.
* The NFL is [bringing live broadcasts to the web][4] -- sort of. The NFL Network's Thursday and Saturday telecasts will be available to Verizon's FiOS and DirecTV internet subscribers. The Reuters article has a great quote from NFL spokesman Brian McCarthy, "it's not disrupting anything that's already available... It's taking advantage of the current technology." In other words, the NFL still doesn't understand the internet.
[1]: http://msnewday.com/ "Windows Vista - it's a new day"
[2]: http://news.com.com/2100-1042_3-6139465.html?part=rss&tag=2547-1_3-0-20&subj=news "AMD Quad Core"
[3]: http://news.yahoo.com/s/ap/20061129/ap_on_hi_te/verizon_wireless_revver "Verizon Revver deal"
[4]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-11-30T114916Z_01_N30420400_RTRUKOC_0_US-MEDIA-NFL.xml&src=rss "The NFL goes online"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/searchmash-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/searchmash-logo.jpg Binary files differnew file mode 100644 index 0000000..8cc9789 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/searchmash-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/searchmash.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/searchmash.jpg Binary files differnew file mode 100644 index 0000000..8312d05 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/searchmash.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/searchmash.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/searchmash.txt new file mode 100644 index 0000000..6a1792a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/searchmash.txt @@ -0,0 +1 @@ +[Searchmash][1] is new search engine that appears to have some connection to Google Search. I know what you're thinking, there must be ten thousand search engines out there, and that's not counting all the new implementations of Google's Custom Search tools, do we really need another?
Well, maybe. Searchmash is a bit different, and perhaps better, than most. According the the Lifehacker post by which I discovered it, [Searchmash is run by Google][2], which might explain why it generates almost the exact same results.
At first glance Searchmash isn't much, just a white page with a familiar results listing. But then when you look closer there's a number of features that improve on the basic Google Search concept. For instance you can dynamically collapse and expand the page descriptions and clicking the "more search results" link reveals another nice piece of Javascript which appends the results below the current ones rather than loading a new page. I'm one of those people that rarely delves into the second page of search results, but the ability to append them to current page makes more results somewhat more appealing.
Off the right hand side of the page are a series of collapsed links for images, video, Wikipedia and blog search results. Clicking the plus link opens a panel with the top results in that category. At the bottom of each panel is a link to "see more results," click that link that category becomes the main links for the page and the web pages result is shuffled off and collapsed in the right column.
Essentially Searchmash takes the results of Google's Web Search, Image Search and Blog Search, combines them with a Wikipedia search and video search, gives it an elegantly simple interface and integrates it into a single page. Very nice indeed.
Someone wrote in to the Lifehacker saying:
>(Searchmash) gives you a multi-page search view on one page and the ability to drag (yes drag) the 35th search result to the 3rd slot because you think it's more appropriate to your query.
Personally I can't seem to drag anything to reorder the results. I'm not even sure I'd want to unless there were some way to save the order, but if anyone can enlighten me as to how the drag and drop feature works, I'd at least like to try it.
The main downside to Searchmash is that it doesn't support very many of the advanced Google Search operators that I've come to rely on. Obviously <code>images:</code> works, as do common operators like <code>site:</code>, but more advanced ones like <code>filetype:</code> do not.
Did I mention the searches are lightning fast?
[1]: http://www.searchmash.com/ "Searchmash.com"
[2]: http://www.lifehacker.com/software/search-engines/searchmash-google-interface-experiment-218217.php "Lifehacker on Searchmash.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/vista-release.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/vista-release.txt new file mode 100644 index 0000000..5bea2c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Thu/vista-release.txt @@ -0,0 +1 @@ +As I mentioned in the morning reboot, today is the [official launch day of Windows Vista][1], There was a launch party in New York and other events worldwide. At last count a Google News search revealed 524 articles on the subject. So that means I can head down to Best Buy and pick up a copy right? Actually, uh, no.
To sort out what might be the most confusing release of software ever, here's the rundown.
Today *business* users may purchase Windows Vista, Exchange Server 2007 and Office 2007 through Microsoft's volume licensing program. But purchase does not equate with use in all cases. Exchange Server 2007 will not be available for even business customers until the end of next month. Vista and Office are available for business customers today.
*Retail* customers, that would be you and I, will have to wait until January for the *retail* versions to hit the shelves. There will be no less than four *retail* versions of Vista -- Home Basic, Home Premium, Business and Ultimate -- ranging in price from $199 - $299. For more details have a [look at the breakdown of version differences][2] on Microsoft's website (note that there's also an Enterprise version for large businesses and Starter version for sale in developing nations).
I haven't been able to find details on what versions are available today through the business volume licensing program, but it seems reasonable to assume that Business, Ultimate and Enterprise would be the primary targets for the business market. If you know more details leave them in the comments below.
To add to the confusion of today's Vista release/not release, many retail outlets actually resell the business software, so if you're planning to make your purchase via the volume licensing program, you *can* theoretically head down to a participating retailer and walk out with the software.
And just in case you're still reading, to further complicate matters many retailers are offering free or discount coupons for consumer versions of Windows Vista (to be released in January remember) with the purchase of a new computer today. So in a sense you can buy Vista today, you just won't actually get it until January.
* November 30: Business users get Vista, Office 2007
* End of December: Business users get Exchange Server 2007
* January 30: Retail versions of Vista and Office 2007
Everything clear now?
Oh and If you're wondering what new features Window's Vista offers, I stumbled across a thorough and [detailed Q and A][3] on the Dutch site Techworld, which should answer most people's questions.
[1]: http://msnewday.com/ "Window's Vista Launch Site"
[2]: http://www.microsoft.com/windowsvista/getready/editions/default.mspx "Vista Versions"
[3]: http://www.techworld.nl/idgns/1651/windows-vista-faq.html "Vista FAQ"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/boddit-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/boddit-logo.jpg Binary files differnew file mode 100644 index 0000000..80bc6f7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/boddit-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/boddit-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/boddit-screen.jpg Binary files differnew file mode 100644 index 0000000..e2f9403 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/boddit-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/boddit.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/boddit.txt new file mode 100644 index 0000000..f7aebb1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/boddit.txt @@ -0,0 +1 @@ +[Boddit is a new bargain shopping site][1] designed to help you find the best deals on the internet. One part search engine, one part price tracker, Boddit offers some nice features that could help you save some money during the holiday shopping period.
In my experience Boddit works best for casual browsing rather than targeted searching of specific products, but your milage may vary.
Boddit works by pulling in prices from a number of big discount internet retailers like Dealnews, Slickdeals, Fatwallet and many more. Rather than searching all those sites individually Boddit lets you search them all at once.
Boddit also offers what they call "web search, Boddit-style" which amounts to creating a frame with a toolbar on the left of your browser window and performing searches of other sites in another frame. Normally I hate anything that creates frames in my browser, but Boddit's was actually helpful and made searching multiple sites much quicker.
For instance with a single click I was able to jump from searching Pricegrabber to Froogle to Yahoo! Shopping and more. Unfortunately because Boddit apparently sends the search info as POST data, you back button will warn you about resubmitting a form, which is annoying, but worth the trade off in my opinion.
Boddit will also search and browse auctions on Ebay, Half.com and Yahoo! Auctions. You can also search Craig's List, but unfortunately this only seems to work when you start from the Boddit homepage.
Boddit also has a section called "Extras" that tracks various coupons and freebies available around the web, with deals range from printable coupons to mail-in rebate offers.
One thing Boddit lacks is RSS feeds for tracking prices, but even without them, Boddit offers an impressive array of search options and might well save you both time and money this holiday season.
[1]: http://www.boddit.com/ "Boddit - Bargain Shopping"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/psiphon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/psiphon.jpg Binary files differnew file mode 100644 index 0000000..cb561ec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/psiphon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/psiphon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/psiphon.txt new file mode 100644 index 0000000..1cd5a83 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/psiphon.txt @@ -0,0 +1 @@ +A new tool, [Psiphon][1], from a University of Toronto a team of software engineers and computer-hacking activists allows users to bypass internet censorship imposed by countries like China.
Psiphon works by connected the user in an internet restricted country to a user in a none restricted country. The software needs to be installed on the host computer in a non-restricted country and then the user in the restricted-access country can then log into that computer through an encrypted connection and use it as a proxy to bypass any government filters.
According to the designers there is no way to trace the restricted user's tracks from their computer, though the host computer will know what sites the user has accessed.
The network works on a premise of connecting to trusted users found through a social network, but this seems to me somewhat vulnerable to exploitation. I'm sure China would have no problems setting up fake hosts outside of China to trick users into logging in.
That said, the Psiphon model does sidestep a number of pitfalls that have plague other attempts to bypass internet filters, the biggest draw being that it leaves no tracks on the censored user's machine.
Psiphon also has a distinct advantage of being easy to use and requires no software on the censored users end, just login to the host and you're done.
As the Psiphon site notes, bypassing censorship could violate national laws and have legal (and I'm sure much worse than legal) repercussions for users in restricted countries.
Reporters Without Borders recently released a list of thirteen countries they believe are suppressing freedom of expression on the internet including China, Syria, Saudi Arabia, Iran, Vietnam and more.
Psiphon will be publicly available for [download beginning December 1st][2].
[1]: http://psiphon.civisec.org/ "psiphon, censorship bypassing software"
[2]: http://psiphon.civisec.org/source.html "download psiphon starting december 1st"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/reboot.txt new file mode 100644 index 0000000..b6bebaa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Your Morning Reboot, high in fiber:
* Reuters reports that [nine out of ten emails worldwide are spam][1]. The United States, China and Poland are the main originators of the more than 7 billion spam messages sent this month. Remember when spam was just a funny sketch from Monty Python?
* Opera Software has [announced version 3.0 of its Mini browser][2] intended for mobile devices. The new version features enhanced photo sharing, an RSS feed reader and secure connections for mobile banking.
* The New York Times reports that [YouTube will finally be going mobile next month][3], partnering with Verizon. Unfortunately the service will involve a $15-a-month subscription to a Verizon's VCast service and will only feature films "approved by both companies." So more or less expect that to suck.
* Hot on the heals of the [UK SlingMedia/3 partnership][5] to stream video to cellphones comes a new company, [Phling, which claims it can do the same for music][4] and works here in the U.S. Found via [Lifehacker][6].
* [Ethernet will be speeding up to 100 gbps][7], which should make it up to ten times faster than the current 10-gigabit version. A study group from the Institute of Electrical and Electronics Engineers (IEEE) recently agreed on a target speed bump for the networking technology, but it may be several years before new products hit the market.
[1]: http://edition.cnn.com/2006/WORLD/europe/11/27/uk.spam.reut/ "9 of 10 emails are spam"
[2]: http://www.opera.com/pressreleases/en/2006/11/28/
[3]: http://www.nytimes.com/2006/11/28/technology/28tube.html?ex=1322370000&en=0a1ba8ec248c869d&ei=5090&partner=rssuserland&emc=rss "The Times on Verizen/YouTube Deal"
[4]: http://www.phling.com/ "Phling.com"
[5]: http://blog.wired.com/monkeybites/2006/11/3_partners_with.html "Monkey Bites on SlingMedia/3 deal"
[6]: http://www.lifehacker.com/software/mobile-phone/stream-your-music-collection-to-your-phone-217517.php "Lifehacker on Phling"
[7]: http://news.yahoo.com/s/pcworld/20061127/tc_pcworld/128015 "Yahoo News on Ethernet speed increase"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/rootly-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/rootly-icon.jpg Binary files differnew file mode 100644 index 0000000..b77f6f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/rootly-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/rootly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/rootly.txt new file mode 100644 index 0000000..3611035 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Tues/rootly.txt @@ -0,0 +1 @@ +[Rootly, a news search engine][1], recently relaunched with some new customization and sharing features.
Anyone can create a custom Rootly homepage which will pull in news stories matching the topics you select. If you register with the site you'll also be able to bookmark stories for later reading, share them with friends and browse other users' bookmarks.
The personalized features more or less mirror those of a typical social bookmarking site, but the focus in Rootly is on breaking news rather than general web pages.
Rootly also offers a news search engine, but unfortunately, in my experience, the news search was dog-slow and didn't yield nearly as many results as a similar search on Google News typically returns.
The ability to customize the news feeds can make for some nicely targeted RSS feeds, though again, Google News and others offer nearly the same functionality. Rootly has a slightly less confusing interface than Google News, but the functionality isn't significantly different.
The Rootly homepage does have a nice AJAXy scrolling headline ticker that updates with new headlines about every ten seconds.
In the end Rootly seems like a nice start, but it's entering an already crowded market and doesn't have much in the way of standout features.
[1]: http://www.rootly.com/ "Rootly.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/cooliris-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/cooliris-screen.jpg Binary files differnew file mode 100644 index 0000000..024afc8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/cooliris-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/cooliris.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/cooliris.jpg Binary files differnew file mode 100644 index 0000000..bdc12b1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/cooliris.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/cooliris.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/cooliris.txt new file mode 100644 index 0000000..2917f9b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/cooliris.txt @@ -0,0 +1 @@ +[Cooliris][1], the preview-enabling browser extension for Windows IE, Firefox and Safari, recently expanded its compatibility to include quite a few more websites.
For those that have never used it, Cooliris creates a Javascript pop-up preview whenever you mouse over a link. The pop-up lets you see whatever the link leads to without leaving the page you're on. Cooliris started out limiting its previews to Google, Ebay and other large sites, but now it works just about anywhere.
Simple drag your mouse over a link or thumbnail and Cooliris will automatically show a preview. I should note that this is not a thumbnail or simple image <p>it's</p>
the actual webpage and you can browse it like you would any other. In the case of video links you can watch the video within the preview window, which makes browsing through YouTube considerably less time consuming.
I've been using Cooliris for a few months now and I can honestly say there's a good chance it will change the way you browse the web. For instance, typically, when I searched for something on Google, I would open a few results in tabs and then work my way through them. After a few hours of this I used to have twenty or thirty tabs open and no real idea which were useful and which weren't.
Using Cooliris has streamlined my searching considerably since now I can quickly see and browse a page without leaving the page I'm on. If I decide the page is useful I go ahead and open it in a tab, if not I just move the mouse off the link and the Cooliris window disappears.
Cooliris is available for Internet Explorer, Firefox, Flock and Safari, but the exact features vary somewhat between platforms.
[1]: http://www.cooliris.com/ "cooliris"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/ganswers.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/ganswers.jpg Binary files differnew file mode 100644 index 0000000..04356a6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/ganswers.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/google-answers.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/google-answers.txt new file mode 100644 index 0000000..38aa5a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/google-answers.txt @@ -0,0 +1 @@ +Seems like everyday there's a new Google service of some kind, but today there's finally one less. Yes, [Google Answers has gone the way of dodo][2].
I can't say as though I ever used Google Answers so I won't be missing it and, according to Wikipedia that leaves Google with [eighty-five services/search engines/applications][1] so I doubt they'll miss it either.
Since removing the existing Q and A's would be, well, stupid, the site will remain but there will be no more Answers after the end of the year.
Google Answers, which generated only 800 Q and As over the past four years had long taken a back seat to Yahoo's similar offer, [Yahoo Answers][3].
What does this mean? I for one take this to mean that Google is not invincible and that you can in fact compete successfully against Google. It would seem that at least on some leave the long-tail, social model (Yahoo Answers) has a greater appeal than the authority of experts (Google Answers). Though perhaps it has more to do with free versus $2.50 an answer.
[2]: http://googleblog.blogspot.com/2006/11/adieu-to-google-answers.html
[1]: http://en.wikipedia.org/wiki/List_of_Google_products
[3]: http://answers.yahoo.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/reboot.txt new file mode 100644 index 0000000..d840dd5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/11.27.06/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Good morning sunshine, here's your reboot:
* Nokia and Yahoo announced today that they will [expand their partnership][1] to include Yahoo's email and messaging services on new Nokia phones.
* Apple has [released a Mac OS X Security Update][2] that patches twenty-two security holes. The update does not, however, appear to address the most serious vulnerability which lies in Mac OS X's Disk Image handling code.
* According to CNet, the [BitTorrent company will launching a video download store][3] early next year. Customers will be able to download movies from some Hollywood studios such as Paramount Pictures, Lionsgate and 20th Century Fox. In other BitTorrent news, it appears that [Bram Cohen is on his way out][4].
* Filed under the sky is still falling: A new study says [violent video games desensitize kids][5] and makes them <strike>more like adults</strike> have less self control.
* And finally, from our own Wired Magazine comes the best news I've heard in a while: [improvements are being made the venerable Jet Pack][6].
[1]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2006-11-29T145244Z_01_WEN0453_RTRUKOC_0_US-NOKIA-YAHOO.xml&src=rss "Nokia and Yahoo expand partnership"
[2]: http://www.apple.com/support/downloads/ "OS X Security Update"
[3]: http://news.com.com/2100-1025_3-6139174.html?part=rss&tag=2547-1_3-0-20&subj=news "CNet on BitTottent/Hollywood Deal"
[4]: http://www.techcrunch.com/2006/11/29/bittorent-raises-25-million-bram-cohen-is-history/ "Techcrunch on Bram Cohen"
[5]: http://www.forbes.com/forbeslife/health/feeds/hscout/2006/11/28/hscout536261.html "YASD: Yet Another Story of Doom"
[6]: http://wired.com/wired/archive/14.12/start.html?pg=9 "Jet Pack improvements"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/MP3Realm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/MP3Realm.txt new file mode 100644 index 0000000..b115898 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/MP3Realm.txt @@ -0,0 +1 @@ +[MP3Realm][1] is an new search engine focused on finding audio in MP3 format. There are several similar sites out there and it's also possible to use advanced search operators in Google and other search engines to achieve similar results, but MP3Realm has a few nice extra features.
MP3Realm allows you create m3u playlists out of your finds which can then be downloaded and streamed by popular audio software like Winamp. There are also playlist downloads for Windows Media Player.
MP3Realm can be searched by artist, title, genre or album. MP3Realm also index lyrics so you can get your words with your music. If you'd like to submit your own music files, you can submit urls to MP3Realm via an online form.
As for the legality of the search results, that depends. MP3Realm makes a point of saying they host no MP3 files, which might absolve them of responsibility. But Fox is [suing QuickSilverScreen][2] just for *linking* to copyright infringing materials, so who knows if MP3Realm will last. The Fox/QuickSilverScreen case has not been settled and legalities are so far rather confusing.
My search results on MP3Realm were mixed. A search for music from the band Wilco led me to some songs on the band's site, which presumably means they're legal and some other files where downloading them would probably constitute copyright infringement.
If you believe a file is under copyright, and to download it would infringe upon the copyright of the owner, then don't do it.
[1]: http://mp3realm.org/ "MP3Realm"
[2]: http://www.informationweek.com/blog/main/archives/2006/12/is_simply_linki.html "Fox sues QuickSilverScreen"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/compete-graph-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/compete-graph-logo.jpg Binary files differnew file mode 100644 index 0000000..6d1d52a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/compete-graph-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/compete-graph.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/compete-graph.jpg Binary files differnew file mode 100644 index 0000000..7178c5e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/compete-graph.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/evolving-logo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/evolving-logo.txt new file mode 100644 index 0000000..8256f74 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/evolving-logo.txt @@ -0,0 +1 @@ +There's a fascinating post over at [We Make Money Not Art][1] about the "evolving" logo used by the [Max Planck Institute of Molecular Cell Biology and Genetics][2].
Michael Schmitz's logo evolves over time based on a number of factors related to the company, from the post:
>Looking for a suitable design solution, Mika soon learned about cellular automata, especially Conway's famous Game of Life, subject of many art pieces. His software basically follows the same rules in creating a dynamic logo for MPI-CBG in time, but the parameters are coupled to certain factors: number of employees = density, funding = speed, number of publications = activity. Different logos are being "bred" and then picked by fitness in relation to the parameters or voted for by the employees. Thus, every time the logo is displayed on a website as an animated icon or printed out on a letter, it reflects the current state of the lab as a living organism.
Could semi-intelligent, evolving designs be the wave of the future? The logo reminds me a little of designer Shaun Inman's [recently launched experiment Heap][3] where the archives of his blog fade in color as you go further back in time.
[1]: http://www.we-make-money-not-art.com/archives/009179.php "Evolving Logos"
[2]: http://www.mpi-cbg.de/ "Max Planck Institute of Molecular Cell Biology and Genetics"
[3]: http://www.shauninman.com/post/about/the_heap/ "About Heap"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/mp3realm-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/mp3realm-logo.jpg Binary files differnew file mode 100644 index 0000000..e737af1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/mp3realm-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/openxml.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/openxml.txt new file mode 100644 index 0000000..2fcb190 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/openxml.txt @@ -0,0 +1 @@ +As mentioned in the reboot earlier this morning, Microsoft's OpenXML document format was [approved by Ecma International][1]. OpenXML, the default format for MS Office 2007 documents, faces competition from open-source standard Open Document Format, which we [wrote about earlier this week][2].
However the Ecma approval was not unanimous, IBM cast a no vote, but was in the minority. IBM vice-president for open source and standards, Bob Sutor, [writes on his blog][3]:
>we think the OpenDocument Format ISO standard is vastly superior to the Open XML spec. ODF is what the world needs today to drive competition, innovation, and lower costs for customers. It is an example of a real open standard versus a vendor-dictated spec that documents proprietary products via XML. ODF is about the future, Open XML is about the past. We voted for the future.
One thing that's important to note is that in spite of what its name might imply, Microsoft's OpenXML is not an open source spec like ODF. OpenXML will be licensed for free, but given the size of the spec (over 4000 pages) and the fact that it eschews industry standard tools like SVG and MathML, it may be difficult for other vendors to implement.
IBM and others fear that difficult in implementing OpenXML will mean only Microsoft will fully support OpenXML with other vendors only using a subset of its features. Obviously such a situation would give Microsoft a distinct advantage in the marketplace.
So what does this mean for consumers? IBM's concerns, while they have some merit, may be unrealistic. Having two standardized formats means venders have more work to do in supporting both, but that hasn't seemed to hurt the graphics sector. After all any number of graphic software packages can read and write jpeg, gif and other standardized image file formats.
If OpenOffice ends up supporting the OpenXML format it may be a more formidable competitor.
For now Open XML will likely have a better shot at compatibility with existing documents, but in the long run ODF's more open approach may gain ground. Many vendors like Corel and Novell have already said they will support both.
[1]: http://biz.yahoo.com/prnews/061207/sfth087.html?.v=82 "Open XML press release"
[2]: http://blog.wired.com/monkeybites/2006/12/office_document.html "Monkey Bites on ODF"
[3]: http://www.sutor.com/newsite/blog-open/?p=1264 "Bob Sutor on OpenXML versus ODF"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/planck-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/planck-logo.jpg Binary files differnew file mode 100644 index 0000000..20244d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/planck-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/reboot.txt new file mode 100644 index 0000000..623cc5a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />TGIF. Here's your morning reboot, which we recommend pairing with a Central American bean of medium amber and crisp finish:
* More news on document formats: yesterday Microsoft's Open XML format (used by MS Office 2007) was [certified as a standard][1] by ECMA International. The certification means Open XML is on the fast track to ISO standardization, which will put the Open XML format on even footing with the [Open Document Format][9].
[1]: http://news.com.com/2100-1013_3-6141777.html?part=rss&tag=2547-1_3-0-20&subj=news "CNet on MS Open XML standard"
[9]: http://blog.wired.com/monkeybites/2006/12/office_document.html "Monkey Bites on ODF"
* In other format news, according to Fox news China has announced a [third DVD format][2] to compete against Blue-Ray and HD-DVD. The new format, known as EVD, is part of China's efforts to create nationwide standards and cut down on outside dependence. EVD has actually been around since 2003, but hasn't caught on yet.
[2]: http://www.foxnews.com/story/0,2933,234877,00.html "China announces DVD format"
* Popular social news site [Digg][6] has [come under fire lately][3] because unscrupulous Internet marketers are paying users to promote stories and manipulate rankings. Of course the problem is not limited to Digg, but includes others like [Reddit][4] and [del.icio.us][5].
[3]: http://news.com.com/2100-1025_3-6140293.html "Digg under fire"
[4]: http://reddit.com/ "Reddit.com"
[5]: http://del.icio.us/ "del.icio.us"
[6]: http://www.digg.com/ "Digg"
* It hasn't even been released to the world yet and pirates have already released cracks for Windows Vista's copy protection. The [latest crack][7] uses Microsoft's yet-to-be-released volume licensing activation server.
[7]: http://apcmag.com/node/4769
* Microsoft's Zune MP3 player will be [Vista compatible *on June 30*. The lack of compatibility between the companies new MP3 player and much touted new operating system surprised many people. No word on why Zune users will have to wait six months for Vista support.
[8]: http://www.itwire.com.au/content/view/7905/52/ "Zune/Vista compatibility coming June 30"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/statistics.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/statistics.txt new file mode 100644 index 0000000..6080526 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/statistics.txt @@ -0,0 +1 @@ +There are, as Mark Twain famously quipped, "three kinds of lies: lies, damned lies and statistics."
That said, Yvo Schaap has done some [interesting statistical analysis][1] using Alexa's top 10,000 websites. The potential "damn lies" part of Schaap's analysis comes from his use of data from the controversial tracking site Alexa. Many have questioned the accuracy of Alexa's figures since its data collection relies on user-installed software.
Given that Alexa's user base if currently not that large, there may be some skewing of Schaaps initial data, but provided you take it all with the proverbial grain of salt, here's what he found:
* 10 percent of he top 10,000 websites are Adult oriented.
* The U.S. owns 44% of the top 10,000 websites
* 10 percent of all the homepages provide RSS feeds
* 6 percent of the homepages have Google ads
I find number three encouraging and number four helps to explain where Google's seemingly limitless revenue comes from.
But wait there's more, another batch of statistic from a [blog post at Compete.com][2] which Compete distilled into this nice graph:
Interestingly enough, though they're technically separate domains, if you were to combine Live.com, MSN.com and Microsoft.com, all of which are Microsoft properties, Microsoft would dominate the top twenty with 80 million hits.
The Compete post also points out some traffic shifts from this time last year. Adobe, Live.com, Wikipedia and YouTube are all newcomers to the top 20, while Expedia, Monster, Paypal and Weather.com have all moved off the list.
But lists aren't everything, as Compete notes, despite having fallen from the top 20, both Paypal and Weather.com have actually seen traffic increases.
For those that would like to know where and how these numbers are arrived at, Compete offers a [breakdown of the their methodology][4] and Schaap has released [the raw data][3] he used for your perusal.
[1]: http://www.yvoschaap.com/index.php/weblog/8_questions_about_the_web_you_always_wanted_answers_to/ "Yvo Schaap statistical analysis"
[2]: http://blog.compete.com/2006/12/07/top-20-most-popular-websites-unique-visitors-new-absent/ "Compete's list of the top twenty sites for October 2006"
[3]: http://www.yvoschaap.com/webanalyse/ "Yvo Schaap's raw data"
[4]: http://blog.compete.com/where-do-these-numbers-come-from/ "Compete - statical methodology"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/venice-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/venice-logo.jpg Binary files differnew file mode 100644 index 0000000..14e5570 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/venice-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/veniceproject.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/veniceproject.txt new file mode 100644 index 0000000..b9711fd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Fri/veniceproject.txt @@ -0,0 +1 @@ +We've been hearing rumblings about [The Venice Project][1] for a while now, and while nothing concrete has yet emerged, a [new interview][2] with founder Niklas Zennstrom in the USA Today claims it "could threaten the viability of network television."
To be clear, that's something the USA Today author writes, not a quote from Zennstrom, but there's so much hype surrounding The Venice Project Zennstrom doesn't need to make any outlandish claims.
According to the website, The Venice Project will be "launching a secure P2P streaming technology that allows content owners to bring TV-quality video and ease of use to a TV-sized audience mixed with all the wonders of the Internet."
All the content for this everything-you-always-wanted-and-more service will be provided directly by the content owners and will most likely support all the appropriate content protection and ownership restriction. I'm not going to speculate on a service that isn't yet public, but that sure sounds like DRM.
Internet video delivery is heating up, Azureus recently [launched an HD video download service][3], BitTorrent seems [poised to do the same][4] and then of course there's YouTube.
If The Venice Project has any hope of succeeding in the already crowded waters of internet video it needs to do what Zennstrom has done with Skype -- take existing technology and make it easier to use.
Still no word on when The Venice Project plans to go public, but you can fill out an application to join the [private beta testing][5].
[1]: http://www.theveniceproject.com/ "The Venice Project"
[2]: http://www.usatoday.com/money/industries/technology/2006-12-06-zennstrom-internet-tv_x.htm "USA Today interview with Niklas Zennstrom"
[3]: http://www.wired.com/news/technology/software/0,72223-0.html?tw=wn_index_20 "Azureus launches HD download service"
[4]: http://www.wired.com/news/technology/internet/0,72272-0.html?tw=wn_index_3 "BitTorrent May Be Heading for TV Market"
[5]: https://www.theveniceproject.com/apply.html "The Venice Project Beta Test"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity-annotated.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity-annotated.jpg Binary files differnew file mode 100644 index 0000000..0045c3f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity-annotated.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity-logo.jpg Binary files differnew file mode 100644 index 0000000..00b96e2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity-screen.jpg Binary files differnew file mode 100644 index 0000000..78b0861 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity.txt new file mode 100644 index 0000000..0fcffa8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/askcity.txt @@ -0,0 +1 @@ +As we mentioned in this morning's reboot Ask.com has [launched a new search and maps tool called AskCity][1], which combines data from [CitySearch][2] with Ask.com's existing maps feature. The new service enters an already crowded field with [Google Maps][3] and [Yahoo Maps][4] neck and neck in the race to overtake the undisputed king of internet mapping -- [Mapquest][5].
AskCity mirrors Google Maps in appearance, but adds another column on the far left side of the screen that lets you flip between Businesses, Events, Movies, Directions and more. The layout and design of the site are clean and easy to use and there's a wealth of features without crowding the interface.
You can search for local listings in any category, whether you want to find a business, an event location, movie showtimes or just get directions, everything is kept on one simple page. AskCity trumps most other map providers by offering multipoint directions and walking as opposed to driving directions (of the others, only Yahoo offers similar features).
Like Google Maps, AskCity can show satellite or street maps and offer the option to overlay labels and other information in satellite view (refered to on AskCity as "aerial").
AskCity adds some nice features on top of what you've come to expect from online maps services, including the ability to draw, annotate, mark and save maps. At the bottom of each map panel is a toolbar with various drawing tools for annotating a map, you can then take a spanshot of your customized map or email a permalink to friends. In my testing the customized maps worked best in Firefox and IE.
You can also create your own markers on maps, just drag the marker tool to a location and AskCity will calculate the address and then you can search of things around that location.
While you're browsing through your search results AskCity provides links to send a listing to your phone via SMS or email, get directions, read reviews, search for nearby listings and more.
If you're searching for restaurants AskCity can narrow by cuisine or neighborhood and you can make reservations via OpenTable. Most events can be booked via Ticketmaster and movie listings provide purchase links to Fandango. Movie searches can also be narrowed by location or genre.
I've always been a big fan of Google Maps, but AskCity is a very impressive offering with a great feature set. I found it to be faster, easier to use and offer better results than Google Maps or other services. The three paned interface manages to pack a ton of tools into a single window without cluttering up the site or confusing users.
Combine the excellent features and search results with the ten plus years of reviews pulled in from CitySearch and AskCity may soon have other services scrambling to catch up.
[1]: http://city.ask.com/city "AskCity"
[2]: http://newyork.citysearch.com/ "CitySearch"
[3]: http://maps.google.com/ "Google Maps"
[4]: http://maps.yahoo.com/ "Yahoo Maps"
[5]: http://www.mapquest.com/ "Mapquest"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/elistening-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/elistening-logo.jpg Binary files differnew file mode 100644 index 0000000..250c86e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/elistening-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/elisteningpost.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/elisteningpost.txt new file mode 100644 index 0000000..7431766 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/elisteningpost.txt @@ -0,0 +1 @@ +Seems like everyday there's another service offering musicians a silver bullet for distributing their music to the masses. Today's offering comes from a new site [eListeningPost][1] which will give up to 94% of sales profits back to the band.
EListeningPost provides musicians with a way to distribute their music in "secure," limited-play formats via links or email. Customers can listen to a track up to five times before they need to buy it they want to continue listening. Artists can also chose to distribute a non-DRM version their songs.
EListeningPost also offers services to help artists manage mailing lists, track downloads and convert songs between formats.
But musicians take note, other than the clean, non-DRM MP3 option, none of eListeningPost's files will work on an iPod.
According to the site the fees are as follows:
* Onetime Setup Fee: US$45; UK£35; Euro €45; Canadian$55; Australian$65; Japanese Yen ¥6,800.
* Monthly Subscription Fee: US$9; UK£5; Euro €8; Canadian$10; Australian$12; Japanese Yen ¥1,200. Receive a FREE month for every referral you provide that signs up.
* Monthly Email and Contact Management Fee: FREE until January 15, 2007. US$5; UK£4; Euro €5; Canadian$6; Australian$6; Japanese Yen ¥900.
* Bandwidth cost per 10,000 downloads/previews (your first 10,000 previews are included with your setup fee): US$18; UK£10; Euro €15; Canadian$20; Australian$25; Japanese Yen ¥2,200.
We've looked at a few other music distribution channels in the past, see the Monkey Bite's review of [Snocap][2] and Listening Post's take on [Amie St.][3], and while eListeningPost may offer better percentages on sales, their set-up fees are steep for what you get and the over-reliance on DRM may put off some artists.
[1]: http://www.elisteningpost.com/ "EListeningpost"
[2]: http://blog.wired.com/monkeybites/2006/09/myspace_snocap_.html "Monkey Bites on Snocap and MySpace Music"
[3]: http://blog.wired.com/music/2006/11/amie_street_inc.html "Listening Post on Amie St."
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/pixelotto.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/pixelotto.jpg Binary files differnew file mode 100644 index 0000000..1cc52b1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/pixelotto.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/pixelotto.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/pixelotto.txt new file mode 100644 index 0000000..d459c99 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/pixelotto.txt @@ -0,0 +1 @@ +Alex Tew, creator of the [Million Dollar Homepage][1], is reportedly back with a new project named [pixelotto][2] which is set to launch tomorrow. The new site will pay out a million dollars to one lucky user who clicks the right ad.
Tew's Million Dollar Homepage, which introduced the new concept of pixel advertising and earned him a cool million dollars in a few short months was unquestionable a novel and huge success. But can Tew repeat that success or has the novelty have worn off?
To his credit, the pixelotto project does add an interesting twist to the Million Dollar Homepage concept. This time around advertisers will pay two dollars a pixel and one lucky user will walk away with a million dollars for clicking the winning pixel, hence the lotto bit in the name.
According to early reports Tew is soliciting the same advertisers from Million Dollar Homepage to purchase advertising space on Pixelotto prior to tomorrow's public launch. The idea is apparently to give loyal customers the first shot at that prime pixel real estate in the center of the page.
With the chance at a million dollar pay-out driving users to view the advertisements, pixelotto could be even bigger than the Million Dollar Homepage. So, are you feeling lucky?
[1]: http://www.milliondollarhomepage.com/ "Million Dollar Homepage"
[2]: http://www.pixelotto.com/ "Pixelotto.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/reboot.txt new file mode 100644 index 0000000..f14ee53 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Greetings earthlings, here is your morning reboot:
* Yahoo has announced a new partnership with the new organization Reuters which will make it easier for the public to contribute photos and videos of news events. The rather suspiciously named "[You Witness][2]," will be accepting uploads starting tomorrow and will apparently cross post your images to Flickr.
* Last week a U.S. District Judge [ruled that the FBI could use cellphones to spy][3] on you. The technique works by remotely activating a mobile phone's microphone to record nearby conversations.
* [Ask city is a new local search][4] and maps tool from Ask.com. Future plans call for a mobile version as well.
* TiVoToGo's DRM has been [cracked by some industrious hackers][5]. TiVoToGo DRM locks your saved programs once they're transferred to your computer and restricts what you can do with your recordings. [via [BoingBoing][6]]
[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyID=2006-12-04T114148Z_01_NAAD0401_RTRUKOC_0_US-YAHOO-REUTERS-EYEWITNESS.xml "Yahoo partners with Reuters"
[2]: http://news.yahoo.com/page/youwitnessnews "You Witness"
[3]: http://news.com.com/2100-1029_3-6140191.html "FBI spies via cellphones"
[4]: http://city.ask.com/city
[5]: http://www.alt.org/wiki/index.php/TiVoToGo
[6]: http://www.boingboing.net/2006/12/04/tivotogo_drm_cracked.html "BoingBoing on TiVoToGo Crack"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/bittorrent.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/bittorrent.txt new file mode 100644 index 0000000..6a4a1d3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/bittorrent.txt @@ -0,0 +1 @@ +BitTorrent, Inc., will announce later today that it has acquired µTorrent, a lightweight and efficient implementation of the BitTorrent protocol. The official announcement will come this afternoon, but there are already [some posts from Bram Cohen][4], CEO and Co-Founder of BitTorrent, in the µTorrent Forums.
>BitTorrent has acquired µTorrent as it recognized the merits of µTorrent's exceptionally well-written codebase and robust user community. Bringing together µTorrent's efficient implementation and compelling UI with BitTorrent's expertise in networking protocols will significantly benefit the community with what we envision will be the best BitTorrent client.
We gave [µTorrent high marks][1] back in our [review of Bittorrent clients][2] for being lightweight and efficient. According to posts in the µTorrent forums, the new deal means, among other things, versions of µTorrent for Mac and Linux, although no timetable has been announced.
Cohen says, "Ludvig Strigeus, the developer of µTorrent, clearly put a significant amount of time into optimizing the client." Cohen went on to say, "BitTorrent recognizes µTorrent's exceptionally well-written codebase and robust user community." The FAQ claims that "bringing together BitTorrent expertise with µTorrent's elegance creates... what will be the best BitTorrent client hands-down."
For the time being the µTorrent client and website will remain and the client will continue to be freely available for download. The acquisition FAQ's go on to note that the µTorrent code base will remain closed source.
The merge means that many of BitTorrent Inc's patented delivery innovations will be rolled into the µTorrent client. While that's nice for users, the real reason for the deal may be that BitTorrent Inc, which just inked some deals with Hollywood, needs a lightweight codebase for potential mobile, television and other, non-PC markets.
In a [Wired Interview earlier this week][3], Cohen said, "We're working on making BitTorrent come preinstalled on many embedded devices, as one of the basic services they support in the same class as web browsers."
With the newly acquired lightweight µTorrent client, could BitTorrent-powered movie downloads be headed for a mobile device near you?
[1]: http://blog.wired.com/monkeybites/2006/10/best_of_bt_torr.html "Monkey Bites reviews µTorrent"
[2]: http://www.wired.com/news/technology/0,71979-0.html?tw=rss.index "Wired: The best of bittorrent"
[3]: http://www.wired.com/news/technology/internet/0,72222-0.html "Wired Talks to Bram Cohen"
[4]: http://forum.utorrent.com/viewtopic.php?id=17279 "Bram Cohen announces µTorrent acquisition"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/mog-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/mog-logo.jpg Binary files differnew file mode 100644 index 0000000..d78af93 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/mog-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/mog-widget-drag.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/mog-widget-drag.jpg Binary files differnew file mode 100644 index 0000000..ce63d35 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/mog-widget-drag.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/mog.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/mog.txt new file mode 100644 index 0000000..1dbfb2c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/mog.txt @@ -0,0 +1 @@ +A while back we looked at bunch of [music sharing and discovery sites][1]. Of course there's too many sites out there to get to them all, but I've been playing with [MOG.com][2] for a couple weeks now and decided it deserves a mention.
MOG is social networking site based around music. Like last.fm and others it offers a downloadable program (Mac and Windows) that can parse your music collection and display the data on your personal MOG page.
The functionality of the program mirrors that of similar offerings from last.fm and others, but Mog-o-matic supports an impressive array of jukebox software including iTunes, Windows Media Player, Winamp and many more.
Once the data is uploaded to the site fellow MOG users will be able to see your most frequently listened to songs in a top ten list. MOG also offers a number of widgets to display more targeted information about your listening habits, such as top albums by week and month. Note that there doesn't see to be a way to block listings, so while your friends on MOG may not know you were dancing naked at the time, they will know you put on that Warrant album.
MOG allows you customize your page with a number of skins and widgets using the "customize my MOG" page where you can also rearrange your page elements through a nice drag-and-drop interface. MOG offers a number of automatically updated widgets that pull data from your listening history as well as some manual widgets where you fill in the data yourself, such as, what shows you're going to or a list of your favorite clubs.
To find other listeners with similar tastes you can search using the browse features or use an automated search "find MOGs like me" which searches based on your listening habits. The browse page also allows you to search by zip code which means you can meet users in your area and get tips on local shows.
Overall MOG is a nice site, it's easy to use and has good range of listeners, but it lacks a killer feature to set it apart from the pack of similar services.
However, what it lacks in features, it makes up for in community. There are a ton of social network sites on the market, but few are as well-behaved and well-spoken as the members of MOG. The MOG community is one of the most mature and insightful that I've run across. There's nary a flame war or fan-boy post to be found, which was incredibly refreshing.
MOG also boast a number of active celebrity artists like David Lowery of Cracker and Ben Gibbard of Death Cab for Cutie who both regularly update their pages. If you're looking to discover new artists through streaming audio and other instant gratification tools, MOG may leave you wanting, but if you want to be part of an impressive and active community of music lovers MOG delivers.
[1]: http://www.wired.com/news/technology/internet/0,72182-0.html "Wired on music services"
[2]: http://mog.com/ "Mog.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/reboot b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/reboot new file mode 100644 index 0000000..41b3193 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Thu/reboot @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot:
* A new [report from environmental group Greenpeace][1] ranks Apple Computer last among top PC and cellphone makers for its lack of "green" policies and for contributing to adverse environmental effects.
[1]: http://www.ibtimes.com/articles/20061206/apple-greenpeace.htm
* Yahoo released its [top ten searches of 2006][4] and for the fifth year running Britney Spears is the most searched for person in the world. Yahoo eliminates porn terms, but otherwise claims the data is unmanipulated. Also check out the [interactive version of the results][3].
[3]: http://buzz.yahoo.com/topsearches2006/categories/ "Yahoo top searches by category"
[4]: http://buzz.yahoo.com/topsearches2006/lists/ "Yahoo Top searches of 2006"
* Yesterday and this morning have seen several stories proclaiming [the beginning of the end of DRM][6]. It would be nice if that were true, but reality is a little more mundane. A few record companies, most notably Britain's EMI, are [experimenting with non-DRM MP3 downloads][5]. In total there are probably less than a hundred tracks available, which hardly constitutes the end of DRM, but at least it's a small step in the right direction.
[5]: http://www.mercurynews.com/mld/mercurynews/business/technology/16181982.htm
[6]: http://www.itwire.com.au/content/view/7849/1023/ "ITWire"
* [A new version of OpenSUSE Linux][2] has been released. The release, which brings the distribution to version 10.2, features redesigned GNOME and KDE desktops and uses ext3 as the new default file system.
[2]: http://lists.opensuse.org/opensuse-announce/2006-12/msg00004.html "OpenSUSE announcement"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/downloadpunk-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/downloadpunk-logo.jpg Binary files differnew file mode 100644 index 0000000..5e431bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/downloadpunk-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/downloadpunk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/downloadpunk.jpg Binary files differnew file mode 100644 index 0000000..afc55ac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/downloadpunk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/downloadpunk.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/downloadpunk.txt new file mode 100644 index 0000000..6f4e204 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/downloadpunk.txt @@ -0,0 +1 @@ +Downloadpunk is a newish music store that specializes in, natch, punk music. The selection is excellent including just about everything from the seminal punk label Discord Records.
The distribution of punk music has always made it an easy candidate for online dissemination since word of mouth has always fueled the scenes. Downloadpunk seems to have recognized this and skipped many of the social features other music sites are touting. Downloadpunk seems to operate on the premise that what punk fans want is an online record store, not an online community and download punk is a darn fine store.
All songs are in 192 bit encoding which should be fine for most punk bands. Users can choose between mp3 and WMA formats. When you sign up you have the option to chose a charity, and Downloadpunk donates 1% of sales to the charities listed on the site. Song prices range from $.79, to $.99. You can also download full albums which range in price from $7.99 to $9.99. Customers can preview a thirty second sample of each song before purchasing.
You can search Downloadpunk by Artist, Album Title, Record Label or Song Title or you can browse by filtering through the various Punk sub-genres. Unfortunately there's no tag-based searching and not much in the way of recommendations, but they again if you're part of the punk scene perhaps you don't need online recommendations.
And the best part? There's no craptastic DRM. Wouldn't be very punk if there was would it?
[1]: http://www.downloadpunk.com "downloadpunk.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/goodsearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/goodsearch.jpg Binary files differnew file mode 100644 index 0000000..5ba009b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/goodsearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/goodsearch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/goodsearch.txt new file mode 100644 index 0000000..c6eeb06 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/goodsearch.txt @@ -0,0 +1 @@ +It's been around for some time, but I just [ran across GoodSearch.com][1], a Yahoo-powered search engine that donates half of its ad revenue to charity. Each time a user searches GoodSearch.com, 50 percent of the advertising revenue is donated to a charity designated by the user.
To use GoodSearch, just enter the charity you want to support in the provided field, and then enter your search. You can change the designated charity as often as you like and there's even browser based toolbars available for download.
The results will be the same as those returned on Yahoo (a Google option would be nice), so you don't have to feel like you're missing anything in the results and you'll be helping the charity of your choice earn money.
GoodSearch can also be used to donate money to schools. There are currently over 23,000 charities and schools listed on the site.
Thanks to [LifeHacker][2] for pointing me to the site.
[1]: http://www.goodsearch.com/ "GoodSearch.com"
[2]: http://lifehacker.com/software/charity/support-charities-while-you-search-the-web-219330.php "LifeHacker on GoodSearch"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/ifilm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/ifilm.jpg Binary files differnew file mode 100644 index 0000000..938ee02 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/ifilm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/ifilm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/ifilm.txt new file mode 100644 index 0000000..60235d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/ifilm.txt @@ -0,0 +1 @@ +Variety.com is reporting that Comedy Central video clips are now [readily available on Viacom-owned video site iFilm][1]. Previously Viacom [asked YouTube to take down clips][2] that contained Viacom owned content, which includes popular Comedy Central shows like The Daily Show and The Colbert Report.
While neither of those shows is completely gone from YouTube the clips have become somewhat scarce and are uploaded less frequently than previously.
Comedy Central hasn't publicized the iFilm partnership, but Variety.com reports that "iFilm is receiving numerous three-minute clips from the two shows that add up to most, if not all, of an episode the day after it airs."
iFilm also boast a fair amount of other Viacom owned content such as clips from MTV's The Real World and Wondershowzen.
IFilm lacks the current popularity of YouTube, but the site does have an official partnership with Viacom, something YouTube thus far lacks, and may gain some ground thanks to Viacom-owned content, which makes me wonder why iFilm isn't shouting this one from the mountaintops.
[1]: http://www.variety.com/article/VR1117954999.html?categoryid=14&cs=1
[2]: http://blog.wired.com/monkeybites/2006/10/youtubes_copyri.html "Monkey Bites on Viacom and YouTube"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdb-new.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdb-new.jpg Binary files differnew file mode 100644 index 0000000..c67f249 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdb-new.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdb-old.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdb-old.jpg Binary files differnew file mode 100644 index 0000000..6f8e806 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdb-old.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdb.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdb.jpg Binary files differnew file mode 100644 index 0000000..abba17e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdb.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdbfacelift.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdbfacelift.txt new file mode 100644 index 0000000..7ba090e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/imdbfacelift.txt @@ -0,0 +1 @@ +The [Internet Movie Database (IMDB) has redesigned][1] and now looks less like it's trapped 1998. The site appears to have undergone a fairly significant facelift overnight.
The IMDB has a long way to go before it can claim to be web 2.0, but the new design is at least easier on the eyes and seems to load a little faster. The IMDB could have benefitted from some collapsing menus or tabs, but the new design elements are primarily visual and not functionality overhauls.
Regrettable some of the new design could even be considered a step backwards in terms of functionality. The new homepage is significantly longer and several of the small top-ten link boxes are gone.
The new design does move the IMDB toward a more standards based layout, which for the most part eschews tables in favor of more semantic markup. As a poster at the [digg article where I discovered the redesign][2] points out, there are some funny bits in the new code, such as the CSS selector #nb15iesux.
[1]: http://www.imdb.com/ "The Internet Movie Database"
[2]: http://digg.com/design/IMDB_Gets_a_Face_Lift
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/myspace sex offenders.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/myspace sex offenders.txt new file mode 100644 index 0000000..edcd9fe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/myspace sex offenders.txt @@ -0,0 +1 @@ +MySpace said today that it will begin offering a new technology to [identify and remove convicted sex offenders][1] from the site.
The project will partner MySpace with [Sentinel Tech][3] to built Sentinel Safe, a new technology which will enable MySpace to identify and delete profiles of registered sex offenders.
Because of MySpace's popularity with young users, the sex offender problem has plagued the site for some time and has lead to growing concern about how to address the problem. Wired's own [Kevin Poulsen wrote a program months ago][2] that had reasonable success in tracking down offenders.
The new technology, called Sentinel Safe, will draw on state and federal databases to find registered sex offenders. Interestingly enough, MySpace claims that this is first time anyone has collated data from the 46 individual state tracking systems into one national database.
If that claim is true, then the new technology may have appeal beyond MySpace as well.
Unfortunately, the ease with which users create fake identities on MySpace means the new technology will be only partly effective, since it can only find sex offenders that sign up under their real name.
To combat that issue MySpace has asked Congress to introduce e-mail registration legislation. under the proposed legislation sex offenders would have to register email addresses or face parole violations.
Also note that the new technology applies only to registered sex offenders in the United States, though MySpace says it is looking into similar programs for Europe and Asia.
[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-05T172807Z_01_N05296258_RTRUKOC_0_US-NEWSCORP-MYSPACE.xml&src=rss
[2]: http://www.wired.com/news/technology/1,71948-0.html "Kevin Poulsen on MySpace sex offenders"
[3]: http://sentryweb.com/ "Sentinal Tech"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/office.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/office.txt new file mode 100644 index 0000000..96af5d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/office.txt @@ -0,0 +1 @@ +The International Organization for Standardization, which oversees files formats and other standards information, [published the official specs for the Open Document Format][1] last week. The ODF file format is an XML-based format for text, spreadsheet, database, and presentation files created by office applications.
The idea behind ODF is to provide a way for any office program on any platform to share documents with any other office program. OpenOffice.org already saves files in ODF format and Google's web-based office apps support it as well.
Even Microsoft has grudgingly acknowledged the format and plans to release plugins for MS Office 2007 which will allow users to read and write ODF files.
In related news, Novell has announced that its version of OpenOffice.org [will support Microsoft's proprietary document format][2], the confusingly named Open XML (which is not "open" in sense of open source as its name might imply).
Novell also plans to release the code to the open source community so that all versions of OpenOffice.org *could* support the MS format if they wanted.
While it would be nice to see Microsoft adopt the ODF file format for MS Office, at least for the time being the Novel announcement means OpenOffice.org users will be able to trade documents with MS Office users.
Even if Microsoft never moves to using the ODF format by default, these two announcements are still a win for users as enhanced cross-platform capabilities will benefit nearly everyone.
The new version of Novell's OpenOffice.org does not have an official release date yet. Office 2007 [will be available to consumers January 30th][3].
[1]: http://www.iso.org/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=43485&scopelist=PROGRAMME "ISO ODF docs"
[3]: http://blog.wired.com/monkeybites/2006/11/windows_vista_i.html "Monkey Bites on Office 2007 release dates"
[2]: http://news.yahoo.com/s/pcworld/20061205/tc_pcworld/128079 "Novell to support Open XML format"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/reboot.txt new file mode 100644 index 0000000..18db635 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Tues/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The news, and lots of it. Your morning reboot:
* Microsoft has [announced a new suite of tools for designers][1], as well as a preview of the much touted "Flash killer," Microsoft Interactive Designer, which now goes by the name Expression Blend. Expression Blend, along with the other three programs, are intended to compete with offerings from rival Adobe. The new software will be available in the second quarter of 2007.
[1]: http://biz.yahoo.com/prnews/061204/sfm044.html?.v=73 "Microsoft Expression Software"
* According to the [Proximity website][2], Apple has [acquired the video and audio software publisher][3]. Few details are available but I would expect to see the software rolled into Apple media editing products like Aperture.
[2]: http://www.proximitygroup.com/ "Proximity Group"
[3]: http://www.macworld.co.uk/procreative/news/index.cfm?newsid=16659&pagtype=allchandate "Macworld on Apple/Proximity deal"
* Speaking of Apple, rumors are swirling this morning about the possibility of an [ultra-thin ultra-light MacBook Pro][4]. Pure conjecture as of yet. And to add to the Mac rumor fest [Toshiba has announced a new 100 gig 1.8 hard drive][11], can new larger iPod by far behind?
[4]: http://www.macscoop.com/articles/2006/11/17/sources-confirm-plans-for-a-smaller-ultra-thin-form-factored-macbook-pro "Macscoop on Apple rumors"
[11]: http://www.reghardware.co.uk/2006/12/05/toshiba_intros_100gb_hdd/ "New Toshiba Drive"
* Following the [BitTorrent company's announcement last week][5], bittorrent client [Azureus has announced version 3.0][6] and an accompanying site called [Zudeo][7]. One more small step in bittorrents struggle to legitimize itself.
[5]: http://blog.wired.com/monkeybites/2006/11/bittorrent_cuts.html "Monkey Bites on BitTorrent announcement"
[6]: http://arstechnica.com/news.ars/post/20061204-8348.html "Azureus announcement"
[7]: http://www.zudeo.com/az-web/Index.html "Zudeo"
* The Halo 3 beta [officially opened for new registrations][8] yesterday. Be sure to check out the [system requirements][9] before you get to excited.
[8]: http://www.cinemablend.com/games/Halo-3-Beta-Registration-Begins-Today-1893.html "Halo registration opens"
[9]: http://www.halo3.com/ "Halo 3"
* And finally our thought and prayers are with James Kim. For those that haven't heard, the CNet editor's [wife and two daughters were found safe yesterday][10], but the search for Kim continues.
[10]: http://news.com.com/CNET+editors+wife%2C+daughters+found+search+continues/2100-1028_3-6140676.html?tag=cnetfd.mt "James Kim still missing"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/accessibility.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/accessibility.jpg Binary files differnew file mode 100644 index 0000000..4cf5d4e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/accessibility.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/accessibility.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/accessibility.txt new file mode 100644 index 0000000..ca31262 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/accessibility.txt @@ -0,0 +1 @@ +Most of the web is off limits to disabled persons. According to a U.N study, conducted by the British technology firm [Nomensa][1], 97 percent of websites [fail to meet the minimum level of web accessibility][4].
The survey looked at 100 popular sites in twenty different countries and tested them against the [Web Content Accessibility Guidelines][2], the international guidelines for web accessibility.
While that's a pretty daunting statistic, and a dismal failure, the survey also outlined many of the problem areas and suggests most would be fairly easy to remedy.
The most common stumbling block was Javascript, which many so-called web 2.0 sites rely on for their graphical wiz-bang features.
followed closely by a lack of alternative text for images. Screen readers and other assistive devices rely on the <code>alt</code> descriptions in <code>img</code> tags to "show" visually impaired users the graphics on a page.
Another problem the survey touches on was the use of poorly contrasting color combinations, which make Web pages difficult to read for people with visual impairment like color blindness.
Looks like [Jakob Nielson][3] needs to write another book.
And the three success stories? The only websites that met all the minimum standards were the German chancellor's website, the Spanish government website, and the British prime minister's website. The only question is how those three sites ended up in a list of the internet's most popular.
[1]: http://www.nomensa.com/ "Nomensa.com"
[4]: http://today.reuters.co.uk/news/articlenews.aspx?type=internetNews&storyID=2006-12-05T224424Z_01_N05332044_RTRIDST_0_OUKIN-UK-INTERNET-DISABLED.XML&WTmodLoc=TechInternet-C1-Headline-9 "Reuters on UN Study"
[3]: http://www.useit.com/ "Jakob Nielson on web standards and accessibility"
[2]: http://www.w3.org/WAI/ "W3C guidelines for web accessibility"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/acrobat-comments.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/acrobat-comments.jpg Binary files differnew file mode 100644 index 0000000..7dcd72e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/acrobat-comments.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/acrobat-connect.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/acrobat-connect.jpg Binary files differnew file mode 100644 index 0000000..1ceb6b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/acrobat-connect.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/acrobat.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/acrobat.txt new file mode 100644 index 0000000..6de1363 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/acrobat.txt @@ -0,0 +1 @@ +Earlier today Adobe release a new version of it's PDF document suite Acrobat. The Acrobat family has been updated to version 8 with the popular (and free) [Acrobat Reader now available][1] for download.
The Acrobat line of products now includes Reader, Elements, Standard, and Pro versions ranging in price from free for Reader to $449 US for the Pro version. Early 2007 will see the release of a fifth version, 3D, which features CAD and other 3D imaging integration.
Adobe, who controls the industry-standard Portable Document Format (PDF), is pushing the collaborative side of off the so-called office 2.0 arena. The new Acrobat reader opens with a dialog asking if you want to "go beyond Adobe Reader." The link then loads a full tutorial and overview of Adobe's sharing and online PDF creation tool, Adobe Acrobat Connect.
The new Reader features a vastly simplified toolbar. Gone are the multitude of toolbars and palettes that used to open by default when viewing a PDF file. Even better, Reader now offers user customizable toolbars, a feature I hope to see in other Adobe products.
Other new features include the ability to create PDF documents from any application that prints, including one-button creation from Microsoft Word, Excel, and PowerPoint. Adobe Reader also sports a new option to let you fill and submit forms, save data and digitally sign documents.
Those forms can be created using the full versions of the Acrobat family and then sent out and anyone with Reader who can then fill in and digitally sign the documents.
The a new comments feature allows for online (and off) comments within the document space (see the screenshots below).
Another prominent feature (one of the few default buttons on the toolbar) is the "Start Meeting" button which will launch Adobe Acrobat Connect. Connect, the Adobe-hosted software, provides real-time online collaboration through Adobe Flash Player.
My testing revealed a couple glaring negatives, first the Mac installer has no uninstall and what's worse, if you run the installer a second time it will simply reinstall the program. I don't know if the Windows installer is any smarter, but Adobe certainly could have done better.
Interestingly, instead of going the Universal Binary route Adobe has actually released two separate versions of its Acrobat Line for Macs, one for Intel Macs and one for older PowerPC models.
Overall the new suite is impressive and the redesign elements and user customization features bode well for Adobe's other programs which are expected to be updated some time next year.
[1]: http://help.adobe.com/en_US/Reader/8.0/index.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/beyond1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/beyond1.jpg Binary files differnew file mode 100644 index 0000000..b90f4ec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/beyond1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/beyond2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/beyond2.jpg Binary files differnew file mode 100644 index 0000000..0474dba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/beyond2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/live-search-books.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/live-search-books.jpg Binary files differnew file mode 100644 index 0000000..57f88f8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/live-search-books.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/live-search-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/live-search-logo.jpg Binary files differnew file mode 100644 index 0000000..a5a705f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/live-search-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/ms-booksearch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/ms-booksearch.txt new file mode 100644 index 0000000..44a3321 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/ms-booksearch.txt @@ -0,0 +1 @@ +As we mentioned in this morning's reboot, Microsoft has [added a book search component][1] to its Live Search offering. The new service is currently a public beta available on the Live search website, but it will eventually be incorporated into the general search engine.
Live Search Books will offer full text searches of scanned books, but for the time being the collection is limited to public domain works from the British Library, the University of California and the University of Toronto.
Microsoft says they will be adding copyrighted books in the future, but only those submitted by publishers or authors. This differs from Google who has scanned everything in the participating libraries' collections, but only offers full text searches of public domain books.
Thus far several publishers and authors have sued Google, as has the US Authors Guild, Microsoft apparently wishes to avoid the lawsuits.
So far the searching is very limited with no advanced options or search operators available but hopefully that will change as the beta progress. If you find something you'd like to save or print Live Search Books offer PDF files for download including a link to download the entire book.
So far the site does not appear to support the Safari Browser but Firefox and IE work just fine.
Microsoft also announced the addition of medical content to the Windows Live Academic Search. Academic Search is a full texts search of journals for institutions that subscribe to them. Today's additions reported quadruple the amount of medical information in Academic Search.
[1]: http://search.live.com/results.aspx?q=&scope=books
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/office-docx.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/office-docx.txt new file mode 100644 index 0000000..6bbf945 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/office-docx.txt @@ -0,0 +1 @@ +As a follow-up to yesterday's [office document format post][3], here's a link to the [Compatibility Pack for Word, Excel, and PowerPoint 2007 File Formats][1]. Users who are running older versions of Office can install these converters and will be able to read the new file format (which has the extension .docx)
The converters are free and Windows only.
Mac users and others those that don't have any version of MS office may want to try using
[Docx-Converter][2]. Docx-Converter is a free online document conversion service that will pull the readable text out of a .docx file and save it as plain text.
Obviously since the tile Docx-Converter generates is plain text, its far from ideal, but until the Mac converters arrive in Spring, it may be the only option available.
[1]: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=941B3470-3AE9-4AEE-8F43-C6BB74CD1466 "download Microsoft Office Compatibility pack"
[2]: http://docx-converter.com/ "Docx-Converter"
[3]: http://blog.wired.com/monkeybites/2006/12/office_document.html "Monkey Bites on Office Document Formats"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/office2007.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/office2007.jpg Binary files differnew file mode 100644 index 0000000..810c961 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/office2007.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/reboot.txt new file mode 100644 index 0000000..1937ed4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.04.06/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Fresh as always and with no increased risk of cancer, the morning reboot:
* Adobe has [released version 8 of their popular Acrobat Reader software][7]. Among the [list of new features][8] are web-based collaboration (via Connect), shared reviews, enhanced search options and more.
[7]: http://www.adobe.com/products/acrobat/readstep2.html "Adobe releases Acrobat Reader 8"
[8]: http://help.adobe.com/en_US/Reader/8.0/WS00E809B7-1119-4416-8731-033B20B684B3.html "Reader 8 new features"
* According to a new study, [cell phones *do not* cause cancer][1]. The studied 400,000 Danish cellular users, some of whom were tracked for two decades, and concluded that mobile phone usage did not increase the risk of cancer.
[1]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2006-12-06T152620Z_01_N05280092_RTRUKOC_0_US-CANCER-CELLPHONES.xml&src=rss "Cell Phones don't cause cancer"
* [MySpace is reportedly in talks with Cingular][2] to put the popular social network on Cingular phones. The deal would give the millions of MySpace users mobile access to the site, but so far there are no details on pricing or features. And there's no risk of cancer.
[2]: http://news.yahoo.com/s/fool/20061205/bs_fool_fool/116534248119 "MySpace to go wireless"
* A serious [new flaw has been found in Microsoft Word][3] that allows an attack to excute malicious code when an infected Word file is opened. So far there's no patch and Microsoft recommends that you excercise caution when opening files from unknown or untrusted parties. See the above link for a list of effected versions.
[3]: http://www.microsoft.com/technet/security/advisory/929433.mspx "Zero day attack"
* Microsoft is [releasing Live Search Books today][4], a competitor to Google Book Search. The service is in beta at the moment and only available via a browser, but in the future MS plans to integrate Live Search Books in the the rest of Live Search.
[4]: http://news.com.com/2100-1038_3-6141162.html "Live Search"
* Yahoo has undergone a serious executive shuffle/shakedown. Check out the Epicenter Blog for [some analysis][5] [on the changes][6].
[5]: http://blog.wired.com/business/2006/12/more_on_yahoo.html
[6]: http://blog.wired.com/business/2006/12/even_more_on_ya.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/cbs b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/cbs new file mode 100644 index 0000000..1fc55c8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/cbs @@ -0,0 +1 @@ +CBS is raising the dead to save money. The media giant said this morning that it will [resurrect the dormant CBS Records music label][1] to supply CBS television shows with cheaper music and to generate online music sales.
CBS has also signed a deal with Apple's iTunes Music Store to sell the revived label's music and videos.
The CBS Records label is apparently CBS's attempt to keep more of it's content in-house. Rather than paying licensing feeds to other labels for the use of their music, CBS Records will be hunting for unsigned musicians who write and perform their own songs which can be used to promoted CBS's prime-time TV shows.
By owning rather than licensing content CBS reduces costs and gains another source of revenue via online digital sales of the music.
In a CBS press statement CBS Chief Executive Leslie Moonves says, "with more consumers choosing the online download model as the preferred way to purchase their favorite songs, we have an opportunity to use our unique and broad collection of media platforms to create a new music label paradigm for a small price of admission."
For those less versed in jargon, I think what Moonves means is, people are spending a lot of money on online music and CBS wants some.
Once things get rolling CBS plans to integration music from CBS Records artists into the network's programming. At the end of each show CBS will display artist and purchasing information for interested viewers.
CBS, which recently [demonstrated the merits of giving away video on YouTube][2] seems to understand the online market a little better than many of it's rivals and I have no doubt that the new label together with it's iTunes tie-ins will benefit the company.
I would, however, like to know why companies that don't sell vinyl records insist on calling themselves "record companies," is "music company" just not catchy enough?
[1]: http://www.cbsrecords.com/news.shtml "CBS Records"
[2]: http://www.hollywoodreporter.com/hr/content_display/television/news/e3i74d7f1097c5379d6e7722df5ec031798 "CBS YouTube channel a success"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/cbs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/cbs.jpg Binary files differnew file mode 100644 index 0000000..c746582 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/cbs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/google-registrar.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/google-registrar.txt new file mode 100644 index 0000000..ad9672c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/google-registrar.txt @@ -0,0 +1 @@ +Attention both people who don't haven't already registered a domain name: Google is here to help. The search giant announced today it will be [entering the realm of domain registrations][1]. Annual registrations will be $10 and are available for domains ending in four suffixes, .com, .net, .biz and .info.
For those that may have overlooked it, Google became an accredited registrar of domain names almost two years ago, but this is the first time they've done anything with that approval. Rival services from Yahoo have been around for years.
The domain registration service has been rolled into the [Google Apps for Your Domain][2] offering. Google's service offers private listing, a DNS and domain management control panel and comes automatically configured to work with other Google services. You also get free email, calendar and IM services courtesy of Google Apps for Your Domain.
Google clearly wants to be the one-stop shop for small businesses looking to get started with the web and the auto-integration with other services certainly makes Google's new registration services tempting.
Google's new registration service sees the company partnering with [GoDaddy][3] and [eNom][4], and frankly the announcement is a little unclear on whether or not Google is handling the registration or whether it's really just doing a de-branded resale of GoDaddy and eNom's services.
So far Google doesn't have a bulk registration discount or pay-in-advance discount, but the $10 price tag is on par for the field and certainly better than old skool registrar, Network Solutions, who still charges $34.99 a year. Ouch.
[1]: https://www.google.com/a/help/intl/en/admins/new.html "Google Domain Registration"
[2]: https://www.google.com/a/ "Google Apps for Your Domain"
[3]: http://en.wikipedia.org/wiki/Go_Daddy_Software "Wikipedia on GoDaddy"
[4]: http://www.enom.com/ "Enom"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/nightly.txt new file mode 100644 index 0000000..5f041f5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/nightly.txt @@ -0,0 +1 @@ +* [JamGlue][1], which we [reviewed][2] a while back and gave high marks in the [Wired review][3], has come out of its private beta phase and is now officially open to the public. Go on, glue it to the man.
[1]: http://www.jamglue.com/ "Jam Glue open to public"
[2]: http://blog.wired.com/monkeybites/2006/11/jamglue_remixin.html "Monkey Bites on Wired"
[3]: http://www.wired.com/news/technology/internet/0,72127-0.html?tw=rss.index "wired review of remixing sites"
* Reddit, which is owned by Conde Nast, who also owns Wired, [reports][4] that a disc containing usernames, passwords and some emails was stolen, possibly compromising users. But then again, who uses their real email address to sign up for web services? however on the outside chance you use the same username and password for other online accounts, Reddit recommends changing them.
[4]: http://reddit.com/blog/theft "Reddit data stolen"
* Possibly inspired by recent Flickr upgrades, Google's [Picassa Web Albums][5] have been updated to support videos, tags, bulk captions and online printing to its growing list of services. [via [Lifehacker][6]]
[5]: https://www.google.com/accounts/ServiceLogin?hl=en_US&continue=http%3A%2F%2Fpicasaweb.google.com%2F&passive=true&service=lh2 "Picassa Web Albums Upgrade"
[6]: http://www.lifehacker.com/software/picasa/picasa-web-albums-adds-features-222154.php "Lifehacker on Picassa Upgrade"
* I try and try and try to ignore it, but it just won't go away. Yes it's true, Apple iPhone rumors don't die they just wander over to Gizmodo and get catchy headlines like, "[Gizmodo Knows: iPhone Will Be Announced On Monday][7]." I hope that's true, if only so the rumors stop.
[7]: http://www.gizmodo.com/gadgets/cellphones/gizmodo-knows-iphone-will-be-announced-on-monday-221991.php "Like the Shadow, Gizmodo knows"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/reboot.txt new file mode 100644 index 0000000..56dc1ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot:
* Microsoft [strikes back][1]. In an effort to address Windows Vista cracks, a post on the Windows Genuine Advantage blog outlines what will happen to pirated copies of Vista: "Windows Vista will use the new Windows Update client to require only the 'frankenbuild' systems to go through a genuine validation check. These systems will fail that check because we have blocked the RC keys for systems not authorized to use them. The systems will then be flagged as non-genuine systems and the experience will be... losing certain functionality (e.g. Aero, ReadyBoost) and the system will have 30 days to activate with a good product key."
[1]: http://blogs.msdn.com/wga/archive/2006/12/14/the-frankenbuild-monster.aspx "MS Addresses Vista Piracy"
* [ThinkFree][2], maker of popular web-based office tools, will offer a [paid version of its application suite][3] that will give users the ability to work offline. The service will cost between $5 and $10 a month.
[2]: http://www.thinkfree.com/common/main.tfo "ThinkFree"
[3]: http://news.com.com/2100-1012_3-6143755.html?part=rss&tag=2547-1_3-0-20&subj=news "ThinkFree To Offer Offline Version"
* [eMusic][4], a DRM-free MP3 retailer for independent artists, has announced that is has now [sold over 100 million songs][5]. The lucky 100 millionth downloader will be immortalized in song by The Barenaked Ladies and will be featured as a bonus track on their upcoming new album.
[4]: http://www.emusic.com/ "eMusic.com"
[5]: http://digitalmusic.weblogsinc.com/2006/12/13/emusic-crosses-100m-mark/ "eMusic sells 100 million songs"
* It still doesn't appear to be on the main page of [Adobe Labs][6], but an enterprising Digg reader located the [download url][7] for the Photoshop CS 3 beta. Be forewarned: it's a 685 MB monster for Mac, the Windows version is 337 MB.
[6]: http://labs.adobe.com/ "Adobe Labs"
[7]: http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5Fphotoshop "Photoshop CS 3 beta download"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/terminal-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/terminal-icon.jpg Binary files differnew file mode 100644 index 0000000..2dae1c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/terminal-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/unix-tip.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/unix-tip.txt new file mode 100644 index 0000000..c8d5ad4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/unix-tip.txt @@ -0,0 +1 @@ +I find myself spending an increasing amount of time on the command line these days, but without a strong background in Unix, I sometimes feel I'm missing out on lots of time saving tips and tricks.
This morning I found a link on Digg to a handy [list of Unix shell tips and tricks][1] that has already been saving me some time. Michael Stutz over at IBM's Developer Works writes:
>When you use a system often, you tend to fall into set usage patterns. Sometimes, you do not start the habit of doing things in the best possible way. Sometimes, you even pick up bad practices that lead to clutter and clumsiness. One of the best ways to correct such inadequacies is to conscientiously pick up good habits that counteract them. This article suggests 10 UNIX command-line habits worth picking up -- good habits that help you break many common usage foibles and make you more productive at the command line in the process.
One of my biggest annoyances in the shell is when I try to cd to a directory and only then discover that I haven't created that directory yet. This simple line from the article solves that issue by creating the directory if it doesn't exist:
cd tmp/a/b/c || mkdir -p tmp/a/b/c
I suppose if I were smarter I would have thought of that myself, but that's what the article is good at pointing out, tricks that, if you had the time to stop and think about them for a while, you'd probably solve yourself. But who has that time when there's work to be done?
[1]: http://www-128.ibm.com/developerworks/aix/library/au-badunixhabits.html "Unis tips and tricks"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/week-in-review-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/week-in-review-logo.jpg Binary files differnew file mode 100644 index 0000000..8f76eba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/week-in-review-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/wrap.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/wrap.txt new file mode 100644 index 0000000..ed1f25d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Fri/wrap.txt @@ -0,0 +1 @@ +And now... The Week in Review. Here's a roundup of the weeks biggest stories:
* Google had a big week. There were [updates][1] to the Firefox toolbar, a patent search engine [launched][2], Google Earth [added Wikipedia][8] content and more, the Google Web Toolkit [became][3] open source and finally Google [entered][4] the domain registration fray.
[1]: http://blog.wired.com/monkeybites/2006/12/google_upgrade_.html "Google Updates Firefox Toolbar"
[2]: http://blog.wired.com/monkeybites/2006/12/google_launches.html "Google Patent Search"
[3]: http://blog.wired.com/monkeybites/2006/12/the_google_web_.html "Google Web Toolkit goes Open source"
[4]: http://blog.wired.com/monkeybites/2006/12/domain_registra.html "Google Domain Registration"
[8]: http://blog.wired.com/monkeybites/2006/12/google_earth_ad.html "Google Earth updates"
* The Popular link sharing site StumbleUpon [released][5] StumbleVideo, a new video referral service.
[5]: http://blog.wired.com/monkeybites/2006/12/stumblevideo_ne.html "Stumble Video"
* Gotuit [released][6] SceneMaker, a new video-sharing tool that lets you identify scenes within videos from YouTube and Metacafe, then share just those scenes with your friends.
[6]: http://blog.wired.com/monkeybites/2006/12/stumblevideo_ne.html
* Wikia decided to [give it all away][7], offering free software, free bandwidth, free storage, free computing power, free content over the internet and 100 percent of ad revenue goes to the site's owner. The business model was unclear.
[7]: http://blog.wired.com/monkeybites/2006/12/what_if_we_give.html
* We [took a first look][9] at Mozilla's Thunderbird 2.0 beta 1 and liked what we saw.
[9]: http://blog.wired.com/monkeybites/2006/12/mozilla_has_rel.html "Thunderbird 2.0 beta 1"
* And finally, our favorite Old Gray Lady, *The New York Times*, awoke to find herself in the 21st century with links to these newfangled "news-sharing" sites, Digg and Newsvine, embedded at the bottom her articles. Rumor has it that screen real estate is called "[Iconistan][11]."
[10]: http://blog.wired.com/monkeybites/2006/12/nyt_adds_sharin.html "NYT adds social site links"
[11]: http://www.wired.com/news/technology/internet/0,72282-0.html?tw=wn_culture_10 "Wired on Iconistan"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/QuickSilverScreen-linking-is-illegal.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/QuickSilverScreen-linking-is-illegal.txt new file mode 100644 index 0000000..fa4de6a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/QuickSilverScreen-linking-is-illegal.txt @@ -0,0 +1 @@ +Is linking to copyright infringing material illegal? This question, posed on the video site [QuickSilverScreen][1], caught my eye a few weeks ago and I've been following the story of QuickSilverScreen ever since.
It turns out the answer is mainly yes, it is illegal in the United States to knowingly link to copyright infringing materials. There's an excellent and very thorough rundown of all the relevant legal precedents on [Webtvwire][2] that I encourage you to read.
But first some background; QuickSilverScreen is a link sharing site almost solely dedicated to helping its visitors find copyright infringing material. Because QuickSilverScreen itself doesn't *host* any of the video clips you might think that the site is perfectly legal.
But you would be wrong. In fact, under the Digital Millennium Copyright Act (DMCA), even linking to copyright infringing material is illegal. The DMCA does provide certain "safe harbor" exemptions however, but QuickSilverScreen does not qualify for them. In order to obtain so-called "safe harbor" an online service provider must, according to the [docs on Wikipedia][3]:
>* not have actual knowledge that the material or an activity using the material on the system or network is infringing (512(c)(1)(A)(1)).
* not be aware of facts or circumstances from which infringing activity is apparent (512(c)(1)(A)(2)).
* upon obtaining such knowledge or awareness, must act expeditiously to remove, or disable access to, the material. (512(c)(1)(A)(2) and 512(c)(1)(C))
* not receive a financial benefit directly attributable to the infringing activity, in a case in which the service provider has the right and ability to control such activity (512(c)(1)(B)).
There are several more requirements but the above is sufficient to illustrate why QuickSilverScreen didn't stand a chance in court. The site is fully aware that the content it links to is infringing and that, at least in the U.S., puts them in violation of the law.
What's unclear legally is how far this trail of linking goes; for instance, I just linked to QuickSilverScreen, does that make me liable? If you link to this article which links to QuickSilverScreen does that make you liable?
And where does that leave blogs and other personal sites that might occasionally link to a copyright infringing video? According to Dr. Stephan Ott, a [lawyer interviewed on Webtvwire][4], "if you know that a video is pirated and you link to it, it is very likely that courts will see the link as unlawful."
So what happened to QuickSilverScreen? At first the site rather cleverly converted its links to text boxes, but in the end QuickSilverScreen has done what all questionably legal sites seem to do -- moved offshore beyond the reaches of the DMCA and Fox lawyers.
[1]: http://quicksilverscreen.com/
[2]: http://www.webtvwire.com/linking-to-infringing-content-is-probably-illegal-in-the-us/ "Webtvwire on QuickSilverScreen"
[3]: http://en.wikipedia.org/wiki/OCILLA#Requirements_to_obtain_the_safe_harbor "Wikipedia entry of DMCA Safe Harbor"
[4]: http://www.webtvwire.com/linking-law-expert-dr-stephan-ott-talks-about-linking-to-pirated-video/ "Webtvwire"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/clicky-panel.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/clicky-panel.jpg Binary files differnew file mode 100644 index 0000000..980a12c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/clicky-panel.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/clicky.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/clicky.jpg Binary files differnew file mode 100644 index 0000000..7635497 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/clicky.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/clicky.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/clicky.txt new file mode 100644 index 0000000..69a249b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/clicky.txt @@ -0,0 +1 @@ +Tracking site statistic is a whole cottage industry on the web with offerings from big players like Google's [Analytics][1], to smaller, self-hosted solutions like [Mint][2] or the old standby [Analog][3]. [Clicky][4] is a new service that offers hosted stats tracking with a nice web interface to help you figure out what it all means.
It's tough to enter a market that Google is already in, but for those of you who love Analytics, Clicky still might have a few features even Analytics doesn't offer. For one thing, though it's nowhere near live, Clicky updates far more frequently than Analytics. And Clicky is promises a new service coming soon that is live; Clicky claims it will be much like Digg Spy, but personalized for your site.
Clicky offers all the standard features of site tracking services such as a list of IP addresses, type of browser, user operating system, unique visitors, total page hits and more.
Clicky offers the ability to track users individually and see how they got to your site, what pages they viewed and what content appealed to which users. You can also track custom data, for instance, if your site has user accounts, you can see who logged in and what pages they clicked.
The Clicky dashboard is easy to read and fully customizable, it even allows you to disregard IP address so your own click won't show up in your site data.
Clicky may not meet the needs of large businesses, but small site owners looking to track traffic may find it does the job well.
[1]: http://www.google.com/analytics/ "Google Analytics"
[2]: http://www.haveamint.com/ "Mint"
[3]: http://www.analog.cx/ "Analog"
[4]: http://clicky.roxr.net/ "Clicky"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/google-earth-panoramio.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/google-earth-panoramio.jpg Binary files differnew file mode 100644 index 0000000..6f3bfa6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/google-earth-panoramio.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/google-earth-wikipedia.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/google-earth-wikipedia.jpg Binary files differnew file mode 100644 index 0000000..893d969 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/google-earth-wikipedia.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/google-earth.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/google-earth.txt new file mode 100644 index 0000000..584c71c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/google-earth.txt @@ -0,0 +1 @@ +<img alt="Gearthlogo" title="Gearthlogo" src="http://blog.wired.com/photos/uncategorized/gearthlogo.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Google Blog [announced a small update to Google Earth][1] over the weekend. Google Earth now has new layers that integrates Wikipedia articles as well as photos from [Panoramio.com][2].
There's no need to update Google Earth, the new layers are automatically visible under the Layers menu. That said, if you haven't already, [check out the beta 4 version][4] of Google Earth.
To access the new content when you're using Google Earth just look for the Wikipedia globe icon or Panoramio "star" icon and click them to see the associated content. For Wikipedia entries you'll get the summary and a link to open the full entry in your default web browser. The Panoramio entries show the photograph and offer links to add comments or upload your own photos via the Panoramio site.
Clicking on a Panoramio photo in Google Earth will take you to that page on Panoramio which features integrated Google Maps that can give you directions to that location.
In addition to the Wikipedia and Panorama data, Google Earth now includes information from the [Google Earth community][3]. Represented in Google Earth by a yellow "i" icon, the content comes from user posts and uploaded photographs.
I've always been a huge fan of Google Earth and with the new content it just keeps getting better.
If you like the idea of user generated content on your maps you should also have a look at [Wikimapia.org][5], which isn't affiliated with Google Earth or Google in any way, but it does have some nice content.
[5]: http://wikimapia.org/ "Wikimapia.org"
[4]: http://blog.wired.com/monkeybites/2006/11/google_earth_ve.html "Monkey Bites on Google Earth beta 4"
[3]: http://bbs.keyhole.com/ubb/ubbthreads.php/Cat/0 "Google Earth Community"
[1]: http://googleblog.blogspot.com/2006/12/opening-my-eyes-to-whole-new-world.html "Google Blog on new Wikipedia content"
[2]: http://www.panoramio.com/ "Panoramio.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/pikipimp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/pikipimp.jpg Binary files differnew file mode 100644 index 0000000..0df3a11 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/pikipimp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/pikipimp.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/pikipimp.txt new file mode 100644 index 0000000..2fef759 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/pikipimp.txt @@ -0,0 +1 @@ +[Pikipimp][1] is a fun new online photo service that allows you to edit your photos Mr. Potato Head-style adding in hats, beards, bikinis, jewelry and more to create new images.
To use Pikipimp just upload a photo and then you can drag-and-drop supplemental images into your picture. You can then drag, rotate and resize the beards, bikinis and other items to fit over the content of your image.
Below the main editing area is a layers "palette" with options that amount to a stripped down version of Photoshop. You can drag and drop to re-order the layers, control the transparency of a layer and manually enter dimensions.
When you're editing and resizing the images may at times be blurry or pixelated to reduce load time, but clicking the "preview image button" will show the sharpened final result.
When you have everything just the way you like it, you can save the image and Pikipimp will generate some cut-and-paste code you can post on any page you want. There's also a link to download a .jpg copy of your creation.
The photo below was at some point Wired columnist Tony Long who I felt, like the rest of us here at Wired.com, could use a makeover into a Nordic Jesus Pimp.
Pikipimp isn't going to change the world, but it is an impressive piece of online software and a fun way to while away the the last few hours of your monday.
[1]: http://www.pikipimp.com/ "Pikipimp.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/quicksilverscreenlogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/quicksilverscreenlogo.jpg Binary files differnew file mode 100644 index 0000000..27e2c45 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/quicksilverscreenlogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/reboot.txt new file mode 100644 index 0000000..83cc6e9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot, bagel not included:
* IBM has [announced a new storage technology][1] it calls "phase-change" memory. The prototype, developed by a consortium of companies led by IBM, it reportedly 500 times faster than flash memory devices and uses half the power.
[1]: http://blogs.pcworld.com/staffblog/archives/003280.html
* The New York Times has [added links to Digg, Facebook and Newsvine][2] to all its free articles. According to the press release, the tool is labeled "share" and positioned with the e-mail and print tools.
[2]: http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20061211005683&newsLang=en "New York Times Adds Sharing Tools"
* The Listening Post blog [reports][3] that Creative Commons folks have "teamed" with Pump Audio, a commercial music licensing firm, to "promote their respective licensing programs to their respective clients."
[3]: http://blog.wired.com/music/2006/12/creative_common.html
* Google added a feature to Gmail over the weekend which lets you check other POP3 mail accounts via the GMail interface. The new service, [Mail Fetcher][4], may not make GMail [perfect][5], but it's a welcome addition for those of us with multiple email addresses to check.
[4]: http://mail.google.com/support/bin/answer.py?ctx=%67mail&hl=en&answer=21288 "GMail Mail Fetcher"
[5]: http://www.techcrunch.com/2006/12/09/uh-oh-gmail-just-got-perfect/ "TechCrunch calls GMail 'perfect'"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/wikia-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/wikia-logo.jpg Binary files differnew file mode 100644 index 0000000..0bca825 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/wikia-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/wikia.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/wikia.txt new file mode 100644 index 0000000..243fbc8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Mon/wikia.txt @@ -0,0 +1 @@ +Wikia Inc., the for-profit venture from Wikipedia founder Jimmy Wales, has [announced plans][1] to offer a free online application hosting service. The service will be called Openserving and will officially be available beginning sometime next week, but you can take a tour today.
Openserving will run on an easy-to-use version of the MediaWiki software and seems aimed to compete with other packaged services like Movable Type's TypePad.
Wales announcement comes as part of the ongoing Le Blogs conference in Paris France.
The new hosting promises, according to the announcement, "free software, free bandwidth, free storage, free computing power, free content over the internet," and will give 100 percent of ad revenue generated by the site to the "bloggers and website owners who partner with Wikia."
If you're thinking what's the catch, well there doesn't seem to be one. The only requirement is that the sites link back to Wikia.com which generates its revenue from advertising.
To address the widespread incredulity and curiosity about Wikia's business plan, Wells said in a press release, "we don't have all the business model answers, but we are confident -- as we always have been -- that the wisdom of our community will prevail."
Wikia may not be concerned with revenue at the moment since they recently took four million in funding from private sources and last week Wikia partnered with Amazon for an undisclosed sum.
Interestingly, Amazon has its own low-cost, data storage and website-hosting services, but Wales says that's not part of Wikia's deal with Amazon at the moment. "Potentially," [he tells Reuters][2], "but this is really completely separate"
While back links to Wikia.com may get Wikia some additional traffic and therefore generate more revenue, even Google, king of free internet services, takes its cut of advertising revenue.
By offering everything for free and turning down the established web 2.0 revenue stream of advertising, Wikia has set sail in uncharted waters; we'll be keeping an eye on the service to see how it plays out.
[1]: http://www.wikia.com/wiki/Wikia_unveils_OpenServing
[2]: http://today.reuters.com/news/articleinvesting.aspx?view=CN&symbol=&storyID=2006-12-11T120348Z_01_N11490141_RTRIDST_0_INTERNET-WIKIA.XML&pageNumber=1&WTModLoc=InvArt-C1-ArticlePage1&sz=13 "Reuters on Wikia"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/google-patents-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/google-patents-logo.jpg Binary files differnew file mode 100644 index 0000000..f270631 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/google-patents-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/google-patents.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/google-patents.jpg Binary files differnew file mode 100644 index 0000000..9c9e9b7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/google-patents.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/mac update.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/mac update.txt new file mode 100644 index 0000000..d8fb3b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/mac update.txt @@ -0,0 +1 @@ +Microsoft has posted a note on its [security response blog][1] tell consumers to uninstall a recently accidentally released Mac Office security update.
Early in the week several security updates to Microsoft's Office for Mac software appeared on the companies site for download. Although never officially announced, many users found and downloaded the updates hoping to patch the recently disclosed "zero day" flaws in Microsoft Word.
It turns out that the updates were in fact pre-release software intended for internal testing and not meant for the public. Microsoft has apologized for what it calls a human error and removed the downloads.
The blog post goes on the say that users who installed the not-ready-for-prime-time updates should uninstall them, but fails to provide any suggestions for uninstalling. ITWire [reports][1] that the installers themselves do not have an uninstall option and no directions or how-tos can be found on Microsoft's site.
There are no specifics available on what the software patched or what potential pre-lease hazards there may have been, but the update apparently affected only 7 files. If you installed the software you might consider erasing the whole program and reinstalling from disc, just to the on the safe side. Alternately, if you have a second system with unpatched versions of the seven files in question, you could simply copy the unaffected files.
[1]: http://blogs.technet.com/msrc/archive/2006/12/13/information-on-accidental-posting-of-pre-release-security-updates-for-office-for-mac.aspx "Mac for Office Update snafu"
[2]: http://www.itwire.com.au/content/view/8069/53/ "ITWire on Office update"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/office-mac-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/office-mac-icon.jpg Binary files differnew file mode 100644 index 0000000..fe81f74 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/office-mac-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/patent-search.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/patent-search.txt new file mode 100644 index 0000000..770d3ec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/patent-search.txt @@ -0,0 +1 @@ +As mentioned in the morning reboot, Google has unveiled a beta version of [its new tool][1] for searching the full text of US patent applications.
Patent Search uses the same technology as Book Search, which means you can scroll through pages and zoom in and out on text and illustrations. So far you are limited to viewing the original documents but the [Google Blog][2] says that saving and printing features will be coming soon.
There's also an Advanced search feature that allows for additional criteria in your searches such as specific patent numbers, inventor name and filing dates. The advanced operators can also be used from the main search by entering the appropriate keywords like <code>ininventor:</code> or <code>intitle:</code>.
Google says there are currently 7 million patents in the database and many more will be added in the future. At the moment the patents stop around the middle of 2006, but the records go back over 200 years.
The records are limited to U.S. patents issued by the U.S. Patent and Trademark Office, which has its own patent search available via its [website][3]. Google claims that its conversion of Patent and Trademark Office documents makes them easier to search that the existing format.
Many may be wondering how many people really want to search through patents, but Google has historically done well with its niche search offerings like Books, Maps and others.
That said, patents are little more obscure but, if nothing else, enterprising journalists and bloggers can now scour the patent office for patents from Apple, Microsoft and others to see what features and products might be in the works.
However, because Patent Search is currently limited to granted patents, juicy Apple or Microsoft patents that have been applied for, but not yet granted, won't be part of the results.
Google's Patent Search might not be an everyday destination for most people, but the speed and familiar Google results listing page sure beats the pants off the old Patent Office search engine.
[1]: http://www.google.com/patents "Google Patent Search"
[2]: http://googleblog.blogspot.com/2006/12/now-you-can-search-for-us-patents.html "Google Blog on the new Patent Search"
[3]: http://www.uspto.gov/main/sitesearch.htm "U.S. Patent and Trademark Office patent search"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/reboot.txt new file mode 100644 index 0000000..c9cfa6c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Your morning reboot never lands in the flower bed.
* Google [announces a new patent search][1]. Using the full text of the U.S. patent corpus, [Google Patent Search][2] allows you to find interesting patents. Similar to [Google Book Search][3], Patent Search allows you to scroll through pages and zoom in on text and illustrations. Print and save features are said to be in the works.
[1]: http://googleblog.blogspot.com/2006/12/now-you-can-search-for-us-patents.html "Google Blog on Google Patent Search"
[2]: http://www.google.com/patents "Google Patent Search"
[3]: http://books.google.com/ "Google Book Search"
* The internet is in a tizzy this morning about John McCain's [proposed internet legislation][4]. The legislation, aimed at catching child pornographers, would make any site with user registration, liable for the all the content on the site. In addition, webmasters would be required to "report all illegal images or videos posted by their users or face fines up to $300,000." That includes blogs with comments. Ouch.
[4]: http://thinkprogress.org/2006/12/13/mccain-war-on-blogs/ "Think Progress on John McCain's bill"
* In addition to launching a patent search engine, Google was [awarded a patent][5] yesterday for the design of the Google search page. Google's patent is a design patent covering the layout and visual look, rather than the function.
[5]: http://news.com.com/2100-1030_3-6143586.html?part=rss&tag=2547-1_3-0-20&subj=news "CNet on Google design patent"
* Bill Gates met with some bloggers who represent "leaders in various aspects of the web community" to answer questions. There were far too many softballs questions, but Steve Rubel has [a nice summary][6] of the session.
[6]: http://www.micropersuasion.com/2006/12/our_sixty_minut.html "Bill Gates' blogger Q and A"
* Computer manufacturer Fujitsu has announced a [300 gigabyte notebook SATA hard drive][7]. The new drive utilizes perpendicular recording and should be on sale in February of 2007.
[7]: http://www.fujitsu.com/global/news/pr/archives/month/2006/20061212-01.html "Fujitsu 300 gig hard drive"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/th-nightly-build.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/th-nightly-build.txt new file mode 100644 index 0000000..27d5d89 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/th-nightly-build.txt @@ -0,0 +1 @@ +The Nightly Build, compiling the day for beta testing:
* A new service [Jaxtr][1] lets people call you from your MySpace, Friendster and other social networking site. With the Jaxtr widget a user enters their mobile number and their phone rings, on answering, a call is put through to your phone. Should be handy for stalkers.
[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-14T114828Z_01_N13329642_RTRUKOC_0_US-INTERNET-TELEPHONE.xml&src=rss "Jaxtr debuts"
* Joining what will no doubt be a growing string of silly predictions as the year draws to a close, tech research and analysis firm Gartner claims that [Vista will be the last major update][2] to the Windows OS. According to Reuters, Gartner believes "the era of monolithic deployments of software releases is nearing an end and Microsoft will participate in the trend toward more flexible updates." Because as we all know the world's existing OS code bases cannot possibly be improved any more.
[2]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2006-12-14T135332Z_01_N13326302_RTRUKOC_0_US-GARTNER-PREDICTION.xml&src=rss "Gartner predicts no more windows"
* Attention Anton Levy fans, there is now a ["satanic" edition][5] of the popular Ubuntu Linux OS. Actually it's more like a theme than a bona fide distro, but who can pass up a slogan like "The Distro of the Beast?"
[5]: http://parker1.co.uk/satanic/disciples/ "Get your satanic Ubuntu"
* And finally, we do love a good "hack" even if it's not software, which is why we were blown away by this [scooter "hack"][3] on the Make blog. [found via [BoingBoing][4]]
[3]: http://www.makezine.com/blog/archive/2006/12/scooter_hack.html?CMP=OTC-0D6B48984890 "Make Blog presents world's greatest scooter hack."
[4]: http://www.boingboing.net/2006/12/14/worlds_greatest_scoo.html "BoingBoing on scooter hack"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/yahoo-music.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/yahoo-music.jpg Binary files differnew file mode 100644 index 0000000..82d5b65 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Thu/yahoo-music.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/google-code.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/google-code.jpg Binary files differnew file mode 100644 index 0000000..4afe1da --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/google-code.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/gwt.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/gwt.txt new file mode 100644 index 0000000..d154ca0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/gwt.txt @@ -0,0 +1 @@ +The [Google Web Toolkit][1] (GWT) is now an open source project. The GWT is a Java development framework designed to help web programmers easily write AJAX applications like Google's own GMail or Maps. The GWT was [announced][2] back in May of this year, but today's open sourcing move means that the previously closed, binary-only, portions of the kit are now available to developers.
With GWT, developers can code and debug AJAX applications in Java and then deploy applications using the GWT compiler to translate the Java application to browser-compliant JavaScript.
The [guidelines for the GWT][4] outline the following workflow:
>1. Use your favorite Java IDE to write and debug an application in the Java language, using as many (or as few) GWT libraries as you find useful.
2. Use GWT's Java-to-JavaScript compiler to distill your application into a set of JavaScript and HTML files that you can serve with any web server.
3. Confirm that your application works in each browser that you want to support, which usually takes no additional work.
One of the reasons Google initially created GWT was to use it for their own development. Programs like GMail are incredibly difficult to create and debug because of myriad of differences between web browsers.
As the GWT homepage puts it, GWT makes creating AJAX applications, "easy for developers who don't speak browser quirks as a second language."
Interestingly, in addition to open-sourcing the code, the GWT developers have also released their entire development process to the public. The new "[Making GWT Better][3]" page includes development discussions, code reviews, future milestones, and the codebase for developers to browse through.
If you're a web developer navigating the treacherous waters of AJAX development, you might want to give GWT a try.
[2]: http://googleblog.blogspot.com/2006/05/making-ajax-development-easier.html "Google Web Toolkit initial announcement"
[1]: http://code.google.com/webtoolkit/ "Google Web Toolkit"
[3]: http://code.google.com/webtoolkit/makinggwtbetter.html "Making GWT Better"
[4]: http://code.google.com/webtoolkit/overview.html "GWT overview"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/office-com-server.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/office-com-server.jpg Binary files differnew file mode 100644 index 0000000..2331e03 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/office-com-server.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/office-com-server.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/office-com-server.txt new file mode 100644 index 0000000..31661d7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/office-com-server.txt @@ -0,0 +1 @@ +Microsoft will begin testing a new [VoIP server][1] as part of the company's new Office Communications Server. The beta testing phase will begin in the second quarter of 2007 with 2,500 participants.
The new service is aimed at business users and will allow users to click on a name in Office Word, Outlook or Communicator and determine that person's availability and make a phone call.
For example, when a colleague sends you an e-mail, clicking their name in Office Outlook will check their phone availability status and place a person-to-person call or arrange a conference call with others.
Office Communications Server is an extension of the previously named Live Communications Server 2005, which allowed for IM, chat and other protocols, but had no support for VoIP.
The new Office Communications Server will work with many existing corporate communications structures, such as those available from Cisco, Siemens and others.
Microsoft's VoIP will use the [Session Initiation Protocol][2], the standard signaling protocol for Internet conferencing and telephony, unlike Skype for instance, which uses its own proprietary network.
The new Office Communications Server also supports audio, video and web conferencing as well as the ability to handle call waiting, forwarding and transfers.
According the Reuters report, Microsoft Chief Executive Steve Ballmer has predicted that within 10 years all business communications will be Web-based, meaning hundreds of millions of people will change how they communicate.
[2]: http://en.wikipedia.org/wiki/Session_Initiation_Protocol
[1]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2006-12-12T055233Z_01_N11256623_RTRUKOC_0_US-MICROSOFT-VOIP.xml&src=rss
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/piratebay-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/piratebay-logo.jpg Binary files differnew file mode 100644 index 0000000..a285275 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/piratebay-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/piratebay.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/piratebay.txt new file mode 100644 index 0000000..70b2b61 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/piratebay.txt @@ -0,0 +1 @@ +As I mentioned in [the morning reboot][3], Swedish website The Pirate Bay (TPB) has decided to [block the Swedish ISP Perspektiv Broadband's users][1] from accessing the TPB's website. The move comes in response to ISP Perspektiv's decision to block its users from accessing the Russian website, allofmp3.com.
The interesting thing to note is that for Swedish users there is no legal reason for Perspektiv to block traffic to allofmp3, rather the broadband provider elected to do so, according the The Pirate Bay, after meeting with Swedish and Danish anti-piracy organizations.
The Pirate Bay claims that Perspektiv Bredband "clearly states in their press release that it is a moral and not legal standpoint." I can't read Swedish, so I can't confirm that Perspektiv did in fact say that, but either way, given that allofmp3.com is not illegal in Sweden, Perspektiv's move to block the site is a bit odd at the least.
For some background on the Pirate Bay see Quinn Norton's [recent coverage][2] for Wired.com.
Many might be tempted to dismiss the whole thing as irrelevant given the questionable legality of TPB in the U.S., but what's interesting about this story is not necessarily the isolated case, but the larger implications.
What happens when your favorite site blocks you from accessing it because the ISP that provides your internet connection does something your favorite site objects to?
I'm not suggesting that ISP's have the right to block content, but it does happen. And this is hardly the first time a site has blocked incoming users, Google blocks all kinds of traffic coming from China as part of its partnership with the Chinese government.
Protest and protest actions like boycotting a product or company have a long history in the United States, but I'm not sure that such actions transfer well to the internet.
For instance, if consumers are unhappy with Acme widgets they can boycott Acme widgets, tell all their friends to boycott Acme Widgets and Acme Widgets may choose to change their policies based on lost revenue.
But even in the midst of such a boycott if you did not agree with the boycott, you can still go to Acme Widget and buy whatever you want. In other words the consumer is not directly effected.
However in this case the consumer is caught in the middle. Now not only can Perspektiv Broadband users not access allofmp3, but now they can't access TPB either. The end result *could* be that enough Perspektiv users complain that company gets rid of its blocking software, but either way the burden of boycott is not on Perspektiv directly, but rather its customer base who must complain enough to initiate change.
It's easy to understand the Pirate Bay's position (and please keep in mind that The Pirate Bay is one of the largest sites in Sweden and that allofmp3 is legal under Swedish copyright law), but the decision to target the users of an ISP rather than the ISP directly seems unwise.
While I agree that Perspektiv's site ban is ultimately a far more chilling threat to concepts like net neutrality, I also hope that we aren't headed toward a future where individual sites begin blocking users as an indirect way of sending a message to abusive companies.
[1]: http://piratbyran.org/perspektiv/english.php "Pirate Bay blocks Perspektive Broadband"
[2]: http://www.wired.com/news/technology/0,71543-0.html "Secrets of the Pirate Bay"
[3]: http://blog.wired.com/monkeybites/2006/12/the_morning_reb_7.html "Monkey Bites' Morning Reboot Dec 12"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/reboot.txt new file mode 100644 index 0000000..1f10605 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Bringing you the freshest nuggets to start your day right, the morning reboot:
* Yesterday a Microsoft patent [surfaced that reveals][1] the company has filed for a patent for "DVR-based targeted advertising." According the the document Microsoft wants to create a database of ads on DVR players to serve up "fresh" advertisements on your DVR recordings. And here we thought DVR's main feature was to skip ads.
[1]: http://www.engadget.com/2006/12/10/microsoft-patents-dvr-application-to-provide-targeted-advertisin/ "Engadget on Microsoft DVR patent"
* Yahoo [opened its "Panama" advertising system][2] up to new users yesterday. The service was previously only available to existing customers, but yesterday marked the beginning of Yahoo's plan to phase out the old system by the end of Q1 2007.
[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-12T135537Z_01_N11163848_RTRUKOC_0_US-YAHOO-ADVERTISING.xml&src=rss "Yahoo to switch to Panama Advertising system"
* Yet another [flaw in Microsoft Word ][3]has been discovered. This one allows attackers to gain remote access to user's system. There's currently no patch, but the Microsoft advisory claims "the vulnerability is being exploited on a very, very limited and targeted basis." The flaw affects Word 2000, 2002 and 2003, but does not affect the upcoming Word 2007.
[3]: http://blogs.technet.com/msrc/archive/2006/12/10/new-report-of-a-word-zero-day.aspx
* The Dutch are official the first nation to [pull the plug on analog television][4]. According the AP report, hardly anyone noticed the change which should be music to many a government ear. Similar plans are in place for the US as governments around the world try to free up much needed bandwidth in the broadcast spectrum.
[4]: http://abcnews.go.com/Entertainment/wireStory?id=2716983&CMP=OTC-RSSFeeds0312
* The Pirate Bay is [fighting back][6] against a Swedish ISP that blocked Swedish comsumers from visiting the controversial Russian site allofmp3.com. According the press release, The Pirate Bay will block all traffic from the Swedish ISP, Perspektiv Bredband. Could this be the start of a new trend -- a roundabout way for site owners to get back at draconian ISP regulation?
[5]: http://piratbyran.org/perspektiv/english.php "Pirate Bay blocks Swedish ISP"
* And finally, as a blast from the past, Wired's Christopher Null has a great look back at the [10 gadgets That Changed The World][6].
[6]: http://blog.wired.com/wiredphotos6/2006/12/1_rca_model_630.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/ucla-computer-breach.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/ucla-computer-breach.txt new file mode 100644 index 0000000..cb52bb1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/ucla-computer-breach.txt @@ -0,0 +1 @@ +UCLA has [revealed][1] what might be the largest computer security breach ever at an American university. University officials say hackers broke into a database containing personal information on about 800,000 current and former students, faculty and staff members.
UCLA officials say the database accessed by the attackers contained personal records with the names, Social Security numbers, birth dates, home addresses and other contact information. The database in question did not contain any banking or credit card information, but given the amount of personal data it did contain, the attackers could potentially steal the victim's identities.
So far the University says that there is no evidence that information has been used in any way, but UCLA officials will be sending out a letter later today to those effected by the breach encouraging them to keep an eye on their consumer credit files and consider enabling fraud protection.
According to the UCLA announcement:
>an unauthorized person exploited a previously undetected software flaw and fraudulently accessed the database between October 2005 and November 2006. When UCLA discovered this activity on Nov. 21, 2006, computer security staff immediately blocked all access to Social Security numbers and began an emergency investigation.
As noted above, the exploit and attacks appear to have been going on for just over a year. UCLA security technicians discovered the exploit when they noticed a series of suspicious database queries.
In the [UCLA press release][2] Acting Chancellor Norman Abrams says, "We take our responsibility to safeguard personal information very seriously." He went on to assure students, "my primary concern is to make sure this does not happen again and to provide to the people whose data is stored in the database important information on how to minimize the risk of potential identity theft and fraud."
The Los Angeles Times [reports][3] that there are no "comprehensive statistics on computer break-ins at colleges do not exist." However, the Times goes on to say, "in the first six months of this year alone, there were at least 29 security failures at colleges nationwide, jeopardizing the records of 845,000 people."
[1]: http://www.identityalert.ucla.edu/index.htm "UCLA security breach"
[2]: http://www.identityalert.ucla.edu/press_release.htm "UCLA press release"
[3]: http://www.latimes.com/news/local/la-me-ucla12dec12,0,7111141.story?coll=la-home-headlines "LATimes on UCLA security breach"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/ucla.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/ucla.jpg Binary files differnew file mode 100644 index 0000000..2a593e7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/Tue/ucla.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/nightlybuild.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/nightlybuild.txt new file mode 100644 index 0000000..f57a207 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/nightlybuild.txt @@ -0,0 +1 @@ +The morning reboot has been complaining for some time that it get lonely around midday and feels thoroughly depressed by late evening. In an attempt to give the reboot what it so desperately lacks, companionship, we'd like to announce a new Monkey Bite's feature: The Nightly Build.
The Nightly Build is a wrap up of stories we didn't have time to cover in depth, but deserve mention nonetheless. Note that The Nightly Build is currently an Alpha release.
* It had to happen eventually. [RemoteControlMail][1] will receive your snail mail, open it, scan it to PDF and email it to you. Just what I need someone reading my mail. [Via [Lifehacker][2]]
* German lawmakers are on a rampage. First they want to [ban video games][3], now they've added [online gambling][4] to the list.
* Microsoft VP Jim Allchin has [responded][5] to the fervor stemming from an old email that turned up as part of an [Iowa lawsuit][6]. Among some other brow-raising prose was this tidbit: "I would buy a Mac today if I was not working at Microsoft." For at least one night Mac fanboys didn't need the Viagra.
* Is wifi a health hazard? The [debate rages][7] on...
[2]: http://www.lifehacker.com/software/mail/check-your-snail-mail-online-221222.php "Lifehacker on Remote Control Mail"
[1]: http://www.remotecontrolmail.com/ "Remote Control Mail"
[3]: http://blog.wired.com/games/2006/12/germany_to_outl.html "Wired Blog Gamelife on Germany's attempts to ban FPS games"
[4]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-12T203910Z_01_L1238361_RTRUKOC_0_US-GERMANY-INTERNET-GAMBLING.xml&src=rss "Germany wants to ban online gambling"
[5]: http://windowsvistablog.com/blogs/windowsvista/archive/2006/12/12/title.aspx "Setting the Record Straight"
[6]: http://www.groklaw.net/article.php?story=20061209135113443
[7]: http://www.wired.com/news/technology/0,72265-0.html?tw=wn_technology_2 "Wired.com on Wifi health worries"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/fox-web-traffic.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/fox-web-traffic.txt new file mode 100644 index 0000000..6bce45d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/fox-web-traffic.txt @@ -0,0 +1 @@ +MySpace isn't going away. New [traffic results][1] from comScore Networks, an online-traffic measuring company, put Fox's internet properties on top of Yahoo for the month of November. The primary source of Fox's increased ranking is MySpace which is owned by News Corp, also the parent company of Fox.
Is MySpace really that popular? Well maybe, but comScore says that one month at the top could be an anomaly and comScore's figures differ from those published by Nielsen, which found that Yahoo held the top spot in November, with Fox coming in at number two for overall web traffic.
The comScore figures putting Fox at number one are based on page views per site rather than unique visitors. Even comScore's numbers still put Yahoo as the web leader in unique audience, pulling in almost 130 million visitors in November while Fox trailed at a distant sixth with just under 74 million.
In what could be a decided drawback to web 2.0 technologies, some analysts say that Yahoo's increasing use of AJAX technologies for maps, e-mail and other services may have lowered their overall page views.
Because AJAX fetches data in snippets, as it's needed, rather than reloading an entirely new page, Yahoo's traffic may appear to be less than it actually is. MySpace on the other hand relies on more traditional methods of page loading.
Either way the news isn't good for Yahoo which recently restructured with a major staff reorganization in hopes the change would help Yahoo overtake longtime rival Google in the advertising realm.
Pundits have long held that there's a statistic for everything, which may well be true, but one thing's for sure, MySpace is more popular than ever.
[1]: http://today.reuters.com/news/articleinvesting.aspx?view=CN&storyID=2006-12-13T024649Z_01_N12379148_RTRIDST_0_FOX-YAHOO.XML&rpc=66&type=qcna "Fox sites top Yahoo in traffic scores"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/google-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/google-logo.jpg Binary files differnew file mode 100644 index 0000000..6fa3f54 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/google-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/google-toolbar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/google-toolbar.jpg Binary files differnew file mode 100644 index 0000000..2274337 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/google-toolbar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/google-toolbar.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/google-toolbar.txt new file mode 100644 index 0000000..61eb3d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/google-toolbar.txt @@ -0,0 +1 @@ +Version 3 of the [Google Toolbar for Firefox][1] arrived yesterday. The new release is, natch, a beta, but I've been using it all day without any problems.
For the most part the update catches the Firefox toolbar up to where the Google IE toolbar has already been for some time, but there's also some new things that haven't made it to the IE version yet.
The biggest thing missing from the Firefox version was the Google Bookmark menu which stores your bookmarks to your Google account so you can access them wherever you go. This feature already exists in IE, but now Firefox users can enjoy the same integration.
The other standout feature is one that hasn't made it to the IE toolbar yet. Taking a tip from [Zoho][3], The Google Toolbar for Firefox can now open certain spreadsheets and other office docs within the browser window via Google Docs and Spreadsheets. This eliminates the need to download the file first and makes browsing office documents online faster and easier.
There are also some new buttons for Google services that can be placed in the toolbar, including one for GMail, which provides tight integration with Google's popular email service. In the toolbar preferences you can check a setting to have all email links auto-open in GMail, and from the new GMail toolbar button you can snap directly to recent messages in your inbox.
There's also a new button to send links via GMail, SMS or Blogger.
Overall a very nice update that should make Firefox users happy.
[1]: http://googleblog.blogspot.com/2006/12/nifty-toolbar-upgrades-for-firefox_12.html "Google Toolbar for Firefox upgrade"
[3]: http://blog.wired.com/monkeybites/2006/11/zoho_announces_.html "Monkey Bites on Zoho"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/msadcenter-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/msadcenter-logo.jpg Binary files differnew file mode 100644 index 0000000..a1382ff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/msadcenter-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/msadcenter.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/msadcenter.txt new file mode 100644 index 0000000..7825377 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/msadcenter.txt @@ -0,0 +1 @@ +Microsoft has added a new feature, [Search Demographics][1], to its adCenter Labs service that attempts to "predict a customer’s age, gender, and other demographic information according to his or her online behavior." T
Predictive modeling is all the rage lately, we even looked at a social networking site, [Betocracy][4] built around predictive market a while back. Microsoft's new demographics search purports to predict what sort of people are searching for your terms. The tool is intended mainly for businesses looking to understand their ad markets better, but it's kind of interesting just to play around with it.
The data is drawn from the MSN Search logs for the past month and can be searched by either url or search term. Microsoft says the data is collected anonymously.
There's bunch of other cool free tools in the Microsoft adCenter Labs aimed at businesses including my personal favorite, [Keyword Mutation Detection][2], which will show you the most common misspellings for a given search term.
Another interesting one is the [Detecting Online Commercial Intention][3], which rates the level of intent to purchase for each search query. For example, someone searching for "digital camera" is probably looking to buy someone, whereas a search for "Monkey Bites" is not a "commercial" search.
Microsoft adCenter Labs has some great business tools and best of all they're free.
[1]: http://adlab.msn.com/DPUI/DPUI.aspx "MS adCenter Labs search demographics"
[2]: http://adlab.msn.com/keyMut/default.aspx "MS adCenter Labs - keyword mutation"
[3]: http://adlab.msn.com/OCI/OCI.aspx "MS adCenter Labs - detecting online commercial intention"
[4]: http://blog.wired.com/monkeybites/2006/11/betocracy_is_a_.html "Betocracy"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/nightly-build.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/nightly-build.txt new file mode 100644 index 0000000..4e9e1b6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/nightly-build.txt @@ -0,0 +1 @@ +And now, your nightly build, compiling the stories we didn't have time to cover in depth, but deserve mention:
* In addition to charging a new monthly fee as we mentioned in the reboot, Skype also [released version 3][1] of their Windows app today. New features include public chats, music recommendations via last.fm and more.
[1]: http://www.skype.com/download/skype/windows/ "Skype v3"
* One of Apple computer's top secret research labs flooded earlier today destroying all prototypes of the iPhone. Just kidding. About the iPhone. And the top secret lab. But an Apple building [really did flood][2].
[2]: http://abclocal.go.com/kgo/story?section=local&id=4848164 "Apple Building Floods"
* The New York Times has a great [blog post][3] about Jim Buckmaster of Craigslist confounding Wall Street analysts at a recent Q and A. When asked how Craigslist maximizes revenue Buckmaster said: "That definitely is not part of the equation. It's not part of the goal."
[3]: http://dealbook.blogs.nytimes.com/2006/12/08/craigslist-meets-the-capitalists/ "Craigslist meet the capitalists"
* According to Wired Mag columnist Bruce Sterling, [the internet of the future][4], "will be wrapped in a Chinese kung fu outfit, intoned in an Indian accent, oozing Brazilian sex appeal." Sweet!
[4]: http://www.wired.com/wired/archive/14.12/posts.html?pg=6 "Bruce Sterling on the future"
* And finally, the bossman extraordinaire, Chris Anderson, has a great [article on his blog][5] about what radical transparency would mean for the future of news organizations. And now that I know what that phrase, "radical transparency," means, I promise I'll never show up at the office wrapped in cellophane again. Man this stuff itches.
[5]: http://www.longtail.com/the_long_tail/2006/12/what_would_radi_1.html "Radical Transparency"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/reboot.txt new file mode 100644 index 0000000..8fe1bab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Served piping hot and totally unaffected by the hard partying ways of Paris Hilton, the morning reboot:
* Wired has a [first look][2] at the official 1.0 release of Windows Vista along with some commentary on why you might want to [hold off][3] on upgrading.
[2]: http://blog.wired.com/wiredphotos7/ "Wired photo gallery of Vista Screenshots"
[3]: http://www.wired.com/news/culture/reviews/0,72295-0.html?tw=wn_index_1 "Why You Don't need Vista Now"
* Popular photo sharing site Flickr is giving users an early holiday gift in the form of [free bandwidth upgrades][4]. Flickr accounts now get 100mb worth of uploads a month instead of 20mb, and Flickr Pro accounts no longer have an upload limit are all.
[4]: http://blog.flickr.com/flickrblog/2006/12/ho_ho_ho_flickr.html "Flickr users get free upgrade"
* Mozilla has released the first [public beta of Thunderbird 2][5] the popular email client from the makers of Firefox. The new version features support for tags, improved filing tools, better support of extension and more. The release is intended for testing purposes only.
[5]: http://www.mozilla.com/en-US/thunderbird/releases/2.0b1.html#download "Thunderbird Beta 1"
* Skype [rolled out][6] a new $30 annual subscription plan this morning to make unlimited calls to mobile and land phones in the U.S. This is the first unlimited calling plan for the VoIP provider, previously the service was part of free promotion.
[6]: http://www.nytimes.com/2006/12/13/technology/13skype.html?ex=1323666000&en=1ae098601517fc02&ei=5090&partner=rssuserland&emc=rss "NYTimes on Skype announcement"
* Microsoft is now [offering a security patch][7] for one of the "zero day" flaws in MS Word. The second flaw, discovered more recently, is not addressed in the security update.
[7]: http://www.microsoft.com/technet/security/bulletin/ms06-dec.mspx "Microsoft Security pathc summary"
* Google is [planting solar trees][1]. From the Wired article: "search giant Google (is) joining other companies in planting groves of pole-mounted solar panels ... generating clean power and providing a little shade at the same time."
[1]: http://www.wired.com/news/technology/0,72292-0.html?tw=rss.index "Google and other plant solar trees"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird new file mode 100644 index 0000000..1ab1c5a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird @@ -0,0 +1 @@ +Mozilla has [released][1] the first beta for version 2.0 of its popular email client, Thunderbird. The initial release is still a little rough around the edges, but it boosts a host of promising new features.
When is comes to beta software some offerings are really beta in name only while others are sloppy, bug-ridden nightmares better labeled alpha. The first beta release of Thunderbird falls somewhere in the middle of that spectrum. Mozilla says beta 1 is intended for developer testing only, which is probably a good guideline since not all the new features are quite stable yet.
The final release of Thunderbird 2 is slated for early next year and if the initial beta is any indication a 2.0 should be impressive.
New features in the Thunderbird beta abound. The most immediately obvious change is the GUI and icons which have been redesigned and cleaned up considerably. Clearly the Thunderbird team has been working hard to improve usability and address design issues.
But the new features aren't all fluffy and eyecandy, there's some great new tools as well.
The beta release brings support for "tagging" mail messages as means of organization. Just select a message, add a tag and Thunderbird can recall your mail according to the tags you define. Tagging is even extended to saved searches which create "smart" mail folders based on your search criteria.
The smart folder concept will be familiar if you've ever used any of Apple's iApps, but the addition of tags makes it much more customizable and more powerful.
Other new features include back and forward buttons to move through your mail browsing history just as you would in a web browser. Curiously these two buttons were not in the default toolbar, I had to go digging to find them. Hopefully in the 2.0 release they'll be enabled by default because once you use them, you'll wonder how you got by without them.
There's also a number of small additions that refine the email experience but aren't immediately obvious. The most useful of these is what the release docs, call "folder summary popups." Summary popups act like link popups in a browser, mouseover a folder with unread messages and a small summary appears with sender, subject and body snippet. It's a handy way to get a quick synopsis of a new message when you're in another folder, without having to switch views.
Other nice touches include folder views in the folder pane. It's now possible to customize the folder pane to show favorite, unread or recent folders and flip between them without effecting the other panes.
On the downside, IMAP performance in Thunderbird is still slow, though it is improved somewhat and in fairness there isn't really an email program on the market that has what I would call snappy IMAP performance. POP mail speed remains excellent and switching between folders, views and mailboxes is notable snappier.
Some of the performance boosts can probably be attributed to the beta being the first Universal Binary for Mac, I haven't tested Thunderbird on Windows or Linux.
So how beta is it? Too beta to use fulltime. There were a number of strange behaviors, lag times, hangs and crashes. However developers and others wanting to test the software and report bugs should go ahead and download a copy.
Be sure to see the [known issues list][3] on the Mozilla developer site.
The rest of us will just have to be patient, but by the looks of this early release, Thunderbird 2.0 will be worth the wait.
[1]: http://www.mozilla.com/en-US/thunderbird/releases/2.0b1.html "Thunderbird 2.0 beta release notes"
[3]: http://www.mozilla.com/en-US/thunderbird/releases/2.0b1.html#issues "Thunderbird 2.0 beta 1 known issues"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird-logo.jpg Binary files differnew file mode 100644 index 0000000..d24f54e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird-screen-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird-screen-1.jpg Binary files differnew file mode 100644 index 0000000..de387fd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird-screen-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird-screen-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird-screen-2.jpg Binary files differnew file mode 100644 index 0000000..6637014 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.11.06/wed/thunderbird-screen-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/css10.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/css10.txt new file mode 100644 index 0000000..a973024 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/css10.txt @@ -0,0 +1 @@ +World Wide Web Consortium is [celebrating][1] the tenth birthday of Cascading Style Sheets. The good old CSS Level 1 spec was officially published on December 17th 1996. Why I remember when they were just a we little thing, still in diapers...
The W3C is really isn't being hyperbolic when they say style sheets have "changed the face of the web." We've come a long way from those dark days of Angelfire-hosted tables-based layouts and that progress is in no small part a result of CSS.
By embracing the age-old programming concept of separating content from display, style sheets have allowed designers and amateurs alike to create the fancy and often truly beautiful web that we enjoy today.
To celebrate the 10th anniversary of CSS, the W3C has launched an [improved validation service][2] for web programmers who want to test their designs for CSS standards compliance. The W3C is also inviting developers to [submit][3] their favorite CSS designs which will be integrated into the CSS 10 Gallery.
And the future of CSS looks good as well, browser support for CSS3 is already beginning to appear. Apple's Safari browser already supports several aspects of the new spec and other browsers are beginning to as well.
CSS3 is still in development, but it promises even more features and at the same time implementation easier. CSS3 includes all of CSS2 and adds new selectors, more powerful borders and backgrounds, vertical text, speech and more.
And for those that think CSS isn't helpful, consider this: it got me this job. Somewhere around 1998 I was trying to make one of those awful Angelfire "homepages" and in course of searching to understand just what the hell CSS was for, I ran across a Wired-owned tutorial site named Webmonkey. Just hit the fast-forward button and here we are. Thanks CSS.
So happy birthday CSS. I don't like to think about where the web would be without style sheets, it's not a pleasant thought.
[1]: http://www.w3.org/2006/12/css10-pressrelease.html "CSS 10 Press Release"
[2]: http://jigsaw.w3.org/css-validator/ "CSS Validator"
[3]: http://www.w3.org/Style/CSS10/reactions.html "CSS 10 Gallery"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/feed-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/feed-icon.jpg Binary files differnew file mode 100644 index 0000000..5867186 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/feed-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/reboot.txt new file mode 100644 index 0000000..0601daf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot loves a Friday.
* [CSS turns 10][1]. Sorry we missed your birthday CSS, but truthfully the belated birthday cards are usually much funnier than the regular ones. Yes, Tuesday marked ten years of Cascading Style Sheets on the web. No word on the impending funeral services for the <code><table></code> tag.
[1]: http://www.w3.org/2006/12/css10-pressrelease "CSS turns ten"
* [According to Groklaw][2] Jeremy Allison (of samba fame) has "resigned from Novell in protest over the Microsoft-Novell patent agreement, which he calls 'a mistake' which will be 'damaging to Novell's success in the future.'"
[2]: http://www.groklaw.net/article.php?story=20061221081000710 "Allison resigns"
* It was bad enough that Microsoft touted RSS in IE7 like it was some revolutionary new technology, but now the Redmond giant is trying to [patent the technology][3]. According documents filed with the US Patent and Trademark Office, Microsoft is seeking a patent for "finding and consuming web subscriptions in a web browser." Time to stop drinking your own Kool Aid guys.
[3]: http://appft1.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&Sect2=HITOFF&d=PG01&p=1&u=%2Fnetahtml%2FPTO%2Fsrchnum.html&r=1&f=G&l=50&s1=%2220060288011%22.PGNR.&OS=DN/20060288011&RS=DN/20060288011 "Microsoft RSS patent application"
* It's the first nerd restaurant. Nolan Bushnell, founder of Atari and Chuck E. Cheese, has [launched][4] a new restaurant, uWink, where each table has touch-screens for ordering food and playing video games. Bushnell says the target audience is 21 to 35 year old women, though he also thinks it will appeal to kids. Ya think?
[4]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2006-12-22T140035Z_01_NCE337636_RTRUKOC_0_US-FOOD-RESTAURANT-UWINK.xml&src=rss "Nerd Restuarant"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/rss-patents.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/rss-patents.txt new file mode 100644 index 0000000..7b1c027 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/rss-patents.txt @@ -0,0 +1 @@ +Microsoft has [filed][1] two separate patents involving RSS technology. The patents were originally filed 18 months ago, just days before the company [announced][2] RSS support for IE7, but were only released to the public yesterday.
Public outcry quickly followed since Microsoft had little if anything to do with the development of RSS. Dave Winer, the self-described inventor of RSS, [lashed out][4] via his blog claiming "Presumably they're eventually going to charge us to use it."
"This should be denounced by everyone who has contributed anything to the success of RSS," Winer writes.
But Winer is wrong about a couple of key points. First of all the documents in question are not patents, but *applications* for patents which have not yet been granted. Second of all, from my reading anyway, Microsoft is not patenting RSS, but RSS within Vista/IE7. Of course I'm not a patent lawyer, I could be wrong about that.
The big mystery is what Microsoft is planning to do with the patents if they are awarded them. The sad state of patent affairs in the United States has led to several cases of Microsoft being [sued ][5]for technologies they did arguably invent simply because some else owned a generic patent on them.
Nick Bradbury author of popular RSS application FeedDemon, [writes][3] on his blog:
>But before the geekosphere goes into "patent attack mode," let's take a breather and think about why this patent was filed. For example, quite often companies file patents just to protect themselves from lawsuits. There are plenty of sleazebags who file patent applications on obvious ideas, and then wait for someone like Microsoft to infringe those patents... Yes, it sucks that the patent process has devolved to such a state, but this is the reality of the environment that today's businesses have to operate in.
The only thing that's for sure is Microsoft did not invent RSS and the do not yet have a patent for it either. The RSS entry on Wikipedia [provides some background][3] if you're curious who did invent RSS. The short answer -- lots of people working together and separately.
It would be nice to see Microsoft release some information on what they plan to do with these patents, but for now we'll just have to wait and see whether the U.S. Copyright and Patent Office grants them.
[1]: http://appft1.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&Sect2=HITOFF&d=PG01&p=1&u=%2Fnetahtml%2FPTO%2Fsrchnum.html&r=1&f=G&l=50&s1=%2220060288329%22.PGNR.&OS=DN/20060288329&RS=DN/20060288329 "Microsoft Patent application"
[2]: http://blogs.msdn.com/ie/archive/2005/06/24/432390.aspx "IE blog on RSS in IE7"
[3]: http://nick.typepad.com/blog/2006/12/microsofts_cont.html "Nick Bradbury on Microsoft patent claims"
[4]: http://www.scripting.com/2006/12/21.html#aTaleOfCorporateAtrocity "Dave Winer on Microsoft patent claims"
[5]: http://www.eweek.com/article2/0,1759,1661094,00.asp "Microsoft settles with InterTrust"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/w3c.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/w3c.jpg Binary files differnew file mode 100644 index 0000000..9e512bf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Fri/w3c.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-logo.jpg Binary files differnew file mode 100644 index 0000000..47712b1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-screen.jpg Binary files differnew file mode 100644 index 0000000..29b09b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-update.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-update.txt new file mode 100644 index 0000000..37e34e4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-update.txt @@ -0,0 +1 @@ +The popular "social" news site Digg revamped its design and added some new features earlier today. In addition to a new liquid width design optimized for large monitors, Digg has several new features including the ability to digg podcasts, more video features and a new, live-updating, "Top 10" feature.
The biggest new feature is the ability to digg podcasts. In an attempt to broaden its appeal, Digg is moving beyond web headlines to "deeper" content like podcasts.
Among the new features in the podcast section is the ability to listen to dugg podcasts within the Digg site. Dugg podcasts can be browsed by series and individual episodes which makes it easy to find podcasts by topic and jump to the most popular episode to see if you like it. Currently the podcasts section is in beta and will require a Digg account to use.
The new layout also sees Digg putting a greater emphasis on the video portion of the site. In addition to giving video its own spot on the top navigation bar, it's now possible to watch videos directly within Digg. Videos from supported services (YouTube, Metacafe and more) can be viewed in an AJAX overlay which embeds the video player and also provides a link to digg the video.
The news pages now offer the ability to sort based on the most popular stories within certain time periods, including the last twenty four hours, last seven days, last thirty days and the last year.
Another nice new feature is the "Top 10" list in the right hand column of most pages on the site which allows you to see at the glance what is "hot" right now on Digg. The new top 10 feature changes categories as you zoom into the the site, showing the top ten list for whatever category you're browsing through.
The new layout will be welcomed by Digg users with large monitors and the top navigation makes finding your way around much easier (which is how it should have been all along).
[1]: http://blog.digg.com/?p=57
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-video.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-video.jpg Binary files differnew file mode 100644 index 0000000..995ab63 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/digg-video.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/google-nasa.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/google-nasa.jpg Binary files differnew file mode 100644 index 0000000..c196596 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/google-nasa.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/google-space.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/google-space.txt new file mode 100644 index 0000000..1da7874 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/google-space.txt @@ -0,0 +1 @@ +It's enough to induce a nerd heart attack -- Google and NASA have [partnered][1] for a "Space Act Agreement." The search behemoth and the U.S. government space agency will team up on a collection of projects aimed at combining, "large-scale data management and massively distributed computing."
Google Maps Mars? Oh yes. The NASA press release says:
>As the first in a series of joint collaborations, Google and Ames will focus on making the most useful of NASA's information available on the Internet. Real-time weather visualization and forecasting, high-resolution 3-D maps of the moon and Mars, real-time tracking of the International Space Station and the space shuttle will be explored in the future.
NASA says there will be Google Earth flyovers available for the surfaces of Mars and the moon in the near future. Do you role that into Google Earth or is it time to re-brand -- Google Universe maybe?
The NASA data comes from the Ames Research Center which is not far from Google's Mountain View campus.
The Google-Ames partnership began to [take shape][2] last year, but this is the first announcement of practical applications and future plans.
So far there is nothing new on the Google site, but we'll be sure to keep you posted.
But the announcement is much more than cool nerdery like Mars flyovers, NASA and Google intend to collaborate in a variety of areas, including user studies and cognitive modeling for human computer interaction.
The announcement also mentions the possibility of "science data search utilizing a variety of Google features and products."
"NASA has collected and processed more information about our planet and universe than any other entity in the history of humanity," says Chris C. Kemp, director of strategic business development at Ames.
"Even though this information was collected for the benefit of everyone, and much is in the public domain, the vast majority of this information is scattered and difficult for non-experts to access and to understand," he adds.
One line toward the end of the press release caught my eye, "NASA and Google also are finalizing details for additional collaborations that include joint research, products, facilities, education and *missions*." (emphasis mine)
Google *in* space? Now there's a thought. Perhaps Google will get around to that global free wifi I've been dreaming of and they've been denying.
[1]: http://www.nasa.gov/home/hqnews/2006/dec/HQ_06371_Ames_Google.html "NASA-Google Parter for Space Act Agreement"
[2]: http://www.wired.com/news/business/0,69014-0.html "Wired on Google/Ames"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/nightlybuild.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/nightlybuild.txt new file mode 100644 index 0000000..ca18c2c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/nightlybuild.txt @@ -0,0 +1 @@ +The Nightly Build, compiling the headlines that got away.
* In addition to [partnering with NASA][1], Google also [announced][2] it has acquired [Endoxon][3] a European mapping company. According to the Google Blog, the Endoxon acquisition will "enhance Google geo products worldwide."
* Gizmodo wasn't lying, they were just misleading us in a crass attempt to generate page hits over the weekend (judging by comments on Digg, this may have been a bad idea on Gizmodo's part). Anyway Yes, the iPhone [arrived][4] today. The iPhone being a rather dull VoIP phone from Linksys, not the much rumored cellphone from Apple.
* The [Digital Watermarking Alliance][7] has come out in favor selling music in the MP3 format using . See Wired's [Listening Post][6] for more details.
* A company called KishKish has released a lie detector plugin for Skype. Ryan Singel over at Wired blog 27B Stroke 6 wants your help [testing it][5].
[1]: http://blog.wired.com/monkeybites/2006/12/google_space_go.html "Monkey Bites on Google NASA deal"
[2]: http://googleblog.blogspot.com/2006/12/mapping-europe.html "Google Blog On Endoxon acquisition"
[3]: http://www.endoxon.com/ "Endoxon"
[4]: http://news.bbc.co.uk/2/hi/technology/6189145.stm "The iPhone"
[5]: http://blog.wired.com/27bstroke6/2006/12/help_27b_test_s.html "Help 27B Stroke 6"
[6]: http://blog.wired.com/music/2006/12/labels_could_se.html "Listening Post on Digital Watermarking Alliance announcement"
[7]: http://www.digitalwatermarkingalliance.org/ "Digital Watermarking Alliance"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/psplogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/psplogo.jpg Binary files differnew file mode 100644 index 0000000..47ad0ed --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/psplogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/reboot.txt new file mode 100644 index 0000000..4417e37 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Happy monday from the doughnut stuffed reboot.
* You, me, we are Time magazine's [Person of the Year][1]. It seems that our contribution to the web trend of "user-generated" content is more significant than Iranian nuclear weapons, delusional North Korean dictators and a host of other seemingly more important people. But then again, when the bombs start flying, it will be nice to have a decent collection of break dancing videos to watch while eating spaghettios and waiting out the U238 half life.
[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-17T134242Z_01_N15184106_RTRUKOC_0_US-TIME.xml&src=rss "You are Person of the Year"
* The Wall Street Journal will [launch an online stock tracking feature][2] next month. The online content is part of the WSJ's recent downsizing move. From what I can tell the new stock tracker will be free, though WSJ subscribers will access get additional content.
[2]: http://online.wsj.com/submkt/tourc/STARThere.html "Wall Street Journal Markets Data Center"
* [MySpace Mobile][3] will go live today. The service, which partners MySpace with Cingular, allows subscribers to post photos, blog entries and comments to their MySpace pages for $2.99 a month.
[3]: http://cingular.mediaroom.com/index.php?s=press_releases&item=1801 "Cingular partners with MySpace"
* It's about time Santa got some geo tracking tech in that sleigh. With that in mind Google Earth is offering a [Santa Tracker][4] overlay. From the Google Earth homepage: "Every day from December 12th until Christmas Eve, a clue will appear outside Santa's North Pole workshop which, if you can solve it, will lead you to a toy hidden in a Google Earth satellite image. And every day, the location of the previous day's toy will be revealed."
[4]: http://earth.google.com/santa/ "Santa in Google Earth"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/sony.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/sony.txt new file mode 100644 index 0000000..5f160d1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Mon/sony.txt @@ -0,0 +1 @@ +According to London's Financial Times, Sony will soon be [offering movie downloads][1] for the popular PlayStation Portable (PSP) game console. The move will pit Sony against Apple's iTunes Store which began offering video downloads early this year.
The article claims the users will be able to buy a movie from Amazon and other Sony partners and download it onto a Sony MemoryStick. The user can then legally transfer the film via the MemoryStick to one Sony PSP.
Sony is currently distributing a 4 gigabyte version of the MemoryStick which the company claims can hold up to ten movies. Presumably they mean heavily compressed movie files.
For now Amazon is the only official partner onboard although Sony is said to be in talks with both MovieLink and CinemaNow about possible distribution deals.
One player decidedly not invited to the party is Apple's iTunes Store. Currently, the iTunes Store's movie selection is limited to offerings from Disney Studios, whereas Sony will offer films from the Home Entertainment of Sony Pictures.
With more than 20 million PSPs sold worldwide Sony, the demand for PSP movies certainly exists, at least in theory.
Sony expects to launch the service in the first quarter of 2007 after securing more deals with online video providers.
[1]: http://www.ft.com/cms/s/f290b0ec-8df6-11db-ae0e-0000779e2340.html "FT on Sony Announcement"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Thu/reboot.txt new file mode 100644 index 0000000..36fd46b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Thu/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot, because it's morning, duh:
* AllofMP3.com [gets the legal smackdown][1]. Several major record labels are suing the Russian music site claiming it has been profiting by selling copies of music without their permission. Warner Bros., Arista, Capitol and others are behind the suit.
[1]: http://www.mosnews.com/money/2006/12/21/mp3court.shtml "Labels sue AllofMP3.com"
* Seagate, the worlds largest hard disk manufacturer, will [acquire EVault][2], an online data storage service for $185 million. Will Seagate drives start shipping with a one-click back-up-to-web storage solution?
[2]: http://news.yahoo.com/s/ap/20061221/ap_on_hi_te/seagate_evault_acquisition "Seagate buys EVault"
* [FeedYourZune][3] is a new podcast-to-Zune RSS program that takes care of automatic download and syncing of Audio and Video Podcasts to your Zune. The software also sports RSS video playback, playlists, favorites and more.
[3]: http://feedyourzune.com/ "FeedYourZune"
* Last week we told you about The Pirate Bay's decision to [block Swedish ISP Perspektiv Broadband][7] because Perspektiv had blocked its customers from accessing AllofMP3. Well, it seems that on some level The Pirate Bay's move worked, whether under pressure from negative publicity or some other reason, Prespectiv has lifted its ban of AllofMP3 and The Pirate Bay has in turn [stopped blocking Prespectiv customers][7].
[6]: http://thepiratebay.org/blog/46 "The Pirate Bay Blog"
[7]: http://blog.wired.com/monkeybites/2006/12/the_pirate_bay_.html "Monkey Bites on TBP"
* It's nearly Christmas and with that in mind, check out [The Luddite's Christmas gift guide][5] and If you haven't seen it yet, definitely take a look at the uncensored version of the Justin Timberlake SNL sketch *[A Special Christmas Box][4]* (NSFW).
[4]: http://www.youtube.com/watch?v=1dmVU08zVpA "YouTube - a Special Christmas Box"
[5]: http://www.wired.com/news/columns/0,72335-0.html?tw=rss.index "The Luddite's Christmas Gift Guide"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Tue/macheist.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Tue/macheist.txt new file mode 100644 index 0000000..93eff81 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Tue/macheist.txt @@ -0,0 +1 @@ +Last week Mac site MacHeist offered users a bundle of 10 Mac shareware apps for the bargain price of $49. The total price of all the apps bought separately would have been over $350, obviously for consumers the bundle was an excellent deal.
The reaction from consumers was massive. MacHeist sold 16,821 bundles, which though hard statistics are unavailable, given small size of the audience to begin with, might be the largest, most successful sale of Mac shareware ever.
MacHeist is the brainchild of Phill Ryu an eighteen year old mac user who previously created and hosted My Dream App, and John Casasanta, developer of iClip. "John came to me with the idea of a bundle sale, something similar to MacZot," Ryu says. "We started brainstorming about how to make it more fun than just another mac bundle sale and MacHeist was the result."
Ryu says they had no idea that MacHeist would be as successful as it was. "We weren't expecting the kind of sales we ended up with. We told the developers we were expecting somewhere around 5000 sales." The final numbers put MacHeist at over triple the initial forecast.
But the Ryu concedes that at least some of the additional sales may have come about because of controversy surrounding the event.
You might wonder where the controversy lies in a sales event that triples its expectations and donates $200,000 to charity.
According to some commentators, the most important people, the developers themselves, were left out of the equation. The controversy centers around how much money the developers were paid versus how much MacHeist itself made.
Though no figures have officially been released, some developers who declined to participate have reported that they were offered a flat rate around $5000.
Longtime Mac blogger, John Gruber, writes on Daring Fireball, "respectable agents or managers take no more than a 15 percent cut of their clients' revenue, and usually not more than 10 percent. That's true in sports, it's true for authors, and it's true for entertainers."
While that may be true, Mac shareware developers are hardly comparable to celebrities. Most sports celebrities for instance, make more than in an hour than all the developers of MacHeist bundle apps combined will likely make in the lifetime of their products. In other words %10 of a celebrity's profits is a lot of money, but 10% of the Mac developer's profits isn't.
What makes the supposed controversy even sillier is that none of the developers themselves are complaining. In fact most are quite happy with the sale. Oliver Breidenbach writes on his blog, "I don't care how much money the MacHeist guys make, I care about how much my company makes and how the Heist brings us forward towards our goals."
Additionally, because sales so exceeded their expectations, Ryu says MacHeist passed a bonus on to all the developers. "We've given pretty substantial bonuses, which work out to about double the money of the original agreements."
Ryu says that developer feedback has been positive. "Nine of the ten developers are very happy with the sale," he says. The tenth developer asked not to be named and delined to comment for the story.
"I feel like it brought a lot of focus to mac shareware." Ryu counters. "We had a lot of feedback from customers who said they had never even heard of shareware let alone bought."
If you missed out on the bundle, Ryu wouldn't give a date, but he did say that MacHeist will be offering another shareware app bundle sometime next year.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Tue/reboot.txt new file mode 100644 index 0000000..2a64ce1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Tue/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot:
* There's a new player coming to the field of facial recognition, Swedish startup Polar Rose will [launch a public test][1] of its software in March. Polar Rose's software analyzes digital photos to locate faces and convert to resulting data from 2D images to 3D models.
* The Federal Court of Australia has [ruled][2] that linking to copyright infringing materials is illegal. The case in question involves the now-defunct MP3s4free.net, a user-submitted link site leading to copyright infringing materials. But wait, I thought we were Person of the Year for our user-generated content? Oh, right...
* There are [reports][3] of a worm that may be circulating via a feature in Skype's popular VoIP service. The worm sends messages via Skype Chat, asking recipients to download and run a file called sp.exe. Sp.exe is a trojan horse that will then steal passwords and download additional files.
* The CEO of Phillips Electronics, Paul Zeven, has an interesting [op/ed piece][4] on CNet in which he wonders "if consumers really want all this. Have we gone too far? Are we in step with the needs of today's American consumer?" Needs? *Needs*? We don't need your stinking needs, just gimme my robotic vacuum cleaner and step away from the Wii.
[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-19T150920Z_01_N19231410_RTRUKOC_0_US-INTERNET-RECOGNITION.xml&src=rss "Polar Rose to launch next year"
[2]: http://news.com.com/2100-1027_3-6144590.html "CNet on Australian Copyright Case"
[3]: http://www.idm.net.au/story.asp?id=7841 "Skype Worm"
[4]: http://news.com.com/2010-1041_3-6144335.html?part=rss&tag=2547-1_3-0-20&subj=news "Do you need gizmos?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/build.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/build.txt new file mode 100644 index 0000000..80faa8a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/build.txt @@ -0,0 +1 @@ +The Nightly Build, compiling the days headlines for your nutritional benefit:
* Sony has finally [settled][1] with the State of California for a measly $750,000 on charges of violating "state laws prohibiting false or misleading advertising, unfair or unlawful businesses practices, and unauthorized access to computers." The Sony fiasco involved a CD that secretly installed a program on users hard drives as an attempt at DRM. There should definitely be at least two more zeros on the end of that settlement figure.
[1]: http://www.allheadlinenews.com/articles/7005915959 "Sony settles with California"
* Popular social bookmarking site del.icio.us has a new [developer API][3] coming soon. Details are few thus far, but there is a screencast preview. Among the cool new features is the ability to display tags that other people have applied to your page.
[3]: http://developer.yahoo.net/blog/archives/2006/12/preview_of_the.html "del.icio.us API"
* And just to balance the last item, Google has gotten rid of an API. The search giant quietly [removed its SOAP search API][4] earlier this month and is telling developers to switch to the AJAX API instead. Perhaps not coincidentally the AJAX API embeds ads on the users page, whereas the SOAP API did not.
[4]: http://www.seroundtable.com/archives/006996.html "Google ditches SOAP"
* The Wall Street Journal's Joseph Rago has an op/ed piece entitled *[The Blog Mob][2]* with the lede: "Written by fools to be read by imbeciles." Ah, thanks Joe. Wait a second, you're writing for a "Journal" and that journal displays its [entries in reverse chronological order][7]... Joe, are you saying you're a fool? (Note the first link may require registration -- natch)
[2]: http://www.opinionjournal.com/extra/?id=110009409 "Fools and imbeciles"
[7]: http://en.wikipedia.org/wiki/Blog "Wikipedia definition of a blog"
* And finally, it has nothing to do with software or the web, but it's pretty darn remarkable: "Japanese man [survives][5] 3 weeks in the outdoors by hibernating." [via [BoingBoing][6]]
[5]: http://www.cbc.ca/cp/Oddities/061220/K122004AU.html "Japanese Man survives by hibernating"
[6]: http://www.boingboing.net/2006/12/20/japanese_man_survive.html "BoingBoing on hibernation"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/delicious.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/delicious.txt new file mode 100644 index 0000000..d258168 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/delicious.txt @@ -0,0 +1 @@ +My article on the MacHeist app bundle experiment was [published][2] on Wired earlier today and since Monkey Bites readers are the inquiring sort, we thought we'd post some more of the developer feedback we received.
After the jump is the full text of an email interview with Wil Shipley, "Chief Monster" at Delicious Monster Software maker of the popular Mac application [Delicious Monster][1], which was part of the MacHeist Shareware bundle.
<b>There's was some negative reaction to MacHeist's profits versus that of developers, do you feel cheated at all?</b>
I don't feel "cheated," since I knew exactly what the terms of the deal were going in -- I agreed to a fixed amount so they could include my software in a bundle for a week.
The point that most of the detractors are ignoring is that none of us knew how successful the bundle would be -- not the developers, not the guys at MacHeist. They were taking as much of a risk as we were -- if all of their site's visitors had said, "Nice site, but I'm not interested in the bundle" then they would still have been liable to pay all of us developers a fixed amount. There was simply no way to accurately guess how many of the people who were on the MacHeist site might decide to buy the bundle at the end of the game. We were all gambling.
Now, in fact the bundle was enormously successful, more than any of us had ever thought, so MacHeist made a killing. I guess I could whine about this, but such is the nature of gambles -- they assumed more of the risk, and as such they got the bigger payoff when the jackpot hit. Plus, MacHeist actually decided to double what they are paying us developers after it hit so big.
Sure, it twinges a little to think they made something like half a million dollars in two months, but that's largely just jealousy. My reasoning behind agreeing to be in the bundle was pretty straightforward: the first version of Delicious Library has been out for over a year, and so it doesn't get covered a lot in the press -- nobody wants to review a product that is considered "old", and have everyone say, "Dude, I've been using that since, like, your mom used to ride her dinosaur to school!" Exposure is much harder to get at this point, so bundles and sales and other kinds of events are much more attractive to me.
If Phil had come up to me next year sometimes after Delicious Library 2 had shipped and offered me the same bundle -- well, he would have been turned down. But at this point what I have from the bundle is: (a) a pile of cash, (b) a ton of exposure, (c) a week of increased non-bundle sales from said exposure, and (d) 16,821 new customers who might potentially upgrade to 2.0 or recommend 1.0 to their friends.
My philosophy on software sales has always been, if I could GIVE my software to half the people in the world, and they would recommend it to the other half and they all would buy it, I'd be the richest guy who ever lived. The problem with that abstract theory is somehow figuring out how to divide the computer users of the world in half, because if you accidentally give your software to EVERYONE in the world you're boned. This bundle offered the opportunity to get my software into the hands of what I believe to be connected Mac users, at a steep discount for them.
<b>Would you do it again?</b>
If there's ever a MacHeist 2 or similar bundle, I'll certainly consider participating (depending on how long Delicious Library 2 or Delicious Interiors has been out, or whatever), but I'm going to ask for a lot more money. The MacHeist team is a victim of their own success here -- now that everyone in the world KNOWS how popular their bundles are, we KNOW that they aren't taking that much risk, and so the risk/reward calculation is different the second time, and we'll all ask for a bigger slice. C'est la vie!
[1]: http://www.delicious-monster.com/ "Delicious Monster"
[2]: http://www.wired.com/news/technology/software/0,72333-0.html?tw=wn_index_1 "MacHeist Is a Bundle of Joy"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/macheist.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/macheist.jpg Binary files differnew file mode 100644 index 0000000..96863ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/macheist.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/pandora-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/pandora-logo.jpg Binary files differnew file mode 100644 index 0000000..c61d2b1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/pandora-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/pandora-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/pandora-screen.jpg Binary files differnew file mode 100644 index 0000000..c8a4bc6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/pandora-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/pandora.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/pandora.txt new file mode 100644 index 0000000..8f73dde --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/pandora.txt @@ -0,0 +1 @@ +As mentioned in [the morning reboot][1], music sharing service [Pandora][2] has added some nice "social" features. Previously user profiles were limited to bookmarked songs, but as of today users can now list bio information, leave comments, bookmark other users and create artist lists.
Previously Pandora was somewhat limited in its sharing tools. You've always been able to email station to friends whether or not they were Pandora members, but there weren't many tool for interacting with other Pandora users. The focus of the site was clearly on the music and search tools.
While the focus of Pandora hasn't radically shifted, the new features do put some additional emphasis on Pandora users and community, rather than just services.
All the new profile features come with privacy controls, users can set their profiles public or private and turn comments on and off. It would nice if Pandora had an option to control the privacy of comments rather than just turning them on and off, for instance perhaps an option to allow trusted users to comment but block everyone else. Unfortunately that isn't currently possible.
In addition to the new profile features, there's also a couple of new search possibilities that let you find other users with similar tastes. When you find another user with a station that fits your musical taste, you can add that person by clicking the blue "bookmark this person" button on their profile page (assuming their profile is public of course).
While not exactly revolutionary, the new features bring Pandora more in line with competitors like [last.fm][4] and give yet another way to discover new music. Of all the services I [reviewed][3] last month for Wired, Pandora continues to deliver the most exciting and varied recommendations.
[1]: http://blog.wired.com/monkeybites/2006/12/the_morning_reb_13.html "The Morning Reboot, Wednesday December 20"
[2]: http://www.pandora.com/ "Pandora"
[3]: http://www.wired.com/news/technology/internet/0,72182-0.html?tw=wn_technology_software_9 "Fine Tune Your Music Discoveries"
[4]: http://www.last.fm/ "last.fm"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/reboot.txt new file mode 100644 index 0000000..45f18d9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot, feeling young today:
* The new version of the popular blogging platform, [Blogger][2], is out of beta. [According][1] to Google: "the old version of Blogger is not dead, but it would like to retire for a little while... maybe go to Hawaii or play World of Warcraft all day?"
[1]: http://buzz.blogger.com/2006/12/new-version-of-blogger.html "Blogger out of beta"
[2]: http://www.blogger.com/start "Blogger"
* The Wall Street Journal [reports][3] that Ticketmaster has bought a 25 percent share of the social music site [iLike][4]. Ticketmaster hopes to use links on iLike to <strike>rip off consumers</strike> sell tickets. I really enjoy iLike, hopefully Ticketmaster won't screw it up.
[3]: http://users1.wsj.com/lmda/do/checkLogin?mg=wsj-users1&url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB116657976118655285.html%3Fmod%3Drss_whats_news_technology "WSJ on iLike-Ticketmaster deal"
[4]: http://blog.wired.com/monkeybites/2006/10/post.html "Monkey Bites on iLike"
* "It's Pat" as a ringtone? Apparently yes, for Cingular customers anyway. Cingular has [partnered with Saturday Night Live][5] to offer multimedia downloads, including video clips and "original material produced with the mobile screen in mind." And yes, famous sketches as ringtones.
[5]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-20T092931Z_01_N20333885_RTRUKOC_0_US-SNL.xml&src=rss "Cingular to offer SNL sketches, ringtones and more"
* Popular social music site [Pandora][6] has added some [new social features][7] like listener profiles with musical preferences and listener searches.
[6]: http://www.wired.com/news/technology/internet/0,72182-0.html?tw=wn_technology_software_9 "Wired.com on Pandora and others"
[7]: http://www.techcrunch.com/2006/12/19/pandora-goes-social/ "Techcrunch on Pandora"
* The Free Software Foundation [launched][8] a new anti-Microsoft website called BadVista.org earlier this week. The FSF claims that BadVista.org has a "twofold mission of exposing the harms inflicted on computer users by the new Microsoft Windows Vista and promoting free software alternatives that respect users' security and privacy rights."
[8]: http://badvista.fsf.org/ "BadVista.org"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho.txt new file mode 100644 index 0000000..2a04b7b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho.txt @@ -0,0 +1 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/zoho_logo.gif" title="Zoho_logo" alt="Zoho_logo" style="margin: 0px 0px 5px 5px; float: right;" />Zoho, the online office tool suite we've [looked at before][2], quietly [updated][1] earlier today adding a new feature -- the Zoho Wiki.
Zoho is pushing their wiki as "wiki for the rest of us," with some nice features like a WYSIWYG editing interface with spell checking, revision history and difference comparisons.
Creating a wiki is one-click simple, just fill in the form information and the wiki will be added under your username with the address something like: mywikiname.wiki.zoho.com. Note that the name of your wiki is not editable after you create it, though you can change the title at any time.
Under the settings button you can control outside access to your wiki by making it public, private or limited to a select group of members.
Wikis are customizable with number of skins available and in addition, users can upload a logo or other image. There's also an option to control the position of the nav bar on the public wiki pages.
Zoho wikis can handle a number of embedded Zoho objects like Zoho Sheet charts, Zoho Show slide shows and Zoho Creator applications, as well as outside content like YouTube videos and more. Any changes to the Zoho object are automatically synced both ways whether the edit is made in the Wiki or the Zoho app.
In total Zoho users can create three wikis and each of those wikis can contain an unlimited number of pages.
Like most of Zoho's offerings the new Wiki feature is free for registered users.
[1]: http://blogs.zoho.com/general/introducing-the-zoho-wiki/
[2]: http://blog.wired.com/monkeybites/2006/11/zoho_announces_.html "Monkey Bites on Zoho"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho1.jpg Binary files differnew file mode 100644 index 0000000..398d0b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho2.jpg Binary files differnew file mode 100644 index 0000000..ff9c41c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho3.jpg Binary files differnew file mode 100644 index 0000000..38cf4e2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.18.06/Wed/zoho3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/crystal-ball.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/crystal-ball.jpg Binary files differnew file mode 100644 index 0000000..54b4b86 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/crystal-ball.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/css-alternate-sheets.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/css-alternate-sheets.txt new file mode 100644 index 0000000..44ed196 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/css-alternate-sheets.txt @@ -0,0 +1 @@ +So you've got a pretty good handle on CSS and your design is well separated from the actual markup of your site, but now you're thinking you'd like to offer multiple style sheets. Perhaps you want to offer a high contrast design to users with visual difficulties so your site is easier read.
Or perhaps you just want to have two, three or even ten different designs available for your readers. Well it isn't hard to serve up multiple style sheets. Just add the appropriate <code>link</code> tags to your document's header.
Of course if that were the end of the story there wouldn't be a need for a tutorial. Naturally that isn't the end of the story.
The W3C spec says that browsers should offer users a way to switch style sheets, it even suggests that browser manufacturers offer a drop–down menu or tool bar. But there's one browser that fails to implement that suggestion, anyone care to guess which one?
So what to do for poor Internet Explorer users who have no way to switch style sheets? A List Apart (ALA) has the answer in a fine tutorial entitled *[Alternative Style: Working With Alternate Style Sheets][1]*.
In the end you'll need to add a smidgen of Javascript to your pages, but don't worry, it isn't too difficult and ALA author Paul Sowden provides all the necessary code.
ALA is also a fantastic reference for all sorts of other CSS solutions including the famous [Suckerfish dropdown][2] menu.
[1]: http://alistapart.com/stories/alternate/ "Alternative Style: Working With Alternate Style Sheets"
[2]: http://www.alistapart.com/articles/dropdowns/ "Suckerfish dropdowns"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/elsewhere b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/elsewhere new file mode 100644 index 0000000..43a3b4d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/elsewhere @@ -0,0 +1 @@ +
* Listening Post tells you how to [turn your Wii into an iTunes Jukebox][1] using Opera.
[1]: http://blog.wired.com/music/2006/12/turn_your_itune.html "Listening Post on Wii"
* 27B Stroke 6 [points out][2] all the fun things about flying during the holiday season. "People who sneak lighters past security are heroes in airport smoking lounges."
[2]: http://blog.wired.com/27bstroke6/2006/12/27b_traveling_n.html "27B Stroke 6 on holiday flying"
* Gear Factor [claims][3] wireless USB is coming next year. "Expect printers, laptops, cameras and other devices to start sporting built-in Wireless USB after the middle of the year."
[3]: http://blog.wired.com/gadgets/2006/12/wireless_usb_co.html "Gear Factor on Wireless USB"
* Bodyhack [reports][4] that Cleveland doctor is all set to do face transplants as soon as the find suitable candidate. "For the transplant, the entire skin flap of a patient's face and possibly parts of the scalp, ears and neck would be replaced."
[4]: http://blog.wired.com/biotech/2006/12/first_full_faci.html "Bodyhack on face transplants"
* John Brownlee over at Table of Malcontents makes me rethink my decision to give up caffeine; the man is prolific with a capital p. Today Table paid homage to [the world's oldest punk rocker][5], and [nude fencing][6]. Nude fencing. Is that really a good idea?
[5]: http://blog.wired.com/tableofmalcontents/2006/12/the_death_of_th.html "Death of the World's Oldst Punk Rocker"
[6]: http://blog.wired.com/tableofmalcontents/2006/12/morning_thing_n_2.html "Nude Fencing"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/google-bad-hair-day.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/google-bad-hair-day.txt new file mode 100644 index 0000000..d423a9e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/google-bad-hair-day.txt @@ -0,0 +1 @@ +Someone seems to have misplaced the mousse over in Mountain View, things haven't been so hot for Google in the last week. In the average week Google generally makes at least one, often more, announcements that are newsworthy, but this week not only have the announcements been thin, most stories about the search giant have been about things going wrong.
First there was a more than thirteen hour [blackout][1] of Google's social networking site Orkut. While few in the States may have even noticed, rumor has it panic and confusion reigned in the streets of Brazil.
The message on the site claimed that it was "under construction" which might imply that some new features were on the way, but not only is thirteen hours way too long for a feature upgrade, we've yet to see an announcement from Google explaining the downtime.
Next on Google's oops list came the revelation that some user accounts in the massively popular GMail service had [lost all their email][4]. Google representatives [emailed TechCrunch][3] to say:
>Regretfully, a small number of our users — around 60 — lost some or all of their email received prior to December 18th.
Then there was the case of the disappearing sex blogs which BoingBoing [covered][7] throughout the week. It seems that a number of sex blogs disappeared or dropped significantly in their google rankings. And mind you these are not porn splogs, but informational blogs like Violet Blue's [tiny nibbles][5] (note the landing page is okay but the rest is decidedly **NSFW**).
No one seems to know exactly what happened to the sex blogs, though Danny Sullivan at Search Engine Land has a [thorough analysis][6] of what could have gone wrong. Whatever the cause, it was more bad news for Google.
Outside of soft/hard ware failings Google also took something of a beating in the blogosphere for their [annual Zeitgeist][5], the top ten search terms of the year.
Many readers were suspicious that the otherwise unpopular social networking site Bebo was the number one search term of 2006 according to Google. In Google's defense it's worth noting that Google Zeitgeist tracks the biggest "movers" in search -- the search terms that went from nothing to a lot over a period of time.
In other words, Bebo had the biggest amount of *growth* in 2006, measured in raw percentage, over 2005's numbers, which explains why it's number 1 -- **not** because it's the most-searched term on Google.
But fine print as never been the blogosphere's strong suit and the outcry was such the Google [posted a clarification][2] expounding the criteria behind the Zeitgeist.
The Zeitgeist controversy may be made of misunderstanding and hot blooded bloggers, but Blake Ross, wunderkind of Firefox fame, had a more serious [bone to pick][8] with Google. Ross says that Google's new self promotional tactics are eroding the public trust.
Earlier this week Google searches with terms like "blog," "photo album" and "speadsheet" began displaying "tips" which suggest Google's own services in those fields. Ross accuses Google of abusing its powerful position to promote the company's own products.
Of course Yahoo! and other search engines already do something similar, but many have always held Google to slightly higher standard and the new self promotional efforts seem, well, heavy handed.
For instance I frequently search for old Monkey Bites posts using the <code>site:</code> operator with the full Monkey Bites url. Because that url contains the term "blog" Google now adds a link to Blogger at the top of the page. What's irritating is that the term isn't even part of my search, the <code>site:</code> operator is simply restricting my search parameters.
Even a WWII era punch card machine could probably figure out I'm not looking for a blogging service.
Perhaps the most irritating thing is that Google tries to pass these off as "tips." These aren't tips, they're advertisements and calling them tips is misleading and, well, almost evil.
What ever happened to don't be evil? It was so simple.
At best Google's new self promotional drive is simply annoying and irrelevant, at worst Ross is right and users may lose confidence in the objectivity of Google's search results.
On the brighter side of an otherwise dismal week perhaps Google can take comfort in the notion that things go wrong at Google seldom enough that when they do, like Jennifer Aniston's bad hair days, they make the news. Paul Mitchell was unreachable for comment.
[1]: http://www.eweek.com/article2/0,1895,1461015,00.asp "Orkut Outage"
[2]: http://googleblog.blogspot.com/2006/12/how-we-came-up-with-year-end-zeitgeist.html "Google explains Zeitgeist"
[3]: http://www.techcrunch.com/2006/12/28/gmail-disaster-reports-of-mass-email-deletions/ "GMail Problems"
[4]: http://groups.google.com/group/Gmail-Problem-solving/browse_thread/thread/e19d6ab5d41e58eb/bd2a9386c2a1ad41 "GMail loses user email"
[7]: http://www.boingboing.net/2006/12/27/google_disappears_se.html "Boing Boing on disappearing sex blogs"
[5]: http://www.tinynibbles.com/ "Tiny Nibbles"
[6]: http://searchengineland.com/061229-133230.php "Search engine Land on disappearing sex blogs"
[8]: http://www.blakeross.com/2006/12/25/google-tips/ "Trust is hard to gain, easy to lose"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/hoping-for.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/hoping-for.txt new file mode 100644 index 0000000..0210e7a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/hoping-for.txt @@ -0,0 +1 @@ +This morning Wired put up the [annual list of predictions][9] for the new year, but we're more conservative over here at Monkey Bites so we've compiled our own list, but we've tried to keep things a touch more realistic. Most of this stuff is either officially scheduled for release or widely believed to be arriving in the next twelve months.
Of course there's always the chance that some of this stuff will find its way to our vaporware list by the end of next year, but in the mean time raise your glass with unbridled optimism as you peruse our list of Things We're Looking Forward To.
* [Windows Vista][2]. We've got some concerns about DRM and security, but we're cautiously optimistic about Redmond's new system. Here's to upgrades and security patches.
* [OS X Leopard][3]. Chock full of what looks like great features. We're looking forward to putting this one through the paces.
* We want our MP3s and we want them DRM-free. Okay maybe we've had too much of that special punch that's been fermenting since the office Christmas party, but we like to believe 2007 will see a DRM-free, **legal** alternative to the iTunes Music store. And by legal we mean legal in the United States (i.e. not AllofMP3.com).
* Thunderbird 2.0. Our tests of the first beta [whetted our appetite][4] for the real thing. Would a good IMAP mail client be too much to ask for in 2007?
* µTorrent for Linux and Mac. We [love][1] this little client and with BitTorrent Inc. at the helm chances are good that µTorrent will be cross platform by the end of the year.
* [OpenOffice.org][5] finishes the port to Mac OS X and/or NeoOffice improves. We have nothing against MS Office per say, but we [like open document formats][6]. And we like free -- in all senses of the word.
* Full release of the Adobe line. We're [lovin' the PhotoShop CS3 beta][7] and looking forward to the full suite which should arrive some time in the second quarter of the year, but what's up with those icons?
* Would it be too much to ask for an end to OS flame wars? Or is that punch kicking again -- who knew ergot fungi were so tangy? After all, as [Joel points out][8], software is just a tool to help you get laid.
* Speaking of which we're also hoping for more tall hot blonds, or perhaps we're misunderstanding the whole "long tail" thing again?
[1]: http://blog.wired.com/monkeybites/2006/10/best_of_bt_torr.html "Monkey Bites on µTorrent"
[2]: http://blog.wired.com/monkeybites/2006/11/windows_vista_i.html "Vista Release Date Explained"
[3]: http://www.tuaw.com/2006/10/19/screenshots-from-the-latest-leopard-build/ "Leopard screenshots on TUAW"
[4]: http://blog.wired.com/monkeybites/2006/12/mozilla_has_rel.html "Thunderbird 2.0 beta 1 reviewed"
[5]: http://blog.wired.com/monkeybites/2006/11/open_office_21_.htm "OpenOffice RC1 available for download"
[6]: http://blog.wired.com/monkeybites/2006/12/office_document.html "Monkey Bites on ODF"
[7]: http://blog.wired.com/monkeybites/2006/12/elsewhere_on_wi.html "Monkey Bites on Photoshop CS3"
[8]: http://www.joelonsoftware.com/items/2006/12/15.html "Joel on Software: Software is a tool to help you get laid"
[9]: http://www.wired.com/news/technology/0,72370-0.html?tw=wn_index_6 "Wired's 2007 predictions"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nightly-build.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nightly-build.jpg Binary files differnew file mode 100644 index 0000000..521aa50 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nightly-build.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nightly.txt new file mode 100644 index 0000000..83a236a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nightly.txt @@ -0,0 +1 @@ +The nightly build:
* Parallels, the popular Mac software that lets you run other OSes as virtual machines, keeps [cranking out the free betas][1]. Parallels Beta3 features improved USB 2.0 support, improved coherence mode and more.
[1]: http://www.parallels.com/products/desktop/beta_testing/ "Parallels Beta3"
* Good old Mainstream Media outlet Reuters [ran an article][2] today on RSS calling it the "coolest thing you've never heard of when it comes to the Internet." Rather depressingly the article cites media analyst group Forrester who claim that less than 2 percent of internet users use RSS.
[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-29T185423Z_01_N29192014_RTRUKOC_0_US-COLUMN-PLUGGEDIN.xml&src=rss "Reuters on RSS"
* I [picked on][4] Google earlier today, but there was one bright spot today for the search giant, Hitwise [reports][3] that traffic to Google's Blog search service now surpasses that of Technorati.
[3]: http://weblogs.hitwise.com/leeann-prescott/2006/12/google_blog_search_surpasses_t.html "Google Blog Search beats Technorati"
[4]: http://blog.wired.com/monkeybites/2006/12/googles_bad_hai.html "Google has a bad hair week"
* Why writing down passwords is stupid. CBS 5 in SF [reports][5] that Unabomber Ted Kaczynski wrote his journals using code that security expert Bruce Schneier calls "the most complex cipher the FBI has seen since World War II." Neither the FBI nor the NSA could crack the code until they found among Kaczynski's notebooks a page entitled "Unscrambling Sequence." Doh!
[5]: http://cbs5.com/topstories/local_story_363002905.html "FBI cracks Unabomber security code"
* And finally, let's close out the year with this [incredibly creepy image][6] of the world's largest superconducting magnet. It looks like something out the machine city in the Matrix crossed with the big spider in Arachnophobic. Shiver.
[6]: http://www.boingboing.net/2006/12/29/worlds_largest_super.html "BoingBoing on the world's largest superconducting magnet"
Happy New Year everyone, see you Tuesday.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nsfw-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nsfw-logo.jpg Binary files differnew file mode 100644 index 0000000..12ee5b7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nsfw-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nsfw.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nsfw.txt new file mode 100644 index 0000000..f026957 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/nsfw.txt @@ -0,0 +1 @@ +PJ Doland, a web programmer/designer, has [put forth][3] the idea of using the <code>REL</code> attribute of link anchors to indicate when content is Not Safe For Work (NSFW).
This could probably be filed in the same category as the drive to [abolish the caps lock][4] key -- admirable idea, but unlikely to succeed.
But perhaps there is a bigger need for a NSFW indicator. As strange as it might seem to those of us working at home, people actually get [fired][1] for clicking the wrong links at work.
Doland's proposal is to use the <code>REL</code> attribute to indicate when links contain content not suitable for work.
Under Doland's system links would look something like this:
<a href="" title="" rel="NSFW">link text</a>
Currently the <code>REL</code> attribute is mainly used by search engines to determine what links to follow on a site, for instance, adding <code>rel="nofollow"</code> to a link tag will cause Google spiders to ignore the link.
Most browsers ignore the <code>REL</code> attribute, but because it can be styled with CSS NSFW links could be marked with visual clues.
Doland admits that using the <code>REL</code> tag alone has some problems and he has an [expanded][2] his original proposal to also utilize the class attribute.
The idea is sound and would even help search engines by adding another bit of metadata to their indexes, but will it catch on?
[1]: http://metatalk.metafilter.com/mefi/3484 "Woman fired for reading MetaFilter"
[2]: http://pj.doland.org/archives/041577.php "NSFW Rel attribute spec"
[3]: http://pj.doland.org/archives/041571.php "Proposal for a NSFW indicator"
[4]: http://www.wired.com/news/technology/0,71606-0.html?tw=rss.index "Death to Caps Lock"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/reboot.txt new file mode 100644 index 0000000..cdcf29d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot:
* Apparently the HD DVD hack we mentioned in yesterday's reboot is real enough that the companies behind the AACS encryption system are [looking][1] into it. Muslix64, the hacker who claims to have cracked AACS, has said he/she will post more code on January 2.
[1]: http://news.yahoo.com/s/nm/20061229/wr_nm/dvds_hacker_dc "Media Companies Investigate Hacker's Claim"
* In the wake of the earthquake which disrupted internet service in Asia, Asian telecom companies are [moving to install more underseas cables][2] to ensure that this week's internet outage does not happen again.
[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-29T054757Z_01_SP140905_RTRUKOC_0_US-INTERNET-ASIA.xml&src=rss "Asian companies to add more cables"
* The French space agency [announced][3] it will publish its archive of UFO sightings and other phenomena online. The names of contributors will be kept secret to protect them from "space fanatics". Damn those space fanatics.
[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-29T143450Z_01_L29796180_RTRUKOC_0_US-FRANCE-UFO.xml&src=rss "French to publish UFO reports"
* AT&T has agreed to concessions which will force the company to live up to net neutrality rules if its merger with BellSouth is approved, but not everyone thinks the concessions are enough. TechDirt [reports][4] that midway through the concession doc is this sentence: "This commitment also does not apply to AT&T/BellSouth's Internet Protocol television (IPTV) service." This phrase could mean that while any existing network is governed by the net neutrality in the concessions, future networks are not which paves the way for AT&T to charge companies for preferential bandwidth treatment.
[4]: http://techdirt.com/articles/20061229/001833.shtml "TechDirt on AT&T/BellSouth Merger"
* Laughing Squid, one of the recipients of the [laptops from Microsoft][7], is [auctioning][6] off the machine on eBay. Proceeds will benefit the [EFF][5]
[5]: http://www.eff.org/ "Electronic Frontier Foundation"
[6]: http://laughingsquid.com/windows-vista-laptop-on-ebay-proceeds-going-to-eff/ "Laughing Squid auctions laptop"
[7]: http://blog.wired.com/monkeybites/2006/12/microsoft_lapto.html "Monkey Bites on Microsoft Laptops"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/allofmp3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/allofmp3.jpg Binary files differnew file mode 100644 index 0000000..085d5b4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/allofmp3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/allofmp3.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/allofmp3.txt new file mode 100644 index 0000000..6cfc210 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/allofmp3.txt @@ -0,0 +1 @@ +AllofMP3 has [responded][1] to the lawsuit filed earlier this month by the RIAA calling the RIAA's move "unjustified." AllofMP3 continues to claim that the site is legal under Russian law. In a press release on the website AllofMP3 says, "certainly the labels are free to file any suit they wish, despite knowing full well that Allofmp3.com operates legally in Russia."
Allofmp3.com sells non-DRM downloads and charges roughly one dollar for albums and only a few cents for individual songs. The U.S.-based iTunes Store on the other hand sells DRM downloads at ten dollars an album and one dollar for songs.
The RIAA's lawsuit against AllofMp3 claims the website is an illegal service and infringes on copyrights owned by the RIAA's members. The RIAA alleges 11 million songs have been "pirated" using AllofMP3.com.
The RIAA lawsuit seeks $150,000 in damages per violation , which puts the total at over $1.65 trillion, which as some have already pointed out, is just slightly less than the Gross National Product of Great Britain.
Unfortunately for the RIAA, AllofMP3.com operates in Russia and appears to comply with Russian law so the odds of the suit being settled in a New York court are pretty much nil, which might explain the ridiculous damages figure.
AllofMP3 claims it has complied with Russian law by forwarding all necessary rights fees to the Russian royalty collection firm, ROMS.
Thus far there have been no lawsuits brought against AllofMP3 in Russia, though the U.S. has been pressuring Russian authorities to shut the site down.
[1]: http://blogs.allofmp3.com/allofmp3/2006/12/26/allofmp3-response-to-complaint-by-major-record-labels/ "AllofMp3 response to RIAA"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/amazon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/amazon.jpg Binary files differnew file mode 100644 index 0000000..9adc421 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/amazon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/iopd-vending machine.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/iopd-vending machine.txt new file mode 100644 index 0000000..1875102 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/iopd-vending machine.txt @@ -0,0 +1 @@ +Earlier this year I passed through Atlanta's Hartfield Airport on my way back from nine months out of the country. It was my first step back into American culture and the first thing I saw when I got off the plane was a vending machine filled with iPods, headphones and other small electronic gizmos.
I remember thinking at the time that America had made some massive consumer leap in my absence, vending machines having upgraded from candy bars to iPods. I thought it was a brilliant idea since the prospect of spending hours waiting in an airport surrounded by screaming babies and crackling passenger announcements would probably send even the most ardent of Apple haters scrambling to thrust their credit card in the machine.
Apparently I'm not alone in thinking the machines were a great idea. The Atlanta Journal Constitution [reports][1] that the iPod vending machines are wildly successful.
Mark Mullins, executive vice-president of Zoom, the company behind the machines, tells the AJC, "We put in some iPods and found we couldn't keep them in stock. We found no customer resistance to swiping a card and buying a $300 item from a machine. We're selling thousands (of iPods), and the machines at the Atlanta airport are major contributors to that."
Of course there's no way for the those shattered-nerved impulse buyer to put any music on their new pod, but another Zoom spokesperson says there are plans to add a music-download kiosk across from the iPod vending machine.
The machines are also in the San Francisco airport and are reportedly starting to pop up in hotels and other locations across the country. And for those who were wondering, no the iPod doesn't drop in the machine, a robotic arm grabs it and hands it to you.
[1]: http://www.ajc.com/news/content/metro/stories/2006/12/26/1227metipod.html "Electronics vending machines are a hit"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/ipod-vending.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/ipod-vending.jpg Binary files differnew file mode 100644 index 0000000..1c5c66e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/ipod-vending.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/ms-laptop-redux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/ms-laptop-redux.txt new file mode 100644 index 0000000..80e8e28 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/ms-laptop-redux.txt @@ -0,0 +1 @@ +In response to [yesterday's flap][1] about Microsoft sending new laptops to prominent blogs, many of those bloggers have apparently received an additional note from Microsoft today. Former TechCrunch writer Marshall Kirkpatrick [posted][2] the email on his blog:
>As you write your review I just wanted to emphasize that this is a review pc. I strongly recommend you disclose that we sent you this machine for review, and I hope you give your honest opinions. Just to make sure there is no misunderstanding of our intentions I'm going to ask that you either give the pc away or send it back when you no longer need it for product reviews.
But I disagree with Kirkpatrick's commentary, I think Microsoft did the right thing by backpedaling a little.
TechCrunch's Michael Arrington [called me out][4] on his CrunchNotes blog yesterday, accusing me of "screaming" scandal for my post on the topic yesterday. I wasn't screaming; clearly Arrington was not at the table this holiday season when my cousin announced she was dropping out of high school to become a tattoo artist. Now that was screaming.
Secondly, I don't really have a problem with what Microsoft did, my criticism is more general -- I don't think bloggers are very good about disclosing promotional materials they receive.
A few points to consider: loaning out review hardware is standard practice, returning it when you're done is also standard practice. In those cases where manufacturers don't want the hardware back, the general practice is to give it away. Microsoft's second note is spot on and how it should have been from the beginning; the machine is not a gift, but for review purposes.
And I agree with Arrington that it's a smart move on Microsoft's part to send out the machines for blogger to use when they review Vista. Vista is a radical upgrade and requires newer hardware that the average blogger probably doesn't want to buy just to write a review.
My problem with Microsoft's move is that it seemed like they were trying to pass off a review machine as swag. That it happened to be sent out around the holiday's and included a note saying "you can hold onto it for as long as you’d like," didn't help Microsoft's cause.
Large news organizations generally have firm policies about how to handle these items. For instance, here at Wired we have "no junkets, no gifts" policy. When Wired writers cover a conference, promotional event or other company-sponsored press event we go on Wired's dime not the company in question. When we get gifts such as a laptop, we use it to test whatever we're supposed to be testing and then we send it back or give it away.
It's not that we don't appreciate such gestures or that we have some Ebenezer Scrooge tendencies, these policies exist so there is absolutely no question about our motivations.
I think it's high time that bloggers came up with their own editorial policies regarding promotions, gifts and swag they receive. The thing is bloggers of the world, we like you and we want to trust you, but you have to show all your cards when you call a hand.
But in truth the ethical burden in this case was never on Microsoft's plate, as Robert Scoble [points out][3] on his blog, it's the blogger's responsibility to disclose what they were given. I like Scoble's summary and hope bloggers everywhere take note of it:
>Now, regarding blogger ethics. Did you disclose? If you did, you have ethics. If you didn't, you don't. It's that black and white with me.
[1]: http://blog.wired.com/monkeybites/2006/12/microsoft_tries_1.html "Monkey Bites on MS laptop giveaway"
[2]: http://marshallk.com/microsoft-wants-its-laptops-back "Marshal Kirkpatrick on MS laptops"
[3]: http://scobleizer.com/2006/12/27/i-think-the-microsoft-vista-giveaway-is-an-awesome-idea/ "Robert Scoble on MS laptops"
[4]: http://www.crunchnotes.com/?p=331 "Michael Arrington reads Monkey Bites?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/nightly.txt new file mode 100644 index 0000000..1120dbc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/nightly.txt @@ -0,0 +1 @@ +The nightly build <strike>has piles</strike> compiles.
* CNet [reports][5] that Red Hat will ship the next version of its premium Linux OS on February 28. The release was originally scheduled for the end of the year, but has been pushed back slightly.
[5]: http://news.com.com/Red+Hat+updates+premium+Linux/2100-7344_3-5576507.html
* Best reason to add learning GPG to your resolutions this year: the government may not need a warrant to search your e-mail. Ars Technica has [more details][1].
[1]: http://arstechnica.com/news.ars/post/20061227-8504.html "Government may not need a warrant to search your email"
* Oh the lists, the lists. Another of my favorite lists the BBC's [100 things we didn't know last year][2]. Number one: Pele has always hated his nickname, which he says sounds like "baby-talk in Portuguese."
[2]: http://www.bbc.co.uk/blogs/magazinemonitor/2006/12/100_things_we_didnt_know_last_2.shtml "100 things we didn't know last year"
* If you're a young single woman looking to holiday in Jamacia with a total stranger, there's an [eBay auction][4] with your name on it. It may not be as creepy as it sounds, Reuters [reports][3] that 39 year-old Adam Croot had planned the holiday to propose to his partner, but then she dumped him. Ouch.
[4]: http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=160067295942 "Holiday with Adam Croot"
[3]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2006-12-28T164844Z_01_L28711685_RTRUKOC_0_US-BRITAIN-HOLIDAY.xml&src=rss "EBay Janacia vacation"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/random thoughts.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/random thoughts.txt new file mode 100644 index 0000000..d42190e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/random thoughts.txt @@ -0,0 +1 @@ +Sometimes when I'm browsing through Amazon.com I find myself thinking, where is all this stuff? Well, I still don't know, but I discovered [this photo][1] from [Gizmodo][2] on Digg earlier today.
This is just the stuff that's ready to ship out, not the inventory of the store, but it gives me some frame of reference. I'll refrain from any Raiders of the Lost Ark jokes.
But seriously, where is all that stuff on Amazon.com?
[1]: http://cache.gizmodo.com/assets/resources/2006/12/amazonukbig.jpg "Amazon UK Shipping Warehouse"
[2]: http://gizmodo.com/ "Gizmodo"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/reboot.txt new file mode 100644 index 0000000..933bad8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot:
* Gadgets [make it easier to lie][1]. According to a survey done in the UK over half of the respondents said using gadgets like cellphones "made them feel less guilty when telling a lie than doing it face to face."
[1]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2006-12-28T144304Z_01_L27198468_RTRUKOC_0_US-BRITAIN-LIES.xml&src=rss "Lying easier with cellphones"
* A programmer by the name of muslix64 has [posted][2] a Java-based app he claims will remove the AACS copy-protection encryption from HD DVD movies. Muslix64 admits the code is highly unstable and it remains to be seen whether how generic it is since so far it only seems to work with one movie.
[2]: http://forum.doom9.org/showthread.php?t=119871 "HD DVD cracked?"
* 10 Zen Monkey's wants your help [stopping][3] professional troll (and front-runner for least sexy... something), Michael Crook. The site says: "Are you a blogger or webmaster who tried to cover the story of DMCA fraudmeister, Michael Crook, only to be served a DMCA takedown notice by him? ... Please take some time to tell us your story. It’s the best way to help ensure that nefarious griefers like Crook are no longer able to use the DMCA to violate Free Speech and silence critical commentary." [via [BoingBoing][4]]
[3]: http://www.10zenmonkeys.com/2006/12/27/crook-harass/ "10 Zen Monkeys fights Crook"
[4]: http://www.boingboing.net/2006/12/27/wanted_your_michael_.html "BoingBoing on Crook"
* Ack, the tubes is clogged. [According to CNN][5], "swarms of online shoppers armed with new iPods and iTunes gift cards apparently overwhelmed Apple's iTunes music store over the holiday, prompting error messages and slowdowns of 20 minutes or more for downloads of a single song."
[5]: http://www.cnn.com/2006/TECH/internet/12/28/itunes.slowdown.ap/index.html "Tubes clogged"
* If I understand this correctly, the top selling album of the year [failed][6] to reach 4 million in sales. Long tail effect anyone?
[6]: http://www.nypost.com/seven/12272006/business/worst_seller_business_peter_lauria.htm "The New York Post on Music Sales"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/tut-o-day.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/tut-o-day.txt new file mode 100644 index 0000000..c2fbb18 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Thur/tut-o-day.txt @@ -0,0 +1 @@ +Continuing with our CSS theme for the tutorial of day, today we're featuring a tutorial on positioning. The best tutorial I'm aware of for explaining how element positioning works in CSS can be [found][1] over at BrainJar (there's also a French [translation][2] available)
Perhaps the most difficult thing to understand in CSS is the "box model." When people complain about CSS and cross browser incompatibility, the box model is responsible for 90 percent of the problems.
While BrainJar's tutorial covers many aspects of CSS position elements, it stands out for its dead simple explanation of the box model. From the tutorial: "For display purposes, every element in a document is considered to be a rectangular box which has a content area surrounded by padding, a border and margins."
How those spacial elements are rendered varies somewhat by browser, but Internet Explorer is the main culprit here since it fails to comply with the box model defined in the W3C's specs.
The box model is what requires the most hacks when trying to get cross-browser perfection from your style sheets, but fear not the hacks are fairly minor and generally don't mean all that much extra work.
And for the record, lest anyone think I'm Microsoft bashing, the problem with IE is not so much that it gets the box model wrong, but that it renders it differently than the W3C spec.
The way IE renders margin and padding on box elements actually makes sense once you understand it and is even occasionally preferable to the specs definition. But the fact remains, it doesn't adhere to the standards set forth by the W3C, which nearly every other browser uses.
As always, if you know of other tutorials, post them in the comments below.
[1]: http://www.brainjar.com/css/positioning/default.asp "CSS Positioning Explained"
[2]: http://www.aidejavascript.com/article93.html "positionnement CSS"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/acer-laptop.gif b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/acer-laptop.gif Binary files differnew file mode 100644 index 0000000..9e97ba6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/acer-laptop.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/att-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/att-logo.jpg Binary files differnew file mode 100644 index 0000000..1c8d165 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/att-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/att.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/att.txt new file mode 100644 index 0000000..82f35e4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/att.txt @@ -0,0 +1 @@ +A while back we [looked][1] at Jingle's free directory assistance service, Free 411, and while someone reported a negative experience in that post's comments, I've been quite happy with Free 411.
Now it seems that at least one of the big telecoms thinks the Free 411 advertising model might be worth a try.
AT&T has [launched][2] a new free directory listing service, 1-800-YellowPages, which will play ads just before the requested number is given out.
According to AT&T's site, "the caller listens to a maximum of 4 ads, each 5 to 10 seconds, before receiving the number."
My big gripe with Jingle's service is that there is no auto-connect feature, you must hang up and dial the number. AT&T's new service offers the option to auto-connect, but curiously that option is in the hands of advertisers, not the customer.
The AT&T docs say that callers will "connected to the business at no cost if the advertiser has included automatic Call Completion as part of the ad design."
If I'm reading that correctly, and the automatic completion is at the advertiser's discretion, I can't see AT&T ending up with very many happy customers. Leaving a key feature, which would set the service apart from competitors, in the hands of an advertiser seems like a risky move on AT&t's part.
As a number of people have pointed out in the comments on the TechCrunch post where I first [read][3] about the AT&T service, AT&T is delusional if they think people will sit through up to forty seconds of ads just to save a buck fifty. Especially given that competing services play only one ad at 12 seconds.
As they say, time is money too.
in contrast Free 411 plays only one ad.
[1]: http://blog.wired.com/monkeybites/2006/10/make_free_411_c.html "Monkey Bites on Free411"
[2]: http://www.att.com/Common/1800yellowpages/product_description.htm
[3]: http://www.techcrunch.com/2006/12/26/att-acquires-infreeda-gets-into-free-411-business/ "Techcrunch on AT&t service"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/dvorak.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/dvorak.txt new file mode 100644 index 0000000..66bde10 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/dvorak.txt @@ -0,0 +1 @@ +Earlier today I ran across someone who modified a Macbook to give it a working Dvorak keyboard. The process involves prying off the Macbook's keys and is not for the faint of heart, but if you've always wanted to pound away on a Dvorak keyboard, here's your chance.
I will confess that I have only a dim idea of what makes the Dvorak keyboard better, but I understand that it's much faster than a qwerty keyboard if you know how to use it.
See the rest of [sjwalsh384's Macbook mod photos][1].
[1]: http://www.flickr.com/photos/69631394@N00/ "Macbook Dvorak mod"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/microsoft-blogger.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/microsoft-blogger.txt new file mode 100644 index 0000000..6facade --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/microsoft-blogger.txt @@ -0,0 +1 @@ +It seems that Microsoft and AMD have partnered to [hand out some nice Christmas presents][1] to select bloggers. Microsoft has reportedly sent out new AMD-equipped Acer laptops in an effort to get prominent bloggers using Microsoft's new Vista operating system.
The promotional effort comes just before the release of Microsoft's new Windows Vista Operating System, but Microsoft isn't a computer manufacturer so why are they giving away computers?
Typically when a company wants journalists to review their new software on a fast machine they loan it out for review purposes and then the machine gets returned. If Microsoft were to giveaway copies of Vista that would make sense and probably raise no eyebrows at all, but giving away a whole laptop understandably strikes some as little more than bribery.
Dan Warne a journalist at [APCmag][2] left a comment at the site linked above in which he points out:
>It's bizarre for one of the world's largest PR companies, Edelman, to think it could get away with this. Perhaps they don't know bloggers as well as they thought they did... now that some of the bloggers have disclosed the receipt of the gift, the public knows. Whatever the subtleties of the offer were, it comes across as nothing more than a bribe, and that is a very bad look for Microsoft.
[2]: http://apcmag.com/ "APCmag"
Companies have long sent promotional materials by the boatload to journalists who typically disclose that the item was a gift. Given the increasing influential power of blogs, it's no surprise that companies are beginning to try the same tactics on bloggers who often hold even more sway over tech-savvy consumers.
Earlier this month there was widespread controversy over the fact that companies have been offering money to prominent users of Digg in return for posting links to products and favorable reviews.
But getting paid a few pesos from PayPerPost or to put something on Digg is one thing, getting a $2000+ Acer laptop is a whole other ball of wax. As Warne says, now that the word is out, expect the negative publicity to be every bit as shrill as the positive which means Microsoft's PR move may well end up backfiring.
[1]: http://www.istartedsomething.com.nyud.net:8080/20061227/microsoft-free-ferrari/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/nightly-build.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/nightly-build.txt new file mode 100644 index 0000000..6899392 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/nightly-build.txt @@ -0,0 +1 @@ +The Nightly Build, compiling the day into piles.
* Well, perhaps we were hasty in condemning Wall Street in the morning reboot, Apple's shares [rebounded][1] later today. Why do we care? We don't really, we actually like it when our cynicism turns out to be unfounded.
[1]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2006-12-27T205452Z_01_N27433638_RTRUKOC_0_US-APPLE-SHARES.xml&src=rss "Apple Shares recover"
* Libraries in Georgia have [developed][2] an open source, enterprise-class library management system that may revolutionize the way large-scale libraries are run.
[2]: http://enterprise.linux.com/enterprise/06/12/04/1538214.shtml?tid=101 "Librarians stake their future on open source"
* [Renkoo][3] is getting some buzz for being a potential "Evite killer." The site is currently in public beta, though as of this posting it appears to be down for maintenance. Since I haven't used it I can't comment on its potential as an Evite killer except to say that I welcome anything even trying to kill Evite.
[3]: http://renkoo.com/ "Renkoo"
* The Captain Obvious award of the day goes to the Wall Street Journal for an article tantalizingly entitled "[Is 'Web 2.0' Another Bubble?][4]" I dunno Virginia, what do you think?
[4]: http://online.wsj.com/public/article/SB116679843912957776-fF7CtrdMDTE4n1h5Ju5pv0HKhgM_20071227.html "Is Web 2.0 Another Bubble?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/reboot.txt new file mode 100644 index 0000000..f97dbac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot, tasty like a candy cane:
* Ack, the tubes are cracked. A major earthquake off the coast of Taiwan [created][3] an Internet blackout across much of Asia. The quake damaged the undersea fiber optic cables that serve China, Japan, South Korea, Taiwan, Singapore, Thailand, Malaysia, Hong Kong and elsewhere. Officials say the repairs will take some time, but declined to give a specific timeframe.
[3]: http://www.channelnewsasia.com/stories/afp_asiapacific/view/249389/1/.html "Earthquake disrupts internet in Asia"
* Things are heating up the in investigation of Apple stock options. Law.com [reports][1] that the case against Apple may involve "falsified" stock options documents. Law.com's claim is unverified, but Apple shares [fell][2] 4 percent this morning as Wall Street apparently believes most everything it reads.
[1]: http://www.law.com/jsp/article.jsp?id=1167127308611
[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2006-12-27T143635Z_01_N20358521_RTRUKOC_0_US-MARKETS-STOCKS1.xml&src=rss "Reuters on Apple Share Price Drop"
* It's my favorite time of year, list time. And my favorite list, the Wired [vaporware awards][4], just came out this morning.
[4]: http://www.wired.com/news/technology/0,72350-0.html?tw=wn_technology_1 "Wired's picks for Vaporware 2006"
* Missed this one: Wired is [suing] AT&T over AT&T's alleged illegal participation in government surveillance. Wired (and some other, lesser news outlets) wants the judge to unseal the documents.
[5]: http://blog.wired.com/27bstroke6/2006/12/wired_takes_on_.html "27B Stroke 6 on Wired/AT&T case"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist-icon.jpg Binary files differnew file mode 100644 index 0000000..b908bc1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist-screen-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist-screen-1.jpg Binary files differnew file mode 100644 index 0000000..023dcc7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist-screen-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist-screen-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist-screen-2.jpg Binary files differnew file mode 100644 index 0000000..0b75726 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist-screen-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist.txt new file mode 100644 index 0000000..e8378c5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/socialist.txt @@ -0,0 +1 @@ +Back when I [reviewed][1] social bookmarking sites, I gave [del.icio.us][2] high marks for their API because it allows outside applications to take use the site however they choose. [Socialist 1.0][3] is a newish mac application that utilizes the del.icio.us API. Socialist is the brainchild of Mark Davis who previously worked on Musicast and RapidWeaver.
But Socialist is not just a del.icio.us frontend, it's also an RSS reader.
The design of Socialist mimics that of Apple's Mail.app so it should look immediately familiar to Mac users. Just enter your del.icio.us account information and you'll be logged in and the three-pane interface will show your bookmarks.
You can then subscribe to del.icio.us tags, other users feeds or any old RSS feed you enter by hand. Regrettably Socialist doesn't seem to recognize feed calls from Safari. Using Safari I set Socialist to be my default feed reader and then clicked on a feed link. Socialist came to the forefront, but did not auto-add the feed.
Once you've added your favorite feeds to Socialist, whenever you run across something you'd like to bookmark it's one-click simple to add it to your del.icio.us account. There's also a button to send it as an email, but it didn't seem to work in my testing.
Overall Socialist is a good looking app, it does what it says (except the email issue) and does it well. In addition to looking good, Socialist is lightening fast at loading and refreshing both del.icio.us and RSS accounts.
Because I'm not a del.icio.us user, Socialist is of limited use to me, but if it supported [ma.gnolia.com][4] and polished up its RSS features a little, I could see myself ditching my current RSS setup in favor of Socialist.
If you are a del.icio.us user and you're looking for a way to integrate your RSS feeds with your bookmarks, Socialist just might be exactly what you've been seeking.
[1]: http://www.wired.com/news/technology/internet/0,72070-0.html "Wired review of Social Bookmarking Sites"
[2]: http://del.icio.us/ "del.icio.us"
[3]: http://getsocialist.com/ "Socialist 1.0"
[4]: http://ma.gnolia.com/ "ma.gnolia.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/tutorial-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/tutorial-icon.jpg Binary files differnew file mode 100644 index 0000000..f68f3c5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/tutorial-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/tutorial-o-day.txt b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/tutorial-o-day.txt new file mode 100644 index 0000000..29b2f80 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2006/12.25.06/Wed/tutorial-o-day.txt @@ -0,0 +1 @@ +Last week in a Monkey Bites post about the [10th anniversary of Cascading Style Sheets][2] a number of people left comments expressing some confusion and perplexity about how to use CSS. I have some tutorial writing experience and I wish I had the time to whip something up for you, but I don't.
I thought the next best thing would be to create a Tutorial o' the Day feature here on Monkey Bites. So here's how this will work: each week we'll pick a programming language, popular internet design trend or similar theme and everyday we'll link to a tutorial that will help you create something useful.
Since this was inspired by CSS I thought we'd start there.
There are thousands of CSS tutorials out there, but one CSS feature that it took me a while to understand is the <code>float:</code> feature. Floats are an easy way to create the multi-columned layouts that many popular sites utilize without resorting to table tags.
The best tutorial I've found on [how to use floats][1] comes from Max Design. But "Floatutorial" isn't just a one trick pony, it's actually a whole bunch of tutorials condensed into one easy to browse page. These tutorials will walk you through "the basics of floating elements such as images, drop caps, next and back buttons, image galleries, inline lists and multi-column layouts."
I should also note that Max Design has an excellent CSS showcase called [Listamatic][3] which will show you how to create a navigation menu of just about any shape, size and arrangement you want using a simple unordered list.
If you have other suggestions or recommendations for people just getting started with CSS or those hoping improve their existing skills, be sure to leave them in the comments below.
Also if you have ideas for future tutorial themes, email me at: scott_gilbertson@wired.com
[2]: http://blog.wired.com/monkeybites/2006/12/cascading_style.html#comments "Read Comments on Cascading Style Sheets Turn 10"
[1]: http://css.maxdesign.com.au/floatutorial/index.htm "Floatutorial"
[3]: http://css.maxdesign.com.au/listamatic/index.htm "Listamatic"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/ms-article-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/ms-article-icon.jpg Binary files differnew file mode 100644 index 0000000..fa5ce13 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/ms-article-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/ms-more.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/ms-more.txt new file mode 100644 index 0000000..8b70894 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/ms-more.txt @@ -0,0 +1 @@ +Just for the record -- Microsoft is not evil.
Microsoft is a publicly traded company run by non-evil human beings who work to protect the company's market share and profitability just like any other company.
I recently wrote an article for Wired.com [criticizing][2] Microsoft's attempt to foist a "open" standard on office software users, but in spite of what many readers seem to think, I don't think Open Office XML (OOXML) is a deliberate attempt to screw over users.
The problem is that Microsoft's best interests and users best interests do not always overlap.
For our tech-savvy Monkey Bites readers who'd like a more detailed explanation of how and why OOXML is not good for users, Rob Weir has an excellent post entitled [*How to hire Guillaume Portes*][1] that digs into some of the problems with OOXML in more detail.
From Weir's article:
>It is quite possible to write a standard that allows only a single implementation. By focusing entirely on the capabilities of a single application and documenting it in infuriatingly useless detail, you can easily create a "Standard of One."
...
As I've stated before, if this were just a Microsoft specification that they put up on MSDN for their customers to use, this would be par for the course, and not worth my attention. But this is different. Microsoft has started calling this a Standard, and has submitted this format to ISO for approval as an International Standard. It must be judged by those greater expectations.
[1]: http://www.robweir.com/blog/2006/01/how-to-hire-guillaume-portes.html "How to hire Guillaume Portes"
[2]: http://www.wired.com/news/technology/software/0,72403-0.html?tw=wn_index_2 "MS Fights to Own Your Office Docs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neo-calc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neo-calc.jpg Binary files differnew file mode 100644 index 0000000..9296484 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neo-calc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neo-writer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neo-writer.jpg Binary files differnew file mode 100644 index 0000000..0c82407 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neo-writer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neooffice-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neooffice-logo.jpg Binary files differnew file mode 100644 index 0000000..9c1b736 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neooffice-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neooffice.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neooffice.txt new file mode 100644 index 0000000..24c296d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/neooffice.txt @@ -0,0 +1 @@ +Mac users are traditionally not big fans of Microsoft and any die-hard Mac fan can argue until they're blue in the face that it's possible to get by without using MS products.
But there is one field in which Microsoft software unquestionably dominates -- Office documents. However [competition in the Office field is heating up][1] and more robust alternatives to the MS Office suite are now available.
The most obvious alternative to office is [OpenOffice.org][3], but so far there hasn't been a true native Mac port. As it stands now, there is an OS X port but it requires the X11 windowing system to be installed.
However, if you're like me and you don't want to mess with X11, there is another alternative -- [NeoOffice][2]. NeoOffice is based on the OpenOffice.org office suite, but it incorporates many native Mac features like Aqua menus, OS X fonts and integration with Apple's mail.app.
Die-hard Mac fans will no doubt love the native Aqua look and feel and NeoOffice does a good job adhering to the Apple UI guidelines. In short, if it looks like a duck and quacks like a duck, it's probably a duck, even it it uses Java here and there to take advantage of Aqua widgets.
Naturally NeoOffice offers the full set of applications you'd expect in an office suite (including word processing, spreadsheet, presentation, and drawing programs) and it can import, edit, and exchange files with other popular office programs such as Microsoft Office.
So how does it stand up in everyday use?
Well it depends on what your needs are. For most people the word processing app, Writer, will ably do just about anything you want and exports to MS .doc files with ease.
As for reading MS Office files from other people, Writer handled everything I threw at, but some people have reported problems with complex double column formats with embedded images and the like.
Also note that at this time Writer does not support the new MS Word format .docx, but a recent update to the NeoOffice homepage says that .docx support will be available later this quarter.
If for some reason you need to embed video or other multimedia materials in your documents, you'll want to look elsewhere since those features haven't been implemented yet NeoOffice.
I also tested Calc, NeoOffice's spreadsheet program and found it to be slightly less stable (it crashed once while importing a very very large .csv file), but it did an excellent job of importing Ms Excel files.
So can NeoOffice replace MS Office? I would say yes for the casual user like myself. If you regularly have to deal with complex MS Office documents your mileage may vary.
[2]: http://www.planamesa.com/neojava/en/index.php "NeoOffice"
[3]: http://www.openoffice.org/ "OpenOffice.org"
[1]: http://www.wired.com/news/technology/software/0,72403-0.html?tw=wn_index_2 "MS Fights to Own Your Office Docs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/reboot.txt new file mode 100644 index 0000000..04d9e18 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* OpenOffice.org has [released a patch][1] for a security flaw involving Windows Metafile files. The vulnerability would allow unauthorized code to run, were the unsuspecting user to open an infected file. Although there were no known public exploits or even proof of concept examples, the patch is recommended for all OpenOffice users.
[1]: http://news.yahoo.com/s/pcworld/20070104/tc_pcworld/128396 "Patch Issued for Critical OpenOffice.org Flaw"
* Speaking of office suites, CNN has a review [slamming MS Word 2007][2]. From the review: "after four weeks of side-by-side comparative testing, I could discern no significant improvement in functionality over Word 2003."
[2]: http://money.cnn.com/2007/01/04/technology/wordreview_fsb.fsb/index.htm?postversion=2007010509 "Microsoft's four-letter #&!? Word"
* We generally eschew rumor sites like ThinkSecret, but it's a slow week and this one has got screenshots, so what the heck. <b>RUMOR</b>: ThinkSecret [has some screenshots][3] of what *could* be an Apple spreadsheet app to be bundled with iWork '07. We'll know for sure next week.
[3]: http://www.thinksecret.com/news/0701iwork.html "Apple Spreadsheet App?"
* Running out of room for your movie downloads? Good news, Hitachi just [announced][4] a one terabyte drive aimed at the desktop market.
[4]: http://searchstorage.techtarget.com/originalContent/0,289142,sid5_gci1237560,00.html "Hitachi unveils 1 TB drive for retail"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/recap.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/recap.txt new file mode 100644 index 0000000..a0fe6f3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/recap.txt @@ -0,0 +1 @@ +The Week in Review, in which we recap the more popuar Monkey Bites posts:
* We [looked at BitTyrant and BitThief][1], two new torrent clients that emphasize a selfish streak. BitThief, which downloads without sharing is just plain wrong, but the jury is still out on BitTyrant.
* On Wednesday we asked if [Apple was the new Microsoft][2]. You can imagine how that went over with the fanboys.
* We tried to get in the spirit of the holidays and offered up a bunch of [new year's resolutions for coders][3]. *I will stop making crontab entries to scripts I end up deleting.* D'oh!
* Microformats made the news with Firefox [announcing][4] that version three of the popular browser would offer some kind of support. Naturally we [rounded up][5] some tutorials to help you get started.
* We declared January "Mac Month" and have been [reviewing][6] [software][7] and of course next week we'll be coming to you live from MacWorld. Personally, I had no idea that the weird little symbol on the corner of the Mac "command" key [is called][8] a *severdighet*.
[1]: http://blog.wired.com/monkeybites/2007/01/bittorrent_bull.html "BitTorrent Bullies: BitTyrant and BitThief"
[2]: http://blog.wired.com/monkeybites/2007/01/is_apple_the_ne.html "Is Apple The New Microsoft?"
[3]: http://blog.wired.com/monkeybites/2007/01/new_years_resol.html "New Year's Resolutions for Coders"
[4]: http://blog.wired.com/monkeybites/2007/01/firefox_3_to_su.html "Firefox 3 to support microformats"
[5]: http://blog.wired.com/monkeybites/2007/01/tutorial_o_the__2.html "Tutorial 'O The Day: XHTML Microformats"
[6]: http://blog.wired.com/monkeybites/2007/01/mac_month_neoof.html "Mac Month: NeoOffice The Aqua Friendly MS Office Alternative"
[7]: http://blog.wired.com/monkeybites/2007/01/mac_month_image.html "Mac Month: Imagewell Review"
[8]: http://blog.wired.com/monkeybites/2007/01/mac_month_the_c.html "Mac Month: The Command Key"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/tutorial-accessibility.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/tutorial-accessibility.txt new file mode 100644 index 0000000..1d2eba7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Fri/tutorial-accessibility.txt @@ -0,0 +1 @@ +Wednesday's tutorial touched on [how semantically correct XHTML helps][4] search engine spiders "read" your pages, but spiders aren't the only reason for semantics. Semantics also help people with disabilities by making an elements context clear to assistive devices like [JAWS][6].
But while semantics are a good start, they aren't the end of the story when it comes to accessibility. There is in fact an entire [W3C spec][5] on accessibility and there are many ways that you can improve your sites accessibility (note that these tips are good whether you're using HTML or XHTML).
The best and most comprehensive tutorial I know of that deals with accessibility is Mark Pilgrim's [Dive Into Accessibility][1], which isn't actually a tutorial it's an entire book downloadable as html or pdf as well as readable online.
Another excellent book-length tutorial is Joe Clark's [*Building Accessible Websites*][3].
While I highly recommend Pilgrim's book, if you don't feel you have the time for something that long, there's also an excellent tutorial on A List Apart called [*What Is Web Accessibility*][2], that will get you acquainted with the basics and point you to a number of other helpful tutorials.
[3]: http://joeclark.org/book/sashay/serialization/ "Building Accessible Websites"
[2]: http://alistapart.com/articles/wiwa "What Is Web Accessibility?"
[1]: http://www.diveintoaccessibility.org/ "Dive Into Accessibility"
[4]: http://blog.wired.com/monkeybites/2007/01/tutorial_o_the__1.html "Tutorial 'O The Day: XHTML Semantics"
[5]: http://www.w3.org/WAI/ "W3C Accessibility Initiative"
[6]: http://en.wikipedia.org/wiki/Job_Access_With_Speech "Wikipedia definition - JAWS"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/ZZ0CA70526.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/ZZ0CA70526.jpg Binary files differnew file mode 100644 index 0000000..0456abc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/ZZ0CA70526.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/elsewhere.txt new file mode 100644 index 0000000..6134b14 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/elsewhere.txt @@ -0,0 +1 @@ +Elsewhere on Wired Blogs:
* Gear Factor [brings news][1] of an HD-DVD/Blu-ray combo player from LG, but will anyone care? "Consumer disinterest has more to do with the price tags than with philosophical exasperation at the existence of competing formats."
[1]: http://blog.wired.com/gadgets/2007/01/lg_to_unleash_h.html "LG To Unleash HD-DVD/Blu-Ray Combo Player"
* Table of Malcontent has a [write-up][2] on every cynic's favorite end-of-the-year award -- the Darwin Awards.
[2]: http://blog.wired.com/tableofmalcontents/2007/01/2006s_darwin_aw.html "2006's Darwin Award Winners"
* Listening Post has some [advance details][3] on a slick looking new MP3 player from iRiver which will make its debut at CES next week.
[3]: http://blog.wired.com/music/2007/01/new_iriver_mp3_.html "New iRiver MP3 Players at CES"
* Our new science blog, aptly titled WIRED Science, [posted a cool video][4] of the initial launch of the Goddard ,a rocket built by Blue Origin, the space launch company founded by Amazon's Jeff Bezos.
[4]: http://blog.wired.com/wiredscience/2007/01/blue_origin_lif.html "Blue Origin liftoff"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/macworld.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/macworld.jpg Binary files differnew file mode 100644 index 0000000..9e8ce52 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/macworld.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/macworld.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/macworld.txt new file mode 100644 index 0000000..0f1d446 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/macworld.txt @@ -0,0 +1 @@ +Oh don't worry we aren't going to venture any guesses about that device-which-shall-not-be-named, but here's a few things that we're looking forward to seeing at next week's Macworld show:
* More Leopard previews with details on what Jobs previously described as "a few more surprises." And of course some hard and fast release dates.
* iLife upgrades. Here's to a better iTunes.
* 5.1 surround sound in Garageband and iDVD.
* µTorrent for OS X. Please?
* More details on "iTV." Is it a service? Is it tied to the iTunes Store? Is it going to change the way I watch Movies/TV?
* Aperture upgrades. We really like Aperture and we'd like to see some kind of upgrade. It needs better Camera Raw support and a speed boost before we shell out for it.
* iWork to move into Microsoft Office territory, i.e. a real word processor app.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/nightly.txt new file mode 100644 index 0000000..1c3aadd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/nightly.txt @@ -0,0 +1 @@ +The Nightly Build:
* This shouldn't shock anyone, but Washington Post security blogger Brian Krebs, has calculated that Microsoft Internet Explorer 6 was [vulnerable to known security holes][2], with no available patches for 284 days last year. That's 75% of the time. Firefox on the other hand was vulnerable for only nine days. What's on your screen?
[2]: http://blog.washingtonpost.com/securityfix/2007/01/internet_explorer_unsafe_for_2.html "Internet Explorer Unsafe for 284 Days in 2006"
* As I mentioned in the Wired Blogs round up below, there's a new HD-DVD/Blu-Ray combo player coming soon from LG, but Warner Bros is [reportly planning to release][3] a new *disc*, Total DVD, which is playable on both HD-DVD and BluRay players.
[3]: http://www.nytimes.com/2007/01/04/technology/04video.html?ex=1325566800&en=65cf5ceda95fc5f3&ei=5090&partner=rssuserland&emc=rss "New Disc May Sway DVD Wars"
* There's a small chance we might get to see how the RIAA has been screwing us all these years. The RIAA is suing Marie Lindor for allegedly downloading music, and as part of her defense, Lindor's attorney is [trying to gain access][1] to the RIAA's price information which he claims will support his client's claim that the RIAA's damages are excessive.
[1]: http://arstechnica.com/news.ars/post/20070103-8536.html "RIAA fights to keep wholesale pricing secret"
* More Apple woes, Apple shareholders have [launched their own suit][4] against the company, alleging that when Jobs regained control of the company in 1997, he doled out stock options to many of his newly appointed executives. I don't pretend to understand the finer points of law, but does it make sense to sue someone who raised your stock price 48% in one day? How does a lawsuit against the company you've invested in help you as a stockholder?
[4]: http://www.sfgate.com/cgi-bin/article.cgi?file=/c/a/2007/01/04/BUGDBNCBRA1.DTL "Investors sue Apple"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/pdf flaws.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/pdf flaws.txt new file mode 100644 index 0000000..d60a945 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/pdf flaws.txt @@ -0,0 +1 @@ +A new and rather serious flaw has been [found in Adobe's Acrobat Reader plug-in][1]. The vulnerability exists in nearly any browser with the Acrobat Reader plug-in installed and allows malicious Javascript code to be injected on the client side.
Possible attacks that could be delivered using the flaw include session riding, cross-site scripting attacks and, in the case of Internet Explorer, denial of service attacks.
The attack works via html links that pass additional parameters to the Acrobat Reader plug-in. Because the plug-in does not properly sanitize incoming urls, it's possible to use a link to execute arbitrary code:
http://site.com/file.pdf#FDF=javascript:alert('Test Alert')
In this case the plug-in would execute the Javascript that the end of the url, but other attacks are also possible and vary somewhat by browser.
As Hon Lau [writes][2] on the Symantec security response blog, "the ease in which this weakness can be exploited is breathtaking."
Lau goes on to add, "what this means in a nutshell is that anybody hosting a .pdf, including well-trusted brands and names on the Web, could have their trust abused and become unwilling partners in crime."
Symantec initially reported that the flaw only affected Firefox users, but has since amended that to include Internet Explorer 6. Stefano Di Paola, who originally discovered the flaw, also mentions Opera, but does give any specific Opera examples.
The flaw exists in Adobe Acrobat 7 and below. Adobe recommends upgrading to the new Acrobat 8 (see Monkey Bites [review][3]), but for those that don't want to upgrade, the post on Symantec's security response blog has details on a workaround that disables the Acrobat Reader plugin.
[1]: http://www.wisec.it/vulns.php?page=9 "Adobe Acrobat Reader Plugin - Multiple Vulnerabilities"
[2]: http://www.symantec.com/enterprise/security_response/weblog/2007/01/when_pdfs_attack.html "When PDFs attack"
[3]: http://blog.wired.com/monkeybites/2006/12/adobe_acrobat_8.html "Monkey Bites on Acrobat Reader 8"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/podzinger.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/podzinger.jpg Binary files differnew file mode 100644 index 0000000..3bfccb0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/podzinger.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/podzinger.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/podzinger.txt new file mode 100644 index 0000000..988321d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/podzinger.txt @@ -0,0 +1 @@ +Podzinger, an audio-to-text podcast search engine, announced yesterday that it has added support for YouTube video searches.
We've [looked at Podzinger][1] before and there's a [Wired News article][2] as well, but yesterday's announcement puts the services quite a bit ahead of the competition.
[According][3] to a post on the Podzinger blog, the new YouTube search tools allow you to "search for terms that are actually mentioned inside the audio, allowing for a greater likelihood you will find relevant material."
As with podcast searches on Podzinger, the results page lists the time mark where the term appears in the video.
There's no easy way to compare the accuracy of Podzinger's search to YouTube's tag and metadata-based searches, but using both in tandem will at least give you an added way to find relevant videos.
Much like the podcast portion of Podzinger, RSS feeds are available for any search, so you can get notified any time a new video is posted where your search terms are used.
[1]: http://blog.wired.com/monkeybites/2006/03/searchin_podcas.html "Monkey Bites on Podzinger"
[2]: http://www.wired.com/news/technology/0,69664-0.html "Podcast Chaos Be Gone"
[3]: http://www.blogzinger.com/2007/01/03/youtube-on-podzinger/ "Podzinger adds YouTube support"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/reboot.txt new file mode 100644 index 0000000..033e666 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* Attention hackers, WIBU-Systems is [offering $40,000][1] to anyone who can remove its anti-piracy software from an application. Registration starts next week at MacWorld and the challenge will run for six weeks.
[1]: http://www.informationweek.com/news/showArticle.jhtml;jsessionid=PI40RF1QFAJHSQSNDLRCKH0CJUNN2JVN?articleID=196800978 "$40,000 for hackers"
* Macworld [reports][2] that Adobe's Premiere software, which abandoned the Mac platform several years ago, will be returning to OS X. The new version will run on Intel-based machines and will be part of the Adobe Production Studio suite.
[2]: http://www.macworld.com/news/2007/01/03/premiere/index.php?lsrc=mwrss "Premiere returns to OS X"
* Here's a Google Maps mash-up you never wanted: locations of plane crashes. Aviation Marine Insurance has taken FAA and NTSB GPS data and created [AVCRASH][3] which plots out the location of plane crashes. [via [Jeremy Zawodny][4]]
[3]: http://aviation-marine.com/avcrash/index.cfm "AVCRASH"
[4]: http://jeremy.zawodny.com/blog/ "Jeremy Zawodny's blog"
* Amazon is already [listing Apple's iLife '07][5] software, which seems to confirm that a new version will be announced at next week's MacWorld show. The existence of the software shouldn't come as too much of a surprise since Apple has consistently announced upgrades to the iLife suite at Macworld for several years now.
[5]: http://www.amazon.com/Apple-Computer-iLife-07-Mac/dp/B000B8UOU2/sr=1-1/qid=1167869764?ie=UTF8&s=software&tag2=reality "Amazon.com iLife Suite"
* And last but not least, a Monkey Bites welcome to the 110th congress who begin work today. Can we get some net neutrality legislation already?
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/stockpickr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/stockpickr.txt new file mode 100644 index 0000000..57337fa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/stockpickr.txt @@ -0,0 +1 @@ +[Stockpickr][1] is new stock market meets social networking venture from the people that brought you [TheStreet.com][2], a site that provides analysis, commentary, and news about the financial world.
Stockpickr calls itself "the stock idea network" and lives up to that claim by blending social networking features with stock portfolios. Stockpickr members can create portfolios and get recommendations based on stocks you're tracking. The recommendations are pulled from other user portfolios as well as top rated funds based on shared stocks.
In additional to the Stockpickr community, you can also view the publicly available portfolios of investment experts like Warren Buffet or George Soros as well as top hedge and mutual funds.
Stockpickr doesn't let actually buy and sell stocks, for that you'll need to either contact your broker or use one of the many of the online services out there.
While overall Stockpickr is a nice site, the more you already know about the market to begin with, the more you'll probably like Stockpickr. The site is not especially helpful for those of us to whom the stock market remains something of a mystery and Stockpickr can at times be overwhelming for the amount of data and jargon it throws out.
I wanted to like Stockpickr, but unfortunately it comes up short in a few key areas. RSS support is lacking, you can subscribe to a number of feeds, but I couldn't find a way to subscribe to individual user portfolios so I could get notified when they add new stocks.
Additionally, the site is riddled with Javascript errors, the biggest of which prevents large portions of the site from showing up in the Safari browser.
Even in Firefox my registration generated an error saying to try again later, however the registration did in fact go through and I received an email confirming it complete with my password revealed in plain text, which leaves me feeling a bit exposed.
[1]: http://www.stockpickr.com/ "Stockpickr"
[2]: http://www.thestreet.com/ "TheStreet.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/tutorial.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/tutorial.txt new file mode 100644 index 0000000..cad7a84 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/tutorial.txt @@ -0,0 +1 @@ +Yesterday we looked at creating semantically correct XHTML. Today's tutorial takes that idea and goes a step further into what's know as microformats.
Microformats are, to quote from the [microformats.org][2] website:
>* a way of thinking about data
* design principles for formats
* adapted to current behaviors and usage patterns ("Pave the cow paths.")
* highly correlated with semantic XHTML, AKA the real world semantics, AKA lowercase semantic web, AKA lossless XHTML
* a set of simple open data format standards that many are actively developing and implementing for more/better structured blogging and web microcontent publishing in general.
* An evolutionary revolution
* all the above.
Microformats allow browsers and other user agents to "understand" certain chunks of data, for instance hCard, a microformat based on the vCard standard, tell a browser that the information contained within the hCard tags is an address card.
Right now Flickr, Yahoo and others are using microformats and Mozilla has said the next version of Firefox [will support][3] microformats.
For some background and to get started creating your own microformats code [head over the official site][1] and have a look at the various code generators and templates. Happy formating.
[1]: http://microformats.org/code/ "microformats.org - code"
[2]: http://microformats.org/about/ "About Microformats"
[3]: http://blog.wired.com/monkeybites/2007/01/firefox_3_to_su.html#more "Monkey Bites: Firefox 3 to support Microformats"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/youtube-shutdown.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/youtube-shutdown.txt new file mode 100644 index 0000000..307827d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Thu/youtube-shutdown.txt @@ -0,0 +1 @@ +<img border="0" alt="Youtube_logo_3" title="Youtube_logo_3" src="http://blog.wired.com/photos/uncategorized/youtube_logo_3.png" style="margin: 0px 0px 5px 5px; float: right;" />A Brazilian baby went flying out the window with the bath water yesterday when a judge ordered Google to [shut down YouTube][1] until the site removes a celebrity sex video.
The video in question shows Brazilian model and celebrity Daniela Cicarelli having sex with her boyfriend on a beach in Brazil. Cicarelli's boyfriend Tato Malzoni filed a suit in Brazilian court seeking $116,000 in damages *per day* that the video is up on YouTube.
The Reuters article cites legal experts who say enforcing the Brazilian judge's ruling "could be difficult ... in the United States, where YouTube is based."
While many of the copies of the video have reportedly been removed on YouTube, rumor has it users keep posting new ones. The video was the top viewed movie in Brazil for several days.
Aside from the fact that asking YouTube to shut down is, well, somewhat ludicrous and unlikely to happen, the real question is, what difference would it make? If the video has already been widely viewed in Brazil, the only thing the judge's decision does it make it a world wide news item which in turn further fans the flames.
Perhaps Paris Hilton needs to open some sort of how-to-handle-your-sex-video-scandal clinic.
Just for the record, as sex videos go, this one is pretty tame. Not that I would know, that's just the word on the street.
And here we always thought everyone in Brazil was having sex on the beach and no cared. I hope these plane tickets are refundable...
[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-04T133629Z_01_N04473895_RTRUKOC_0_US-GOOGLE-BRAZIL.xml&src=rss "Brazil court orders YouTube shut on celeb sex video"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/booksfree-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/booksfree-logo.jpg Binary files differnew file mode 100644 index 0000000..c0e922b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/booksfree-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/booksfree.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/booksfree.txt new file mode 100644 index 0000000..f5bb995 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/booksfree.txt @@ -0,0 +1 @@ +Every time I turn around there's [another][1] [Netflix][2] [clone][3] of some sort popping up. [Booksfree.com][4] which has actually been around for some time, takes the basic Netflix model and applies it to books.
For those that have never used Netflix or a similar site, the set up is thus: Pick a list of books you'd like to read, sign up for a rental plan and wait for your first title to arrive.
Booksfree offers free shipping both ways, no late fees and lists over 88,000 titles. Plans range from $8.95 a month, which gets you two books at a time, to $34.99 a month, which allows you to have up to 12 books at a time.
If you're more the audiobook type, Booksfree also offers a wide range of titles, but curiously the pricing is separate and somewhat more expensive than the book rates, which means if you want to rent both you'll have to pony up for two rate plans. Even more awkward, Booksfree actually requires you to maintain two separate accounts -- one for books and one for audiobooks.
If you're like me and you want to keep the books you like, it is possible to buy books from Booksfree. Just head into your account page and select the titles you'd like to keep. Unfortunately Booksfree doesn't let you buy books published prior to 1995 due to their "limited availability." For those older books I guess you'll have to head over to Amazon or the like.
So why would you pay for a service you can get for free from your local library? Well unless you live in a major metropolitan area, Booksfree probably has a better selection than your local library and of course there's no late fees.
Combine that with the ability to keep the titles you like and Booksfree could be a library killer, but luckily for your local library, Booksfree isn't quite there yet.
The Booksfree website is too simplistic and has some glaring omissions in its feature set, most notably there doesn't seem to be a way for users to review books. There is a star rating system just like the Netflix rating system, but come on Booksfree, user-generated content convinced Time to make the people Person of the Year, how are we going to live up to that if we can't post reviews?
There is a "my recommendations" feature which, like similar sites, attempts to recommend books you'll like based on those you've already enjoyed, but why not tap the users for the information?
The search features on Booksfree are good, but browsing is awkward, especially if you're trying to find a specific author. It's far easier to search than it is to browse by author, the later requires you to click through by letter, then sub-letter categories, then author name lists before you finally get what you want.
Perhaps the strangest quirk of Booksfree is that you must return two books at a time, which means if you go for the cheapest plan (two books at a time), you'll have to return both before you get your new books. I presume this has something to do with shipping costs, but it seems like raising the price of the plan would be a better way to cover costs. As it is Booksfree doesn't give you the revolving door circulation of titles that makes Netflix so appealing.
Booksfree is a nice idea, but the service shoots itself in the foot with strange, quirky rental requirements and lack of user generated content. Hopefully the site will improve as time goes on.
[1]: http://www.gamefly.com/ "Gamefly- video game rentals"
[2]: http://www.netflix.com/ "Netflix"
[3]: http://www.lala.com/ "Lala - online cd trading"
[4]: http://www.booksfree.com/ "Booksfree.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/elsewhere.txt new file mode 100644 index 0000000..3cd4d78 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/elsewhere.txt @@ -0,0 +1 @@ +Elsewhere on Wired blogs:
* 27B Stroke 6 is not helping my paranoia level. Ryan Singel gives us the lowdown on a [privatized surveillance helicopter][1] in use in Jackson, MS. The chopper can use its "infrared camera to peer into houses, something that's been ruled unconstitutional for police officers." Great.
[1]: http://blog.wired.com/27bstroke6/2007/01/precrime_eyeint.html "Pre-Crime Eye-in-the-Sky, Now Privatized"
* Table of Malcontent's points us to something more benign -- [The Axis of Evil finger puppets][2].
[2]: http://blog.wired.com/tableofmalcontents/2007/01/the_axes_of_evi.html "The Axis of Evil On Your Fingers"
* Over at Listening Post Eliot Van Buskirk [ponders the meaning of corporate podcasts][3] and concludes "these programs will surely run counter to the independent spirit of the medium."
[3]: http://blog.wired.com/music/2007/01/corporate_podca.html "Corporate Podcasts: Patronage or Sellout?"
* Gear Factor [finds a cup holder][4] that keeps your coffee hot and your slurpy cold.
[4]: http://blog.wired.com/gadgets/2007/01/cup_holder_blow.html "Cup Holder Blows Hot and Cold"
* Autopia brings us [news of an in-vehicle wireless network adapter][5] which will debut at the upcoming Consumer Electronics Show.
[5]: http://blog.wired.com/cars/2007/01/wifi_kit_keeps_.html "WiFi Kit Keeps Drivers Connected"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/firefox-microformats.gif b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/firefox-microformats.gif Binary files differnew file mode 100644 index 0000000..a747ca8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/firefox-microformats.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/freesoftware.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/freesoftware.txt new file mode 100644 index 0000000..1279f75 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/freesoftware.txt @@ -0,0 +1 @@ +Attention starving students! There's a whole cd of free software [ready for the downloadin'][1] over at Software for Starving Students. And that would be free as in beer.
The kids today have it easy, when I was young we had to walk to Google just to find our free software. Uphill both ways. In the snow.
True you could still scour the web and dig up all this stuff yourself, but why bother when someone else has already dug it all up and put in one easy to download CD? Just download, burn a copy and pass it down the hall to your friends. It's all legal.
Naturally you needn't be a student to take advantage of the offer.
There are two version of the CD, one for the Windows Platform and one for Mac. For a complete list of what software is included on the CDs have a [look at the FAQ][2] on softwarefor.org.
I'd like to think things like this would put an end to the old piracy argument "but I'm a broke student, I can't afford ____________," but that's probably wishful thinking.
Remember kids, just cause you ain't got no job, doesn't mean you can steal stuff. There's plenty of software out there that can accomplish what you need to do without resorting to piracy.
If you don't believe me feel free to list expensive software in the comments and let the wisdom of Monkey bites readers enlighten you. Or you could get a job, ya freeloaders.
Found via our friends at [Lifehacker][3].
[1]: http://softwarefor.org/ "Software for Starving Students"
[2]: http://softwarefor.org/faq.html#q5 "Software for Starving Students list of programs"
[3]: http://www.lifehacker.com/software/students/download-of-the-day-software-for-starving-students-winmac-225341.php "Lifehacker on Software for Starving Students"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/microformats.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/microformats.txt new file mode 100644 index 0000000..d15d23a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/microformats.txt @@ -0,0 +1 @@ +We first [looked][1] at microformats back in September at the Web Apps Summit, but in spite of the promise of microformats, not many sites have been quick to adopt them. However that may change soon since Mozilla says that Firefox 3 will support microformats. But before we get into Firefox 3, there's a new add-on, [Operator][8], available now that brings the power of microformats to existing version of Firefox.
In a series of posts, Alex Faaborg, a user experience designer for Mozilla, outlines [how microformats work][2], how Firefox might implement them and what it will mean for users. Also see parts [one][3] [two][4] and [three][5].
>Much in the same way that operating systems currently associate particular file types with specific applications, future Web browsers are likely going to associate semantically marked up data you encounter on the Web with specific applications, either on your system or online. This means the contact information you see on a Web site will be associated with your favorite contacts application, events will be associated with your favorite calendar application, locations will be associated with your favorite mapping application, phone numbers will be associated with your favorite VOIP application, etc.
The basic premise of microformats is create the "semantic web" (which should have been on our vaporware list, even though it isn't exactly software) using tools that already exist.
Microformats are not a new language or anything overly complicated, they're merely an agreed upon format for structuring data using the language we already have -- XHTML. By marking up data using a specific structure, outside applications can read and "understand" that data. This in turn means that applications can use that data in meaningful ways, like the ones Faaborg describes above.
Notable sites that support microformats include Flickr which uses it in geotags, Yahoo! Local, which encodes search result with an hCard, and Upcoming.org, with encodes events with hCalendar.
Check out [microformats.org][9] for more background, example usages and handy link generators.
As mentioned above, if you can't wait for Firefox 3, there's an add-on available right now, Operator is not the first microformats add-on for Firefox, you may also want to have a look at [Tails Export][8], which offers some, but not all, of the same features.
If you'd like to keep tabs on or make suggestions for Firefox 3's proposed microformats support, take a [look at the thread][6] on the Google Groups.
It will be a while yet before Firefox 3 is released and the microformats support is not yet set in stone, but there's no doubt that whatever form Mozilla chooses Firefox will yet again trump IE's feature set.
[1]: http://blog.wired.com/monkeybites/2006/09/a_look_at_micro.html "Monkey Bites on microformats"
[2]: http://blog.mozilla.com/faaborg/2006/12/11/microformats-part-0-introduction/ "Introduction to microformats"
[3]: http://blog.mozilla.com/faaborg/2006/12/12/microformats-part-1-structured-data-chaos/ "Microformats can help with the chaos of structured data"
[4]: http://blog.mozilla.com/faaborg/2006/12/13/microformats-part-2-the-fundamental-types/ "Microformats - the fundamental types"
[5]: http://blog.mozilla.com/faaborg/2006/12/16/microformats-part-3-introducing-operator/ "Introducing Operator"
[6]: http://groups.google.com/group/mozilla.dev.apps.firefox/browse_frm/thread/bca5a231d634f87a/4361d223cc01b53f#4361d223cc01b53f "Microformats in Firefox"
[7]: https://addons.mozilla.org/firefox/4106/ "Operator - microformats add-on for Firefox"
[8]: https://addons.mozilla.org/firefox/2240/ "Tails Export"
[9]: http://microformats.org/ "Microformats.org"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/nightly-build.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/nightly-build.txt new file mode 100644 index 0000000..51b6dbb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/nightly-build.txt @@ -0,0 +1 @@ +The Nightly Build, compiling the ones that got away:
* Contrary to what TechCrunch and several other news sites reported earlier today, Wikipedia did not ban the nation of Qatar from accessing the Wikipedia site. [According to a post][1] from Wikipedia founder Jimmy Wales, one IP number of Qatar origin was "temporarily blocked for less than 12 hours... a block of an entire nation would go absolutely against Wikipedia policy."
[1]: http://en.wikipedia.org/wiki/User_talk:82.148.97.69 "Wikipedia denies blocking Qatar"
* Dave Winer of RSS fame claims that not only did he not invent RSS, [RSS wasn't really invented][2], rather "something else happened, something harder than invention, imho -- an activity that we don't have a word for in the English language." Evolved organically?
[2]: http://www.scripting.com/2007/01/02.html#rssWasntInvented "Dave Winer: RSS wasn't Invented"
* Another bizarre outburst from a MSM journalist. Joel Stein of The Los Angeles Times (I'm told that this LATimes thing is apparently printed on paper (!?) and available at "news stands" -- whatever) [doesn't care what you think][3] and doesn't want you to email him. Guess what Digg users are doing by the thousands right now?
[3]: http://www.latimes.com/news/opinion/la-oe-stein2jan02,0,3287162.column?coll=la-opinion-columnists
* Macworld is coming up next week and Apple, master of secrecy and hype, is at it again. A tantalizing new teaser graphic on the company's website [reads][4]: The first 30 years were just the beginning. Welcome to 2007.
[4]: http://www.apple.com/ "Macworld Teaser"
* Reuters is running a story entitled *[Programmers to blame for hard-to-use software][5]* in which "analysts" throw out some gems like this one: "... makes little sense to computer novices accustomed to working with typewriters or pen and paper..." I dare anyone to to name me a business field in which typewriters are still in use.
[5]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyID=2007-01-02T232857Z_01_N22270966_RTRUKOC_0_US-SOFTWARE-PLATT.xml&pageNumber=1&imageid=&cap=&sz=13&WTModLoc=NewsArt-C1-ArticlePage1 "Programmers to blame for hard-to-use software"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/placeblogger.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/placeblogger.jpg Binary files differnew file mode 100644 index 0000000..51122a7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/placeblogger.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/placeblogger.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/placeblogger.txt new file mode 100644 index 0000000..e9607a8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/placeblogger.txt @@ -0,0 +1 @@ +There's nothing like the local news -- daily columns on street potholes, and stories old ladies with newspaper collections to rival the national archives. The local rag where I live is The Daily Pilot, often referred to as The Daily Pile.
But it's 2007 for crying out loud, surely there's a better way to get local news? Well that's the thought behind a new local blog aggregation site, [Placeblogger][1]. Placeblogger ails to help you "discover, browse, and subscribe to local blogs."
Lisa Williams, a local news blogger from Watertown, MA, and creator of Placeblogger [describes][3] placeblogs:
>Placeblogs are sometimes called "hyperlocal sites" because some of them focus on news events and items that cover a particular neighborhood in great detail — and in particular, places that might be too physically small or sparsely populated to attract much traditional media coverage. Because of this, many people have associated them with the term "citizen journalism," or journalism done by non-journalists.
But Placeblogger aims to bring you sites that go beyond just news and include what Williams calls "that part of our lives that isn't news but creates the texture of our daily lives: our commute, where we eat, conversations with our neighbors, the irritations and delights of living in a particular place among particular people."
So far Placeblogger is a little sparse on content, but the site has only been live for two days. If you'd like to suggest a blog for listing on Placeblogger there's a handy form you can use to [submit your favorite local blog][2].
Placeblogger appears to have a fairly liberal definition of what a blog is, the site's top ten list of placeblogs includes the [Gotham Gazette][4] and the [New Haven Independent][5], both of which are considerably more professional than the average blog, but I suppose Placeblogger is entitled to define things however they choose.
For those that just can't get enough of the local goings-on, Placeblogger should help scratch that local news itch.
[1]: http://www.placeblogger.com/ "Placeblogger"
[2]: http://www.placeblogger.com/node/add/content_placeblog "submit a blog to Placeblogger.com"
[3]: http://www.placeblogger.com/whats-a-placeblog "Placeblogger FAQ"
[4]: http://gothamgazette.com/ "Gotham Gazette"
[5]: http://www.newhavenindependent.org/ "New Haven Independent"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/reboot.txt new file mode 100644 index 0000000..5afcbb9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* More bad news for Google: GMail is [vulnerable][1] to a hack which enables malicious websites to hijack your contacts list, including the name, email address and avatar of all your contacts. Google claims to have fixed the flaw, but [apparently it still exists][2] on the Google Notebook and Google Groups server.
[2]: http://tech.cybernetnews.com/2007/01/01/gmail-flaw-can-give-anyone-your-contact-list/ "Cybernetnews on GMail Flaw"
[1]: http://blogs.zdnet.com/Google/?p=434 "ZDNet on GMail exploit"
* The BBC [reports][3] that users will be "driving change in 2007." According to the "tech veterans" interviewed by the BCC, the big trend "among hot web companies will be the 'actualisation of personalisation.'" Actualisation of personalization. Say that ten times with a straight face.
[3]: http://news.bbc.co.uk/2/hi/technology/6198125.stm "BBC new on the future of the web"
* Reuters gets today's optimist award for a story that [claims][4]: "the DRM wall will begin to crumble (in 2007)." The article reports that, among other things, "In 2007, the majors will get the message, and the DRM wall will begin to crumble. Why? Because they'll no longer be able to point to a growing digital marketplace as justification that DRM works."
[4]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-02T134016Z_01_N02295773_RTRUKOC_0_US-DIGITAL.xml&src=rss "Reuters thinks DRM will fade in 2007"
* Ma Bell got rid of the the ill communication? The FCC has [approved][5] the AT&T-BellSouth buyout paving the way for the largest telecommunications takeover in U.S. history.
[5]: http://news.yahoo.com/s/ap/20061230/ap_on_bi_ge/att_bellsouth "AP on AT&T BellSouth buyout"
* What sort of new year would it be without a new worm or virus? Verisign is [reporting][6] a worm delivered via email bearing the subject line "Happy New Year," which also contains an attachment, "postcard.exe." Clicking the attachement will launch the worm.
[6]: http://www.pcworld.idg.com.au/index.php/id%3B738590575&cid=1112375805&ei=2EuaRa6XEcCYHYTrtPUM
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/software-for-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/software-for-logo.jpg Binary files differnew file mode 100644 index 0000000..4735b38 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/software-for-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/tutorial.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/tutorial.txt new file mode 100644 index 0000000..9fcf395 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/tutorial.txt @@ -0,0 +1 @@ +This week's theme for the Tutorial of the day is XHTML. But because that's a pretty broad category, Monkey Bites reader Bluephoenix suggested we specifically focus on tutorials that help you make the transition from HTML to XHTML.
To kick things off we'll start with the [official W3Cschools][2] tutorial on converting your old HTML to XHTML. It may not be the prettiest, nor the best written tutorial on the subject, but it's still worth reading over, particularly the section on how the W3C converted their own site to XHTML.
For something far more readable, there's no better place to start that Jeffrey Zeldman's *[Better Living Through XHTML][4]* over on A List Apart. Zeldman's tutorial gives you plenty of tips for converting your site, outlines some common XHTML "gotchas" to avoid and of course offers tons of reasons why XHTML is better than HTML.
Once you're feeling pretty well versed in XHTML, give the [W3C XHTML quiz][3] a shot, but be warned, there's couple tricky ones in there.
[2]: http://www.w3schools.com/xhtml/xhtml_html.asp "W3C schools HTML to XHTML tutorial"
[3]: http://www.w3schools.com/quiztest/quiztest.asp?qtest=XHTML
[4]: http://alistapart.com/articles/betterliving/ "Better Living Through XHTML"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/wiredblogs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/wiredblogs.jpg Binary files differnew file mode 100644 index 0000000..c724583 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Tues/wiredblogs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/ZZ635B7A38.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/ZZ635B7A38.jpg Binary files differnew file mode 100644 index 0000000..0a06cef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/ZZ635B7A38.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/imagewell-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/imagewell-screen.jpg Binary files differnew file mode 100644 index 0000000..dcb96eb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/imagewell-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/imagewell.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/imagewell.jpg Binary files differnew file mode 100644 index 0000000..3aed051 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/imagewell.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/imagewell.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/imagewell.txt new file mode 100644 index 0000000..928df13 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/imagewell.txt @@ -0,0 +1 @@ +Being that it's Mac Month and all, I thought I'd get around to writing up a little Mac software gem I've been meaning to review for some time -- [Imagewell][1].
The first thing I did when I started writing for Monkey Bites was go hunting for something that would let me quickly resize and save screen grabs since pretty much every post has at least one screen grab. Sure I could do it with Photoshop, but that seemed something akin to swatting a mosquito with a sledgehammer.
Then I found Imagewell, a lightweight image processing program perfect for simple picture manipulations that don't require the bulk of something like Photoshop. Not only is Imagewell capable of the simple resize tasks I need to do, but it can actually take the screen captures as well and even autoloads them into an editing window.
When you open Imagewell you'll see a small window where you can drag and drop your images (you can even drag them from iPhoto and other image programs). Once you have the image you want to work with, Imagewell makes it easy to crop, resize, compress, watermark, add drop shadows, add a border, add text, add labels and more.
Once you have your image looking the way you want it, Imagewell can save it to .jpg, .png or .tiff formats.
Imagewell also offers a variety of export-to-the-web options including the ability to upload straight to a server using FTP. Once you upload your image Imagewell copies the corresponding url to the clipboard making it easy to paste the link into a blog post.
The export features would be perfect if you have FTP access to your blog, which you probably do since not having FTP access would be vaguely insane. Grumble.
ImageWell isn't going to replace Photoshop, but it’s a great tool for lightweight image editing. Imagewell is free, although for a small fee you can unlock some nice [additional options and features][2].
[1]: http://xtralean.com/IWOverview.html "Imagewell, the Free and Lean Image Editor"
[2]: http://xtralean.com/IWXtras.html "Imagewell paid features"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/itunes-lawsuit.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/itunes-lawsuit.txt new file mode 100644 index 0000000..48ef7a8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/itunes-lawsuit.txt @@ -0,0 +1 @@ +Apple computer is [facing a new lawsuit][1] in the U.S. which claims that tying the iTunes Store to the iPod violates anti-trust laws. The suit was filed by a user, Melanie Tucker, but the case trying to get class action status.
The core of the claim is that Apple violates anti-trust laws by refusing to allow music sold on the iTunes Store to play with other manufacturer's MP3 devices. The lawsuit also alleges that Apple does not make it clear to customers that files downloaded from the iTunes store will only work with an iPod.
Before someone blasts me in the comments, let's be clear, yes you can strip the DRM and convert iTunes Store bought music to MP3, but that's a hack and not something Apple supports.
Apple tried to get the lawsuit dismissed back in November but a judge rejected that request on December 20.
Apple already faces a [similar lawsuit][2] filed in France and several Scandinavian countries are [reportedly][3] preparing similar cases.
What I'd like to know is how much of this alleged monopoly is a result of Apple's decisions and how much of it comes from restrictions and DRM requirements that the recording industry wanted in place?
Obviously from a legal standpoint, who made things the way they are doesn't really matter, but if the iTunes Music store sold DRM-free MP3s this lawsuit would disappear and the world would be a happier place.
Bad Apple, no doughnut.
[2]: http://www.wired.com/news/politics/0,70436-0.html "French Law Seeks Interoperability"
[1]: http://www.infoworld.com/article/07/01/02/HNapplelawsuit_1.html "Class-action suit alleges that Apple violates antitrust laws"
[3]: http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9002146&intsrc=article_more_side "Apple responds to Nordic iTunes complaints"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/itunes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/itunes.jpg Binary files differnew file mode 100644 index 0000000..f8ab19d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/itunes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/reboot.txt new file mode 100644 index 0000000..caff742 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot, now with fat-free cream cheese:
* Wifi is like sand -- it gets everywhere. Wired has a nice [rundown on beaches][2] offering wifi access. My dream of global wifi is coming together grain by grain.
[2]: http://www.wired.com/news/technology/0,72371-0.html?tw=rss.index "Where to catch some Wi-Fi waves"
* The Washington Research Foundation (which markets tech produced by the University of Washington) is [suing Nokia, Samsung and Panasonic][3] for violating a patent for Bluetooth technology. The suit seeks damages from the mobile phone maker for using a radio frequency technology without paying royalties.
[3]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2007-01-03T153017Z_01_L03691045_RTRUKOC_0_US-BLUETOOTH-PATENT-INFRINGEMENT.xml&src=rss "Nokia and others sued over bluetooth"
* The Dutch have [banned Segways from public roads][4]. Frankly it's just as well, you Segway people have no idea how ridiculous you look on those things.
[4]: http://www.mercurynews.com/mld/mercurynews/business/technology/16367443.htm "Dutch ban Segway"
* Here at Monkey Bites we've decided that January is [Mac Month][6]. Other folks are more specific and have declared January the [Month Of Apple Bugs][5] (MOAB). MOAB's mission is the highlight flaws in Apple's OS X operating system and other Mac software. Before the fanboys freak (probably too late), remember that finding bugs is good, it leads to fixing bugs.
[5]: http://projects.info-pull.com/moab/ "The Month of Apple Bugs"
[6]: http://blog.wired.com/monkeybites/2007/01/mac_month_the_c.html "Mac Month at Monkey Bites"
* [Makethemove.net][1] is a new site designed to help those contemplating Linux as an alternative to Windows and Mac operating systems. The site aims to present Linux and open source software as viable alternatives to the system on your computer.
[1]: http://makethemove.net/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/tutorial.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/tutorial.txt new file mode 100644 index 0000000..43d1237 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.01.05/Wed/tutorial.txt @@ -0,0 +1 @@ +Continuing this week's Tutorial 'o the Day theme of XHTML, today's focus is semantics.
Semantics refers to the meaning of an element and how that meaning describes the content it contains. Probably the easiest example is an html list. The following two snippets of code can be displayed identically in a browser:
<pre><code><p>list item <br />
list item </p>
</code></pre>
<pre><code>
<ul>
<li>list item</li>
<li>list item</li>
</ul>
</code></pre>
While to the human eye these may look the same, the later actually conveys information about what it is through the markup --i.e. it's a list.
While good semantics aren't necessarily a feature of XHTML (they're important even in HTML) as long as you're re-coding you may as well start using semantically meaningful markup.
If you'd like to see some bad semantic markup just view source on this page. Note how the post title is encoded:
<span class="title">Tutorial 'O The Day: XHTML</span><br>
Because we can use visual clues like font size and typeface to help us, most humans can find the title fairly easily, but what if you're a silly robot, like a search engine spider? You'd have no clue that this line of code is the title of the post.
Why should you care?
Do you like your pages to rank high in search engine indexes? Well, then you should care because robots rely on tags to tell them what is the main focus of the page. In the case of the Wired blog templates, our content is semantically no different than the ads being served with it.
That, as my friend likes to say, = bad.
So what should the post title be wrapped in? Well something like <code><h1>Title</h1></code> would be one option.
To get up to speed on the usefulness of semantically meaningful XHTML, check out the article, [*Semantics, HTML, XHTML, and Structure*][2] over at Brainstorms & Raves, which gives a through rundown of how, when and why to use various (X)HTML tags. Also a good read: Molly Holzschlag's [tutorial][1] on informit.com.
And since we're talking about semantics let me clarify one point, while you can and should try to write semantically meaningful XHTML, XHTML is not *technically* a semantic language. Because it isn't a true semantic language, there's lots of gray areas where several tags may both be legitimate choices.
Web designer and author Dan Cederholm ran a [series of articles][3] a while back that attempt to parse out the gray, but as the the comments on his site demonstrate, some things will always be debatable.
[3]: http://www.simplebits.com/notebook/simplequiz/index.html "SimpleQuiz Archives"
[2]: http://brainstormsandraves.com/articles/semantics/structure/ "Semantics, HTML, XHTML, and Structure"
[1]: http://www.informit.com/articles/printerfriendly.asp?p=369225&rl=1 "The Meaning of Semantics (Take I)"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/cat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/cat.jpg Binary files differnew file mode 100644 index 0000000..11eeb93 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/cat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/dc-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/dc-icon.jpg Binary files differnew file mode 100644 index 0000000..e04b025 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/dc-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/dc-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/dc-screen.jpg Binary files differnew file mode 100644 index 0000000..d875eb0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/dc-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/django.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/django.txt new file mode 100644 index 0000000..2c35f83 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/django.txt @@ -0,0 +1 @@ +It's the end of our Django tutorial round-up and as such I thought we'd have a look at the new work-in-progress [Django book][1]. Set to be released in print form later this year by Apress, the book is currently available online right now.
The Django book website (built in Django of course) has been releasing two chapters a week for the last couple of months, currently there are 18 chapters available with more to be announced.
One of the coolest things about the "beta" of the book is the AJAX inline comments that people can leave for the authors. Be sure to click on the little comment bubbles where fellow Django users have expounded and clarified points covered in the main text. [Also, rumor has it that the scripts behind that comment system will be available at some point.]
And finally because I didn't have time to cover as much as I wanted to this week here's a random link list of helpful Django tutorials:
[1]: http://www.djangobook.com/ "The Django book"
* Example models demonstrating [various parts of the model syntax][2].
[2]: http://www.djangoproject.com/documentation/models/ "Model Examples"
* The Django community is big on open source, and there's an [extensive code repository][5] available.
[5]: http://code.djangoproject.com/ "Django Code repository"
* Sample Project for [integrating Flickr][3] into your Django app.
[3]: http://code.djangoproject.org/wiki/FlickrIntegration "Flickr Integration with Django"
* [FileBrowser][4] is a wonderful file uploading app you can integrate into the Django Admin. It offers nearly all the functionality of an FTP client.
[4]: http://trac.dedhost-sil-076.sil.at/trac/filebrowser/ "Django FileBrowser"
* Tips for [enhancing][5] Django's built-in FreeComment functionality
[5]: http://www.b-list.org/weblog/2006/07/16/django-tips-hacking-freecomment "B-List: Hacking FreeComment"
* How to [run a Django cron job][6].
[6]: http://slowchop.com/2006/09/17/creating-a-django-cron-job/ "How to run a Django cron job"
* A great tutorial from Wilson Minor (who designed the Admin interface) on [how to create an online portfolio][7] in Django using only generic views.
[7]: http://www.wilsonminer.com/posts/2006/may/10/are-you-generic/ "Are you generic?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/double command.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/double command.txt new file mode 100644 index 0000000..74ca6c0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/double command.txt @@ -0,0 +1 @@ +Today's Mac software nugget is a kernel extension named [Double Command][1]. Originally intended as a way for Powerbook users to remap the Enter key as a second Command key, Double Command evolved over time to become a full keyboard remapping tool.
One of the common complaints from "switchers" is that Mac keyboards swap the position of the alt and command keys from what Windows users are familar with (they also name them differently, instead of Alt and Windows, Mac calls "Alt" "Option" and the "Windows" key becomes "Apple/Command").
If you'd like to get your familiar Windows key mapping back or if you'd like to use a Windows keyboard with your Mac, Double Command is the ticket.
Double Command installs as a Preference Pane and allows you to remap keys and save the settings on a user or system-wide basis.
Once you have the Double Command Preference Pane installed you can remap keys according to the rules you see in the screenshot below. Personally I just remap Shift-Backspace as a forward delete key, a functionality I got used to because BBEdit allows you to remap it within the application.
If you happen to be one of those people with an [aversion to the Caps Lock key][3] you can map it to an extra Control key.
If you're feeling funky you can even hack Double Command and remap additional keys. As a poster in the [Double Command forum points out][2], the replacement of keys is handled by a file called Substitute.cpp, and all the key code definitions are in a file named MBHIDHack.h. You'll need to look up the key codes on your own and I can't vouch for the success of this method since I've never tried it.
Double Command is free and open source under v2 of the GPL.
[1]: http://doublecommand.sourceforge.net/ "Double Command"
[2]: http://sourceforge.net/forum/forum.php?thread_id=1594710&forum_id=221238 "Remapping other keys"
[3]: http://www.wired.com/news/technology/0,71606-0.html?tw=rss.index "Death to Caps Lock"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/elsewhere.txt new file mode 100644 index 0000000..45ac515 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/elsewhere.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Elsewhere on Wired:
* Holy Crap. [When Zombie Ostriches Attack][1] in Table of Malcontents.
* Bodyhack has a look at the [current state of cryonic freezing][2]. Apparently for only $28,000 you can turn your corpse into the proverbial ice cube.
* Wired Science bring news of Canadian study that claims multi-lingual skills might help [delay the onset of Alzheimer's][3]. Do computer languages count?
* It's tough to get excited about a refrigerator, but Gadget Lab brings us a concept "[Tree House][4]" fridge that'll knock your socks off.
* 27B Stroke 6 has [The Only European Data Privacy Story You Ever Need To Read][5]. If only I could reclaim all the time I wasted reading those other stories.
* And finally, because we don't want to leave you on paranoid note freaking out about Euro privacy issues, remember no matter what happens: [don't forget the demon][6].
[1]: http://blog.wired.com/tableofmalcontents/2007/01/morning_thing_w.html "Morning Thing: When Zombie Ostriches Attack"
[2]: http://blog.wired.com/biotech/2007/01/preserve_your_b.html "Preserve Your Body Forever: Cheap!"
[3]: http://blog.wired.com/wiredscience/2007/01/language_brains.html "Language, Brains, and Alzheimers"
[4]: http://blog.wired.com/gadgets/2007/01/the_fridge_of_t.html "The Fridge of the Future"
[5]: http://blog.wired.com/27bstroke6/2007/01/the_only_europe.html "The Only European Data Privacy Story You Ever Need To Read"
[6]: http://blog.wired.com/tableofmalcontents/2007/01/foresides_botto.html "Foreside's Bottom: the Demon Trainset"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/reboot.txt new file mode 100644 index 0000000..f707089 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot wants to go to the Bahamas:
* The New York Stock Exchange will be [testing a program][1] later this year to give real-time stock quotes across the internet (pending SEC approval). Google has already said they will [offer the service for free][2].
[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-12T073034Z_01_N12186444_RTRUKOC_0_US-NYSE-INTERNET.xml&src=rss "NYSE plans test of real-time Web quotes"
[2]: http://googleblog.blogspot.com/2007/01/real-time-quotes-for-free.html "Real-time quotes for free"
* AOL is ditching its AOL Music Now service in favor of Napster. The two companies [announced today][3] that AOL signed Napster as its exclusive online music subscription service. Napster was widely rumored to be considering itself on the auction block and may still be headed for some sort of sale.
[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-12T152632Z_01_N12173561_RTRUKOC_0_US-NAPSTER-AOL.xml&src=rss "AOL signs Napster as music subscription service"
* Earlier this week at the Macworld Conference and Expo, Steve Jobs announced that the iTunes Store would be offering movie downloads from Paramount studios, and now it seems that 71 narrative, documentary and animation shorts from the Sundance Film Festival are also [slated to be distributed through iTunes][4].
[4]: http://news.yahoo.com/s/ap/20070112/ap_on_en_mo/apple_sundance "iTunes to sell short films from Sundance"
* The déjà vu of HD-DVD vs BluRay just keeps getting stronger. According to many, the porn industry's preference for VHS was one of the tipping points in its fight against Betamax and now comes word that [the porn industry prefers HD-DVD][5] to BluRay. But will it give HD-DVD the critical mass it needs to overcome BluRay?
[5]: http://www.tgdaily.com/2007/01/11/ces2007_hddvd_blu_ray/ "The porn industry says HD DVD"
* Notorious Swedish group The Pirate Bay is [seeking to buy][8] the [micronation of Sealand][6] and use it as a copyright-free haven. I think the idea is genius, if implausible -- straight out of a [Neal Stephenson novel][7]. But what's up with pirates buying stuff? Shouldn't they just clench their sabers between their teeth, grab the nearest halyard and attack?
[6]: http://www.sealandgov.org/ "The Principality Of Sealand"
[7]: http://www.cryptonomicon.com/ "Cryptonomicon"
[8]: http://buysealand.com/ "Buy Sealand"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/safari-windows.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/safari-windows.txt new file mode 100644 index 0000000..09b42f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/safari-windows.txt @@ -0,0 +1 @@ +Is Safari coming to windows? There have been rumors floating around for a while that Apple might be porting its Cocoa language to the Windows platform which would allow WebKit, the engine behind Safari, to run natively in Windows. There's even some [fake screenshots][2] of what Safari on Windows might look like.
Now it seems that the Mozilla Foundation thinks a Windows Safari port is a possibility. Buried in yesterday's tentative Firefox 3 [wiki roadmap][1] document is this line: "WebKit may be ported to Windows."
With the announcement of the iPhone the possibility of a Window's WebKit port does seem like it would make sense. After all, it was the popularity of the iPod that brought iTunes to Windows.
A similar argument could be made that Apple is going to need to port aspects of Cocoa to get iPhone to work with Windows. Whether or not that would include WebKit is debatable, but given the iPhone's reliance on widgets, WebKit seems like a good place to start.
Some people think Apple would be better off not porting its software to Windows and keeping the "Mac experience" unique to their own platform, but as Apple becomes less a computer manufacturer and more a device manufacturer it might make more sense to strive for interoperability.
However, the future seems to pointing toward openness and platform agnosticism, not platform dependancies. As one of the more popular topics in Wired's [call for tech trends][3] reads: "It's more important to capture mind-share by spreading your vision far and wide than it is to hold onto it while you try to outdo rivals."
Will Apple embrace this trend and bring more software to the Windows platform?
[1]: http://wiki.mozilla.org/Firefox3/Firefox_Requirements
[2]: http://img487.imageshack.us/my.php?image=safwins5om.jpg "Fake (probaby) Safari on Windows Screenshot"
[3]: http://blog.wired.com/business/ "What Are The Most Important Biz/Tech Trends Of 2007?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/safari.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/safari.jpg Binary files differnew file mode 100644 index 0000000..8e3ac21 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/safari.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/upside-down-internet.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/upside-down-internet.jpg Binary files differnew file mode 100644 index 0000000..8bb151d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/upside-down-internet.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/upside-down.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/upside-down.txt new file mode 100644 index 0000000..f849328 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Fri/upside-down.txt @@ -0,0 +1 @@ +If you live in a major metropolitan area and you have a wireless router chances are someone at some point has leeched your signal. If that bothers you, you could encrypt the signal, you could block unknown MAC addresses, or you could just mess with people's heads.
Pete Stevens was faced with these choices and opted for number three. Using a bit of networking know-how he split his signal into two networks, one trusted and one untrusted. He then messed with various aspects of the untrusted network including rerouting all traffic to [Kittenwar][2] and, my personal favorite, [the upside down internet][1].
Basically the upside down internet involves using iptables to run all untrusted traffic through a proxy server. The proxy server then downloads all the images from a page, inverts them and serves them out of its local webserver.
The results look like the screenshot below from Pete's site. He has the code available if you'd like to do something similar.
[Thanks to the NoEnd List for bring this to my attention.]
[1]: http://www.ex-parrot.com/~pete/upside-down-ternet.html "Upside-Down-Ternet"
[2]: http://kittenwar.com/ "Kittenwar"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/ZZ17D2400F.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/ZZ17D2400F.jpg Binary files differnew file mode 100644 index 0000000..d2991c3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/ZZ17D2400F.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/ZZ6FFDC734.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/ZZ6FFDC734.jpg Binary files differnew file mode 100644 index 0000000..dee6cbc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/ZZ6FFDC734.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/django-tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/django-tut.txt new file mode 100644 index 0000000..9fdf5a5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/django-tut.txt @@ -0,0 +1 @@ +This week's theme for tutorial of the day is [Django][1], an open source, high-level Python web framework whose tag line -- The web framework for perfectionists with deadlines -- nicely sums up its goals.
Perhaps the best comparison for Django is Ruby on Rails, which is also a web application framework written, regrettably, in Ruby, whereas Django is, thankfully, written in Python. Django pushes what's known as the DRY principle, "Don't Repeat Yourself." As such most aspects of Django are loosely coupled and extremely easy to reuse.
So what is Django? Is it a CMS? Is it a blogging tool? Is it an early twentieth century jazz guitarist? No. No. And yes, but that's not important right now.
Django is a framework built on Python that you can use to build a Content Management System or a blogging tool, but it is not limited to that. In fact Django reminds me a bit of the character in Airplane who always answers the "what do you make of that?" question literally... *Why, I can make a hat or a brooch or a pterodactyl...*
You'd be hard pressed to find something in the world of web development that Django can't make. In my own work I've made a blogging CMS, a restaurant menu application, an online store and resort rental reservation system using Django.
So where to get started? Why the official Django website of course. There's a nice [overview][2], an [installation guide][3] and a series of "hello world" type [tutorials][4].
Perhaps the most difficult thing about using Django is getting it installed. While you can run Django with Apache 1.3 and FCGI, I don't recommend it for production work. The preferred method is to use Apache 2 with mod_python, but unfortunately not many web hosts offer that setup for "shared accounts."
If you don't want to pony up for a dedicated server, the Django Wiki maintains a list of [Django friendly hosts][5]. If you're looking to set up a local development server it's not too difficult to do on Mac OS X. Antonio Cavedoni has a [nice tutorial][6] to get you started. (Regrettably I don't know of anything similar for Windows users, but perhaps someone can leave some suggestions in the comments).
I should point out that for simple testing purposes Django includes a built in server which you can use to get started.
Later this week I'll post some links to tutorials that help you build more sophisticated applications using Django.
[1]: http://www.djangoproject.com/ "Django | The Web framework for perfectionists with deadlines"
[2]: http://www.djangoproject.com/documentation/overview/ "Django Overview"
[3]: http://www.djangoproject.com/documentation/install/ "Installation Guide"
[4]: http://www.djangoproject.com/documentation/tutorial1/ "Writing your first Django application"
[5]: http://code.djangoproject.com/wiki/DjangoFriendlyWebHosts "Django Friendly Webhosts"
[6]: http://cavedoni.com/2005/django-osx "Installing Django on OS X"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/elsewhere.txt new file mode 100644 index 0000000..cb379a5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/elsewhere.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Elsewhere on Wired Blogs:
* The big news today is on Gadget Lab where you'll [find all the latest goodies][1] from the ongoing CES show in Las Vegas.
[1]: http://blog.wired.com/gadgets/ "Gadget Lab"
* Leander Kahney over at Cult of Mac is [predicting a riot][2] at tomorrow's Macworld keynote address. "Expectations for Steve Jobs' keynote speech Tuesday are so unreasonably high that anything less than an iPod-cum-videophone-miniPC that downloads movies wirelessly from the net and projects them on your living room wall with 7.1 surround sound is going to disappoint."
[2]: http://blog.wired.com/cultofmac/2007/01/macworlds_a_rio.html "Macworld's a Riot"
* Listening Post's Eliot Van Buskirk has a Wired.com article in which he [lists the seven reasons][3] why the MP3 format is the future of the music industry.
[3]: http://www.wired.com/news/columns/0,72412-0.html? "Who's Killing MP3 and ITunes?"
* 27B Stroke 6 [dreams of ACLU and EFF ads][4] on the bottom of airport screening trays (that would be "divestiture bins" for those in the know).
[4]: http://blog.wired.com/27bstroke6/2007/01/the_transportat.html "Screening Bins to Get ACLU ads?"
* Over at Bodyhack, Kristen Philipkoski [wonders][5] if we might need some federal legislation for genetic privacy.
[5]: http://blog.wired.com/biotech/2007/01/francis_collins.html "Francis Collins: U.S. Needs Genetic Privacy Protection"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/nightly.txt new file mode 100644 index 0000000..7a4fce2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/nightly.txt @@ -0,0 +1 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build, compiling the day's headlines:
* Last week I mentioned the Devorak keyboard layout, but now I've discovered yet another alternative to QWERTY -- the [Colemak layout][3]. I agree with the commenter at [Metafilter][4], where I stumbled across the Colemak: "I predict that in 800 years time when all humans live as .hum files running on virtual computers in postbiological cyberspace, our virtual keyboards will still use the QWERTY layout." Old habits die hard.
[3]: http://www.metafilter.com/mefi/57599 "Like Dorvak, only better"
[4]: http://colemak.com/ "Colemak keyboard layout"
* From the Pew Internet Project & American Life Project's [latest research][2]: "More than half (55%) of all of online American youths ages 12-17 use online social networking sites." People get paid to tell us that?
[2]: http://www.pewinternet.org/press_release.asp?r=134 "55% of online teens use social networks"
* Macworld: The Prequel. Today there's too much hype, too many predictions and too much positive press, [remember when things really sucked][1]?
[1]: http://www.wired.com/wired/archive/5.06/apple.html "Wired 1997: 101 Ways to Save Apple"
* Second Life is now [open source][5].
[5]: http://money.cnn.com/2007/01/07/technology/secondlife.fortune/index.htm?postversion=2007010807 "CNN: Second Life to go open source"
* Like porn spam, the [idea of a .xxx domain suffix][6] for porn websites just doesn't seem to die.
[6]: http://news.bbc.co.uk/2/hi/technology/6240725.stm "BBC: Proposal for porn domain revived"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/nisus-pro.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/nisus-pro.jpg Binary files differnew file mode 100644 index 0000000..e63f89e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/nisus-pro.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/nisus.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/nisus.txt new file mode 100644 index 0000000..7d88b11 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/nisus.txt @@ -0,0 +1 @@ +Macworld isn't just about Apple announcements, plenty of third party software debuts at the annual conference as well. Nisus, long-time Mac developers and makers of Nisus Writer Express, just [announced a new version of Writer][1], dubbed Pro.
I was a big fan of Nisus Writer back in the OS 9 days, but Nisus Writer Express just never grabbed me.
The new Pro version promises to bring back some more of the layout features that the old classic version had and introduces some new features as well including support for Table of Contents, Indexing, Bookmarks, Widow and Orphan control, Cross References, Line Numbering, and Text Wrap around images.
The pro version also promises support for Word files, though the announcement lists .doc, not the new .docx format. The default file format for Writer Pro is, like Writer Express, .rtf.
The software isn't publicly available yet, but Nisus says a beta test version will be arriving soon and the final version is expected in early spring. We'll be sure to give you the full rundown once it's available.
[1]: http://www.nisus.com/pro/ "Nisus Writer Pro"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/office-doc-converters.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/office-doc-converters.txt new file mode 100644 index 0000000..1168410 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/office-doc-converters.txt @@ -0,0 +1 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/office2007_1.jpg" title="Office2007_1" alt="Office2007_1" style="margin: 0px 0px 5px 5px; float: right;" />Last week I had an article on Wired.com about [Microsoft's new Open Office XML document format][4], which will debut with Office 2007 later this month. In the article I wrote that the new format is not backwards compatible with previous version of the Office suite.
While this is true, a number of savvy readers have written to tell me that there is an [upgrade pack available][1] for older versions of Office which will allow them to interact with the new OOXML formatted documents.
Microsoft's own documentation is a little vague on what you can do with the converters once they're installed, some of the documentation says, "read Open Office XML files" and other in other places the tech notes say read and write. Hopefully the later case is the accurate one.
One thing I haven't seen is whether or not the converters allow you to create new documents in the OOXML format or whether this is simply a way for legacy Office users to interact with documents they might receive from Office 2007 users.
The Mac Business Unit has [posted converters][2] for Office Mac users and there's also a [rumor][3] that Apple's next OS X, Leopard, will have native support for Open Office XML.
I'm currently downloading the Office 2007 demo so I can create some OOXML documents and play around with them in older versions of Office, but in the mean time if you have any experience let your fellow Monkey Bites readers know in the comments below.
[1]: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=941B3470-3AE9-4AEE-8F43-C6BB74CD1466 "Microsoft Office Compatibility Pack for Word Excel and Powerpoint 2007 File Formats"
[2]: http://blogs.msdn.com/macmojo/archive/2006/12/19/and-we-re-back.aspx "Mac BU blog on Office 2007 compatibility"
[3]: http://blog.wired.com/cultofmac/2006/12/rumor_leopard_t.html "Cult of Mac: Rumor: Leopard to Support Office 2007 Files"
[4]: http://www.wired.com/news/technology/software/0,72403-0.html?tw=wn_technology_5 "MS Fights to Own Your Office Docs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/reboot.txt new file mode 100644 index 0000000..96fb692 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning Reboot has a nasty headcold, but soldiers on:
* The new version of Blogger now supports using a custom domain for serving your blog. From the Blogger Buzz [announcement][1]: "If you already own a domain named, say, mysite.com and want your blog to be served at that address instead of at a blogspot.com address, we can host your blog on that domain for you — for free."
[1]: http://buzz.blogger.com/2007/01/blogger-custom-domains.html "Blogger supports custom domains"
* Over at CES, Microsoft and Ford [announced an in-car communication and entertainment system][2] which will be available starting later this year. Check out the [Gadget Lab][3] blog to stay abreast of all the CES happenings.
[2]: http://seattlepi.nwsource.com/business/298729_msft07.html "Microsoft and Ford announce deal"
[3]: http://blog.wired.com/gadgets/ "Wired's Gadget Lab"
* PC World takes one for the team. Editors at PC World signed up for 31 different online services and then tried to cancel them. They then wrote up the [resulting hassles][4] so you can avoid them.
[4]: http://www.pcworld.com/printable/article/id,128206/printable.html "Just Cancel the @#%$* Account!"
* Yahoo is [rebuilding Yahoo Messenger][5] specifically for Windows Vista. The new software will reportedly be released as a public beta in Q2.
[5]: http://news.com.com/2100-1032_3-6147793.html?part=rss&tag=2547-1_3-0-20&subj=news "New Yahoo Messenger Previewed at CES"
* And finally, my personal favorite headline of the day: "[NASA found life on Mars -- and killed it][6]."
[6]: http://www.cnn.com/2007/TECH/01/07/mars.life.ap/index.html "CNN: NASA found life on Mars -- and killed it"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/sling.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/sling.txt new file mode 100644 index 0000000..84b88f1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/sling.txt @@ -0,0 +1 @@ +Sling Media, the folks that brought you the SlingBox, which we've [looked at before][3], have just announced a new product called SlingCatcher that reverses the SlingBox concept to [bring internet video to your television][1].
I've never used a SlingBox in part because I've never wanted to get things off my TV, I want to get things *on* my TV. The new SlingCatcher does exactly that, it moves content from your PC to your television.
The software bundled with SlingCatcher, dubbed SlingProjector, enables you to wirelessly project your PC's content to your TV. Anything that you can watch on your PC, whether it's YouTube movies or content from the soon-to-be-public Venice Project, can be sent to your TV via SlingProjector.
Along with SlingProjector, the SlingCatcher also features a piece of software called the "SlingPlayer for TV" which allows you to send content from one TV to another without the need for a PC or additional boxes from the cable company.
The appeal for hi-res content like feature films or television shows is obvious, but how is highly compressed video from sites like YouTube going to look on a high-def Plasma or LCD television? So far Sling hasn't given any details on how the software will handle the potential resolution problems.
And it's possible no one will care. According to a Forrester Research study, 80 percent of viewers are uninterested in buying a device to let Internet videos to be viewed on TV sets.
The new Sling device also faces some competition from Apple who are expected to give more details on the "iTV" offering at tomorrow's MacWorld expo.
SlingCatcher will be available "by the middle of this year" and SlingMedia says the price will be under $200.
[Also see Gadget Lab's [coverage][2] of Sling's announcement]
[1]: http://yahoo.reuters.com/news/articlehybrid.aspx?type=comktNews&storyID=urn:newsml:reuters.com:20070108:MTFH74380_2007-01-08_03-00-09_N07305248&pageNumber=1&imageid=&cap=&sz=13&WTModLoc=HybArt-C1-ArticlePage1 "Sling Media to link PCs to TVs"
[2]: http://blog.wired.com/gadgets/2007/01/sling_extends_r.html "Gadget Lab: Sling Extends Reach"
[3]: http://blog.wired.com/monkeybites/2006/10/slingplayer_for.html "Monkey Bites on SlingBox"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/text-expander.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/text-expander.jpg Binary files differnew file mode 100644 index 0000000..f5c4338 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/text-expander.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/text-expander2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/text-expander2.jpg Binary files differnew file mode 100644 index 0000000..6b48c6f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/text-expander2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/textExpander.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/textExpander.txt new file mode 100644 index 0000000..d2164e0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Mon/textExpander.txt @@ -0,0 +1 @@ +[TextExpander][1] is a handy little app from Smile On My Mac that once you use, you'll wonder how you did without it.
TextExpander is a preference pane and to use it you'll need to enable the Assistive Devices support (also in the preferences under Universal Access). Once installed, TextExpander runs in the background with a fairly small RAM footprint (currently on my Macbook it's using 12 MB).
I'm a big fan of applications that do one thing and do it well, which is exactly the goal of TextExpander whose "one thing" is replacing text you type with other text (or images). The concept is simple, take chunks of text you type on a regular basis, the canonical example being email signatures, and create an abbreviation. Now when you type the abbreviation TextExpander replaces it with the longer text.
For instance, every morning when I post the reboot I need to embed an image using an <code><img /></code> tag. Typing out the full tag with all the attributes every time would be a pain, so I created an abbreviation in TextExpander and now I simply type my abbreviation, <code>anykey.</code>, and TextExpander jumps in a replaces that with the img tag code.
There's a million ways you could use TextExpander, for instance (from the website):
* Insert standard greetings, text fragments, and signatures — including formatted text and pictures.
* Insert the current date and time in any format you prefer.
* Use editor-independent code templates and have Textexpander position the cursor just where it needs to be.
* Type special characters without having to launch any special characters palette.
* Have TextExpander correct typos automatically.
The last item in that list is what got me addicted to TextExpander. The good folks at Smile On My Mac have [created a nice file full of common typos][2] that you can download and use with TextExpander. Say goodbye to "teh" when you meant "the" and other fat-fingered-typist errors.
My one gripe with TextExpander is that whenever it replaces text that text also gets copied to the clipboard potentially replacing things you might be waiting to paste somewhere else. I use [Butler][3] which includes a multiple entry clipboard so I can always get my text back, but it's annoying nonetheless and something to keep in mind when you evaluate TextExpander.
While I love TextExpander I'll be the first to admit that $29.95 is a bit pricey, but it's on par with other offerings in the field -- most notably [TypeIt4Me][4], which offers vary similar features and costs $27.
[1]: http://www.smileonmymac.com/textexpander/ "TextExpander"
[2]: http://www.smileonmymac.com/textexpander/autocorrect.html "TextExpander autocorrect file"
[3]: http://www.petermaurer.de/nasi.php?section=butler "Butler"
[4]: http://www.typeit4me.com/ "TypeIt4Me"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/FotoMagico.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/FotoMagico.txt new file mode 100644 index 0000000..8c5ea7c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/FotoMagico.txt @@ -0,0 +1 @@ +I have dim memories of my parents inflicting slideshows on me and their friends back in the, well, back when slide projectors were the rage. Technology may have leaped forward in terms of presentation medium, but content hasn't necessarily improved. As Ken Burns demonstrated, it's neither the quality of the photos, nor the special effects used that make a slideshow interesting, it's the story your slideshow tells that makes it interesting.
To that end today's Mac software gem is [FotoMagico][2] from Boinx Software which is designed to help you transform a slideshow from boring monotony to something people actually want to see.
FotoMagico is a slideshow app that goes far beyond the limited offerings of something like iPhoto to help you create slideshows your friends might actually sit through.
Here's a quick rundown of the main features:
* Integrates with iLife - use photos from iPhoto and music from iTunes. As of version 1.8 FotoMagico also offers Aperture integration.
* Supports most file formats, everything that QuickTime can read.
* 12 transition methods
* Synchronize slides with music (including your own compositions via GarageBand.
* "Randomize Pan & Zoom" -- for those that want to get things done quickly.
* Add titles to each photo
* Export your slideshow to QuickTime.
* Burn your slideshow to DVD or CD.
* Post your slideshow to your webpage.
The process itself is simple, a main editing panel is flanked by two side panels, the right hand panel has three tabs, one for your iPhoto or Aperture libraries (or plain folders if you use another organizational tool), one for your music via iTunes and one for editing and adding features to each slide. The bottom panel is for organizing your photos (it looks like a more refined version of the top-panel slideshow editor in iPhoto)
To get started all you need to do is call up your photos, drag them to bottom pane, arrange them in the order you want and start adding your titles, effects, transitions, music and more. If you're feeling lazy, just select a photo and head to Options >> Randomize Motion.
I was able to successfully make a passable slide showing using ten images in just a few minutes. A little more time and I could have made something worth posting.
Adding audio is a snap, just click the audio tab and browse through your iTunes library to find the perfect background music and drag it onto your slideshow. You can then edit the audio transitions, fade from one song to another and add markers or fade music based on photo transitions, time and more.
Once you've previewed your slideshow and are happy with the results, you can export it as a Quicktime movie, burn it to DVD or even stash it on your iPod.
FotoMagico is a universal binary and was quite snappy on my Macbook.
At $79 FotoMagico isn't cheap, but if you're serious about showing off your photos to friends, the results are worth the price tag. There's also a [five day demo][2] available if you'd like to try before you buy.
[1]: http://www.fotomagico.com/ "FotoMagico"
[2]: http://www.fotomagico.com/demo/ "FotoMagico Demo"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/ZZ7F54D756.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/ZZ7F54D756.jpg Binary files differnew file mode 100644 index 0000000..f7688f1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/ZZ7F54D756.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/django-php.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/django-php.txt new file mode 100644 index 0000000..ee4c06a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/django-php.txt @@ -0,0 +1 @@ +Perhaps the two greatest things about Django are its speed and the auto-generated admin interface. Since I didn't get a chance to post a tutorial yesterday, today's will be a two-parter.
For the most part Django's speed is just there and it's lightening fast, but there are still some things you can do to improve performance. Django offers four levels of caching via what Django calls Middleware.
Middleware is just a framework of "hooks" that tie into Django's request/response processing. In terms of speed and optimization the Middleware you'd want to look at is the [CacheMiddleware][1]. The actual cache can use any number of systems from the popular [memcached][2] to Django's own cache techniques.
For more information have a look at the [official cache documentation][3].
The second half of this tutorial round-up involves the Django admin interface. Whenever you create a model in Django, Django maps your model to a database and creates all the necessary tables.
Since handling the code necessary create, read, update and delete (CRUD) functionality to get data in and out of your application is a repetitive task, Django offers an automatically generated Admin interface.
All you need to do is enable it via your settings.py file and include the appropriate urls in the urls.py for your project. For more information and some screenshots head over to the [second tutorial on the Django site][4].
But what if you're on a shared host with Apache 1.3 and FCGI? What if your existing shared host provider is isn't capable of a high load site written in Django? Well here's a thought from Jeff Croft -- you could [still use Django for the back-end][5].
Croft outlines how to go about setting up all your sites CRUD functionality via Django and then use another framework or language to handle the front end display (in this case PHP).
Combine that with Django's built in [inspectdb][6] functionality and you could even upgrade an existing project to give it a nice Django back-end.
[2]: http://danga.com/memcached/ "memchached"
[1]: http://www.djangoproject.com/documentation/middleware/#django-middleware-cache-cachemiddleware "django.middleware.cache.CacheMiddleware"
[3]: http://www.djangoproject.com/documentation/cache/ "Django Cache Docs"
[4]: http://www.djangoproject.com/documentation/tutorial2/#explore-the-free-admin-functionality "Explore the free admin functionality"
[5]: http://www2.jeffcroft.com/blog/2006/jul/14/django-admin-your-php-app/ "Django admin for your PHP app?"
[6]: http://www.djangoproject.com/documentation/django_admin/#inspectdb
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto-logo.jpg Binary files differnew file mode 100644 index 0000000..7e5a31d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto.jpg Binary files differnew file mode 100644 index 0000000..7113cd9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/nightly.txt new file mode 100644 index 0000000..b3f2f58 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/nightly.txt @@ -0,0 +1 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build:
* Wired's own Cult of Mac has great piece on the [litigation surrounding Apple's new iPhone][1] and some other company that also uses the name. Let's face it even if Cisco wins, iPhone will always be an Apple product in the public's mind.
[1]: http://blog.wired.com/cultofmac/2007/01/ask_an_attorney.html "Ask an Attorney: Apple and Cisco Will Share 'iPhone' "
* Torrentfreak has an article on the[ MPAA's fake torrent campaign][2]. "The MPAA and other anti-piracy watchdogs try to trap people into downloading fake torrents, so they can collect IP addresses, and send copyright infringement letters to ISPs. They hire a company to put up fake copies of popular movies, music albums, and TV series." According to Torrentfreak an admin at BTJunkie has figured out a way to find and block the fake torrents.
[2]: http://torrentfreak.com/mpaa-caught-uploading-fake-torrents/ "MPAA Caught Uploading Fake Torrents"
* There were rumors earlier this week that OLPC would be selling their budget laptops to the general public with the provision that you buy two, one of which is yours and one of which is donated to someone in need. I for one thought that was a great idea, but [according to Ars Technica][3], the rumor is untrue. However apparently it is one of the options they're considering.
[3]: http://arstechnica.com/news.ars/post/20070110-8593.html "OLPC: no consumer versions planned right now"
* And finally it doesn't have much to do with software or the web, but Robert Anton Wilson, author of the Illuminatus! epic and hacker of the mind, [passed away this morning][4]. Wilson may be gone, but we'll always have the fnords.
[4]: http://robertantonwilson.blogspot.com/index.html "Robert Anton Wilson Defies Medical Experts and leaves his body @4:50 AM on binary date 01/11"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/raw.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/raw.jpg Binary files differnew file mode 100644 index 0000000..04aff71 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/raw.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/reboot.txt new file mode 100644 index 0000000..4486ec8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* Cisco is [suing Apple][1] over the rights to the iPhone trademark. Apple was reportedly in talks with Cisco about the rights to the name, but never formally signed off on a deal so Cisco has filed a lawsuit.
* Mozilla [released][2] some semi-official plans for Firefox 3. The list of features in the linked article are broken into three categories, "mandatory," "desirable" and "nice to have." One of the most intriguing things on the list is, "save web pages as PDF files, integrated with history." Hmm. The new target release for Firefox 3 is sometime in Q3 of this year.
* Last year I did [an article on ReputationDefender][5] and the main thing everyone (myself included) wanted to know was how ReputationDefender went about protecting your online reputation. While company was always a bit cagey about their methods, now there's an example available. The Consumerist [received a letter][3] (possibly NSFW) from ReputationDefender requesting that a post be removed. The Consumerist has refused to comply with the request and they've posted a copy of the email they received, which is surprisingly benign.
* Greg Kroah-Hartman, author of O'Reilly's *Linux Kernel in a Nutshell*, has made the book [available for free][4] in a variety of formats. Kroah-Hartman writes on the site: "The more people that try this out, and realize that there is not any real magic behind the whole Linux kernel process, the more people will be willing to jump in and help out in making the kernel the best that it can be."
[5]: http://www.wired.com/news/technology/0,72063-0.html "Delete Your Bad Web Rep"
[4]: http://www.kroah.com/lkn/ "Download Linux Kernel in a Nutshell"
[3]: http://consumerist.com/consumer/evil/ronnie-segev--reputationdefender-can-eat-a-dick-227969.php "Ronnie Segev & ReputationDefender Can Eat A Dick"
[2]: http://mozillalinks.org/wp/2007/01/planned-features-for-firefox-3/ "Planned features for Firefox 3"
[1]: http://money.cnn.com/2007/01/10/technology/cisco_apple/index.htm?section=money_technology "Cisco sues Apple over iPhone name"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/roxio.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/roxio.txt new file mode 100644 index 0000000..c51a824 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/roxio.txt @@ -0,0 +1 @@ +<img alt="Macworld_logo_1" title="Macworld_logo_1" src="http://blog.wired.com/photos/uncategorized/macworld_logo_1.png" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Earlier today at the Macworld Expo, the editors of Macworld announced the winners of the 2007 Best of Show awards (video after the jump). Top Honors for this year go to Roxio's new Toast 8 Titanium, which we got a demo of earlier today from Adam Fingerman, Roxio's Director of Product Management.
The new version of Toast features a long list of enhancements including TiVoToGo, Blu-ray disc burning and more.
Roxio scored an exclusive deal with TiVo to bring the popular TiVoToGo service to the Mac platform as part of the new Toast 8. The functionality mirrors that of TiVoToGo for Windows but wraps it up in a Mac-friendly, iTunes-like interface.
If you'd like to cram all your *Lost* episodes on one disc, the new Toast 8 is the first burning software to support BluRay discs on the Mac.
Wannabe DJs and even real DJs will be happy to know the Toast now supports crossfades, volume normalization and other audio niceties.
We'll give you the full rundown when our demo copies arrive. Until then, here's a video of the Best in show awards with Roxio and the rest of the winners.
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/gEMAVzdmRsU"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/gEMAVzdmRsU" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.jpg Binary files differnew file mode 100644 index 0000000..aec4d35 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.txt new file mode 100644 index 0000000..2683cf3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.txt @@ -0,0 +1 @@ +CNBC.com has a [video segment][6] with [Snap.com CEO Tom McGovern][5] talking about Snap.com and MSM's favorite new topic -- who's going to be the next Google.
We've been [following Snap][1] [for][4] [some][2] [time][3] and the site continues to grow at an astonishing rate, but nothing pulls in users like good old-fashioned TV exposure. Snap.com's Jason Fields tells us search traffic at Snap has tripled since the CNBC broadcast this morning.
I do enjoy Snap, especially the image search, but I don't know if it's a Google killer. It's not hard to imagine Google buying Snap though. Let us know what you think.
[footnote for CNBC: Repeat after me "I will provide video players with embedding code..."]
[2]: http://blog.wired.com/monkeybites/2006/12/snap_a_photo_wi.html "Snap.com Image Search"
[1]: http://blog.wired.com/monkeybites/2006/05/snap_ajaxpowere.html?entry_id=1481480 "Snap: Ajax-Powered Search"
[3]: http://blog.wired.com/monkeybites/2006/11/snap_launches_p.html "Snap Launches Preview Anywhere"
[4]: http://blog.wired.com/monkeybites/2006/10/snap_shows_off_.html "Snap Shows Off Resizable Panes"
[5]: http://blog.snap.com/2007/01/11/snapcom-ceo-tom-mcgovern-on-cnbc/ "Snap Blog on CNBC show"
[6]: http://www.cnbc.com/id/15840232?video=163217679&play=1 "CNBC Video on Snap.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/disappointed.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/disappointed.txt new file mode 100644 index 0000000..c82064c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/disappointed.txt @@ -0,0 +1 @@ +We was robbed! Don't get me wrong, the iPhone is a [pretty spectacular device][1] and I'm glad it was announced now so I can start saving for the next six months, but this is a software blog and frankly we're a bit miffed -- we got nothing.
Phone Schmone. Where's the Leopard previews? Release dates? Amazing additional features Jobs promised at the WWDC? Can a million rumors about retiring the Aqua interface really be wrong? *We just don't know*.
What about ILife '07? ITunes? IWork? Rumor has it that some Steveo's presentation used some Keynote features that aren't available to us mortals using the '05 version. It seems reasonable to assume that an iWork '07 must therefore exist, but nary a peep from the big man.
Then of course there was my dream of an Aperture update shot to hell. Something about a spreadsheet app as well. Okay let's be honest I don't care about a spreadsheet app, but still the disappointment is palpable over here at Monkey Bites.
We take some measure of consolation in remembering [this quote][2] (brought to our attention again by [Steven Johnson][3]) from Palm CEO Ed Colligan. When asked about the iPhone, Colligan:
>laughed off the idea that any company -- including the wildly popular Apple Computer -- could easily win customers in the finicky smart-phone sector. We've learned and struggled for a few years here figuring out how to make a decent phone," he said. <b>"PC guys are not going to just figure this out. They're not going to just walk in."</b>
(emphasis mine)
In the immortal words of Ace Venture: RRREHEHEALLY!
[1]: http://www.apple.com/iphone/ "Apple iPhone"
[2]: http://www.mercurynews.com/mld/mercurynews/news/columnists/16057579.htm "Palm CEO says, What, me worry?"
[3]: http://www.stevenberlinjohnson.com/2007/01/the_iphone.html "THE IPHONE"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/else.txt new file mode 100644 index 0000000..82446da --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/else.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Elsewhere on Wired:
* Cult of Mac's Pete Mortensen writes about the possible [future of the iPod][1], which doesn't seem so cool now that the iPhone is here.
[1]: http://blog.wired.com/cultofmac/2007/01/can_the_ipod_su.html "Can the iPod Survive?"
* Gadget Lab [wants your opinion][2]: was Apple's decision to partner with Cingular a good one?
[2]: http://blog.wired.com/gadgets/2007/01/poll_apple_ipho.html "Poll: Apple iPhone on Cingular: Mistake?"
* Thomas Goetz on the Wired Science blog [has the lowdown][3] on a meta study that looks at bias in funded science research.
[3]: http://blog.wired.com/wiredscience/2007/01/pay_for_researc.html "Pay for Research, Get Results"
* Game|Life is at CES where [you won't find much about the PS3][4].
[4]: http://blog.wired.com/games/2007/01/ps3_booth_promi.html "PS3 Booth: Promise vs. Reality"
* Table of Malcontents has [dug up some YouTube video][5] from, Werner Herzog's *My Best Friend*, which if nothing else, will make you watch *Fitzcarraldo* in a whole new light.
[5]: http://blog.wired.com/tableofmalcontents/2007/01/a_brief_history.html "A Brief History of Klaus Kinski's Conniptions"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/generic-views.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/generic-views.txt new file mode 100644 index 0000000..7d74c7a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/generic-views.txt @@ -0,0 +1 @@ +One of the great charms of Django is the amount of work it does for you. It's literally possible to build complex applications that mirror the features of say, WordPress, in little more than a hundred lines of code.
How the heck does Django do it? Well one of the great tools that Django puts at your disposal is something called generic views. Views are simply python functions that get called whenever a browsers requests a page.
There's a myriad of ways to storing and retrieve data in a web application, but date-based structures are pretty common. For instance, the url of this page contains something like '.../2007/01/...' which is a date-based archive.
Rather than requiring that you write your own code every time you build a site that uses date based archives, the designers of Django included some generic views to handle common cases. In this case, were this site powered by Django, which regrettably it is not, but were it, we could pass the date from the url to django in one easy like of code:
(r'(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'django.views.generic.date_based.archive_month', data_dict),
Okay maybe it looks confusing, but it's really not. The first part is just a regular expression that captures the url and passes it to the generic view <code>archive_month</code>. The last bit is a python dictionary which would tell Django what data model to use for this page.
Another common task web applications perform is displaying a list of content and to this end there is Django generic view for lists.
Which brings us to today's tutorial. Generic views are great, but what if they don't exactly fit your application? Well, it's pretty easy to extend generic views and James Bennet [has a great tutorial on his blog The B-list][1] that runs through the basics extending, tweaking and otherwise making generic views do what you want.
Mr. Bennet also has a number of other very useful and easy to follow django tutorials, try [digging through the rest of his Django archives][2].
[1]: http://www.b-list.org/weblog/2006/11/16/django-tips-get-most-out-generic-views "Django tips: get the most out of generic views"
[2]: http://www.b-list.org/weblog/categories/django "The B-List: category: Django"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/iphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/iphone.jpg Binary files differnew file mode 100644 index 0000000..2945e8c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/iphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/poof.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/poof.jpg Binary files differnew file mode 100644 index 0000000..1fef6d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/poof.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/service scrubber.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/service scrubber.jpg Binary files differnew file mode 100644 index 0000000..56f4e38 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/service scrubber.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/service-scrubber-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/service-scrubber-icon.jpg Binary files differnew file mode 100644 index 0000000..2d3595b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/service-scrubber-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/service-scrubber.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/service-scrubber.txt new file mode 100644 index 0000000..d0773ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/service-scrubber.txt @@ -0,0 +1 @@ +It's not all that sexy and it probably doesn't have a booth at MacWorld, but today's featured Mac software is a gem nonetheless. [Service Scrubber][1] is a donation-ware app from Peter Maurer (who also makes Butler the application launcher) that lets you regain control of the services menu.
I used to ignore the services menu, that menu of universally accessible command shortcuts, because it's cluttered up with junk most of us never use. I'm sure there are people who use the ChineseTextConverter, but for my daily work it just gets in the way. Ditto for RealPlayer, Speech and many others.
Service Scrubber is a simple app that lets you enable, disable and reorganize services and assign keyboard shortcuts. That's it. Remember: do one thing and do it well.
The process is simple, as outlined on the Service Scrubber site:
* Select a service provider (i.e., an application or a service package) to edit its services only.
* Click on a checkbox to enable/disable the corresponding service(s).
* Click on an [i] button to edit a service's features.
* Click on a [left arrow] button to revert a service provider to its original state.
* Once you're done tweaking your services, click the [Save] button to save your changes. Be prepared to authenticate as an administrator.
Service Scrubber is free, though if you like it you could always consider donating.
[1]: http://www.petermaurer.de/nasi.php?section=servicescrubber "Service Scrubber"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/untitled text b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/untitled text new file mode 100644 index 0000000..eed3649 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Tue/untitled text @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Behold Ye, and on this day did the faithful gather in San Francisco, but the Morning Reboot abstained.
* The Wall Street Journal is reporting that [Apple and Cingular will partner up][1], with Cingular providing service for Apple's new "iPhone" device which is widely rumored to be announced at Macworld. MSM tends not to go in for rumors, but then again you just never know do you?
[1]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2007-01-09T110907Z_01_N08419269_RTRUKOC_0_US-CINGULAR-APPLE.xml&src=rss "Apple, Cingular to partner?"
* Microsoft has sent out some contradictory messages over the last few months about BluRay/HD-DVD and Vista, but now says, [according the the Times UK][5], "a substantial number of PCs running the new version of Windows operating system will not be able to play high-quality DVDs." Though that isn't really Microsoft's fault, blame Hollywood and an its DRM love affair.
[5]: http://business.timesonline.co.uk/article/0,,9075-2536050,00.html "BluRay/HD-DVD won't work on all Vista machines"
* Yahoo! has [purchased][4] the blog tracking site MyBlogLog for an undisclosed amount. Rumors of the purchase surfaced way back in November, but today it appears to be official.
[4]: http://gigaom.com/2007/01/08/yahoo-buys-mybloglog-for-real/ "Yahoo buys MyBlogLog"
* As we [mentioned last week][2], a Brazilian Judge ordered Google to shut down YouTube. Naturally that isn't going to happen, but as [reported by Reuters][3] and several commenters on our original story, Brazilian ISPs began blocking access to YouTube on Monday.
[2]: http://blog.wired.com/monkeybites/2007/01/brazilian_judge.html "Monkey Bites on Brazilian Judge ordering YouTube to shut down"
[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-09T005413Z_01_N08418109_RTRUKOC_0_US-BRAZIL-SEX-YOUTUBE.xml&src=rss "Brazilian ISPs block YouTube"
* And finally: the one thing [you really hope][6] Steve Job's doesn't unveil at MacWorld.
[6]: http://blog.wired.com/cultofmac/2007/01/one_more_thing_.html "Cult of Mac - One More Thing"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/ZZ43205A33.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/ZZ43205A33.jpg Binary files differnew file mode 100644 index 0000000..7a16ba7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/ZZ43205A33.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/pandora.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/pandora.txt new file mode 100644 index 0000000..c182a76 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/pandora.txt @@ -0,0 +1 @@ +[Pandora][1], the streaming internet radio service, has begun testing pre-roll, in-stream advertisements and so far user reaction seems to be overwhelmingly negative. The Digital Music Weblog has [a brief interview with Pandora's CTO Tom Conrad][2] in which he says "Less than 10% of our daily listeners hear the ad.... It's cap'd at once per day per listener and it's targeted by age."
There's post in [the forums at Ideabox][3] that sums up many users' reactions to the ads: "Never. Put. Ads. In. The. Music. Stream."
But the capped at once per day bit seems to be a change based on [negative][4] [feedback][5] since initially users reported hearing the ad several time a day.
I use Pandora pretty much every day and so far I haven't actually heard the ads, but according to most, the primary ad seems to a 9 second segment for McDonald's dollar Value menu. Some of the negative reaction may be attributable to the advertisement's lack of targeting. After all, what the heck does McDonald's Dollar Value menu have to do with music?
Perhaps if the ads applied the same intelligence as Pandora's recommendations features they would be less annoying. For instance why not stream ads from music-relevant services. Conrad says that such targeted advertising may be in the cards, "we're always looking for ways to improve our ability to deliver relevant ads that don't detract from the listening experience."
One of the appeals of Pandora for me, aside from its excellent recommendations features, was that the company seemed more personalized than many of its competitors. For instance the tag line on the main site reads: "We created Pandora so that we can have that same kind of conversation with you." I guess I didn't know that conversation would include product peddling, but if it's any consolation to Pandora, if nothing else, at least you know there are a lot of users who are very passionate about your service.
But at the same time of course Pandora needs to make money, otherwise the service will disappear altogether and the company seems to be listening to feedback since they've apparently cut back on the number of ads.
One of the difficulties facing Pandora, as Pete Cashmore [points out on Mashable][6], is that Pandora's service doesn't generate pageviews, which makes it a hard sell for advertisers who still believe that pageviews are tied to traffic numbers.
Still, regardless of the reasoning, the prospect of in-stream ads leaves me a little cold, wasn't the promise of internet radio at least partly to escape from the high ad-to-music ratio of commercial FM?
Let us know what you think in the comments.
[1]: http://www.pandora.com/ "Pandora"
[2]: http://digitalmusic.weblogsinc.com/2007/01/09/pandora-exec-speaks-about-advertisements-in-stream/ "Pandora exec speaks about advertisements in stream"
[3]: http://ideabox.crispyideas.com/article/show/50313 "Never. Put. Ads. In. The. Music. Stream."
[4]: http://jdamer.com/wordpress/2007/01/06/pandora-crosses-the-line/ "Pandora crosses the line"
[5]: http://geeklimit.com/2007/01/08/pandora-gets-commercials/ "Pandora gets commercials"
[6]: http://mashable.com/2007/01/09/pandora/ "Pandora Audio Ads Unwelcome"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/parallels-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/parallels-screen.jpg Binary files differnew file mode 100644 index 0000000..34aae7f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/parallels-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/parallels.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/parallels.txt new file mode 100644 index 0000000..c335ee9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/parallels.txt @@ -0,0 +1 @@ +There's Mac applications and then there's [Parallels Desktop for Mac][1] which is in a category of its own. Parallels is a virtual machine that lets you run the Windows OS and Windows based apps on your Intel Mac. Actually you can install just about any OS you want using Parallels, but so far my testing has been limited to Windows.
[Recent betas][2] (I'm using build 3120 which is listed as Release Candidate) from Parallels feature something called "Coherence Mode" which enables you to run Windows applications outside the emulation window. Combine that with a Mac OS X flavored theme for Windows and it can be hard to tell the difference between emulated Windows programs and native application running in Mac OS X.
Coherence Mode is in a word, amazing, but also, as several people I've demonstrated it to have remarked, somehow wrong.
I had a little trouble installing Windows though I can't say for sure that Parallels was at fault. For some reason the first time I tried the installation cd got hung up while trying to "install devices," but a second attempt came off without a hitch.
As you might expect, Parallels is a RAM hungry app, not only does Parallels need RAM, but obviously so does Windows itself. With a lot of applications open in both the VM and Mac OS X, Parallels slows down my Macbook (Core 2 Duo with 1 gig or RAM) to a virtual considerably.
So long as I limit myself to working in either OS, and not switch between them too often it's usable and no doubt increasing my RAM would vastly improve performance. Putting Windows in full screen model and ignoring Mac OS X gives me performance speeds that are on par with mid-level PCs.
Perhaps the best thing about Parallels, once you get past the wow factor, is the ability to seamlessly drag and drop files from Windows to Mac and back. Other useful features include Auto-Adjusting Screen Resolution, Transporter RC to migrate an existing Windows installation to a Parallels VM, and improved USB device support.
If you're a PC user who's thought of switching to Mac, but you don't want to give up your favorite applications, there's no need to worry -- you can have the best of both worlds.
To be honest I would be surprised if Apple didn't snatch up Parallels at some point since it provides a much better interface for Windows than Basecamp. And I should point out that if you have Windows installed via Basecamp and you'd like to use that partition via Parallels, the latest beta makes that possible.
The previous betas had some problems with Window's licenses that made it difficult to switch back and forth between Parallels and Basecamp, but beta 3 only requires you to re-activate Windows once.
[1]: http://www.parallels.com/en/products/workstation/mac/ "Parallels Desktop for Mac"
[2]: http://www.parallels.com/products/desktop/beta_testing/ "Parallels Desktop for Mac Release Candidate"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/reboot.txt new file mode 100644 index 0000000..ed40175 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* Nothing is perfect and now that the initial wow factor has faded a little bit, there might be a few things about the iPhone that aren't so great. Our own Gear Lab has a [rundown on potential snags][1] in the dream of cellphone perfection.
[1]: http://blog.wired.com/gadgets/2007/01/top_5_worst_thi.html "Top 5 Worst Things About The iPhone"
* The final version of [Google Earth 4 has been released][2]. We [reviewed the beta][3] a while back, but the final version has some new features that weren't in that beta such as textured buildings.
[2]: http://earth.google.com/earth4.html "Google Earth 4 - what's new"
[3]: http://blog.wired.com/monkeybites/2006/11/google_earth_ve.html "Monkey Bites Google Earth Version 4 beta review"
* Office 2008 for Mac [has been announced][4]. The Microsoft BU team has a number of Mac only features and claims the software will be available "in the second half of 2007."
[4]: http://www.microsoft.com/presspass/press/2007/jan07/01-09MacworldPR.mspx "Mac BU Announces Intent to Deliver Office 2008 for Mac"
* [According the Washington Post][5], in an effort to make Windows Vista more secure, Microsoft tapped the expertise of the NSA. From the linked article: "the agency said it has helped in the development of the security of Microsoft's new operating system -- the brains of a computer -- to protect it from worms, Trojan horses and other insidious computer attackers."
[5]: http://www.washingtonpost.com/wp-dyn/content/article/2007/01/08/AR2007010801352.html "For Windows Vista Security, Microsoft Called in Pros"
* And finally, Wired Magazine has a [creepy scenario][6] from Jonathan Zittrain, professor of Internet governance and regulation at Oxford University, in which he outlines why the internet is doomed.
[6]: http://www.wired.com/wired/archive/15.01/start.html?pg=15 "End-Time for the Internet"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/codefetch-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/codefetch-screen.jpg Binary files differnew file mode 100644 index 0000000..54d0b7c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/codefetch-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/codefetch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/codefetch.jpg Binary files differnew file mode 100644 index 0000000..3bc4f34 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/codefetch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/codefetch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/codefetch.txt new file mode 100644 index 0000000..c72ac66 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/codefetch.txt @@ -0,0 +1 @@ +Lately I've been trying to find a good book on Python, but I haven't had time to get to a bookstore and actually browse through the many similar offerings, which is what makes [Codefetch][2] invaluable. Codefetch is a search engine that lets you search inside programming books for phrases, words, or bits of code.
Codefetch has been around for a while, we even mentioned briefly in [an article last year][1] on Wired.com, but this is the first time I've actually tested it.
Codefetch lets you search by language (22 options) and supports a healthy amount of regular expression operators. There's also an option to search literal which means you can match programatic expressions, spaces and all.
Results are displayed with your terms highlighted and showing the chunks of code were your search terms appear. At the top of each booking listing is a link to purchase the book from Amazon (which is how Codefetch generates some revenue).
There may well be a way to perform this kind of search using the tools on Amazon, but I'm not aware of it. An entry on the [Codefetch blog][3] claims the site has considerably better search results than O'Reilly's paid Safari service.
A word of warning, Codefetch made the front page of Digg this morning and was running somewhat slow.
[1]: http://www.wired.com/news/technology/0,70219-0.html "Here Comes a Google for Coders"
[2]: http://www.codefetch.com/ "CodeFetch.com"
[3]: http://codefetch.blogspot.com/ "Code Fetch Blog"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/compare-linux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/compare-linux.txt new file mode 100644 index 0000000..05b7341 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/compare-linux.txt @@ -0,0 +1 @@ +Have you ever wondered how the various Linux distros of the world stack up next to each other? Well PolishLinux.org can help answer that question for you. The site gives [side by side comparisons][1] of nearly every popular distribution.
Comparison points range from general features to system boot time to popularity, and obviously some things are more subjective than others. Each section gets a rating from 0 to 9 and in most cases the description for that category elaborates and clarifies the rating in more detail.
Unfortunately there's no way to compare more than two distros at a time, but the site does have a [nice questionnaire][3] you can fill out that might also help you make a decision. The form asks a few simple questions about what you're looking for in your system and then makes suggestions based on your preferences.
PolishLinux.org also has some great tips for those just starting out with Linux and plenty of links to popular applications, how-to articles and more.
[via [Lifehacker][2]]
[1]: http://polishlinux.org/choose/comparison/ "Compare Linux distros"
[2]: http://lifehacker.com/software/linux/compare-linux-distros-side-by-side-229857.php "Compare Linux distros side by side"
[3]: http://polishlinux.org/choose/quiz/ "Distro Chooser"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/else.txt new file mode 100644 index 0000000..93fb721 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/else.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Elsewhere on Wired:
* I once saw a movie whose name I've long since forgotten that had one of those classic bad guys that just won't die ending. After shooting stabbing beating and otherwise trying to obliterate the bad guy, he finally gets incontrovertibly destroyed -- blown to bits in fact -- and this is confirmed when the hero picks up a burning chunk of the bad guy's arm and lights a cigarette with it. Listening Post outlines why [the RIAA is a lot like that bad guy][1]. Oh, and if anyone knows what movie that is, let me know.
[1]: http://blog.wired.com/music/2007/01/your_timeshifti.html "Your Right to Time-Shift Is Under Attack"
* Bodyhack [points][2] to an article that suggests George Bush's refusal to support stem cell research might actually be helping the field by drawing in more private sector money. Hey, without Ronald Reagan and Margaret Thatcher we might never have had punk rock.
[2]: http://blog.wired.com/biotech/2007/01/did_bush_jumpst.html "Did Bush Jumpstart a Stem Cell Revolution?"
* From [Gadget Lab][3]: "Here's a twist on the megapixel race confusing digital camera buyers: The camera of the future may capture only a single pixel."
[3]: http://blog.wired.com/gadgets/2007/01/the_000001megap.html "The .000001-Megapixel Camera"
* Table of Malcontents has great link to the obituary of what sounds like a truly wonderful bookshop. As Brownlee [writes][4], "the fact that Amazon.com is killing off wonderful crackpots like this one-by-one isn't just tragedy, it's blasphemy."
[4]: http://blog.wired.com/tableofmalcontents/2007/01/the_worlds_most.html "The World's Most Dangerous Bookstore"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/finance-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/finance-1.jpg Binary files differnew file mode 100644 index 0000000..e6cd985 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/finance-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/finance-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/finance-2.jpg Binary files differnew file mode 100644 index 0000000..28acd68 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/finance-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/finance-3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/finance-3.jpg Binary files differnew file mode 100644 index 0000000..5356e1a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/finance-3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/nightly b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/nightly new file mode 100644 index 0000000..32a8595 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/nightly @@ -0,0 +1 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build:
* Google has [announced][1] a partnership with the University of Texas at Austin which will see the search giant digitizing More than a million books from the University's library, including their world renowned Latin American collection.
[1]: http://www.google.com/intl/en/press/annc/austin_books.html "Google to Digitize More than a Million Books from the University of Texas at Austin"
* Oh those timely virus writers. [From Reuters][3]: "Computer virus writers attacked thousands of computers on Friday using an unusually topical email citing raging European storms." The new virus, dubbed "Storm Worm," was sent with the subject line "230 dead as storm batters Europe." Consider yourself warned.
[3]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2007-01-19T201158Z_01_L19519163_RTRUKOC_0_US-WEATHER-EUROPE-COMPUTERS.xml&src=rss "Storm Worm hits computers"
* Wikipedia has [introduced][4] a new means of stopping "indirect" vandalism of the Main Page. Wikipedia calls the new software "cascading protection" and claims it "automatically applies to local images and templates, which have been frequent targets for this type of vandalism."
[4]: http://en.wikipedia.org/wiki/Wikipedia:Wikipedia_Signpost/2007-01-15/Cascading_protection "Wikipedia takes steps to prevent vandalism"
* Coolest Greasemonkey script ever: [Eliminate extra exclamation points][2]. Imagine what it can do for MySpace... then again it doesn't make the writing any better does it?
[2]: http://www.zieak.com/2007/01/17/eliminate-extra-exclamation-points/ "Eliminate extra exclamation points"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/personal finance.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/personal finance.txt new file mode 100644 index 0000000..72a3be1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/personal finance.txt @@ -0,0 +1 @@ +Yahoo has added a new section, [Personal Finance][1], to their popular Yahoo Finance portal. As the name suggests, Yahoo Personal Finance is a new suite of financial tools covering every major area of personal finance.
The major sections can be seen in the screenshot after the job, but pretty much all the categories you'd expect are there including taxes, retirement, banking and budgeting, and more.
Within each section there are numerous subsections with content from over twenty-five content providers ranging from Consumer Reports and The Motley Fool to CNNmoney and The Wall Street Journal. The majority of the aggregated content consists of advice columns, expert opinions, articles and how-to guides.
There are also over sixty new calculators to help answer questions like "what would my loan payment be?" or "how much interest will this IRA earn over time?"
There's a portfolio tracking tool that can be used to watch stocks, track your current holdings or store a history of sales and purchases. Creating a portfolio is farily simple and includes a tool to lookup company's stock symbols. Interestingly, while the lookup tool would seem like the perfect place for some nice AJAX, it remains a separate page.
Once you add a stock or fund to your portfolio, Yahoo Personal Finance does a nice job of aggregating all the relevant articles on your chosen companies from around the web.
Inexplicably there's no RSS feed available for your portfolio and given that some sort of RSS-like tracker is probably pulling the data in, a similar push out is conspicuously missing.
Recognizing the power of various social networking tools, Yahoo has provided a number of toolbar buttons at the top of each section to promote sharing on other sites, including links to Yahoo's own del.icio.us as well as non-Yahoo tools like Digg.
Other nice features of the new Personal Finance include a Q & A section, interest rate trackers, a nice glossary of financial terms, and time-based suggestions like "Things To Do In January."
Overall Yahoo Personal Finance offers an impressive amount of data in one place, but other than the portfolio tracker, none of it is all that personal. If you're looking for tools to manage your accounts or track spending, you're better off with a service like [Wesabe][2], which offers far more "personalization."
If you're just looking for a lot of aggregated personal finance information in one place then you'll likely enjoy Yahoo's new offering, though the lack of RSS support might be a deal breaker for some. Hopefully Yahoo will wake up and realize their oversight on that one.
[2]: http://www.wesabe.com/ "Wesabe: Take Control of Your Money"
[1]: http://finance.yahoo.com/personal-finance "Yahoo Personal Finance"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/polish-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/polish-screen.jpg Binary files differnew file mode 100644 index 0000000..a6fbbf3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/polish-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/polishlinux.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/polishlinux.jpg Binary files differnew file mode 100644 index 0000000..5090971 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/polishlinux.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/reboot.txt new file mode 100644 index 0000000..3e3ae08 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot used to wear a medium t-shirt and then moved to New England where there's a Dunkin Donuts on every corner and hence now wears a large.
* Congress is [considering legislation][7] that would *require* Internet broadcasters to use DRM technology to prevent listeners from making unauthorized copies of music files. The [EFF writes][4]: "This bill would also mess with Internet radio. Today, Live365, Shoutcast, streaming radio stations included in iTunes, and myriad other smaller webcasters rely on MP3 streaming. PERFORM would in effect force them to use DRM-laden, proprietary formats."
[4]: http://www.eff.org/deeplinks/archives/005072.php "Take Action: Defend Your Right to Record Off the Radio!"
[7]: http://www.infoworld.com/article/07/01/18/HNdrmlegislation_1.html "Proposed DRM legislation criticized as too harsh"
* Earlier this week we told you of rumors that Apple would charge $5 to activate the 802.11n wireless protocol that shipped inactive with recent Core 2 Duo machines. The rumor is correct, but the price was wrong, it will actually [cost $1.99 to activate][5].
[5]: http://news.com.com/2100-1044_3-6151281.html?part=rss&tag=2547-1_3-0-20&subj=news "Apple to charge for faster Wi-Fi"
* Good news, the desk of the future will [charge electronic devices][3]. Office furniture maker Herman Miller Inc. has licensed a technology called eCoupled, which eliminates the need for dedicated chargers.
[3]: http://news.yahoo.com/s/nm/20070118/tc_nm/hermanmiller_product_dc "Desk of the future will charge electronic devices"
* Speaking of fatty foods (from [BoingBoing][2]): "Wegman's bakery received an online order for a cake with a message in Italian and English, but couldn't process the accent characters in the Italian passage -- instead, the printer barfed out a ton of error messages in angle-brackets." Which were then [frosted onto the cake][1]. Classic.
[1]: http://bingweb.binghamton.edu/~tony/cake.jpg "Cake Error Message"
[2]: http://www.boingboing.net/2007/01/19/cake_printer_barfs_u.html "Cake printer barfs up error-messages "
* Best Digg submission ever: "[Google Search Engine][6]. Google is a revolutionary internet search website. With it, you can easily find whatever it is you're looking for on the internet! Digg this and spread the word!"
[6]: http://digg.com/tech_news/Google_Search_Engine_3 "Google Search Engine"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/xiph.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/xiph.jpg Binary files differnew file mode 100644 index 0000000..c9e52aa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/xiph.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/xiph.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/xiph.txt new file mode 100644 index 0000000..636f7db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/xiph.txt @@ -0,0 +1 @@ +While it has apparently been around for some time, I just noticed the [Xiph QuickTime components][1] this morning. Xiph is a collection of QuickTime plugins that allow QuickTime or iTunes to play Ogg Vorbis and FLAC files.
There are plugins for both Mac (Universal) and Windows, but you'll need to have QuickTime 7.x installed. The Xiph QuickTime components are released under the lesser GPL and the source is available from the site.
[Ogg Vorbis][3] is a popular open source alternative to MP3 and [FLAC][2] is a lossless compression format popular for its ability to maintain audio quality when compressing files.
There have been a few attempts at Ogg Vorbis QuickTime plugins in the past, but most of them seem to have been abandoned. So far as I know this is the first time anyone has created a way for iTunes to play FLAC files.
That's the good news. The bad news is I can't seem to get it working.
The plugins install okay, the additional frameworks also install, but neither Quicktime nor iTunes will actually play the files.
However plenty of people seem to have no problem, so don't let me troubles put you off. I'll post an update if I get it working, but in the mean time let us know if you get these plugins working.
[1]: http://www.xiph.org/quicktime/ "QuickTime plugins for Ogg and FLAC"
[2]: http://flac.sourceforge.net/ "Free Lossless Audio Codec"
[3]: http://www.vorbis.com/ "Vorbis.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/yahoo-finance-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/yahoo-finance-logo.jpg Binary files differnew file mode 100644 index 0000000..ea1eb9d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Fri/yahoo-finance-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/SponsoredReviews.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/SponsoredReviews.txt new file mode 100644 index 0000000..997fd97 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/SponsoredReviews.txt @@ -0,0 +1 @@ +There's yet another service joining the rapidly expanding paid-review market pioneered by PayPerPost. [SponsoredReviews][1] is a new site designed to help bloggers get paid for writing reviews of advertiser's products and services. SponsoredReviews isn't publicly available yet and but their blog [promises][2] a beta test phase is coming soon.
SponsoredReviews offers a few clues in the their FAQ. Disclosure is required, though I can't find any specifics on what sort of disclosure, and payments will range from $10 to a whopping $1000 per review.
The Blog Herald thinks that with price tags of up to a $1000 SponsoredReviews is poised to introduce [a new ethical dilemma][3] for bloggers. Dave Winer on the other hand, [believes][5] that these services are simply a more transparent version of a very old practice. TechCrunch's Michael Arrington has long held that PayPerPost and its ilk [are a modern-day payola][4].
Payola is a term describing a practice in which record companies paid radio stations to play whatever tracks the companies wanted to promote without reporting that the spot was paid. The practice is illegal in the United States though it's common in other parts of the world. The reasoning behind the U.S. law is that since radio stations report and publish their playlists and those publication in turn influence other stations the record companies could gain an unfair advantage in the market place.
A similar argument could be made against PayPerPost services since links from prominent blogs can raise the Google rankings of advertisers participating in the service.
I tend to agree with Arrington, though I think that Winer has a point too. Ultimately there is probably no such thing as a truly unbiased review, but if a blogger discloses that they were paid to write a review how useful is that for the discerning consumer?
Call me paranoid, but I probably wouldn't make it past the disclosure sentence in a paid review. Of course SponsoredReviews doesn't have specific guidelines available for disclosure, the site merely says blogger should "state the words 'Sponsored Review' or you can integrate it into the content." Okay, but would a style sheet rule like this be okay?
p.disclosure { font-size: 1px; }
Hopefully not. The FTC recently said word-of-mouth advertisers and reviewers [must disclose their relationships][6] which even includes things like products that have a MySpace page.
Interestingly, while SponsoredReviews claims negative reviews are okay, the official guidelines on the site read:
>* Reviews must be written according to the terms set by the advertiser.
* Constructive criticism is encouraged, however, reviews that are hateful or non-constructive will not be accepted.
* Reviews must be permanent and archived.
* Disclosure that the review is sponsored is mandatory.
What constitutes non-constructive from an advertisers point of view? Would a review like "this service is an adware-ridden nightmare best avoided at all costs" be considered non-constructive? As a reader I might consider that informative, constructive and good to know, but the advertiser would likely have a different opinion.
At this point it looks like these services are here to stay so, while the ethics may be debatable, the real question is what will the long term effect be? Will blogs featuring paid reviews be shunned, is the whole blogging realm doomed or is this much hoopla about nothing?
[1]: http://www.sponsoredreviews.com/ "SponsoredReviews"
[2]: http://www.sponsoredreviews.com/blog/?p=7 "SponsoredReviews Launching Soon"
[3]: http://www.blogherald.com/2007/01/15/sponsoredreviewscom-jumps-into-the-pay-per-post-fray-introduces-new-ethics-quandry/ "SponsoredReviews.com Introduces New Ethics Quandry"
[5]: http://www.scripting.com/2006/10/02.html#whyPayperpostIsBetter "Dave Winer on PayPerPost"
[4]: http://www.techcrunch.com/2007/01/15/another-payperpost-virus/ "Another PayPerPost Virus"
[6]: http://www.washingtonpost.com/wp-dyn/content/article/2006/12/11/AR2006121101389.html?nav=hcmodule"
Pull My Strings
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/ZZ25BF4EB5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/ZZ25BF4EB5.jpg Binary files differnew file mode 100644 index 0000000..206ea71 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/ZZ25BF4EB5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/elsewhere.txt new file mode 100644 index 0000000..a6b97eb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/elsewhere.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" /> Elsewhere on Wired:
* Over on Cult of Mac Leander Kahney has an awesome rundown on why people still [prefer the Newton][1] to even the potential of the iPhone.
[1]: http://blog.wired.com/cultofmac/2007/01/in_1998_steve_j.html "Apple Newton Versus iPhone"
* Wired Science brings news of a development in which a pox could possibly be used to [kill cancerous cells][2].
[2]: http://blog.wired.com/wiredscience/2007/01/using_a_pox_to_.html "Using a Pox to Kill Cancer"
* My personal fav of the day, Gadget Lab has has a post about [tires infused with essential oils][3]. Imagine if you will... monster truck rallies with a hint of lavender and jasmine in the air...
[3]: http://blog.wired.com/gadgets/2007/01/kumhos_scented_.html "Kumho's Scented Tires"
* Table of Malcontent isn't [wearing pants][4].
[4]: http://blog.wired.com/tableofmalcontents/2007/01/improve_everywh.html "Improv Everywhere's No Pants! Subway Ride"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/jQuery.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/jQuery.jpg Binary files differnew file mode 100644 index 0000000..75fc14d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/jQuery.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/jajuk-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/jajuk-logo.jpg Binary files differnew file mode 100644 index 0000000..00fe3d4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/jajuk-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/jquery.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/jquery.txt new file mode 100644 index 0000000..dcac227 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/jquery.txt @@ -0,0 +1 @@ +Popular AJAX framework [jQuery][1] is one year old today and marks that milestone with a [1.1 release][3]. JQuery has long had a devoted following who tout it's speed and lightweight structure which make it easy to integrate complex effects with on a few lines of code.
The new version of jQuery boasts numerous enhancements including bugs fixes, speed improvements and a simplified API. The creators of jQuery have also overhauled the documentation and gathered the previous scattered tutorials and guides [into one website][2].
There's a page available to [run speed tests][4] on jQuery 1.1 and the new documentation site should be a boon to web developers looking to get started with AJAX.
[1]: http://jquery.com/ "jQuery Javascript Library"
[3]: http://jquery.com/blog/2007/01/14/jquery-birthday-11-new-site-new-docs/ "jQuery New Site New Docs"
[2]: http://docs.jquery.com/ "jQuery documentation"
[4]: http://john.jquery.com/speed/ "jQuery speed test"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/nightly.txt new file mode 100644 index 0000000..20101a3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/nightly.txt @@ -0,0 +1 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build:
* Mark Cuban's Dallas Mavericks franchise has [launched MavsWiki.com][1] a wiki designed to, "be a collaboration between the Mavs and their fans, with the goal being to document every game the Mavs have played." It'll be interesting to see if this catches on.
[1]: http://www.nba.com/mavericks/news/Mavs_Launch_MAVSWIKICOM.html?rss=true "Mavs Launch Mavswiki.Com"
* According to [Apple Insider][2] "Core 2 Duo-based Mac owners who want to unlock next-generation 802.11n wireless technologies hidden inside their computers will first have to fork a few bucks over to Apple." The 802.11n enabler patch will cost $4.99. Certainly $4.99 per person can't mean much to Apple, why not just give it away?
[2]: http://www.appleinsider.com/article.php?id=2398 "Apple to impose 802.11n unlocking fee on Intel Mac owners"
* Footnote, Inc. has [announced an agreement][4] to digitize selected records from the vast holdings of the National Archives. 4.5 million pages are already online and waiting for your annotations.
[4]: http://www.footnote.com/nara.php "National Archives Records available on Footnote"
* Linux doesn't get enough coverage on this blog and I think it's high time we changed that. I just spent the last half hour [listening to the Linux Action show podcast][3] and decided that the Monkey Bites Linux love must spread. As of yet I have no plan, but in the mean time give the show a listen.
[3]: http://www.linuxactionshow.com/?p=75 "The Linux Action Show! Podcast"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/reboot.txt new file mode 100644 index 0000000..0431997 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* Apple has given a iPhone skin for Windows Mobile [the legal smackdown][1]. There's such a thing as trademark protection, but this seem extreme. Fortunately for the hardcore users who absolutely much have the iPhone skin on their Windows Mobile device, the creator of the skin has posted instructions for creating you own version (see link above).
[1]: http://forum.xda-developers.com/showthread.php?p=1097832#post1097832 "iPhone skin removed"
* Drupal, the popular PHP-based content management system, has [released version 5.0][2]. Today also marks the sixth birthday of Drupal. Drupal powers a number of popular sites including [The Onion][3].
[2]: http://drupal.org/drupal-5.0 "Drupal 5.0"
[3]: http://www.theonion.com/content/ "The Onion"
* The rumors of an HD-DVD encryption crack appear to be true; TorrentFreak [reports][4] that an HD-DVD torrent of [Serenity][5] is now available. Can we end the BluRay/HD-DVD format "war" now?
[4]: http://torrentfreak.com/first-hd-dvd-movie-leaked-onto-bittorrent/ "First HD-DVD Movie Leaked Onto BitTorrent"
[5]: http://en.wikipedia.org/wiki/Serenity_(film) "Serenity"
* The FBI is [warning of an email scam][6] in which the scammers suggest a "hitman" is on the trail of the recipients. The FBI site notes: "Please note, providing any personal information in response to an unsolicited e-mail can compromise your identity and open you to identity theft." (Note: The FBI's web design budget appears to very very small.)
[6]: http://www.fbi.gov/cyberinvest/escams.htm "FBI warns of email scam"
* If we spent our time reporting every scam, phishing attack and other security hack that hit MySpace we wouldn't have time for anything else, but this one is funny. Someone apparently hacked MySpace's "Tom" account (the default friend for all new members) to [send out a link to a phishing scam][7]. Not news really until you consider that the Tom account has roughly 148,059,490 friends. What we'd like to know is how much money a phishing attack against MySpace can really generate -- do they ask users to steal their parents credit cards or something? [via Digg]
[7]: http://i12.tinypic.com/3zk2jvr.jpg "Phishing scam screen grab"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/rss.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/rss.txt new file mode 100644 index 0000000..f68b83b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/rss.txt @@ -0,0 +1 @@ +Okay I'm trying to get with this whole [radical transparency][1] thing we're pushing here at Wired so I thought I'd give you a heads up on a story I've been researching.
A couple weeks back, around the beginning of the new year, the mainstream media got caught up in series of stories about how RSS would be a breakthrough technology of 2007. RSS savvy Monkey Bites readers might yawn when Reuters [tries to explain][2] a six year old technology to the masses, but we thought maybe now would be a good time to see how "power users" are utilizing RSS.
I've been digging around the web for technologies and services that allow you to do more with your RSS feeds.
So far I've been looking at a variety of services that do RSS via SMS with a particular emphasis on filtering so only the most important things get sent to your phone. I'm familiar with [Zaptxt][3] and Yahoo's "Alerts" which [offers something similar][4], but if you prefer others let me know.
I've also been playing with Google Reader's new "Trends" analytics tool, which can tell you a lot about your reading habits, but I'm still not sure if it's all that useful.
I'm currently enamored with the idea of archiving meaningful feeds via email and I've been testing [RSSFwd][5] and [RMail][6] which both offer feeds delivered to your email account. But so far I haven't found a way to do exactly what I want, which is to have only items I've flagged sent to my email account.
This weeks Tutorial 'o the Day theme will be RSS power tips and at some point this may develop into a a full article, but in the mean time let's hear what you think. While the rest of the world is just getting up to speed, chances are Monkey Bites readers are already pushing the envelope, so let me know what your favorite RSS tips are in the comments below.
[1]: http://www.longtail.com/the_long_tail/2006/12/what_would_radi_1.html "What Would Radical Transparency Mean For Wired?"
[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyID=2007-01-02T053910Z_01_N29192014_RTRUKOC_0_US-COLUMN-PLUGGEDIN.xml&WTmodLoc=InternetNewsHome_C2_internetNews-4 "Untangle the World Wide Web with RSS"
[3]: http://zaptxt.com/home/ "Zaptxt"
[4]: https://login.yahoo.com/config/login_verify2?.intl=us&.src=ntfy&.done=http%3A%2F%2Falerts.yahoo.com%2Fmain.php%3Fview%3Dblogs "Yahoo Alerts"
[5]: http://rssfwd.com/ "RSSfwd"
[6]: http://www.r-mail.org/ "RMail"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/tut.txt new file mode 100644 index 0000000..1ad4bf3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Mon/tut.txt @@ -0,0 +1 @@ +As I promised in the last post, this week's theme for Tutorial 'o the Day is RSS tips, tricks and hacks. If you don't know what RSS is, dig out from under that rock and get thee to a search engine.
Since most of these are one liners, we'll do two a day.
One of the frustrating things about RSS is that once you start using it you expect every site to offer feeds for every single chunk of data, which, unfortunately, few do. For instance, what if you want to get all of my colleague's posts and avoid me like the plague? There's no easy way to do that with the feeds that this page offers.
Here's a trick from [Micro Persuasion][3]'s Steve Rubel: search by byline and/or column title on Yahoo! News and then subscribe to the search as a feed. Every time your favorite writer has a new article published it'll show up in your feed. The only draw back being the slight lag time between when the article is published and when Yahoo News finds it, but hey, it's better than nothing.
The second tip for the day comes via the blog [Get Rich Slowly][2]. Thanks to [isnoop.net][1] it's easy to track your local movie listings even if the theaters near you don't have their own RSS feed. Just plug in your zip code and the scripts on isnoop will scrap Google to give you a list of theaters with movies, show times and an RSS feed for each. Combine those in your favorite RSS reader and you have an instant list of what's playing, where and when.
[1]: http://isnoop.net/rss/theater.php "Theatre Search"
[2]: http://www.getrichslowly.org/blog/2007/01/14/custom-movie-listings-with-rss/ "Custom Movie Listings with RSS"
[3]: http://www.micropersuasion.com/ "Micro Persuasion"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/elsewhere.txt new file mode 100644 index 0000000..6ac3437 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/elsewhere.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Elsewhere on Wired:
* This has relatively the same effect on me that fingernails on a chalkboard seem to have for other people: Bodyhack has a post (with pics) about a [wrist surface piercing with a watch attached][1]. "Surface piercing is hard to heal and with this chunky watched attached, getting bumped and scraped is inevitable."
[1]: http://blog.wired.com/biotech/2007/01/watch_piercing_.html "Watch piercing never gets left on the nightstand"
* Who says kids are lazy? Game|Life has the story of a 9-year-old Seattle boy who "became a modern day Frank Abagnale, Jr. when he hijacked a handful of cars and sneaked onto an airline flight, all in an effort to visit his grandfather in Dallas." Naturally his mother [blames the whole thing on video games][2].
[2]: http://blog.wired.com/games/2007/01/mother_blames_p.html "Mother Blames PlayStation for Son's Criminal Tendencies"
* Screw iPhone, truly upscale snobs are going to get [the Prada phone][3]. At $780 and sporting a touch screen interface Gadget Lab drily observers: "If an overpriced, touchscreen-only phone sounds oddly familiar, you're not the only one thinking imitation." But doesn't Prada charge like $500 for a belt? So relatively speaking $780 for a phone might not be that bad.
[3]: http://blog.wired.com/gadgets/2007/01/lg_flatters_iph.html "LG Flatters iPhone"
* Listening Post [has the skinny][4] on a new MP3 player that looks like a Rubik's cube. Except that it's all white, which is probably good since "you need to solve the puzzle in order to turn it off."
[4]: http://blog.wired.com/music/2007/01/rubiks_cube_is_.html "Rubik's Cube Is Sweeping the Nation Again"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor-logo.jpg Binary files differnew file mode 100644 index 0000000..0c083fd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor-screen.jpg Binary files differnew file mode 100644 index 0000000..1e0d006 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor-screen2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor-screen2.jpg Binary files differnew file mode 100644 index 0000000..95449b6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor-screen2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor.txt new file mode 100644 index 0000000..ed508f3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/inquisitor.txt @@ -0,0 +1 @@ +Because it lacks a plugin architecture like Firefox, Safari has relatively few add-ons or extra tools. That doesn't mean there aren't *any* add-ons though, and there's some great ones too, like [Inquisitor][1] which adds a Spotlight-like features to Safari's Google Search bar.
I'll confess I don't like Spotlight and I hardly ever use it so I wasn't looking forward to Inquisitor, but I was wrong. Where Spotlight is slow, clumsy and to me, useless, Inquisitor is fast, easy-to-use and makes searching the web easier.
Once installed, just type in the Google search box and the Inquisitor window will pop up with the top search results and attempt to auto-complete your word or phase. By default Inquisitor shows the top 3 Google results, but you can customize that number via Safari's preferences window.
Just below the results is a list of auto-complete suggestions and if you enable the feature, below that you'll see links to other search sites. The Search engine sites themselves are limited to offerings from Google or Yahoo, which I assume is because both offer good, stable APIs.
You can add as many search engines as you'd like to the "additional search engines" links and add keyboard shortcuts as well. It would be nice if the custom search engines could have a postfix string appended to them, but that's about my only quibble with this little gem.
The version of Inquisitor 3 that I's using is still officially a beta (currently beta 2), but I had no stability issues and haven't seen any bugs in my testing. Inquisitor is a great little app and it's free, though I'm sure developer Dave Watanabe wouldn't complain if you donated something toward future development.
[1]: http://www.inquisitorx.com/safari/ "Inquisitor 3"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/myspace.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/myspace.txt new file mode 100644 index 0000000..1b2ff88 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/myspace.txt @@ -0,0 +1 @@ +As we mentioned in yesterday's reboot, MySpace is developing software tools that will allow parents to [track their children's usage][2] of the site (note link requires registration). This morning brings word that the families of four children who were sexually assaulted by people that met on MySpace have [filed suit against News Corp][1], MySpace's owner, for negligence and fraud.
MySpace is hoping that the new tracking software, named "Zephyr" and due to be released this summer, will help stave off what continues to be a growing problem for the popular social networking site.
Though details of Zephyr remain vague, one thing it won't do is provide account passwords. The standalone program, which for now is Windows only, will notify parents whenever a someone logs into a MySpace account from that machine and will provide the name, age and location their children have entered on MySpace, however Zephyr will not give parents access to their children's profiles nor does it let them see email or other password protected communications.
Zephyr stores the data it collects in a password protected file and can notify parents of changes made to the account even if those changes are made from another computer. It also works even if the child's profile is private.
The basis of MySpace's existing security revolves around age restrictions. Last year MySpace enacted features that place restrictions on how adults may contact the site's younger users
Currently MySpace requires users to be over fourteen to register and under sixteen can display their full profiles -- containing hobbies, schools, and any other personal details -- only to people already listed as friends. Others see only the user name, gender, age, and location.
The problem is that the age restrictions aren't really enforceable. To get a full profile that the whole world has access to is a simple as changing your age on the signup form. Zephyr is intended to notify parents if their children are lying about their age to gain access to full profiles.
MySpace says many of Zephyr's specific mechanisms are still being worked out, but one thing is for sure -- the tool won't work if a profile is accessed entirely away from home.
For all practical purposes Zephyr seems to do little more than possibly give MySpace some wiggle room in its many pending lawsuits. The software has little chance of accomplishing anything from a security standpoint, but it does do one thing, it transfers at least some the burden of age policing back to the parents.
MySpace is attempting to walk a thin line here since if they gave parents total access to their children's accounts the kids would likely flee the site in droves for competitors like Facebook.
[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-18T155950Z_01_N18174054_RTRUKOC_0_US-NEWSCORP-MYSPACE.xml&src=rss "More families sue News Corp's MySpace: attorney"
[2]: http://online.wsj.com/google_login.html?url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB116900733587978625.html%3Fmod%3Dgooglenews_wsj "MySpace Moves to Give Parents More Information"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/nightly.txt new file mode 100644 index 0000000..662fe67 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/nightly.txt @@ -0,0 +1 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build:
* More proof that Opera can do anything. [From the Register][1]: "A Swedish Wii owner took advantage of the console's built-in Opera browser and Wi-Fi to tap into his PC's media collection shortly before Christmas. The Wii remote can then be used to show photos and browse iTunes playlists on the TV"
[1]: http://www.reghardware.co.uk/2007/01/18/orb_wii_console/ "Orb brings iTunes to Wii console"
* Google has started pushing Google Checkout again. A couple of months ago they offered merchants free order processing until the end of the year. Now they're targeting buyers with a new deal that's being [promoed on the Google homepage][3]. If you sign up now as a new user, you will get $10 to spend at Google Checkout merchants until March 31, 2007
[3]: http://www.readwriteweb.com/archives/google_promotes_checkout.php "Google Promotes Checkout on Homepage"
* In a move I believe was motivated by a deep desire to bring real world meaning to the theoretical work of [Jean Baudrillard][4], Microsoft has [patched a patch][5]. Microsoft issued a patch to patch a patch that "messed up the way Excel 2000 processes information."
[4]: http://en.wikipedia.org/wiki/Jean_Baudrillard "Wikipedia: Jean Baudrillard"
[5]: http://www.eweek.com/article2/0,1759,2085354,00.asp?kc=EWRSS03119TX1K0000594 "Microsoft Patches Buggy Excel Patch"
* The site your boss doesn't want you to see. According to the tagline on [PointlessSites.com][2] the sites aims to "list here only pointless and useless sites that; are completely pointless, don't have pop up/under ads or too many ads in general, are original, useless, are not offensive." What's not to love?
[2]: http://www.pointlesssites.com/ "The definitive place for pointless websites"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/reboot.txt new file mode 100644 index 0000000..c59853e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* It took a while longer, but Adobe has finally released the final version of Flash Player 9 for Linux. The new plugin can be [downloaded from the Adobe site][1].
[1]: http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash&P2_Platform=Linux&P3_Browser_Version=Netscape4 "Download Flash Player 9 for Linux"
* Web [newspaper blog traffic tripled last month][2]. According to Reuters article "U.S. news organizations are increasingly calling on their reporters and editors to write news blogs and compete with the expanding Internet format for informal analysis and opinion." Oh are they ever dear reader, and sometimes they use bullwhips to drive their point home.
[2]: http://news.yahoo.com/s/nm/20070117/wr_nm/nielsen_blogs_dc_1 "Web newspaper blog traffic triples in Dec"
* Microsoft [plans to offer][3] Windows Vista for sale and download online, marking a new step for the software company, which has previously sold Windows only on packaged discs or pre-loaded on computers.
[3]: http://news.yahoo.com/s/ap/20070118/ap_on_hi_te/microsoft_vista "Microsoft to offer Windows Vista online"
* CNet has compiled a list of the [top ten software downloads][4] of the past ten years, based on download.com usage. ICQ tops the list. I can see where for maybe three or four of those years download.com would be a good indicator of popularity, but after that, I mean does anyone actually download things from download.com?
[4]: http://www.cnet.com/4520-11136_1-6257577-1.html "Top 10 downloads of the past 10 years"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelf-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelf-1.jpg Binary files differnew file mode 100644 index 0000000..f71573f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelf-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelf-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelf-2.jpg Binary files differnew file mode 100644 index 0000000..d638b2e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelf-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelf-3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelf-3.jpg Binary files differnew file mode 100644 index 0000000..e22984f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelf-3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelfari-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelfari-logo.jpg Binary files differnew file mode 100644 index 0000000..119731a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelfari-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelfari.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelfari.txt new file mode 100644 index 0000000..5aa1dd5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Thu/shelfari.txt @@ -0,0 +1 @@ +As a consummate bibliophile I've tried just about every book-related site out there, my favorite remains LibraryThing, but lately I've been playing around with Shelfari. Shelfari launched back in October and has since developed a relatively strong following.
Shelfari is a social network that revolves around books and has an attractive, easy-to-use interface whose design and layout are vaguely reminiscent of the popular Mac software Delicious Library.
Speaking of Delicious Library, Shelfari allows you to upload your Delicious Library info as a text file which means you don't have to input excessive amounts of data (a similar function is available for LibraryThing exports).
If you don't have your book data already in some malleable digital form, you'll have to enter it by hand or search to see if other users have already input your favorite books. You can search for books by title, author, ISBN or subject.
There's all the familiar trappings of social networks, profiles, tagging, friends, recommendations, and more (if I had a dollar for every time I've typed that sentence...).
Shelfari also takes tip from Digg and offers a number of lists like "Top Books," "Top Tags," "Most Opinions" and "Top Shelves" to help you find books that might pique your interest.
Shelfari lets you create separate book shelves for books you've read, books you own and books you plan to read. Your books are displayed, as you might expect, on a bookshelf and above each cover image (pulled from Amazon) are links to friends opinions and other metadata. Each book also has a direct link for purchasing via Amazon, which is part of Shelfari's revenue stream.
Unlike LibraryThing which charges an annual fee for users that want to list over 200 books, Shelfari is free regardless of the size of your book collection.
Overall I liked Shelfari, it has a simple and slick interface an it's easy to add books to your listing. At the same time, something about Shelfari put me off a bit, perhaps it's too slick.
Shelfari is a bit like a meat-space Borders or Barnes and Nobel, clean, organized and well lit, whereas LibraryThing is bit more like a local bookshop, it's run by one person, it's a bit musty, there's dust in the corners and the lighting isn't perfect, but it has a genuine community feel that Shelfari lacks.
Then there's Shelfari's misguided decision to refer to users as "Shelfarians."
My search for the perfect book cataloguing service isn't over yet. What I'd really like is a site that offers a robust API --like the Flickr API-- anyone have any suggestions?
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/build.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/build.txt new file mode 100644 index 0000000..ac66e48 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/build.txt @@ -0,0 +1 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build:
* [The Freedom Toaster][2] is a self server kiosk that lets you burn software and media. Currently the project is limited to South Africa. From the website: "The Freedom Toaster project began as a means of overcoming the difficulty in obtaining Linux and Open Source software due to the restrictive telecommunications environment in South Africa, where the easy downloading of large pieces of software is just not possible for everyone."
[2]: http://www.freedomtoaster.org/?q=home "Freedom Toaster"
* So far it's just a rumor but [according to ZDNet][1] blogger Mary Jo Foley, Microsoft will be offering a "Family Pack" discount on Vista Ultimate edition. Foley claims that plans are afoot to "allow Vista Ultimate customers to purchase two additional copies of Vista Home Premium for somewhere between $50 to $99 a piece."
[1]: http://blogs.zdnet.com/microsoft/?p=201 "Microsoft to offer Vista ‘Family Pack’ discount for Ultimate users"
* Google pulls a page from Microsoft's playbook. Google has [removed Yahoo and MapQuest Maps][3] from their search results page. In an official statement Google tells Search Engine Land that, "Google is always working to improve search. The redesign of maps onebox better simplifies the Google user experience when looking for business and address information." In other words shut up and and eat it; Google knows what's best for you.
[3]: http://searchengineland.com/070116-103251.php "Google removes links to Yahoo and MapQuest maps"
* It may not be not software related, but it's pretty cool: George Clooney and the SCI FI Channel are teaming up to [bring a six-hour miniseries][4] version of Neal Stephenson's The Diamond Age to the small screen. Please don't screw this up Mr. Clooney. [via [BoingBoing][5]]
[4]: http://www.scifi.com/scifiwire/index.php?category=0&id=39447 "Clooney, Others Develop SCI FI Shows"
[5]: http://www.boingboing.net/2007/01/16/clooney_and_scifi_ma.html "Clooney and SciFi making "Diamond Age" miniseries "
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/elsewhere.txt new file mode 100644 index 0000000..19b38a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/elsewhere.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Elsewhere on Wired:
* Randy Dotinga over at Bodyhack has news of new study which finds that video games may be [good for your head][1]. Didn't [Steven Johnson][2] already say that? Silly scientists and their "proof" and "evidence."
[1]: http://blog.wired.com/biotech/2007/01/video_games_goo.html "Video Games: Good for Your Head (!)"
[2]: http://stevenberlinjohnson.com/ "Everything Bad is Good For You"
* Autopia [reports][3] that Lotus Engineering, which helped to develop the only-cool-electric-car, the Tesla Motors electric car, has partnered with ZAP, a small Santa Rosa company.
[3]: http://blog.wired.com/cars/2007/01/lotus_and_zap_t.html "Lotus and ZAP Team for EVs"
* Forget the video iPod, if you want your movies really, really, really Zoolander-style small, you need to check out Gadget Lab's write up on a [wristwatch that plays movies][4].
[4]: http://blog.wired.com/gadgets/2007/01/wristwatch_play.html "Wristwatch Plays Movies"
* Table of Malcontents has some great [surreal paintings][5] from Polish artist Jacek Yerka.
[5]: http://blog.wired.com/tableofmalcontents/2007/01/jacek_yerka.html "Jacek Yerka"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/outlook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/outlook.txt new file mode 100644 index 0000000..ad3eb39 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/outlook.txt @@ -0,0 +1 @@ +As the public release of Vista and Office 2007 draw near more details about the new software is emerging. One such detail that emerged last week involves Outlook 2007 which no longer uses Internet Explorer as an HTML rendering engine and instead relies on the rendering engine used by Word 2007.
There was [much][1] [uproar][6] in certain quarters as Word's rendering engine has historically been substandard. Considering that a number of popular authoring tools, such as Dreamweaver ship with special tools whose sole purpose is to clean up the often bloated, non-standards-based output of MS Word's HTML output, using that engine for Outlook might seem like an odd choice.
Rumors have swirled about as to the reasoning behind the switch so to put matters to rest I got in touch with Jessica Arnold, Product Manager for Microsoft Office Outlook 2007.
It turns out that even older version of Outlook use the Word rendering engine for creating HTML emails so there's no real change on the authoring end. The change to using Word for received emails come because, according to Arnold, "A big thing we heard from customers is that they wanted the richness of the editing experience they were used to from Word integrated throughout Outlook."
The problem she says was that "often the content people created looked different to the recipient receiving it - like the formatting would be slightly off, or things wouldn't appear as they had when the message was in "compose" mode."
The desire for consistency appears to be the main motivation, but Arnold did admit that "for some particular users this may not be true and we're always looking for ways to improve our rendering support in the future."
For a full rundown on what HTML is available via the Word rendering engine there are [two pages][2] [worth of specs][3] on Microsoft's website. There's also a white paper on what's [new in Outlook 2007][4]. Microsoft has a [code validator][5] (Windows only) for those looking to create Outlook 2007 compatible emails using other authoring tools.
Perhaps the most annoying thing for users looking to deliver HTML email newsletters and the like is a lack of support for CSS positioning with <code>div</code> tags and the lack of support for the CSS float property. Without these tools it will be difficult if not impossible to design standards compliant HTML emails.
Arnold says "customers using Outlook don't just want to display HTML content, the way they do in their browser, but also have an expectation that they should be able to author that content as well." Arnold claims "Word's new HTML rendering engine has been improved based on HTML and CSS standards," but did not provide any specifics.
However given that many popular mail clients and services have HTML rendering disabled by default (GMail for instance), and many users consider HTML email a nuisance, perhaps the outcry is misplaced. It's possible that only people really effected by this will be spammers who rely on embedded images to verify when email was viewed.
Unfortunately Microsoft's change of rendering engine doesn't appear to have been motivated by a desire to fight spam or enhance security, while background images are not supported, images nested in tables are, which means spammers can still get information sent back when Outlook renders the HTML content.
If your business relies on HTML email, you'll definitely want to revise your code come January 30th when the new versions of Vista and Office hit the shelves. Until then you might try contacting Microsoft, Arnold says "the Word team is continually examining HTML and CSS support based on customer feedback."
[1]: http://www.campaignmonitor.com/blog/archives/2007/01/microsoft_takes_email_design_b.html "Microsoft takes email design back 5 years"
[2]: http://msdn2.microsoft.com/en-us/library/aa338201.aspx "Word 2007 HTML and CSS Rendering Capabilities in Outlook 2007 (Part 1 of 2)"
[3]: http://msdn2.microsoft.com/en-us/library/aa338200.aspx "Word 2007 HTML and CSS Rendering Capabilities in Outlook 2007 (Part 2 of 2)"
[4]: http://office.microsoft.com/en-us/outlook/HA102109301033.aspx "Microsoft Office Outlook 2007 e-mail editor white paper"
[5]: http://www.microsoft.com/downloads/details.aspx?familyid=0b764c08-0f86-431e-8bd5-ef0e9ce26a3a&displaylang=en "Outlook HTML and CSS Validator"
[6]: http://www.sitepoint.com/newsletter/viewissue.php?id=3&issue=156#5 "Microsoft Breaks HTML Email Rendering in Outlook 2007"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/reboot.txt new file mode 100644 index 0000000..32fb6b4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot suggests you not put today's fresh coffee right next to the mug with yesterday's leftover, cold and somewhat slimy coffee as this may cause early morning confusion and unhappiness.
* [Wikiseek][1] is a new Wikipedia search engine that indexes only Wikipedia pages and sites those pages link to, which should make for more focused, less spam-laden search results. It's also much faster than Wikipedia's current search engine.
[1]: http://www.wikiseek.com/ "Wikiseek"
* Netflix has [unveiled a new streaming movie service][2]. Select subscribers will gain access to the new service, "Watch Now," which will allow users to watch films straight from the web. The service does not offer actual downloads to cut the risk of piracy. Initially only 250,000 customers will get Watch Now, but Netflix plans to add roughly the same amount each week until June.
[2]: http://news.bbc.co.uk/1/hi/business/6266819.stm "Netflix unveils online film offer"
* Open source is the way forward. An article over on CNet [claims][3] that more companies are "finding that the best way to make money with software is to give it away." The examples they cite are a bit obscure, but hey, here's hoping they're right.
[3]: http://news.com.com/2100-7344_3-6150104.html?part=rss&tag=2547-1_3-0-20&subj=news "Taking the plunge into open source"
* HSIA: [US man badly burned by self-combusting mobile][4]
[4]: http://www.theregister.co.uk/2007/01/16/mobile_phone_fire/ "US man badly burned by self-combusting mobile"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/tut.txt new file mode 100644 index 0000000..7a72866 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/tut.txt @@ -0,0 +1 @@ +<img alt="Feedicon" title="Feedicon" src="http://blog.wired.com/photos/uncategorized/feedicon.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Today's RSS tip comes from comments on yesterday's post. I'd been looking for a way to archive selected feed entries as email messages for long term storage, but using services like <a href="http://rssfwd.com/" title="RSSfwd">RSSFwd</a> or <a href="http://www.r-mail.org/" title="RMail">RMail</a> by themselves sends everything to your email address.
This morning it occurred to me that using del.icio.us or any other social bookmarking site as an intermediary would make it possible. When I checked my email I noticed that Monkey Bites reader David Rotham had [posted exactly the same workflow][2]. Here's what he suggests:
>decide on how you'll tag items that you want emailed to you. Use that tag to "flag" items you want emailed to you. Get an RSS feed for your user ID and that tag from del.icio.us. Give that feed to RMail. That's it.
So there you have it. And naturally David's tips apply to any social bookmarking site. If you send those emails to GMail, you've got a permanent online archive of news that you can tag and search whenever and wherever you need.
The second tip for the day is pretty simple but something I didn't realize was available. As Digg continues to grow in popularity the signal to noise ratio seems to have corresponding decline. Posts that have nothing to do with technology still end up in that category, but it turns out that you can actually create feeds from Digg searches.
Using a combination of "not" operators in the advanced search page I've generated a Digg feed that cuts out a lot of meaningless chatter that was cluttering up my RSS reader. Muhammad Saleem over at The Mu Life has the full details on [creating search-based Digg feeds][1].
[1]: http://themulife.com/?p=580 "Digg.com's Lesser Known RSS Features"
[2]: http://blog.wired.com/monkeybites/2007/01/stories_were_wo.html "RSS Power Users"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek-javascript.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek-javascript.jpg Binary files differnew file mode 100644 index 0000000..a119d36 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek-javascript.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek-logo.jpg Binary files differnew file mode 100644 index 0000000..440e3d1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek-results.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek-results.jpg Binary files differnew file mode 100644 index 0000000..0aa1c1d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek-results.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek.txt new file mode 100644 index 0000000..b7ddcb6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Tues/wikiseek.txt @@ -0,0 +1 @@ +The search engine company SearchMe has launched a new service, [Wikiseek][1], which indexes and searches the contents of Wikipedia and only those sites which are referenced within Wikipedia. Though not officially a part of Wikipedia, TechCrunch [reports][2] that Wikiseek was "built with Wikipedia's assistance and permission"
Because Wikiseek only indexes Wikipedia and sites that Wikipedia links to, the results are less subject to the spam and SEO schemes that can clutter up Google and Yahoo search listings.
According to the Wikiseek pages, the search engine "utilizes Searchme's category refinement technology, providing suggested search refinements based on user tagging and categorization within Wikipedia, making results more relevant than conventional search engines."
Along with search results Wikiseek displays a tag cloud which allows you to narrow or broaden your search results based on topically related information.
Wikiseek offer a Firefox [search plugin][3] as well as a [Javascript-based extension][4] that alters actual Wikipedia pages to add a Wikiseek search button (see screenshot below). Hopefully similar options will be available for other browsers in the future.
SearchMe is using Wikiseek as a showcase product and is donating a large portion of the advertising revenue generated by Wikiseek, back to Wikipedia. The company also promises to have more niche search engines in the works.
If Wikiseek is any indication, SearchMe will be one to watch. The interface has the simplicity of Google, but searches are considerably faster, lightening fast is fact. Granted Wikiseek is indexing far fewer pages than Google or Yahoo, but if speed is a factor, niche search engines like Wikiseek may pose a serious threat to the giants like Google and Yahoo.
Steve Rubel of Micro Persuasion has [an interesting post][5] about the growing influence of Wikipedia and how it could pose a big threat to Google in the near future. Here's some statistics from his post:
>The number of Wikipedians who have edited ten or more articles continues its hockey stick growth. In October 2006 that number climbed to 158,000 people. Further, media citations rose 300% last year, according to data compiled using Factiva. Last year Wikipedia was cited 11,000 times in the press. Traffic is on the rise too. Hitwise says that Wikipedia is the 20th most visited domain in the US.
While Wikiseek will probably not pose a serious threat to the search giants, Wikipedia founder Jimmy Wales is looking to compete with the search giants at some point. While few details have yet emerged, his for profit company Wikia is reportedly working a new search engine dubbed Wikisari which aims to be a people-powered alternative to Google.
With numbers like the ones cited above, Wikipedia may indeed pose a threat to Google, Yahoo and the rest.
[1]: http://www.wikiseek.com "Wikiseek"
[2]: http://www.techcrunch.com/2007/01/16/wikipedia-search-engine-wikiseek-launches/ "TechCrunch: Wikipedia Search Engine WikiSeek Launches"
[3]: http://www.wikiseek.com/tools/search_plugin/ "Wikiseek Firefox Search Plugin"
[4]: http://www.wikiseek.com/tools/FF_extension/ "Wikiseek Firefox extension"
[5]: http://www.micropersuasion.com/2007/01/wikipedia_threa.html "Micro Persuasion: The Wikipedia Threat to Google's Empire"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/Knowledge_wants.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/Knowledge_wants.jpg Binary files differnew file mode 100644 index 0000000..45a9888 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/Knowledge_wants.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/bbedit-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/bbedit-icon.jpg Binary files differnew file mode 100644 index 0000000..6ae3c32 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/bbedit-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/bbedit.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/bbedit.txt new file mode 100644 index 0000000..d3a8744 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/bbedit.txt @@ -0,0 +1 @@ +Amidst last week's the hoopla over the iPhone, Bare Bones Software quietly [announced a new version][1] of their flagship editor BBEdit. This release, which brings the venerable Mac text editor to version 8.6, features enhanced Java and TeX language support, and adds support for the "Markdown" structured text format.
The Markdown support includes coloring and folding of document structural elements, as well as the ability to preview the finished document using the "Preview in BBEdit" command, which leverages WebKit.
I have several modified versions of Markdown and unfortunately there doesn't seem to be a way to get BBEdit to use these for the native features.
Other enhancements include new commands "Save as Styled HTML" and "Copy as Styled HTML" which generate HTML code duplicating the layout and text styles of syntax-colored code. BBEdit can also now read and write the "binary property list" format, primarily used for preferences files in Mac OS X 10.4.
BBEdit 8.6 is also a maintenance release that fixes reported issues and adds several other refinements to this award-winning HTML and text editor.
BBEdit 8.6 is a [free upgrade][2] for users with version 8.5.x. Users of BBEdit 8 may upgrade for $30, while those with version 7 can upgrade for $40. A new copy of 8.6 is $125.
[2]: http://www.barebones.com/support/bbedit/updates.shtml "BBEdit 8.6"
[1]: http://web.barebones.com/company/press.php?news_id=158 "Bare Bones Software Ships BBEdit 8.6"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/elsewhere.txt new file mode 100644 index 0000000..73d54ba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/elsewhere.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Elsewhere on Wired:
* Listening Post's Eliot Van Buskirk has a story about [libraries and Windows-only DRM][1]. "Physical library cards don't require a certain type of wallet; why should the electronic ones only work on Windows?"
[1]: http://blog.wired.com/music/2007/01/library_media_l.html "Public Libraries, Private DRM"
* Game|Life [reports][2] that someone has figured out a way to use the PlayStation 3 as a digital video recorder using the Plextor ConvertX DVR and MythTV.
[2]: http://blog.wired.com/games/2007/01/ps3_does_dvr.html "PS3: The Next TiVo?"
* According to an as-yet unverified document provided to [27B Stroke 6][3] by a privacy activist, there's a program afoot to standardize state driver's licenses and create a de facto national I.D card using private sector contractors.
[3]: http://blog.wired.com/27bstroke6/2007/01/national_id_to_.html "National ID to Be Privatized, Activist Says He Has Docs"
* Hopefully the last item will one day end up in [The Museum of Unworkable Devices][4], which we discovered this morning via Table of Malcontents.
[4]: http://blog.wired.com/tableofmalcontents/2007/01/the_museum_of_u.html "The Museum of Unworkable Devices"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/freesoftware.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/freesoftware.txt new file mode 100644 index 0000000..59ff5d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/freesoftware.txt @@ -0,0 +1 @@ +There's an interesting, albeit rather long, new study available from an international, interdisciplinary team of researchers that documents Free/Libre/Open Source Software (FLOSS) and its economic influences on the EU.
The full text of the 287 page report, entitled ""Economic impact of open source software on innovation and the competitiveness of the Information and Communication Technologies (ICT) sector in the EU," is [available online][1] (PDF). The report provides one of the most thorough and comprehensive looks at the FLOSS community and what FLOSS software has done for the IT community that I've ever seen.
While most of the statics and numbers are geared toward EU and European nations in general (the lead contractor of the study was UNU-MERIT from the Netherlands), the study nevertheless provides a fascinating look at free software and its impact on the world at large.
Particularly stunning is the estimated time to reproduce this software in proprietary format (131,000 person years) and the estimated amount of donated programming effort in monetary terms (800 million per year).
Here's some more highlights pulled straight from the text:
>* Almost two-thirds of FLOSS software is still written by individuals; firms contribute about 15% and other institutions another 20%.
* Europe is the leading region in terms of globally collaborating FLOSS software developers, and leads in terms of global project leaders, followed closely by North America (interestingly, more in the East Coast than the West). Asia and Latin America.
* The existing base of quality FLOSS applications with reasonable quality control and distribution would <strong>cost firms almost Euro 12 billion to reproduce internally</strong>. This code base has been doubling every 18-24 months over the past eight years, and this growth is projected to continue for several more years.
* This existing base of FLOSS software <strong>represents a lower bound of about 131 000 real person-years of effort that has been devoted exclusively by programmers</strong>. As this is mostly by individuals not directly paid for development, it represents a significant gap in national accounts of productivity. Annualised and adjusted for growth this represents at least Euro 800 million in voluntary contribution from programmers alone each year, of which nearly half are based in Europe.
* Firms have invested an estimated Euro 1.2 billion in developing FLOSS software that is made freely available. Such firms represent in total at least 565 000 jobs and Euro 263 billion in annual revenue. Contributing firms are from several non-IT (but often ICT intensive) sectors, and tend to have much higher revenues than non-contributing firms.
* Defined broadly, FLOSS-related services could reach a 32% share of all IT services by 2010, and the FLOSS-related share of the economy could reach 4% of European GDP by 2010.
* Proprietary packaged software firms account for well below 10% of employment of software developers in the U.S., and "IT user" firms account for over 70% of software developers employed with a similar salary (and thus skill) level. This suggests a relatively low potential for cannibalisation (sic) of proprietary software jobs by FLOSS, and suggests a relatively high potential for software developer jobs to become increasingly FLOSS- related.
This report gives me a warm fuzzy feeling every time I think about it. As government documents go this one is pretty readable and if you have any interest in evangelizing for open source software there's a enough positive numbers in here to sway the opinions of the most hardened proprietary skeptics.
[Discovered via BoingBoing][2]]
[1]: http://ec.europa.eu/enterprise/ict/policy/doc/2006-11-20-flossimpact.pdf ""Economic impact of open source software on innovation and the competitiveness of the Information and Communication Technologies (ICT) sector in the EU"
[2]: http://www.boingboing.net/2007/01/17/giant_amazing_study_.html "BoingBoing: Giant, amazing study of Free/Open software"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk-logo.jpg Binary files differnew file mode 100644 index 0000000..00fe3d4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk-screen.jpg Binary files differnew file mode 100644 index 0000000..91707c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk-stats.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk-stats.jpg Binary files differnew file mode 100644 index 0000000..21ff5bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk-stats.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk.txt new file mode 100644 index 0000000..1351b15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/jajuk.txt @@ -0,0 +1 @@ +Since my dream of a native OS X port of [Amarok][1] seems unlikely I've taken to exploring other options. Today I ran across [Jajuk][2], a cross-platform, Java-based music jukebox. Jajuk is a Free Software published under GPL license and requires Java 1.5.
Jajuk has been around a while, but they recently upgraded to version 1.3 which utilizes mPlayer to add more supported music formats. Because I don't have mPlayer installed I wasn't able to test that feature, but MP3 files play fine without an extra work.
Jajuk has some nice features and mirrors Amarok fairly closely. highlights include:
* Ogg, ID3 V1 and V2 support
* Dockable perspectives and views
* Wikipedia view displays artist discography
* Visual catalog of all albums by covers
* Dynamic playlist creation by drag and drop
* Configurable cross-fade
* Recursive play/repeat/shuffle/push in directories/sub-directories or by genre/artist/albums...
* Best Of smart function to play your favorite tracks
Jajuk recommends using Java 1.5, but I got it to run using 1.4, though it did flicker occasionally so if you want to test it on OS X without upgrading Java it's possible, though for long term usage I'd recommend you upgrade to Java 1.5.
Jajuk has no trouble scanning my library and in fact it was able to do so in just over 5 minutes which isn't bad for 65 gigs worth of music, the same task in iTunes takes at least double that.
I had no trouble fetching cover art or CDDB info and the in-app Wikipedia lookup was surprisingly fast. There's also a nice graphical breakdown of your music based on tags that lets you see some aggregated metadata about your music collection (see screenshot below).
I'll admit that I don't really like Java apps, but Jajuk bucks the trend of the previous apps I've used by managing to be both fast and stable. That said, it still won't replace iTunes for me.
Because it's Java-based you can [test out Jajuk in your browser][3] if you'd like to use it without downloading.
[1]: http://amarok.kde.org/ "Amarok"
[2]: http://jajuk.info/index.html "Jajuk Advanced Jukebox"
[3]: http://jajuk.info/jnlp.html "Launch jajuk online"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/maya.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/maya.jpg Binary files differnew file mode 100644 index 0000000..ab48984 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/maya.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/maya.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/maya.txt new file mode 100644 index 0000000..c6ccc9e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/maya.txt @@ -0,0 +1 @@ +Autodesk, Inc. announced [Maya 8.5][1] yesterday with support for Intel-powered Macs, which should be music to ears of many an animator looking to upgrade their workstation.
The new software enables faster completion of complex animation and simulation tasks, giving artists enhanced creative control on multiple platforms.
Marc Petit, Autodesk's Media & Entertainment vice president, says in the press release, "Autodesk Maya 8.5 is our first Universal application of Maya. This multi-threaded software leverages the latest multi-core workstations from Apple. Maya 8.5 equips digital artists with innovative new technologies such as Maya Nucleus, a unified simulation framework, as well as greater productivity."
New features in Maya include the Maya Nucleus Unified Simulation Framework, a unified simulation framework, Maya nCloth, a module built on Nucleus technology which lets you quickly direct and control cloth, and other material simulations, and the addition of a Python scripting support.
The Python support has bindings to the OpenMaya API which gives you an alternative language for plug-in development. In addition, the Maya Python modules can be imported into an external standalone Python interpreter for batch processing.
There are half a dozen other enhancements which you can [read about on the Autodesk site][2]. Maya ships in two versions, Complete which will set you back $2000 and Ultimate which is a whopping $7000.
[1]: http://usa.autodesk.com/adsk/servlet/item?siteID=123112&id=7635770 "Maya 8.5"
[2]: http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=7635643 "New Features Maya 8.5"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/nightly.txt new file mode 100644 index 0000000..1661aa0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/nightly.txt @@ -0,0 +1 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build:
* Our own Listening Post has some good coverage of Apple's announcement that the company will [license its FairPlay DRM technology][1] to hardware vendors that are part of the "Made for iPod" program.
[1]: http://blog.wired.com/music/2007/01/apple_opens_fai.html "Apple Opens Fairplay DRM to NetGear"
* Not to be outdone by its stateside equivalent, the RIAA, the International Federation of the Phonographic Industries has [threatened to take legal action against ISPs][2] if they don't stop users who illegally upload and download music. Luckily, the folks at the IFPI don't seem to have heard of [Tor][3].
[2]: http://www.marketwatch.com/news/story/music-industry-declares-war-internet/story.aspx?guid=%7B0D43D22C-F418-4947-95AE-82A44A2B55DB%7D "Music industry declares war on Internet providers"
[3]: http://tor.eff.org/ "Tor: anonymity online"
* The Choose Your Own Adventure series is coming to the iPod. I don't know if I would get into these anymore, but I loved them when I was kid. Book number one is [now available for download][4] — free of charge until Jan 25, 2007.
[4]: http://www.cyoastore.com/product/show/5773 "Choose Your Own Adventure for the iPod"
* And finally, this Reuters story is just [too amazing not to mention][5]: A New York-based designer has come up with a mirror equipped with infrared technology that sends a live video feed to any cell phone, e-mail account or personal digital assistant device selected by a shopper. Christopher Enright, chief technology officer for digital design company IconNicholson, said putting these mirrors outside store fitting rooms meant women could go shopping with their friends -- remotely. "She could be in Paris, your mom, watching you try on your wedding dress (while you are in New York)," Enright told Reuters on Tuesday as he unveiled the interactive mirror at a retail trade show. Just think of the possibilities for all those one-way mirrors in Italian restaurants...
[5]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2007-01-18T002818Z_01_N17321711_RTRUKOC_0_US-LIFE-MIRROR.xml&src=rss "Mirror, mirror on the wall, is this dress for me?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/reboot.txt new file mode 100644 index 0000000..d3172e7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot notes that the third whiskey seems far less essential the morning after.
* Global digital music sales [nearly doubled in 2006][1], but still failed to over take CDs. The same report, from the International Federation of the Phonographic Industry (IFPI) also claims that overall music sales were down 4 percent, something the report attributes to piracy, though it lacks any evidence to back that up.
[1]: http://www.ifpi.org/content/section_resources/digital-music-report.html "IFPI Digital Music Report 2007"
* MySpace will begin [offering parental notification software][2] in an effort to appease critics who claim the site is chock full of underage users. The software, dubbed "Zephyr," can be used to find out what name, age and location their children use to represent themselves on MySpace. No word on how that software might also be used by people who are not the parents of the children.
[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-17T065753Z_01_N16209418_RTRUKOC_0_US-MYSPACE-ZEPHYR.xml&src=rss "MySpace to offer parental notification software"
* Despite Microsoft's claim of 100 million IE7 installs, Firefox's share of the U.S. browser market is at 14 percent and has [continued to grow][3] each of the last three months. The disparate claims can probably be attributed to the fact that most IE7 users are upgrading from IE6 rather than switching from anther browser.
[3]: http://www.informationweek.com/news/showArticle.jhtml?articleID=196901142 "Despite 100 Million IE 7 Installs, Microsoft's Browser Still Loses Ground"
* Bad news for my English friends: According to a UK survey one in eight men would [swap their girlfriend for an iPod][4] or similar must-have gadget. No word on how many lonely nerds would swap their aging 3G iPod for a girlfriend.
[4]: http://techdigest.tv/2007/01/1_in_8_men_woul.html "1 in 8 men would dump their girlfrend for an iPod"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/tut.txt new file mode 100644 index 0000000..fa20054 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.15.07/Wed/tut.txt @@ -0,0 +1 @@ +Today's RSS power user tip is a modification of a [Lifehacker tip][1] I ran across recently. Some information, like job and apartment listings is extremely time sensitive, miss an announcement and you could miss out on that rent-controlled beauty in the East Village.
The Lifehacker article linked above outlines how to get RSS feeds for Craig's List searches. Just enter your search criteria and look for the RSS link at the bottom of the page. Of course you need not use Craig's List, any similar service that offers RSS feeds for searches would work as well.
But rather than refreshing your news reader obsessively, why not just use [Yahoo's Alerts][2] or a similar service to send those messages to directly to your phone so you can find out about new apartment listings even when you're away from the computer?
To use Yahoo Alerts just login to your Yahoo account and head to the alerts page. Click the "feed/blog" category and paste in the url from Craig's List.
If you haven't already, set up your Yahoo Alert's account to send messages to your mobile phone. Enable your new feed to send SMS text messages and you're done. Using Yahoo Alerts you can limit the number of messages that get forwarded to your phone since, depending on your mobile plan, this may cost a bit of money.
Now you can get new apartment listings (or job leads or any number of other things) even when you're away from your computer.
[1]: http://www.lifehacker.com/software/top/technophilia-craigslist-for-power-users-204312.php "Craigslist for power users"
[2]: http://alerts.yahoo.com/main.php?view=splash_signup_signin&.done=http%3A%2F%2Falerts.yahoo.com%2Fmain.php%3Fview%3Dblogs "Yahoo Alerts"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/amapedia.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/amapedia.jpg Binary files differnew file mode 100644 index 0000000..0242fc2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/amapedia.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/amazon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/amazon.txt new file mode 100644 index 0000000..9baf817 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/amazon.txt @@ -0,0 +1 @@ +Amazon has become quite the fan of wikis lately, first came the investment in Wikia and now there's a [new service called Amapedia][1]. Amapedia allows users to create and tag their own product articles. The articles are directly linked from their Amazon product pages.
Content is a bit sparse at the moment, the site launched with 800 articles and few thousand more ported over from an earlier version of the site, but for the future the content development is in the hands of users. To contribute to Amapedia you must be a registered Amazon.com shopper.
One of the potential problems facing Amapedia is of course spam from product producers touting their wares or unfairly slagging the competition. There's a note in the guidelines that puts is thusly: "Amapedia is not the wild west... only a certain type of content belongs on this site.
As for what that "type of content" is, the following guidelines are listed on Amapedia:
Do:
* write about your favorite products
* find out what others’ favorite products are
* quantify why you like or dislike a product as much as possible ("oh, I didn’t like it" without any context is not very helpful to others)
* cite your sources
* disclose if you are affiliated with the product, such as being the author of a book (or the spouse or close friend of the author)
>Do Not:
* self-promote by referring to yourself, your work, or your Web sites in an article that is unrelated to your self-promotion
* store personal photos
* create a personal home page (we may support that in the future)
* talk in the first person in the main body of product articles (that’s what the "Anecdotes, Experiences, Opinions, Comments" section is for)
* express personal opinions about things that are not products (i.e., while we are very interested in your opinion about a book about the Iraq war -- particularly so if you can calmly document specific good and bad points about it -- we are not at all interested in your personal opinions about the Iraq war itself on this site)
* accept payments or gifts from anyone to edit material on Amapedia
At the moment there's no back-end way to scrape out the data, but given Amazon's typically robust APIs it's probably safe to assume that they're working on something. I'm curious if that last item was added recently, vis-à-vis Microsoft's paid wiki-editing snafu.
[1]: http://amapedia.amazon.com/ "Amapedia"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/reboot.txt new file mode 100644 index 0000000..50ca16e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* Proving that social media is more than just a marketing word, Senator Hillary Clinton has turned to Yahoo Answers for some ideas on how normal Americans would [improve health care in the United States][1]. In the two days since Clinton posted her question nearly, 35,000 responses have been offered up.
[1]: http://answers.yahoo.com/question/index?qid=20070124144113AAVmBL1 "Based on your own family's experience, what do you think we should do to improve health care in America?"
* In a move that takes hypocrisy to astounding new levels, North Korea says that South Korea's [ban of 30 pro-North websites][2] violates "freedom." We at Monkey Bites abhor all forms of censorship, but this is a bit like black calling itself a kettle. Or words to that effect.
[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-26T062528Z_01_SEO147382_RTRUKOC_0_US-KOREA-NORTH-INTERNET.xml&src=rss "North Korea says South's Web ban violates freedom"
* IBM will [donate][3] its new "Identity Mixer" software to the Higgins open-source project. The software is designed to let people keep personal information secret when performing online business transactions. Anthony Nadalin, IBM's chief security architect tells Cnet, "the idea is that people provide encrypted digital credentials issued by trusted parties like a bank or government agency when transacting online, instead of sharing credit card or other details in plain text."
[3]: http://news.com.com/2100-1029_3-6153625.html?part=rss&tag=2547-1_3-0-20&subj=news "IBM donates new privacy tool to open-source"
* Pain in the Tech has a post on how you can [store your iTunes library using Amazon's S3][4] service and be able to access it from anywhere.
[4]: http://paininthetech.com/itunes_everywhere_using_amazon_s3_as_your_music_library "Using Amazon S3 as your music library"
* Yesterday in pointing out a Gadget Lab post on the possibility of new DeLoreans I made a joke about Flux Capacitors. Well it turns out someone at DeLorean has a sense of humor -- you can [order one from the Delorean parts store][5]. Just follow that link and search for "flux."
[5]: http://delorean.com/dmcstore/onlinestore-search.asp "Search DeLorean Parts for Flux Capacitor"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/starbucks-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/starbucks-logo.jpg Binary files differnew file mode 100644 index 0000000..3a37d55 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/starbucks-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/starbucks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/starbucks.txt new file mode 100644 index 0000000..7dfcc08 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/starbucks.txt @@ -0,0 +1 @@ +<img alt="Starbuckslogo" title="Starbuckslogo" src="http://blog.wired.com/photos/uncategorized/starbuckslogo.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />
Starbucks has seen the future and it [involves MP3s][1], not CDs. The coffee giant experimented with CD-burning machine in some stores last year, but later pulled them and apparently abandoned the idea.
Earlier this week, Starbucks Chairman Howard Schultz said that the company will be adding MP3 "filling stations" later this year. "Within 12 months, probably, you're going to be able to walk into a Starbucks and digitally be able to fill up your MP3 player with music," Schultz claimed.
Though there are no details beyond that, but given that Starbucks already has its own section on the iTunes Store, Apple seems a likely partner for the venture.
The question is, will anyone want to buy music from Starbucks? Perhaps the MP3 machine will provide a way to avoid that pointless banter with the chatter-happy barista who's taking his time whipping up your over-priced coffee.
I wonder if Starbucks will list MP3 bit rates in faux Italian...
[1]: http://www.informationweek.com/hardware/personaltech/177102859 "Starbucks To Offer MP3s"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/virus.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/virus.txt new file mode 100644 index 0000000..fc64313 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Fri/virus.txt @@ -0,0 +1 @@ +Today marks the twenty-fifth anniversry of the computer virus (at least the virus as we commonly think of it). [Elk Cloner][1] was the first virus that spread "in the wild," and it was written by a then 9th grader named Rich Skrenta.
Skrenta just posted a reminescnce of that time [on his blog][2]:
>It was a practical joke combined with a hack. A wonderful hack.
Back then nothing was networked. We had these computers in a lab, and there was software for them on floppy disks. You stick in the disk and run the software. Simple.
The aha moment was when I realized I could essentially get my program to move around by itself. I could give it its own motive force, by having it hide in the resident RAM of the machine between floppy changes, and hitching a ride onto the next floppy that would be inserted. Whoa. That would be cool.
Insight without implementation is worthless, so to work I went.
Elk Cloner was annoying, but hardly destructive. Every fifty times an infected system was booted Elk Cloner printed out the following poem
Elk Cloner: The program with a personality
>It will get on all your disks
It will infiltrate your chips
Yes it's Cloner!
It will stick to you like glue
It will modify RAM too
Send in the Cloner!
Ah the good old days!
[Trivia note for Apple fanboys: Elk Cloner was written for and infected the Apple II's operating system.]
[photo credit][3]
[1]: http://en.wikipedia.org/wiki/Elk_Cloner "Elk Cloner"
[2]: http://www.skrenta.com/2007/01/the_joy_of_the_hack.html "The joy of the hack"
[3]: http://www.flickr.com/photos/jurvetson/42066452/ "Flickr: Snow Crash"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/ZZ74E70267.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/ZZ74E70267.jpg Binary files differnew file mode 100644 index 0000000..cb33fb6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/ZZ74E70267.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/elsehwere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/elsehwere.txt new file mode 100644 index 0000000..5e7e169 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/elsehwere.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Elsewhere at Wired:
* [Wired Science][1] has some info on how theories of particles in fluid-dynamical flow can be used to solve such mundane problems as traffic congestion. Fascinating read.
[1]: http://blog.wired.com/wiredscience/2007/01/safety_on_the_j.html "Safety on the Jamarat Bridge"
* Table of Malcontents is [enthusiastic][2] about the first trailer for Danny Boyle's new sci-fi click, *Sunshine*. I watched the trailer over the weekend and while I want it to be good, I don't know, I'll hold off judging until I see the file, but what's up with the music in that trailer?
[2]: http://blog.wired.com/tableofmalcontents/2007/01/the_sun_is_dyin.html "The Sun is Dying -- Preview for Danny Boyle's New SF Flick"
* 27B Stroke 6 brings more [bad news in world of copyright][3]. U.S. courts decided not to allow orphaned works into the public domain. An orphaned work is copyrighted material "for which there is no longer a commercial life, and no discernible owner. It's otherwise out of print or unavailable, but no one can re-issue it, because no one can find out who they need permission from to re-issue it." So essentially everyone loses. Way to go U.S. 9th Circuit Court of Appeals.
[3]: http://blog.wired.com/27bstroke6/2007/01/kahle_v_gonzale.html "Circuit says copyright orphans stay orphans"
* Last week I got an email announcement from Other Music that mentioned something about selling music online. I assumed that would mean DRM and so I ignored it, but luckily Listening Post's Eliot Van Buskirk is less cynical than me and he actually read the announcement. Turns out that [Other Music][5] is selling DRM-free MP3s at up to 320 Kbps. Sweet. Elliot has an [interview with the owner][4] of the world's greatest record store and its new online venture.
[4]: http://www.wired.com/news/columns/listeningpost/0,72523-0.html "A Real Music Store Sprouts Online"
[5]: http://www.othermusic.com/ "Other Music"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/first-life.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/first-life.jpg Binary files differnew file mode 100644 index 0000000..bb192e7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/first-life.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/grooveshark.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/grooveshark.txt new file mode 100644 index 0000000..c7fab5d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/grooveshark.txt @@ -0,0 +1 @@ +[Grooveshark][1], a new music service set to launch fairly soon, claims it will offer DRM-free music over peer-to-peer networks. While there's nothing publicly available at the moment, judging by the two-page website, Grooveshark aims to be Last.fm meets iTunes.
For the iTunes component of that equation, Grooveshark is promising DRM-free MP3 downloads at under 99 cents a song. According to a [press release][2] the company put out a couple weeks back:
>Visitors can browse songs uploaded by other members and pay to download MP3 files with no digital rights management (DRM) technology. Songs vary in price, but cost no more than 99 cents. Grooveshark will pay appropriate royalties to copyright holders by taking commissions from users' transactions and also compensate users with free music for community participation such as uploading songs, fixing song tags, flagging unwanted files or reviewing music. Members will be rewarded based on their level of contribution to the community
As with Last.fm you create a profile complete with playlists and other info and then share it with your friends. You can join public groups and discover new music through listeners with similar tastes.
Grooveshark will begin beta testing sometime later this quarter.
Grooveshark sounds promising, but then so did that fat your body doesn't absorb and look how that ended. Hopefully Groove Shark won't suck, but we'll have to wait and see. I signed up for the beta so we'll be sure to keep you posted.
[found via [Torrentfreak][3]]
[1]: http://www.grooveshark.com/ "Grooveshark"
[2]: http://sev.prnewswire.com/computer-electronics/20070109/LATU03009012007-1.html "Grooveshark press release"
[3]: http://torrentfreak.com/grooveshark-to-offer-legal-p2p-alternative/ "Grooveshark to Offer Legal P2P Alternative"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/joke.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/joke.txt new file mode 100644 index 0000000..56481e1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/joke.txt @@ -0,0 +1 @@ +<img alt="Firstlife" title="Firstlife" src="http://blog.wired.com/photos/uncategorized/firstlife.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />
Table of Malcontents [cited][1] our Friday post on [Linux distros][2] as what Table sarcastically calls an "exciting, ultra-journalisticky" story. I'll agree that comparing Linux distros isn't exactly, uh, fun and, in an effort to be spared in Table's impending "armed uprising against the entire Wired News organization," We bring you Joke for Nerds.
Today's Joke for Nerds is [Get A First Life][3], the genius Second Life parody from Darren Barefoot. It's just one page and there isn't much to say about it, but enjoy. And remember in First Life you can "fornicate using your actual genitals." Cool.
Maybe this humor thing will be a daily thing, maybe not. And yeah maybe we did steal the tag-line from [Ze Frank][4], so?
[1]: http://blog.wired.com/tableofmalcontents/2007/01/guns_for_girls_.html "Guns for Girls, Weapons for Women"
[2]: http://blog.wired.com/monkeybites/2007/01/compare_linux_d.html "Compare Linux Distros"
[3]: http://www.getafirstlife.com/ "Get A First Life"
[4]: http://www.zefrank.com/theshow/archives/2007/01/012207.html "Ze Frank: The Show"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/linux-foundation-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/linux-foundation-logo.jpg Binary files differnew file mode 100644 index 0000000..ca3dc7e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/linux-foundation-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/linxfoundation.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/linxfoundation.txt new file mode 100644 index 0000000..327d760 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/linxfoundation.txt @@ -0,0 +1 @@ +The two main evangelizers of Linux, [Open Source Development Labs][3] (OSDL) and the [Free Standards Group][1] (FSG) will officially merge later today to form the [Linux Foundation][2].
The decision to merge the previously separate entities is part of an effort to consolidate and re-organize open-source software development and enable it to compete more effectively against Microsoft.
(Note that those first two links will begin redirecting to the third soon; as of this writing all three are in a state of transition so YMMV.)
[1]: http://www.freestandards.org/ "Free Standards"
[2]: http://osdl.org "Open Source Development Labs"
[3]: http://www.linux-foundation.org/ "Linux Foundation"
Jim Zemlin, formerly FSG's executive director, will head the Linux Foundation and the new group has the backing of I.B.M., Intel, Hewlett-Packard and other major corporations heavily invested in Linux as an alternative to Microsoft Windows.
The Linux Foundation's goals include improving backwards compatibility within Linux distributions and to provide legal protection for Linux kernal developers.
Most open source supporters agree that Linux needs a single standard specification for application developers, which is one of the Linux Foundation's primary goals. The foundation hopes to improve interoperability between the various Linux distributions.
As it stands now, Linux software developers often are forced to modify their applications so they can run on different distributions.
The Linux Foundation plans to continue many existing OSDL and FSG projects, including the [Portland project][4], which seeks, among other things, to bridge the KDE and GNOME GUIs. Other areas the foundation will be helping to organize include software packages, system update tools and software packages.
The hope for organizers, and their corporate backers, is that the Linux Foundation will become the the primary source for Linux development, similar to the way the Mozilla Foundation is the heart of browser development or the Apache Foundation is central to server development.
The one-stop-shop approach will also help Linux provide an organized front in its drive to overtake competitor and chief rival in the desktop market, Microsoft.
[4]: http://portland.freedesktop.org/wiki/ "The Portland Project"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/myspacesues.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/myspacesues.txt new file mode 100644 index 0000000..f0cc006 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/myspacesues.txt @@ -0,0 +1 @@ +MySpace parent company News Corp has [filed a lawsuit][1] in Los Angeles Supreme Court against Scott Richter, the "Spam King," for violating state and federal anti-spam laws.
According to the lawsuit, Richter, who was previously sued by Microsoft and settled out of court, either phished MySpace accounts himself or or bought phished accounts to target with his spam campaign.
The lawsuit alleges that Richter "arranged for millions of spam 'bulletins'" to be sent from MySpace users' accounts without their knowledge by gaining access to them illegally.
This is probably the one and only time you'll read this on this blog, but, go MySpace.
[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-22T202842Z_01_N22474380_RTRUKOC_0_US-MYSPACE-SPAM.xml&src=rss "MySpace sues e-mail marketer for spam messages"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/nightly.txt new file mode 100644 index 0000000..af29d01 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/nightly.txt @@ -0,0 +1 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build:
* Apple [faces a new lawsuit][1], this one from Quantum Research Group who claims the iPod's click wheels infringe on their patents. The lawsuit was actually filed way back in December of 2005 but have kept quiet about it until now.
[1]: http://www.electronicsweekly.com/Articles/2007/01/22/40565/Apple+faces+patent+claim+over+iPod+touch+sensor+technology.htm "Apple faces patent claim over iPod touch sensor technology"
* Microsoft's Zune music service could [launch in Europe][2] by the end of the year.
[2]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyID=2007-01-21T175515Z_01_L20750742_RTRUKOC_0_US-MICROSOFT-ZUNE.xml&WTmodLoc=TechNewsHome_C2_technologyNews-2 "Microsoft could launch Zune in Europe by end 2007"
* Popular blogging tool Wordpress has [updated to version 2.1][3]. New features include: autosave, a new tabbed editor that allows you to switch between WYSIWYG and code editing, lossless XML import and export, spell checking and much more.
[3]: http://wordpress.org/development/2007/01/ella-21/ "WordPress 2.1 'Ella'"
* And finally, TSIA: [Giant Space Invaders scene visible from space][4].
[4]: http://www.boingboing.net/2007/01/22/giant_space_invaders.html "Giant Space Invaders scene visible from space"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/reboot.txt new file mode 100644 index 0000000..736b2a7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* Farecast, the airfare prediction site, has opened a new service that lets you [lock in low fares][5]. For 10 dollars you can "protect" the lowest fare from your search for the next week. If the fare rises, you pay only your protected, low fare.
[5]: http://www.farecast.com/fareGuardPromo.do "Farecast Fare Guard"
* Google wants to do for books what the iPod did for music. The secret labs over at Google are [cooking up a system][2] that would let readers download entire books to their computers in a format that they could read on screen or on mobile devices such as a Blackberry. Call me skeptical, but I don't think eBooks are gonna catch on any time soon.
[2]: http://www.timesonline.co.uk/article/0,,2095-2557728,00.html "Google plots e-books coup"
* IBM will be [introducing][3] a set of social networking services that functions like "a MySpace for office workers" later today. The software, dubbed Lotus Connections, offers "the business equivalent of Web meeting places like MySpace" as well as tools "similar" to del.icio.us and Technorati together in one package. Hmm. So they've released a bunch of stuff that already exists.
[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-22T054216Z_01_N21365125_RTRUKOC_0_US-IBM-WEB.xml&src=rss "IBM renews Microsoft rivalry with new Web software"
* From Reuters: "Merlin, the new agency representing the world's independent music sector, has agreed to a deal with digital music company Snocap which will allow its labels' music to be [sold from Web sites][4] such as MySpace."
[4]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-22T145801Z_01_L21669802_RTRUKOC_0_US-MYSPACE-INDEPENDENTS.xml&src=rss "Independent record labels sign MySpace deal"
* TSIA: [The web 2.0 name generator][1].
[1]: http://www.lightsphere.com/dev/web20.html "Generate Wacky Web 2.0 business names"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/wiki-nofollow.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/wiki-nofollow.txt new file mode 100644 index 0000000..a24ca54 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/wiki-nofollow.txt @@ -0,0 +1 @@ +Wikipedia began adding the <code>rel="nofollow"</code> attribute to all of the site's outbound links over the weekend. The move [reportedly][1] comes in response to spammers targeting Wikipedia as a way to increase their site's ranking. A recently launched spam contest was [specifically cited][2] in the decision to add the attribute to Wikipedia's outbound links.
Wikipedia has [experimented with nofollow][3] in the past and the community voted against it, but as Wikipedia continues to grow it becomes an even bigger spam target. Spammers looking to raise their page rank via inbound links continually spam Wikipedia using robots, spiders and even hand editing to get their links onto the site.
Wikipedia's decision to use the nofollow attribute in outbound links may deter some of the link spam since having a link with nofollow doesn't help page rank which is the spammers main goal.
The <code>rel="nofollow"</code> attribute was in fact designed for exactly the reasons that Wikipedia has implemented it. Google [recommends][4] the tag be used in any situation where users may post public links that cannot be trusted, such as wiki-style editable pages or blog comments.
Unlike the "robots" meta tag which resides in a page's header and tells search engine robots not to *follow* any links in the document, the rel tag does not stop Google's spiders from following the link, it merely tells them not to count the link when calculating the linked page's ranking.
Naturally not everyone is happy with Wikipedia's decision.
Critics of the move claim that it will do little to stop spam and argue that it hurts legitimate sites, who may lose search engine ranking, more than it hurts the spammers. Additionally some bloggers are upset because they feel Wikipedia owes its popularity in part to the bloggers who linked to it.
But most of these criticisms don't hold much water, particularly the shrill cries of but-we-made-you-what-you-are from bloggers threatening to add nofollow attributes to all their Wikipedia links.
If I remember right, links were created for humans to get from one page to another, so regardless of what Wikipedia's links may mean for page rank, the links still serve their intended function.
[1]: http://lists.wikimedia.org/pipermail/wikien-l/2007-January/061137.html "Nofollow back on URL links on en.wikipedia.org articles for now"
[2]: http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard#Globalwarming_awareness2007.2FSEO_world_championship_--_expect_a_spam_onslaught. "Globalwarming_awareness2007 Spam Campaign"
[3]: http://en.wikipedia.org/wiki/Wikipedia:Nofollow "Wikipedia history of nofollow"
[4]: http://googleblog.blogspot.com/2005/01/preventing-comment-spam.html "Google Blog on nofollow"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/wikipedia-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/wikipedia-logo.jpg Binary files differnew file mode 100644 index 0000000..4c04995 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/wikipedia-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom-fullscreen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom-fullscreen.jpg Binary files differnew file mode 100644 index 0000000..6909739 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom-fullscreen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom-icon.jpg Binary files differnew file mode 100644 index 0000000..4b651ea --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom-options.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom-options.jpg Binary files differnew file mode 100644 index 0000000..bc8ecba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom-options.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom.txt new file mode 100644 index 0000000..dae953f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Mon/writeroom.txt @@ -0,0 +1 @@ +[WriteRoom][1] from [Hog Bay Software][2] is a text editor with a full screen mode to help you eliminate distractions by putting a blank "curtain" over your workspace and hiding everything else (including the omnipresent Mac toolbar).
WriteRoom bills itself as "a full-screen, distraction-free writing environment," which is apt since it straddles the line between word processor and text editor in terms of formatting features, but the focus is really the full screen editing mode.
In full screen mode it is indeed just you and your words -- no distractions. But even in full screen mode, you can still access menus, the menu bar, scroll bar, and word count appear when you move your mouse to the edge of the screen, much like DVD player and other full screen apps. The escape key returns you to the normal editing mode.
You can pick your choice of background and text colors in the preferences pane as well as control the width and height of the editing portion of your screen.
There are also a number of plugins available to further extend WriteRoom's capabilities. Plugins listed on Hog Bay's site range from Mail export scripts to Growl support for word counts.
WriteRoom can also install a plugin that adds a universal "Edit in WriteRoom" menu item to other application's edit menu. Very handy if you end up deciding you love WriteRoom, since with one keystroke combination you can jump from any program over to WriteRoom.
Depending on what sort of writing you're doing that may or may not be helpful. When working on articles for wired or posts for this blog I'm constantly flipping between my editor, my email client, RSS reader and web browser which makes WriteRoom's full screen mode less than ideal, useless in fact. I like to see the browser window in the background with an press release on it.
But later in the evenings, when I write for my own site or work on other projects, I find WriteRoom's appeal easier to understand. I'm not going to suggesting that WriteRoom can replace emacs or Vi(m) in fact though I've had it for over a year I rarely actually open WriteRoom, but when I do I'm always glad I did, if for no other reason than the pure black background reminds me to clean my screen every now and then.
WriteRoom is $25. Windows users can check out [Dark Room][3] which is pretty much the same thing, but made for Windows.
[1]: http://www.hogbaysoftware.com/ "Hog Bay Software"
[2]: http://www.hogbaysoftware.com/product/writeroom "WriteRoom"
[3]: http://they.misled.us/dark-room "Dark Room"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/else.txt new file mode 100644 index 0000000..b7cb369 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/else.txt @@ -0,0 +1 @@ +Elsewhere on Wired:
* Listening Post's Eliot Van Buskirk has the [scoop on the Avvenu Music Player][1] which "lets you stream any music on your Windows XP computer to all sorts of connected devices: PCs, Macs, PDAs, and Windows Mobile 5 smartphones."
[1]: http://blog.wired.com/music/2007/01/stream_youritun.html "Stream iTunes Playlists to Anywhere"
* Game|Life [reports][2] that the Pope doesn't like violent video games.
[2]: http://blog.wired.com/games/2007/01/pope_not_blessi.html "Pope Not Blessing Violent Games"
* Just in time for that beerfest that is the Super Bowl, Table of Malcontents [discovers a Dutch-made beer made for dogs][3]. Give your pooch some love on game day.
[3]: http://blog.wired.com/tableofmalcontents/2007/01/the_dutch_are_g.html "The Dutch Are Geniuses: Beer for Dogs"
* Gadget Lab wants to [see a new DeLorean][4], which I'm all for so long as the flux capacitor isn't on the fritz.
[4]: http://blog.wired.com/gadgets/2007/01/yes_bring_back_.html "Yes, Bring back the DeLorean!"
[photo credit][5]
[5]: http://www.flickr.com/photos/cpstorm/117974762/ "Geek's Palette"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/google.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/google.txt new file mode 100644 index 0000000..d148e84 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/google.txt @@ -0,0 +1 @@ +Ever since google acquired YouTube everyone's been wondering what will happen to Google Video since they essentially offer the same services. For the time being the two have soldiered on independently and [according to the Google Blog][1] that will continue, but the focus may change.
YouTube operates separate from the rest of Google and while I'm sure Google helps out, primary development is still in the hands of YouTube co-founders Chad Hurley and Steve Chen.
Google Video on the other hand will apparently be morphing into some sort of video search engine that catalogs content, according to the Google Blog, "irrespective of where it may be hosted."
Essentially it sounds like Google Video might turn into something like Google Image Search. Is Google trying to get back to its search roots?
[1]: http://googleblog.blogspot.com/2007/01/look-ahead-at-google-video-and-youtube.html "A look ahead at Google Video and YouTube"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/nightly.txt new file mode 100644 index 0000000..b3b7024 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/nightly.txt @@ -0,0 +1 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" /> The Nightly Build:
* As part of its drive to promote Windows Vista, Microsoft has [reportedly partnered up with T-Mobile][1] to offer free Hotspot Wi-Fi access for 90 days starting Friday. Details are few, but we do know this, you'll need a laptop running Windows Vista.
[1]: http://www.betanews.com/article/Free_TMobile_Hotspot_for_Vista_Users/1169666834 "Free T-Mobile Hotspot for Vista Users"
* Opera has [released][2] the special slimmed down version of its web browser for the OLPC project to the general public. The lightweight version of Opera is "almost a normal desktop build," which means it can compile on any Linux machine.
[2]: http://my.opera.com/desktopteam/blog/show.dml/704304 "Opera OLPC Edition"
* A url hack has been [found in MyBlogLog][3] which can trick innocent members of MyBlogLog into joining your community in one click. Should be a boon for spammers.
[3]: http://labnol.blogspot.com/2007/01/mybloglog-spammers-can-trick-users.html "MyBlogLog Spammers Can Trick Users Into Joining Any MyBlogLog Community"
* MySpace and GoDaddy get to share the Jackass of the Week award for [taking down][4] the website SecLists.org. The site's owner writes: "Instead of simply writing me (or abuse_at_seclists.org) asking to have the password list removed, MySpace decided to contact (only) GoDaddy and try to have the whole site of 250,000 pages removed because they don't like one of them."
[4]: http://blog.wired.com/27bstroke6/2007/01/myspace_alleged.html "MySpace Allegedly Kills Computer Security Website"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/reboot.txt new file mode 100644 index 0000000..fd85bb3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The morning reboot:
* Norway's consumer ombudsman has [declared iTunes illegal][1]. Norway says that because iTunes does not allow downloaded songs to be played on rival technology companies' devices, it violates Norway's consumer protection laws. The ombudsman has set a deadline of October 1 for the Apple to make its codes available to other technology companies or face closure orders. I'm all for getting rid of DRM, but by this logic wouldn't OS X be illegal as well since it only runs on Apple hardware?
[1]: http://www.ft.com/cms/s/1fc40360-abe9-11db-a0ed-0000779e2340.html "Norway declares Apple's iTunes illegal"
* Fox has [subpoenaed YouTube][2] seeking the names of users who uploaded "24" and "Simpsons" episodes to the popular video sharing site. While some networks like CBS have come to realize that YouTube videos actually raise the view audience of TV shows, Fox apparently hasn't gotten that memo and continues its long standing run as the red-headed stepchild of TV networks (no offense to red-headed stepchildren intended).
[2]: http://www.hollywoodreporter.com/hr/content_display/news/e3i8e461f30b83c62d96a9492015f195e99 "Fox seeks YouTube user's identity"
* In possibly related news, Americans are smarter than I thought. Despite the efforts of the RIAA, MPAA and others, most Americans [do not equate downloading with theft][3] (the Supreme Court has repeated ruled that copyright infringement does not equate to theft). Solutions Research Group reports that only 40 percent of Americans think downloading is a serious offense on par with shoplifting a CD.
[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-25T143543Z_01_N25169626_RTRUKOC_0_US-PIRACT.xml&src=rss "Americans think downloading no big deal"
* Slyck, a tech news site I was previously unaware of, has posted a great [interview with muslix64][4] the hacker who cracked the HD-DVD and Blu-Ray encryption schemes. Muslix64 calls his (her?) efforts "fair use enforcement."
[4]: http://www.slyck.com/story1390.html "Interview with muslix64, Developer of BackupHDDVD"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-1.jpg Binary files differnew file mode 100644 index 0000000..c6fe1f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-audio-filter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-audio-filter.jpg Binary files differnew file mode 100644 index 0000000..ca58b67 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-audio-filter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-box.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-box.jpg Binary files differnew file mode 100644 index 0000000..c48304b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-box.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-cross-fades.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-cross-fades.jpg Binary files differnew file mode 100644 index 0000000..7f589f5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-cross-fades.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-disc-cat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-disc-cat.jpg Binary files differnew file mode 100644 index 0000000..7931e7f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-disc-cat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-progress.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-progress.jpg Binary files differnew file mode 100644 index 0000000..f143cf2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-progress.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-trim.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-trim.jpg Binary files differnew file mode 100644 index 0000000..b09a247 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Thu/toast-trim.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/ZZ3AEBE2C4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/ZZ3AEBE2C4.jpg Binary files differnew file mode 100644 index 0000000..d94a850 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/ZZ3AEBE2C4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes-1.jpg Binary files differnew file mode 100644 index 0000000..ec77c75 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes-2.jpg Binary files differnew file mode 100644 index 0000000..2122f29 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes.jpg Binary files differnew file mode 100644 index 0000000..d525fb7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes.txt new file mode 100644 index 0000000..89a63be --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/beatunes.txt @@ -0,0 +1 @@ +[BeaTunes][1] is a new BPM-analyzing tool for Mac and Windows that helps you organize songs by beats per minute and build playlists you might not otherwise have considered. Similar to [Tangerine][2], beaTunes scans through you music collection and attempts to determine the BPM of each song.
It might take some time to scan your library so you're probably better off doing it in batches, rather than attempting everything at one time.
Once you've analyzed your library beaTunes can assign a color to each track which helps to visually arrange songs and makes it a little easier to create playlists. Unfortunately creating playlists is mainly a by-hand experience, I wasn't able to find anyway to automate the process save sorting a playlist by BPM.
Because it's written in Java, beaTunes can be a little slow at times and it's certainly a resource hog, currently sucking down about 112MB worth of RAM (iTunes by contrast is using about half that).
There's a couple of odd "features" in beaTunes, first off is the recommendation panel that can be displayed along the bottom of the window. There aren't many details available about the recommendations feature on the beaTunes site, but the data comes from Amazon and I'm pretty sure the program is using affiliate links, which means they get a cut of your purchase.
Now with websites affiliate links don't generally bother me, but with actual desktop software that's already charging $20 for a license, it seems a bit hucksterish to attempt to monetize a feature others give away.
The other odd feature is the "Blog This" tool which allows you to post a blog entry about the selection. The tool supports any Atom 1.0 compatible blog, but I can't help wondering who's going to use it?
If you're looking for a cross-platform BPM solution, beaTunes might be the ticket. But given the lack of speed and hefty resource consumption of the current release, Mac users would be better off with Tangerine.
[1]: http://www.beatunes.com/ "beaTunes"
[2]: http://blog.wired.com/monkeybites/2006/10/tangerine_is_a_.html "Monkeybites on Tangerine"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/elsewhere.txt new file mode 100644 index 0000000..606b20f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/elsewhere.txt @@ -0,0 +1 @@ +<img alt="Wiredblogs" title="Wiredblogs" src="http://blog.wired.com/photos/uncategorized/wiredblogs.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Elsewhere on Wired:
* 27B Stroke 6 has your ["Guide to a Guide to Digital Issues in New Congress."][1] Very meta. And informative.
[1]: http://blog.wired.com/27bstroke6/2007/01/27bs_guide_to_a.html "Guide to a Guide to Digital Issues in New Congress"
* Bodyhack [sums this one up][2] in the headline: "Germ-Free Paper Debuts... But Why?" Why indeed? It's high time we had an anti-bacterial backlash, spray on germs, shots that give you the flu, other fun stuff.
[2]: http://blog.wired.com/biotech/2007/01/germfree_paper_.html "Germ-Free Paper Debuts... But Why?"
* Wired columnist Tony Long has an article about [the legendary Mac "1984" commercial][3] on this the 23rd anniversary of said ad. I for one never new that the Apple board tried to stop the ad from being shown and Wozniak saved it saying, "he'd pay for the spot personally if the board refused to air it."
[3]: http://www.wired.com/news/technology/0,72496-0.html?tw=rss.index "Jan. 22, 1984: Dawn of the Mac"
* Table of Malcontents [has a post][4] about one of my all time favorite movies, Peter Greenaway's *The Cook, the Thief, His Wife and Her Lover,* which is still one of the most visceral, disturbing and beautiful films I've ever seen. Speaking of Greenaway, he has a new movie *Nightwatching*, it's currently in post production and is scheduled to be released later this year.
[4]: http://blog.wired.com/tableofmalcontents/2007/01/erratic_thought_8.html "Table on The Cook, the Thief, His Wife and Her Lover"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/g-homepage-rss.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/g-homepage-rss.jpg Binary files differnew file mode 100644 index 0000000..5731404 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/g-homepage-rss.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/humor.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/humor.txt new file mode 100644 index 0000000..74de677 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/humor.txt @@ -0,0 +1 @@ +Web 2.0! Startups! Venture capital funding for all!
If you still have your lunch down at the bottom of your stomach then you may not see the humor in [Vojosalsa][1], but the rest of you swallowing and looking for a glass of juice will probably love it.
From the site: "written with just ONE LINE OF CODE using 'Ruby on Rails' on rails, Vojosalsa epitomizes the 'less is more' Web 2.0 philosophy. In fact, when it comes to online services, we are quite possibly the least, and thus, most."
And my personal favorite: "Wow. It seems like only this morning we put the final touches on the drop shadow and shading of our logo. I can't believe that that was actually yesterday afternoon…"
Enjoy.
[1]: http://www.vojosalsa.com/ "Vojosalsa"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/reboot.txt new file mode 100644 index 0000000..605c0e6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* [Blu-Ray DRM has been cracked][1]. The HD-DVD competitor no longer needs to feel left out. The same person who cracked HD-DVD DRM has applied the technique to Blu-Ray and found that it works.
[1]: http://blog.wired.com/gadgets/2007/01/bluray_drm_crac.html "Blu-Ray DRM Cracked"
* Google, Yahoo, Microsoft and some others have apparently been working with human rights groups and legal experts to [devise a code of conduct][2] for protecting online free speech and privacy. I'm pretty sure that's not a joke. Perhaps Google just doesn't consider China part of the internet.
[2]: http://www.webpronews.com/topnews/topnews/wpn-60-20070122GoogleYahooMSDevisingCodeofConduct.html "Google, Yahoo, MS Devising Code Of Conduct"
* A virus [spread through spam emails][3] with subject lines like "Fidel Castro dead" and "Saddam Hussein safe and sound" has infected thousands of computers according to Spain's Association of Internauts. Wait a sec, there's an Association of Internauts?
[3]: http://news.yahoo.com/s/afp/20070122/tc_afp/spaincubainternet "'Castro is dead' spam email infects computers"
* Rumor: [Techcrunch reports][4] that the domain google.de was done for many hours yesterday possibly because Google forgot to renew the domain name. If that's true is sure makes me feel better about the two domains I lost for the same reason.
[4]: http://www.techcrunch.com/2007/01/23/google-forgets-to-renew-googlede-site-goes-down/ "Google Doesn't Renew Google.de, Site Goes Down"
* This just in: DRM still sucks.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/rss-g-homepage.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/rss-g-homepage.txt new file mode 100644 index 0000000..60e2532 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Tue/rss-g-homepage.txt @@ -0,0 +1 @@ +Google quietly updated the RSS widgets on the [Google Personalized Homepage][1] this morning. Rather than simple headline links, there's now a nice AJAxy button that can expand individual items in the feed.
The preview contains the text of the feed and any images as well. I don't know about enclosure links because I don't subscribe to any podcasts through Google Personalized Homepage.
It's no substitute for a full on RSS reader, but if you use Google Homepage to stay on top of the day's news the new widgets are a nice way to quickly scan a story. (Screenshot after the jump.)
If you'd like to ["Supersize" your RSS experience][2] I compiled last weeks RSS tips into an article that went up on Wired.com this morning.
[1]: http://www.google.com/ig "Google Homepage"
[2]: http://www.wired.com/news/technology/internet/0,72542-0.html?tw=wn_index_6 "Supersize Your RSS"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/dvdrewinder.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/dvdrewinder.jpg Binary files differnew file mode 100644 index 0000000..ec7f349 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/dvdrewinder.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy-screen.jpg Binary files differnew file mode 100644 index 0000000..6cc51df --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy-screen3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy-screen3.jpg Binary files differnew file mode 100644 index 0000000..a767ae4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy-screen3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy.jpg Binary files differnew file mode 100644 index 0000000..026858a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy.txt new file mode 100644 index 0000000..d41ae28 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/etsy.txt @@ -0,0 +1 @@ +The shopping site [Etsy][1], which focuses on buying and selling handmade items, has an interesting [color-based search widget][5]. As you drag your cursor over the color grid circular swatches enlarge and clicking them will cause Etsy to pull up items matching the color.
There's a couple over innovative ways to search Etsy, something called "Time Machine" which I think lists items as they were added by seller, but then again it could items the were recently purchased -- I can't quite figure it out.
My personal favorite is "[Treasury][4]" which I think lets you watch what other people are browsing in realtime. Cursors dart across the screen with that users profile picture (in the have one).
Then there's [Connections][3], which is sort of a shopping version of [They Rule][2]. People and products form nodes and clicking on a person brings up the products they've marked as favorites as well as that users friends.
Etsy runs a little slow, though some of that may be that they wound up on Digg today. This is probably old news to some and the creative browsing methods may qualify as useless eye candy, but Etsy's search methods are sort of fun and definitely different.
[2]: http://www.theyrule.net/ "They Rule"
[1]: http://www.etsy.com/ "Etsy.com"
[3]: http://www.etsy.com/connections.php "Etsy Connections"
[4]: http://www.etsy.com/treasury.php "Etsy Treasury"
[5]: http://www.etsy.com/treasury.php "Etsy Colors"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-1.jpg Binary files differnew file mode 100644 index 0000000..8031a8c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-2.jpg Binary files differnew file mode 100644 index 0000000..9df711b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-3.jpg Binary files differnew file mode 100644 index 0000000..10b209a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-icon.jpg Binary files differnew file mode 100644 index 0000000..425fa70 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo.txt new file mode 100644 index 0000000..0eec58b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/komodo.txt @@ -0,0 +1 @@ +ActiveState released an [upgrade to their Komodo IDE][1] this morning. The new version 4.0 of Komodo IDE features a number of enhancements and is available for download. Komodo IDE is a unified workspace for web application development an supports languages such as Perl, Python, PHP, Ruby, JavaScript, CSS, HTML, and XML.
ActiveState claims Komodo IDE 4.0 is everything you need to edit, test, and debug entire web applications. In short Komodo wants to be your one ring. ActiveState provided us with a demo version last week and I've been playing with it for several days to see if it delivers on that goal.
Chief among Komodo 4.0's new features is browser-side support. While previous versions offered syntax coloring, Komodo 4.0 adds debugging, a DOM viewer, and HTTP Inspector and more.
With the rising popularity of AJAX and the difficulties involved in debugging Javascript, it's no surprise that ActiveState is touting Komodo's new JavaScript debugging capabilites. Unfortunately this is one case where you'll have to leave the IDE. Komodo's Javascript debugging involves using the Firefox web browser and the Komodo JavaScript DBGP extension.
Similar to the popular Firefox Javascript debugging extension [Firebug][2], the DBGP extension allows you to step through your code within debugging sessions.
For more tradition programming language Komodo offers all the features you'd expect in a good text editor and integrates a shell in the lower pane so you can run your scripts (see screenshots below).
I'll confess that I'm a text editor junkie and this is the first IDE I've ever used, but for people like me Komodo now offers modal Vi keybindings to emulate navigation, as well as text insertion and visual selections which mimic the command-line modes of Vi and Vim. Komodo also supports emacs keybindings.
Komodo also offers a plugin structure using Mozilla APIs based on XUL, XBL, and XPCOM, as well as Komodo's own structures which support plugins written in Python and JavaScript. The company claims "if you've written an extension for Firefox, you'll be comfortable writing one for Komodo."
Komodo was stable and had no speed issues on my MacBook Core 2 Duo. While I don't think I'll be abandoning my beloved text editor any time soon, if you're looking for a full fledged IDE Komodo 4.0 does indeed deliver the goods.
Komodo IDE 4.0 is $295. Right now Komodo is offering a promotional price $245 which lasts until the end of February. Current users can upgrade for $90 and there's a three week trail version as well.
[1]: http://www.activestate.com/products/komodo_ide/ "Komodo 4.0 now available"
[2]: https://addons.mozilla.org/firefox/1843/ "Firefox extension Firebug"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/reboot.txt new file mode 100644 index 0000000..ab7e205 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* The European drive to unlock iTunes is [gaining support][1]. German and French consumer groups have joined the Nordic nations in their drive to force Apple to make iTunes downloads compatible with digital music players made by competitors.
[1]: http://www.cnn.com/2007/TECH/internet/01/23/europe.itunes.ap/index.html?eref=rss_tech "European drive against iTunes builds support"
* Intel has confirmed that it will be [shipping next generation wifi chips][2] ahead of schedule. The announcement comes just after news that the draft 802.11n wireless standard will be finalized later this year.
[2]: http://news.com.com/2100-1044_3-6152489.html?part=rss&tag=2547-1_3-0-20&subj=news "Intel speeds up delivery of faster Wi-Fi"
* Google Groups has [come out of beta][3] and announced a few new features including the ability to customize the look of your group, create and edit web pages, upload and share files (including photos), and view member profiles.
[3]: http://googleblog.blogspot.com/2007/01/lets-get-together.html "Google Groups out of beta"
* Wired reports that the CIA is [trawling Facebook][4] looking for new recruits.
[4]: http://www.wired.com/news/technology/internet/0,72545-0.html "CIA Gets in Your Face(book)"
* Apple has [patched a flaw in QuickTime][5] that allowed malicious coders to install malware onto vulnerable systems. The vulnerability, brought to light as part of the [Month of Apple Bugs][6]" project, affects both Windows and Mac OS X.
[5]: http://docs.info.apple.com/article.html?artnum=304989 "About Security Update 2007-001"
[6]: http://projects.info-pull.com/moab/ "the Month of Apple Bugs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/thunderbird.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/thunderbird.txt new file mode 100644 index 0000000..6209496 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/thunderbird.txt @@ -0,0 +1 @@ +Mozilla [released Thunderbird 2.0 beta 2][2] yesterday. Although beta 2 is listed a developer release suitable for testing, the download site was unreachable for a couple of hours yesterday, presumably because eager early adopters were scrambling to download the new version.
Since I already [reviewed beta 1][4] a while ago I won't go into a lot of details, but I did want to say that beta 2 resolves all the stability issues I experienced with beta 1.
The offical [beta 2 release notes][2] mirror those of beta 1, but there's also a complete list of [bug fixes available][3].
Thunderbird is progressing nicely although I have no real way to test it, beta 2 feels a good bit snappier than the first release and I'm happy to say the IMAP speeds are much improved.
[2]: http://www.mozilla.com/en-US/thunderbird/releases/2.0b2.html "Thunderbird 2.0 beta 1 release notes"
[3]: http://weblogs.mozillazine.org/rumblingedge/archives/2007/01/2-0beta2.html "Thunderbird 2.0 beta 2 bug fixes"
[4]: http://blog.wired.com/monkeybites/2006/12/mozilla_has_rel.html "Thunderbird 2.0 beta 1 reviewed"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/toast.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/toast.txt new file mode 100644 index 0000000..0242219 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.22.07/Wed/toast.txt @@ -0,0 +1 @@ +A while back we gave you a [quick overview][3] of the new [Toast 8 Titanium][2] from Roxio. Earlier this week Roxio got us a review copy Toast 8 and I've spent the past few days putting it through the paces. I'm happy to report that the new version adds significant new features that make it worth the $100 price tag.
The first thing you'll notice about the new version of Toast is the completely redesigned interface. Whiz-bang graphical effects abound, background images subtly rotate and when hiding and changing windows Toast 8 fades in and out and resizes the main window into other widows. While mostly useless eye candy, this seems to follow a trend in Mac apps lately as Adobe's PhotoShop CS 3 beta also features some similar effects. [Screenshots after the jump.]
The overall layout of the Toast 8 is significantly different from previous versions. The drawers and tabs are gone, replaced by an interface that looks something like that of iTunes' iPod browser view. The various burning tasks have moved from the old tabs across the top to a sidebar and the iLife media browser now floats in its own palette.
But the changes aren't just skin deep. Once you get past the physical appearances, Toast 8 has some impressive new features as well. Roxio has essential rolled all the features of Jam and Popcorn into Toast making it more of a one-stop burning destination (Popcorn 2.0 is still available as a stand alone product for legacy hardware).
My favorite new feature in Toast 8 is the ability create audio mix CDs with smooth, DJ-style cross-fades and transitions. When you drag your iTunes playlist into Toast 8 there's an edit button for each track that allows you to control the transition and/or fade between tracks. You can choose a preset fade-in/fade-out style or create a custom cross-fade via an editing window that lets you preview your fades before committing to them.
There's also a new set of audio tools including the ability to edit and trim tracks, adjust output levels, apply sound enhancing filters, and set unique pauses between tracks. There's a wide range of filters which offer everything from enhanced reverb to 32 band EQ.
Also on the audio front there are some new tools to help you convert tunes from LPs and tape including noise reduction filters. Unfortunately my record player is kaput so I haven't tested these features.
Toast 8 adds support for printing directly on discs using LightScribe-enabled burners and media if you happen to have one.
On the data side of Toast 8 the ability to span files across multiple discs returns with support for both Mac and PCs. For Mac-only discs there's a new option to auto catalog the contents after burning. If you're burning mixed OS CDs you can still use the stand-alone program DiscCatalogMaker RE (included with the purchase of Toast 8) to create archive listings, but you'll have to do it by hand. Once archived, you can search the contents of your backup CDs and DVDs even when they're not mounted.
The big news in Toast 8's improved video capabilities is addition of Blu-Ray support which makes Toast the first program for the Mac to support the new video format. I don't have a Blu-Ray capable burner so I wasn't able to test it, but the possibility of 50 gigabyte backups makes the purchase of a Blu-Ray burner very tempting.
Another big feature of Toast 8 Titanium is addition of TiVoToGo features. When you install Toast for the first time it will ask you if you want to install TiVoToGo features. You then have the option to enter your TiVo's Media Access key and Toast should automatically acquire the device and allow you to begin importing your DVR content.
Once you bring your TiVo recordings over to the Mac you can then burn them to disc for playback or convert them for use on the video iPod. Because I don't have a TiVo device to test it with I can't say for sure how well it works. My Monkeybites cohort Michael Calore saw a demo at Mac world and said it looked very easy, but the folks over at iLounge [reported a few hiccups][1] and weren't entirely happy with the compression and file size -- YMMV.
Overall Toast 8 Titanium is a solid upgrade and well worth the investment. If you have a TiVo or Blu-Ray burner I highly recommend it. Even if you don't, the new audio editing features and automatic disc cataloging are still enough to make Toast 8 a must-have upgrade.
Toast 8 Titanium is $100, Roxio has a $20 mail in rebate and Toast 7 owners can upgrade for $60. There are also upgrade specials available for the owners of other Roxio software like Popcorn and Jam.
[1]: http://www.ilounge.com/index.php/ipod/review/roxio-toast-8-titanium-with-tivotogo/ "Roxio Toast 8 Titanium with TiVoToGo"
[2]: http://www.roxio.com/enu/products/toast/titanium/overview.html "Toast 8 Overview"
[3]: http://blog.wired.com/monkeybites/2007/01/macworld_best_i.html "Monkeybites on Toast 8 announcement"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/ZZ785DB08E.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/ZZ785DB08E.jpg Binary files differnew file mode 100644 index 0000000..4ae6337 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/ZZ785DB08E.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/else.txt new file mode 100644 index 0000000..26f40dc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/else.txt @@ -0,0 +1,21 @@ +Elsewhere on Wired: + +* Bruce Sterling [lets Flickr know why they suck][1]. On the transition to a Yahoo-based login Sterling writes, "I don't gain any benefit by this. Where's my value proposal? There's nothing in this proposal for me. You are exploiting your Web 2.0 social muscle and twisting my arm here. Is that Flickr-like behavior? Aren't you a little ashamed of yourselves?" + +[1]: http://blog.wired.com/sterling/2007/02/meanwhile_in_pr.html "Meanwhile, in Privacy Invasion Land" + +* Rob Beschizza of Gadget Lab [thinks wood is coming back][2], case in point being a 60" LG Plasma TV encased in wood and unfortunately available only in Korea. Is this why Southeast Asia is buying up all the clear-cut wood in the Northwest? + +[2]: http://blog.wired.com/gadgets/2007/02/return_of_wood_.html "Return of Wood Begins with 60" LG Plasma?" + +* Listing Post's Eliot Van Buskirk [wonders][3] why MySpace kicked Amie Street off the site (Amie Street has since rebuilt their page). The truth is the new page will probably be deleted as well because one of the little known clauses in the web 2.0 contract is that things which suck (MySpace) are not allowed to co-mingle with things that do not suck (Amie St). Trust me it's in the EULA. + +[3]: http://blog.wired.com/music/2007/02/amie_street_was.html "Why Did MySpace Boot Amie Street?" + +* Over at 27B Stroke 6 Ryan Singel [weighs in][4] on the Great LED Scare of 2007. Singel sums it up nicely: "Actually, these guys are just annoying paid shills for a corporation, who are acting like they are radical artistes sticking-it-to-the-man, like some artistic version of Jackass, AND getting PAID $300 to do it... please, please let this be the death knell for 'guerilla' marketing." Seriously. Please. + +[4]: http://blog.wired.com/27bstroke6/2007/02/led_bombs_a_sto.html "LED 'Bombs': A Story of Tools, Fools and Lamers" + +* And finally the best Wired headline of the day award goes to John Brownlee of Table of Malcontents for this gem: [McDonald's-Destroying Anarchist Runs For French President][5]. I should have never left Paris. + +[5]: http://blog.wired.com/tableofmalcontents/2007/02/mcdonaldsdestro.html "McDonald's-Destroying Anarchist Runs For French President"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy icon.jpg Binary files differnew file mode 100644 index 0000000..ebb89b3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy.txt new file mode 100644 index 0000000..8ba171a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy.txt @@ -0,0 +1,30 @@ +The popular Mac file transfer software [Interarchy][1] has been updated to version 8.5. Interarchy also has a new owner. Formerly Interarchy was developed by Peter N Lewis's Stairways Software, but Matthew Drayton (a long time Stairways employee) has acquired the rights and is releasing Interarchy through his new company Nolobe. John Gruber has [a nice interview][2] with both men about the transition. + +Version 8.5 of Interarchy adds some nice new features including an "Open in Terminal" command which allows you to jump from an Interarchy browsing window straight over to an SSH tunnel in the same directory. + +Other new features include: + +* Improved Get Info window: +* A new Scripts menu +* A new Dock menu with the following commands: Connect to Server, Bookmarks, Bonjour, History and Scripts +* You can now chain file converters together. For example you could chain the Backup and gzip converters ("Backup, gzip") to have your uploaded files encoded using Backup and then compressed using gzip. +* Can now drag & drop a file/folder from a listing window onto a list bookmark in the Bookmarks window. + +There have also been numerous bug fixes and other enhancements. The last time I used Interarchy it was at version 6 and when [Transmit][3] came on the market with a split pane view of local and remote files it seduced me away from Interarchy. But I've been playing around with Interarchy for a few hours now and I'm impressed. + +There's still no split view windows, but the fact that Interarchy more or less mirrors the functionality and behavior of Apple's Finder app makes it really easy to use and the "Open in Terminal command is brilliant, especially if you happen to be working with a framework like Django which has a lot of command line tools. + +Interarchy is by far the fastest FTP program I've ever used. The interface response is almost instantaneous and transfer rates are faster than those of Transmit and [Cyberduck][4], which I also use. Interarchy also sports tabbed windows, making it easy to have a number of directories open at the same time. + +What makes Interarchy stand out from it's peers is the plethora of extra tools it includes like full network monitor tools, DNs lookups, port scans, pings and more. Imagine most of OS X's NetInfo program rolled into your FTP client with a few more tools thrown in for good measure and that's the power of Interarchy. + +Although Interarchy has a number of things to recommend it, I also have a few gripes. Most of Interarchy's features mirror the Finder, but it skips the search box in the toolbar, which is a shame since large directory listings often cry out for some sort of filtering. Also Interarchy's default action for double clicking files is to download them, which seems counter intuitive, generally double clicking means you want to open the file. It's possible to change the behavior of the double click but you'll have to do it separately for each type of file. + +Gripes aside, if Interarchy added a double pane browser that let me dig into remote and local directories in the same window, I'd buy it in a heartbeat. Depending on your needs and habits, Interarchy just might be the FTP app you've been looking for. + +Interarchy 8.5 costs $60, existing users can upgrade for $30. + +[1]: http://nolobe.com/interarchy/ "Interarchy" +[2]: http://daringfireball.net/2007/02/interarchy_interview "Interarchy Interview: Peter N Lewis and Matthew Drayton" +[3]: http://www.panic.com/transmit/ "Panic Software: Transmit" +[4]: http://cyberduck.ch/ "Cyberduck"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy1.jpg Binary files differnew file mode 100644 index 0000000..ba662d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy2.jpg Binary files differnew file mode 100644 index 0000000..fc97783 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/interarchy2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype new file mode 100644 index 0000000..d71323f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype @@ -0,0 +1,18 @@ +Aside from OS wars, text editors are one of the most religiously debated topics on the net. There are some who say that [we don't need any new text editors][2], but I disagree, there's always room to improve the wheel. + +[InType][1] is a new text editor for Windows that I've been using for a few days now and I think the potential is enormous. + +While not a direct copy, or even affiliated with the popular Mac text editor, [TextMate][3], InType is "inspired" by and seeks to bring a TextMate-like experience to the Windows platform. With Vista borrowing some of its UI approach from OS X, I thought why not try out a Mac-inspired text editor? + +The good news is that InType is very very fast. The bad news is that InType is very much an alpha product, it doesn't even support undo yet -- though that should be added in the next few days -- and it's not up for production use. + +Since InType is brand new and lists itself as alpha I won't go into a full review, but I did want to say that I found it to be quite stable. Of course InType is lacking in functionality, however what functionality it does have is easy to use and InType is fast and very enjoyable to use. + +Judging by the activity in the [InType forums][4], InType has an active and enthusiastic bunch of developers working round the clock. There's already support for TextMate-like bundles, it isn't perfect by any means, but the basic functionality is in place. + +I don't suggest running out and trying InType just yet, but it's definitely one to keep your eye on. For a visual preview check out the screenshots below. + +[1]: http://intype.info/home/index.php "InType" +[2]: http://diveintomark.org/archives/2007/01/21/wrongroom "Mark Pilgrim on writing a new text editor" +[3]: http://macromates.com/ "Textmate" +[4]: http://intype.info/forums/ "InType"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype-logo.jpg Binary files differnew file mode 100644 index 0000000..d816c65 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype.jpg Binary files differnew file mode 100644 index 0000000..105f5ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype2.jpg Binary files differnew file mode 100644 index 0000000..5d4527a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/intype2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/launchy-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/launchy-logo.jpg Binary files differnew file mode 100644 index 0000000..c8ab198 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/launchy-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/launchy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/launchy.jpg Binary files differnew file mode 100644 index 0000000..4ef6d4b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/launchy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/launchy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/launchy.txt new file mode 100644 index 0000000..c710845 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/launchy.txt @@ -0,0 +1,23 @@ +If you're a keyboard junky or have mouse phobia, a good application launcher will vastly improve your Windows Vista experience. After trying out several launchers my number one pick is [Launchy][1]. + +The first thing I did on installing Windows Vista was scour the web for a good, keyboard-based application launcher. Okay, technically that's not true, the first thing I did was download Firefox and disable IE *then* I went looking for an application launcher. + +For the uninitiated application launchers are a means of avoiding the start menu and being able to launch application without taking your fingers off the keyboard. There are a number of them available but Launchy does what I wanted and offers a quite a few extras to boot. It's also free and open source (GNU GPL license). + +Launchy indexes the programs in your start menu and can launch your documents, project files, folders, and bookmarks with just a few keystrokes. For instance, hit the default hotkey combo, alt-space, and then type "fire" and Firefox should pop up, press return to launch the app. If you wait a few seconds before pressing return Launchy will display a list of alternate choices for your abbreviation. + +But Launchy can do a lot more than just launch documents and apps, here's a quick list of tips and tricks for extending Launchy: + +* Search Google (Type in google, then tab, then your search query and press enter. a new window/tab will open in your default browser) +* Other sites you can search include Wikipedia, Yahoo, Amazon, Netflix and more. +* Browse your computer (Type in c:, then tab, then a folder or file, hit tab, and continue) +* Index your Firefox bookmarks, including keyword searches +* Index your music (Directory: My Documents, file types: .mp3 .aac .ogg etc) + +I should note that on Vista I had some issues with the indexing features, but following the [advice in the Launchy forums][2], I was able to get it working. + +Launchy is free, but if you like it and want to support future development you can make a donation on the [Launchy website][1]. + +[1]: http://launchy.net/ "Launchy" +[2]: http://sourceforge.net/forum/forum.php?thread_id=1657774&forum_id=451016 "Running Launchy under Vista" +[1]: http://launchy.net/ "Launchy"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/nightly.txt new file mode 100644 index 0000000..32b5275 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/nightly.txt @@ -0,0 +1,23 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" /> +The Nightly Build, slow cooked like beans: + +* Websense Security Labs [reported earlier][2] that the official website of Dolphin Stadium had been compromised with malicious code. Dolphin Stadium, the home of Sunday's Super Bowl XLI, has since cleaned up the code, but [ZDNet reports][1] that the same hack has been found on the Center for Disease Control site. Who hacks the CDC? That's evil. + +[1]: http://blogs.zdnet.com/security/?p=15 "Super Bowl stadium site hacked, seeded with exploits" +[2]: http://www.websense.com/securitylabs/alerts/alert.php?AlertID=733 "Malicious Website: Super Bowl XLI / Dolphin Stadium" + + + +* Bill Gates [chews shoe][5]. In addition to claim credit for inventing drop down menus (Xerox), security enhancements (Vista is quite possibly hackable by yelling at it) and claiming that "security guys break the Mac every single day" (there are no known in-the-wild exploits for OS X) and Bill Gates has got a new challenge. Here's [the whole quote][3] set off so everybody can see it nice and clear: + +>Nowadays, security guys break the Mac every single day. Every single day, they come out with a total exploit, your machine can be taken over totally. I dare anybody to do that once a month on the Windows machine + +How about it clever Monkeybites readers? Can anyone find a system critical exploit in the next 30 days? We'll go ahead and count the shouting hack just cause it's funny, even though it probably isn't all that threatening. So you just need one more hack to prove Gates wrong. We'll get you some sort of prize. Probably just a mediocre level of fame that won't last more than 30 seconds, but hey think of the personal satisfaction you'll feel. + +[3]: http://www.msnbc.msn.com/id/16934083/site/newsweek/page/2/ "Gates on MSNBC" + +And finally, today's Web Zen: [10 Most Embarrassing Geek Photos][4]. + +[4]: http://www.valleywag.com/tech/geeks-gone-wild/10-most-embarrassing-geek-photos-233278.php "10 Most Embarrassing Geek Photos" + +[5]: http://daringfireball.net/2007/02/lies_damned_lies_and_bill_gates "Lies, Damned Lies, and Bill Gates"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/reboot.txt new file mode 100644 index 0000000..0333832 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/reboot.txt @@ -0,0 +1,19 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* A Microsoft-sponsored open source project will [release][1] [Open Document Format][2] plugins for [Office 2007][3] today. The plugins will work with Office versions 2003, XP, and 2007. For now the converts are only for Word documents, but work is underway for Excel and Powerpoint. + +[1]: http://sourceforge.net/projects/odf-converter "MS ODF converters" +[2]: http://www.wired.com/news/technology/software/0,72403-0.html?tw=rss.index "MS Fights to Own Your Office Docs" +[3]: http://www.wired.com/news/technology/software/0,72596-0.html?tw=wn_index_7 "Blue Ribbon Debut for Office 2007" + +* Viacom is demanding that YouTube [remove all copies][4] of Viacom-owned content from the popular online video site. The take down request comes after Viacom and YouTube fail to reach an agreement. There are currently about 100,000 video clips from Viacom-owned properties, including MTV Networks and BET, on YouTube. + +[4]: 1http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyID=2007-02-02T155720Z_01_WEN3495_RTRUKOC_0_US-VIACOM-YOUTUBE.xml&WTmodLoc=TechNewsHome_C1_%5bFeed%5d-2 "Viacom demands YouTube pull down videos" + +* In the good old days even Bill Gates used to say that piracy helped MS by getting people addicted to its software, but then Gates jumped on the anti-piracy bandwagon. Yesterday Romanian President Traian Basescu [told Gates][5], "Piracy helped the young generation discover computers. It set off the development of the IT industry in Romania." Gates was less than thrilled. + +[5]: http://www.washingtonpost.com/wp-dyn/content/article/2007/02/01/AR2007020100715.html "Piracy worked for us, Romania president tells Gates" + +* In what Digg founder Kevin Rose [says][6] is an attempt to combat Digg gaming, Digg will no longer be listing top users. + +[6]: http://blog.digg.com/?p=60 "A couple updates"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/tut.txt new file mode 100644 index 0000000..2b6476b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Fri/tut.txt @@ -0,0 +1,24 @@ +<img alt="Ajax" title="Ajax" src="http://blog.wired.com/photos/uncategorized/ajax.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />For our last Ajax tutorial I thought I'd list some of the more popular Ajax frameworks on the market. + + +* [Dojo][1]: Dojo is an Open Source DHTML toolkit written in JavaScript. + +* [Prototype][2] is a JavaScript Framework that aims to ease development of dynamic web applications. + +* [Script.aculo.us][3]: Provides you with easy-to-use, compatible and, ultimately, totally cool JavaScript libraries to make your web sites and web applications fly, Web 2.0 style. + +* [Mochikit][4]: MochiKit is a free lightweight JavaScript library. + +* [Yahoo User Interface Library][5]: The Yahoo! User Interface (YUI) Library is a set of utilities and controls, written in JavaScript. + + +I should point out that Script.aculo.us is not a framework exactly, rather it includes Prototype and adds some additional hooks on top of it. + +If you're looking for frameworks for specific languages, ajaxpatterns.org [maintains a nice list][6]. + +[5]: http://developer.yahoo.com/yui/ "Yahoo User Interface Library" +[4]: http://mochikit.com/ "Mochikit" +[3]: http://script.aculo.us/ "Script.aculo.us" +[1]: http://dojotoolkit.org/ "Dojo Ajax Toolkit" +[2]: http://www.prototypejs.org/ "Prototype" +[6]: http://ajaxpatterns.org/wiki/index.php?title=AJAXFrameworks "Ajax Framworks"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/ajax.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/ajax.jpg Binary files differnew file mode 100644 index 0000000..d2bf1ea --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/ajax.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/ajaxtut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/ajaxtut.txt new file mode 100644 index 0000000..0feaf7a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/ajaxtut.txt @@ -0,0 +1 @@ +Last week was a busy one and I didn't get around to the Tutorial o' the Day for which I apologize, but it's back and this week we're tackling a hot one: Ajax. Ajax is an acronym for Asynchronous JavaScript and XML, coined by Adaptive Path's Jesse James Garrett (Garret doesn't capitalize the acronym and I've followed his lead since I believe the all-caps version refers to a Colgate registered trademark).
The term Ajax gets bandied about quite a bit, usually in conjunction with that wretch-inducing catch phrase -- web 2.0. Depending on who you're talking to, Ajax can alternately be celebrated as the panacea of the future or, more cynically, the "skip intro" of the 21st century.
To get a good overview of how Ajax works, have a look at Garrett's [article][2] on the subject; it gets fairly technical at times, but if you have some background in web development it shouldn't be too hard to follow.
In order to help you decide whether Ajax is right for your site, I thought we'd start off with another nice overview tutorial/guide from Eddie Traversa of DHTML Nirvana, entitled, aptly enough, *[Ajax: What is it Good For?][1]*.
Traversa walks you through Ajax's history and provides a nice synopsis of what Ajax is and how it can be useful.
>It also needs to be clear that Ajax isn't a technology as such but rather is a technique that combines well with other technologies and techniques. For example, xml, dhtml, css, xhtml. In fact, Ajax really is DHTML with the xmlhttprequest object thrown in
That last sentence is just about the best sound-bite summary of Ajax I've ever heard.
The tutorial also walks you through a simple example and provides all the necessary files to get your Ajax experiment up and running.
Photo from [Colgate-Palmolive][3].
[3]: http://www.colgate.com/app/Colgate/US/HC/Products/HouseholdCleaners/Ajax.cvsp "Photo Credit"
[1]: http://dhtmlnirvana.com/ajax/ajax_tutorial/ "DHTML Nirvana on Ajax"
[2]: http://www.adaptivepath.com/publications/essays/archives/000385.php "Ajax: A New Approach to Web Applications"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/book-maps-highlight.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/book-maps-highlight.jpg Binary files differnew file mode 100644 index 0000000..4ef4f77 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/book-maps-highlight.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/book-maps.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/book-maps.txt new file mode 100644 index 0000000..205a400 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/book-maps.txt @@ -0,0 +1 @@ +Continuing a welcome trend of mashing together various parts of its empire, Google has [added maps to Google Book Search][1]. Currently the feature is far from universal, but in those places where it's most applicable, e.g. guidebooks, the "about this book" page now features a Google map with markers representing all the locations mentioned in the book.
The Google Book Search blog says:
>When our automatic techniques determine that there are a good number of quality locations from a book to show you, you'll find a map on the "About this book" page.
What constitutes "quality locations" is anyone's guess, but a few random searches outside the guidebook genre turned up some interesting maps including one for Bram Stoker's *[Dracula][4]* and Neal Stephenson's globe trotting *[Cryptonomicon][5]*. The Google Book Blog lists some other, non-guide examples including *[The Travels of Marco Polo][3]* and *[Around The World In Eighty Days][2]*.
Each map pin has shows the revelant text from the book and there's a direct link to that page in the book which allows you to see if the information contained is germane to your needs.
While it's fun to zoom to locations in Jules Verne's classic, it may not ultimately be very useful, however, for those looking for a guidebook, the new mapping features are quite helpful.
Unfortunately in some cases the mapping data is not particularly relevant. For instance in the Dracula link given above one of the listings is for Waterloo, Canada (just outside of Toronto) when in fact the book is referring to the more famous [Waterloo][6] of present day Belgium.
Of course a Google search for Waterloo also brings up the Canadian city far ahead of the site in belgium, but since standard Google searches aren't contextual, that isn't really a problem. But maps within Google Books are contextual and somewhat misleading as a result.
Technical quibbles aside, the maps-books mash-up is still quite fun and I'm looking forward to seeing it improve over time.
Mapping for the [Rough Guide to Guatamala][7]:
Example of highlighted in-book reference:
[7]: http://books.google.com/books?vid=ISBN1858288487&id=zS3TjIGbOXkC&dq=rough+Guide+to+Guatamala "Rough Guide to Guatamala"
[6]: http://en.wikipedia.org/wiki/Battle_of_Waterloo "Wikipedia: Battle of Waterloo"
[3]: http://books.google.com/books?vid=OCLC02715307 "The Travels of Marco Polo"
[2]: http://books.google.com/books?id=2_OflXjThdIC "Around the World in Eighty Days"
[1]: http://booksearch.blogspot.com/2007/01/books-mapped.html "Google Book Search Adds Maps"
[4]: http://books.google.com/books?vid=ISBN0486411095&id=1I1wtCeJ1nAC&dq=Dracula "Bram Stoker Dracula"
[5]: http://books.google.com/books?vid=ISBN0380788624&id=FUha9wJrSXMC&dq=Cryptonomicon "Cryptonomicon"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/book-search-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/book-search-logo.jpg Binary files differnew file mode 100644 index 0000000..22afaa4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/book-search-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/books-maps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/books-maps.jpg Binary files differnew file mode 100644 index 0000000..3f20673 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/books-maps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/lightroom.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/lightroom.jpg Binary files differnew file mode 100644 index 0000000..52e9264 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/lightroom.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/lightroom.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/lightroom.txt new file mode 100644 index 0000000..e09b796 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/lightroom.txt @@ -0,0 +1 @@ +After close to a year of beta testing, Adobe has announced that its new flagship RAW processing software, Lightroom 1.0 will be [available beginning mid February][1]. Lightroom will be available for both Windows and Mac (universal) and will sell for $300, mirroring the pricing of Apple competitor, [Aperture][2].
We should note that, [according to Ars Technica][3], while Lightroom will run fine on Windows Vista, users will need to wait for a free update for full disc-burning support.
New features in the final version of Lightroom include:
* Improvements to Develop, Slideshow, Printing and Web output
* Improved import dialogue with more flexible file handling that allows Lightroom internal data to better match disk structure.
* A new Key Metadata Browser improves the ranking and rating system and now incorporates color labels and a pick/reject system that sorts and locates photographs.
* Additional tools including a Hue, Saturation and Luminance adjustments.
* Full compatibility with Photoshop Camera RAW 3.7
* Virtual Copies and Snapshot tools allow multiple RAW settings on a single physical file.
Camera RAW 3.7 will be released at the same time as Lightroom and features a number of upgrades as well including support for Lightroom's new non-destructive RAW editing tools.
Adobe claims that more than 500,000 users participated in the public beta program over the last 12 months. John Loiacono, senior vice president, Creative Solutions Business Unit at Adobe said in a press release, "this was truly a collaborative effort and we extend our thanks to everyone who provided invaluable feedback."
Adobe says that, despite the "Photoshop" in Lightroom's official name, the program will not be part of the Photoshop suite, but will remain a standalone program. Nor will Lightroom, as some have claimed, replace Bridge, Adobe's basic RAW editing tool that ships as part of Photoshop.
Most of the features in Lightroom mirror that of Apple's Aperture tool and with nearly identical price points, the competition between the two should start heating up. As soon as we get our hands on a copy of Lightroom 1.0 we'll let you know how the two stack up against each other.
[Lightroom beta 4.1][4] will continue to work until expiration on Febrary 28.
[1]: http://www.adobe.com/products/photoshoplightroom/ "Adobe Lightroom 1.0"
[2]: http://www.apple.com/aperture/ "Apple Aperture"
[3]: http://arstechnica.com/news.ars/post/20070128-8720.html "Ars Technica on Lightroom"
[4]: http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5Flightroom "Download Lightroom beta 4.1"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/ms-publicity.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/ms-publicity.jpg Binary files differnew file mode 100644 index 0000000..2f06a71 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/ms-publicity.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/reboot.txt new file mode 100644 index 0000000..942f72d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/reboot.txt @@ -0,0 +1 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot:
* Adobe [announced today][7] that is will release the full Portable Document Format (PDF) specification in hope that it will be ratified by the International Organization for Standardization (ISO). Perhaps not coincidentally Microsoft Office 2007, which hits retail shelves tomorrow, includes a new file format XPS which aims to dethrone PDF as the de-facto standard.
[7]: http://www.adobe.com/aboutadobe/pressroom/pressreleases/200701/012907OpenPDFAIIM.html "Adobe to Release PDF for Industry Standardization"
* YouTube's Chad Hurley hints that YouTube will begin [sharing advertising revenue with users][2] (video) who contribute to the site. Speaking at the at the World Economic Forum in Davos, Hurley said the system would launch in a "couple of months."
[2]: http://www.youtube.com/watch?v=JlYtu63_uDE&eurl= "Chad Hurley at Davos"
* Google's Sergie Brin recently [admitted][5] that agreeing to China's censorship was, "on a business level... a net negative." Brin says the move has hurt Google's reputation in the U.S. and Europe. The half-hearted apology probably hasn't helped either since Brin implies that the problem isn't the censorship itself, but the [reaction to it][6].
[5]: http://business.guardian.co.uk/davos2007/story/0,,1999994,00.html "Google admits censorship was a mistake"
[6]: http://techdirt.com/articles/20070129/005115.shtml "Google's China Censorship Non-Apology Apology Really A Swipe At The Press"
* Adobe has announced the [official release][1] of Adobe Photoshop Lightroom which will arrive in stores on February 19th. Contrary to what the name might imply, Lightroom is not part of the Photoshop suite and will remain a standalone program. Lightroom 1.0 will be $300 though there is a introductory special of $200 if you purchase before April 30.
[1]: http://www.adobe.com/products/photoshoplightroom/ "Adobe Lightroom"
* [Fake Finder][4] is a new torrent search the lists fake torrents uploaded by the MPAA and RIAA. The torrents are supposedly used to entrap downloaders, but it's doubtful whether such tactics would actually hold up in a court of law. [via [TorrentFreak][3]]
[3]: http://torrentfreak.com/how-to-find-fake-torrents-uploaded-by-the-mpaa-and-riaa/ "How to Find Fake Torrents Uploaded by the MPAA and RIAA"
[4]: http://fenopy.com/fakefinder/ "Fake Finder"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/youtube.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/youtube.txt new file mode 100644 index 0000000..64ce1b6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Mon/youtube.txt @@ -0,0 +1 @@ +People who upload their own movies to YouTube will soon get a [share of the ad revenue][1]. As we mentioned in the Morning Reboot, YouTube's Chad Hurley let slip this weekend that a revenue sharing program is in the works (see video after the jump).
What remains unclear is exactly what form the revenue sharing will take, the [BBC][3] reports that one of the options might be pre-roll ads, but hopefully that won't be the case. Arguably one the keys to YouTube's success thus far is that they have eschewed in-stream ads.
But lack of compensation has driven many YouTubers to turn to competing services like [lonelygirl15][5], who now posts on both YouTube and the monitized site Revver.
Sites like [Revver][4] and [Metacafe][2] have differentiated themselves from YouTube primarily by offering compensation for content creators, but with YouTube jumping in the revenue sharing game they may lose their appeal.
Revver shares in-stream ad revenue with users and Metacafe offers Producer Rewards which functions in much the same way. Metacafe manages to set itself apart from YouTube a little bit more by reviewing and filtering content and catering more toward semi-professional video producers.
As Arik Czerniak, co-founder & CEO of Metacafe says, "a 5-minute clip of your toddler's birthday isn't going to make it to Metacafe's site but it will sit on YouTube."
Czerniak says that the challenges YouTube will face lie in finding the content that will make advertising dollars. There's also the issue of exposure, which can be hard to come by on YouTube. How do you stand out and earn revenue when there's already a million existing videos of backyard ninja stunts on YouTube?
Then of course there's the copyright issues, if users are able to monotize copyrighted clips of the Simpsons you can bet the lawsuits are going to come crashing down. Presumably YouTube plans to address the copyright issues before it goes public with the new revenue sharing service.
Metacafe's Czerniak isn't worried about YouTube's planned sharing model. "You have to market and promote your own video to get noticed and it's very easy to get lost," he says. He believes that Metacafe's reviewed content model offers a better solution, "if your content is good, it will rise to the top."
Much like Czerniak's vision of Metacafe, the most financially viable of these sites will also likely rise to the top, and only time will tell which one will come out ahead.
[2]: http://www.wired.com/news/technology/0,72022-0.html?tw=rss.index "Runner-Up Takes on YouTube"
[3]: http://news.bbc.co.uk/1/hi/business/6305957.stm "YouTubers to get ad money share"
[5]: http://www.wired.com/news/wireservice/0,71780-0.html?tw=wn_tophead_6 "Piercing the Veil of Lonelygirl15"
[4]: http://www.wired.com/wired/archive/14.05/networks.html "Wired Roundup of video sharing sites"
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/JlYtu63_uDE"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/JlYtu63_uDE" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
[1]: http://hosted.ap.org/dynamic/stories/W/WORLD_FORUM_YOUTUBE?SITE=WIRE&SECTION=HOME&TEMPLATE=DEFAULT&CTIME=2007-01-27-10-10-20 "YouTube to Share Revenue With Users"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/ZZ5F4B734A.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/ZZ5F4B734A.jpg Binary files differnew file mode 100644 index 0000000..b03387f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/ZZ5F4B734A.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/build.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/build.txt new file mode 100644 index 0000000..2bd27ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/build.txt @@ -0,0 +1,15 @@ +The Nightly Build: + +* Scariest Headline. Ever. "Bill Gates: Vista is so secure it could run life support systems." Bill Gates is on a worldwide tour in support of Vista and during a stopover in Rumania he said he thinks Vista could [run life support systems in hospitals][1]. I can see the death certificates now, "cause of death: [blue screen][2]." Audio of the interview if available via the site linked above. + +[1]: http://www.our-picks.com/archives/2007/02/01/bill-gates-vista-is-so-secure-it-could-run-life-support-systems/ "Bill Gates: Vista is so secure it could run life support systems." +[2]: http://blog.wired.com/wiredphotos30/ "Wired blue screen of death gallery" + +* From the scary to the potentially sublime... Want to write a novel, but don't have the time? Penguin Books in the UK is [opening a novel wiki][3] where anyone can write edit and rewrite a collaborative novel. I think I agree with Penguin's Jeremy Ettinghausen, head of digital publishing, who tells Reuters, "this is an experiment, it may end up like reading a bowl of alphabet spaghetti," + +[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-01T191304Z_01_L01736456_RTRUKOC_0_US-PENGUIN-WIKI.xml&src=rss "Publisher launches its first "wiki" novel" + +* YouTube is [gaining][4] on the boobtube. Market research firm Harris Interactive says forty-two percent of online adults have watched a video at YouTube and 32 percent of those that visit YouTube say they now watch less TV. + +[4]: http://www.worldscreen.com/newscurrent.php?filename=harris12907.htm "Harris Report: YouTube Users Watch Less TV" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/else.txt new file mode 100644 index 0000000..161947a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/else.txt @@ -0,0 +1,17 @@ +Elsewhere on Wired: + +* Listening Post [points out][1] the The Arcade Fire's new album has been leaked, but apparently the online world is ignoring it due to low quality bit rates. Gotta love snobby leaches. I'm looking forward to the actual release. + +[1]: http://blog.wired.com/music/2007/02/unreleased_arca.html "Unreleased Arcade Fire Album Leaked; Ignored Due to Bloggy Snobbery" + +* Gadget Lab [takes a look][2] at the Canova dual touch-screen laptop, which looks pretty sweet, except how do you type on it? + +[2]: http://blog.wired.com/gadgets/2007/02/canovas_dualscr.html "Canova's Dual-Screen Laptop" + +* Game Life [tells us of Pandemic][3]: "Pandemic will presumably teach impressionable schoolchildren to mutate, infect the water supply, and eventually kill all of mankind. That's because Pandemic is an interesting, morbid little strategy game where you are an infectious disease with the ability to mutate over time." + +[3]: http://blog.wired.com/games/2007/01/pandemic.html "Pandemic" + +* Table of Malcontents [reports][4] that the Boston police seem to have missed a few of the dreaded Mooninite light boards, er, "explosives," because someone's selling one on eBay. + +[4]: http://blog.wired.com/tableofmalcontents/2007/02/mooninite_explo.html "Mooninite Explosive Now Being Sold On eBay!"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/moonit.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/moonit.jpg Binary files differnew file mode 100644 index 0000000..7b1f06c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/moonit.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/reboot.txt new file mode 100644 index 0000000..7ed823a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/reboot.txt @@ -0,0 +1,17 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Sixteen year old Robert Santangelo could be on his was to DVDJon-like folk hero status. Santangelo, who is facing a lawsuit from the RIAA, has [decided to counter sue][2] alleging the RIAA violate antitrust laws, conspired to defraud the courts and made extortionate threats. + +[2]: http://www.chron.com/disp/story.mpl/ent/4514061.html "Teen in piracy suit accuses record industry of collusion" + +* Trend Micro [reports][1] that two new exploits in Windows Mobile could allow DOS attacks and crash the phones. + +[1]: http://www.trendmicro.com/vinfo/default.asp?sect=SA "Windows Mobile Exploits" + +* Microsoft if apparently [experimenting][3] with a pay-as-you-go rental plan for Office 2003. The program is being tested in South Africa, Mexico and Romania, but could be extended further depending on initial feedback. + +[3]: http://blogs.zdnet.com/microsoft/?p=228 "Microsoft tests rental scheme for Office" + +* Technorati has [launched][4] a Digg-like service called "Where's The Fire?" + +[4]: http://technorati.com/wtf/ "Where's the fire"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati-1.jpg Binary files differnew file mode 100644 index 0000000..cd87ecd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati-2.jpg Binary files differnew file mode 100644 index 0000000..68f822f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati-3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati-3.jpg Binary files differnew file mode 100644 index 0000000..b1900ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati-3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati.txt new file mode 100644 index 0000000..045a461 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/technorati.txt @@ -0,0 +1,21 @@ +[Technorati][2] launched a new [search annotation feature][1] yesterday that allows logged in users to annotate and explain popular search terms. The new features is called "WTF" though in this case the popular acronym has been re-branded to the more family-oriented phrase, "Where's the Fire?" + +The idea behind WTF is that popular search terms often leave the uninitiated asking "why is this being talked about right now?" WTF lets the community explain themselves with short posts which then show up at the top of popular Technorati searches (screenshots after the jump). + +Niall Kennedy, a former Technorati employee, [explains][3] the new service succinctly on his blog: + +>Technorati WTF is a mini-blog post aimed at a specific audience. Bloggers who used to try and summarize the top search results on their own blog and attract the attention of searchers can now add a note and possibly gain a reputation directly on the Technorati search result page. + +Any given term can have unlimited WTFs written for it and the top WTF is based on votes from other users. There aren't really enough WTFs at this point to judge how well Technorati's voting algorithm is, but the WTF for WTF (natch) claims that Technorati uses "a special time weighted voting system that means that the most popular recent WTFs will show up on top of the page." + +WTF holds a fairly high potential for driving traffic to your blog. For instance, if you create a term that gets some buzz, so to speak, you can write up a WTF and link to your explanation. If the community votes your WTF to the top of the heap, you'll have top billing on Technorati regardless of the rank of your blog. + +The outbound links on WTF pages have "nofollow" tags so getting your site a link in WTF isn't going to help your PageRank, but it will likely drive a fair bit of traffic. + +Of course, because of that potential, WTF seems like it's just waiting to be abused. For instance, what if company A writes a WTF about company B alleging that the later sacrifices babies under the full moon? Unless company B is on the ball and monitoring WTF, the misleading post may well be the only entry for company B. + +Of course the Technorati community can also keep abuse in check, but if WTF turns into a constant editing battle it might well lose its appeal. + +[1]: http://technorati.com/wtf/ "technorati WTF" +[2]: http://technorati.com/ "technorati" +[3]: http://www.niallkennedy.com/blog/archives/2007/01/technorati-wtf.html "Technorati WTF annotates keyword search results"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/tut.txt new file mode 100644 index 0000000..06bc588 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/tut.txt @@ -0,0 +1,14 @@ +Continuing with the Ajax theme, today's tutorial is a little twist on the tutorial concept. Ajax is a constantly evolving technique and it can be hard to keep up with the latest tricks and gotchas, so to help you stay on top of things, we're gonna turn to everyone's favorite tech -- RSS. + +Yes, today's links are to a couple of very nice blogs, which offer RSS feeds so you can always get the latest Ajax goodness delivered to your reader. + +First up is Bret Taylor's very informative [Ajax Cookbook][1]. Here's a synopsis from the site: + +>Ajax Cookbook is a web site devoted to publishing small, reusable snippets of JavaScript, HTML, and CSS that are generally useful to developers of Ajax web sites. + +The code on this site is licensed liberally under the Creative Commons Attribution 2.5 license so it can be reused in any commercial or non-commercial application, and none of the code depends on any JavaScript framework or third party library. Most of the Ajax "recipes" are just a few lines long, but solve a common problem. The goal is that you can copy and modify the code snippets extremely easily no matter what framework you are using (if any) or what your application looks like. + +The second blog I'll link to is one of the better Ajax-oriented sites on the web -- [Ajaxian][2]. Ajaxian covers just about all aspects of Ajax including changes and updates to popular Ajax frameworks like Prototype and symfony. + +[1]: http://ajaxcookbook.org/ "Ajax Cookbook" +[2]: http://www.ajaxian.com/ "Ajaxian"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/vtips.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/vtips.txt new file mode 100644 index 0000000..e4641a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/vtips.txt @@ -0,0 +1,21 @@ +To celebrate the release of Microsoft's new operating system we've decided to make February Windows Vista Month. Everyday we'll run a couple of posts focused on helping you get more out of your Vista experience, which mean tips, tricks, hints, software reviews and more. + +To get things rolling I thought I'd point out a couple of nice Vista factoids that I've run across in last two days. + +First off, if you were a Vista Beta Tester you probably got a key for Windows Vista Ultimate. It turns out, according to [Windows-Now.com][1], that key will qualify you for the Vista Family Discount. The family discount means that with the purchase of Vista Ultimate, you are entitled to two copies of Windows Vista Home Premium for $49.99 each. + +That's not a bad deal and kudo's to Microsoft for treating their hardworking beta testers right. + +The second tidbit is something I wish every software manufacturer would embrace embrace, the free 30-day trial. Yes you can try Vista for free for thirty days and see if you like it. + +However it turns out you can extend that 30-day trial to 120, which might mean you can use Vista for free until the first service pack comes out. + +[According][2] to Jeff Atwood, at Coding Horror this trick has the official blessing of Microsoft. To reset your Vista trial you need to be logged in as an Administrator. Then fire up the command prompt and enter this line: + + slmgr -rearm + + +You'll need to restart your computer, but once you do your trial period should be reset. This trick will work three times which should give you plenty of time to decide if Microsoft Vista is worth your hard earned cash. + +[1]: http://www.windows-now.com/blogs/robert/archive/2007/02/01/vista-beta-reward-product-keys-and-the-vista-family-discount.aspx "Vista Beta Reward Product Keys and the Vista Family Discount" +[2]: http://www.codinghorror.com/blog/archives/000778.html "Extending The Windows Vista Grace Period to 120 Days"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/wsj.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/wsj.jpg Binary files differnew file mode 100644 index 0000000..7fcbbd4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/wsj.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/wsj.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/wsj.txt new file mode 100644 index 0000000..ae2549d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Thu/wsj.txt @@ -0,0 +1,9 @@ +News junkies unite, there's some new feeds to add to your readers. We [told you][3] this would be year RSS went mainstream, and as further evidence, the Old Media giant The Wall Street Journal has [added some more RSS feeds][1], including one for each section in the print edition of the paper. + +Of course just to prove that, while they may start to understand RSS, they still don't understand the web, the WSJ's new feeds, like so much of the site, are only available to subscribers. + +Found via [Micro Persuasion][2]. + +[1]: http://users2.wsj.com/lmda/do/checkLogin?mg=wsj-users2&url=http%3A%2F%2Fonline.wsj.com%2Fpage%2F0_0813.html "WSJ RSS" +[2]: http://www.micropersuasion.com/2007/01/wsj_gets_print_.html "WSJ Gets Print Edition Feeds" +[3]: http://www.wired.com/news/technology/internet/0,72542-0.html?tw=rss.index "Supersize Your RSS"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/clippy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/clippy.jpg Binary files differnew file mode 100644 index 0000000..15173dc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/clippy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/clippy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/clippy.txt new file mode 100644 index 0000000..2d3b5e6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/clippy.txt @@ -0,0 +1,17 @@ +Clippy is dead. Long live Clippy. + +After battling for years with a default setting by the ill-boding name of "off," Clippy finally succumbed to the forces of progress earlier today. With today's introduction of Office 2007 Clippy is officially gone (unless there's an Easter egg in there somewhere). + +Clippy, real name Office Assistant, made his debut in Microsoft Office 97 with such clever quips as "it looks like you're writing a letter, would you like help?" and other words of endearment. Fans loved Clippy, as evidenced by this [famous video][1] (video - NSFW). + +Sporting Great Gatsby-esque eyeballs and eyebrows on Groucho Marx could justify, Clippy was born to parents, er, parent "[Bob][2]" sometime in 1996. Bob, who retired early after winning the coveted "[worst product of the decade][3]" award from CNET.com, now works as a facial model for the "nerd smiley" in MSN messenger. + +Young Clippy had a shamanistic bent and apparently enjoyed shape-shifting (among other less printable proclivities). Clippy was also know to take forms such as The Dot, F-1 (a robot), The Genius, Mother Nature, Scribble (a cat) and Power Pup. + +For the time being memories of Clippy will remain at work in legacy versions of Microsoft Office. He will be missed. Clippy declined to comment for this story saying, "I don't know, it doesn't look like you're writing a letter." + + + +[1]: http://www.pixelbeat.org/ms_mirth/paper_clip.mpeg "Clippy and Fans" +[2]: http://en.wikipedia.org/wiki/Microsoft_Bob "Microsoft Bob" +[3]: http://www.cnet.com/4520-11136_1-6313439-1.html "Top 10 worst products of the Decade"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/else b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/else new file mode 100644 index 0000000..a6f18cb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/else @@ -0,0 +1,21 @@ +Elsewhere on Wired: + +* Adam Rogers of Wired Science [brings news][1] that "giant jumping spiders mate best when they can see each other glowing under ultraviolet light," which just goes to. Wait a second. There's giant spiders that jump? *And* glow in ultraviolet light? Does Hollywood know about this? + +[1]: http://blog.wired.com/wiredscience/2007/01/ultraviolet_spi.html "Ultraviolet Spiders" + +* Gadget Lab [has links][2] to the UK versions of Apple's "I'm a Mac" campaign. The ads feature David Mitchell and Robert Webb of Peep Show fame, which my British friend assure me is hilarious even though I've sat through two episodes without cracking a smile. + +[2]: http://blog.wired.com/gadgets/2007/01/watch_apples_br.html "Watch Apple's British Ads" + +* Listening Post [wants your opinion][3]: which hip new bands will last? There's a commentor over there going by the name of Kicker of Elves --cheeky lad that one-- speaking of once-hip new bands that didn't last (but live on in solo project form of course). + +[3]: http://blog.wired.com/music/2007/01/which_new_hip_b.html "Which New Hip Bands Will Last?" + +* Table of Malcontents [reports][4] on the Library of Congress exhibit "The Empire That Was Russia," which features "the color photographs of Sergei Mikhailovich Prokudin-Gorski, who traveled Tsarist Russia producing thousands of glass-plate negatives." Remarkable images (a tiny version of which you can see above). + +[4]: http://blog.wired.com/tableofmalcontents/2007/01/prokudingorskis.html "Prokudin-Gorski's Color Photographs of Tsarist Russia" + +* And finally, the best Wired headline of the week comes from Cult of Mac's Pete Mortensen: [Verizon Turned Down the iPhone -- Can Your Hear Me Now?][5] + +[5]: http://blog.wired.com/cultofmac/2007/01/verizon_turned_.html "Verizon Turned Down the iPhone -- Can Your Hear Me Now?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/elsewhere-10.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/elsewhere-10.jpg Binary files differnew file mode 100644 index 0000000..112bdd5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/elsewhere-10.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/nightly b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/nightly new file mode 100644 index 0000000..25dade1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/nightly @@ -0,0 +1,18 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build: + +* Harvard is [now offering][1] a select set of course content free to general public and available via the newly created [Harvard niche][2] at the iTunes Store. + +[1]: http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20070129005423&newsLang=en "Have You Ever Wanted to Take a Course at Harvard?" +[2]: http://itunes.extension.harvard.edu/ "iTunes Harvard Store" + +* TorrentFreak [reports][3] that the Dutch are considering an internet tax as a way to compensate record companies for piracy. Hopefully the U.S. government won't do likewise since the history of government subsidies to prop up dying industries is not pretty. + +[3]: http://torrentfreak.com/holland-considers-banning-drm-legalizing-filesharing/ "Holland Considers Banning DRM, Legalizing Filesharing" + +* The W3C and OASIS have joined up to release a new [web standard for industrial graphics][4]. Industrial graphics refers to technical illustrations in electronic documents, specifically WebCGM, which is widely deployed in the defense, aviation, architecture, and transportation industries. + +[4]: http://www.w3.org/2007/01/webcgm-pressrelease.html.en "W3C and OASIS Jointly Issue New Web Standard for Industrial Graphics" + +* TSIA: [Robot parking garage to open in New York][5]. + +[5]: http://www.usatoday.com/tech/news/techinnovations/2007-01-30-robotic-garage_x.htm "Robot parking garage to open in New York"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/reboot.txt new file mode 100644 index 0000000..6d1eab9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/reboot.txt @@ -0,0 +1,23 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Vista has arrived. Microsoft brings retail versions of its flagship products to stores today. Check out Bruce Gain's [review of Vista][1] and my own take on [Office 2007][2]. + +[1]: http://www.wired.com/news/culture/reviews/0,72295-0.html "Why You Don't Need Vista Now" +[2]: http://www.wired.com/news/technology/software/0,72596-0.html?tw=wn_index_2 "Blue Ribbon Debut for Office 2007" + +* Not sure if it's what MS has in mind for Vista's launch publicity, but Canadian hacker Alex Ionescu claims to have found a way to [circumvent the built-in DRM][4]. So far he hasn't released the code because he's worried about legal implications. + +[4]: http://www.alex-ionescu.com/?p=24 "Vista DRM exploit" + +* In a move that must have been calculated to steal a bit Microsoft's thunder, Apple [released][3] new multi-colored iPod Shuffles this morning. You can now get your shuffle in pink, orange, green, blue and gray. + +[3]: http://www.apple.com/ipodshuffle/ "iPod Shuffle" + +* In an attempt to make the possibly popular online world, Second Life, as pointlessly dull as the real world, Sweden [announced][6] it will open the first embassy inside Second Life. That does it, Second Life has official joined MySpace which means there's now two items on my list of "never have, never will." + + +[6]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-01-30T141717Z_01_L30445021_RTRUKOC_0_US-SWEDEN-SECONDLIFE.xml&src=rss "Sweden to open first virtual embassy in Second Life" + +* Google Earth has [added a layer][5] that brings the sunrise to your computer screen. The new layer include video vignettes drawn from Discovery HD Theater's "Sunrise Earth" program. + +[5]: http://googleblog.blogspot.com/2007/01/new-sunrise-layer-on-google-earth.html "New sunrise layer on Google Earth"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/tut.txt new file mode 100644 index 0000000..81172de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/tut.txt @@ -0,0 +1,20 @@ +One of the great things about Ajax is it allows you take advantage of all your scattered data spread across popular online sharing sites --bookmark sites, photo sites and more. While not every "web 2.0" site offers an API to access its data, the better ones frequently do, which means you can pull the data into your own website. + +Application Program Interfaces (APIs) are simple ways of accessing outside data and pulling it into your own site. + +Popular websites featuring robust APIs include [Google Maps][4], [del.icio.us][3] and [Amazon][5]. If you'd like to see what you can do with a robust API, I use the [Flickr API][2] to pull in my Flickr stream and store the data locally on my [personal site][6]. + +But for the non-programer APIs can be intimidating. There is often a myriad of techniques and languages for interacting with a public API. That flexibility is part of the appeal of APIs but it's also one of the things that makes it confusing for newcomers -- where do you start? + +Well one place would be using Ajax. Accessing an API through JavaScript can sometimes be a little bit slower, but it's often much simpler as well. + +One of the best tutorials I know of for Ajax API integration is Think Vitamin's [Go Forth and API][1]. The tutorial has links to popular services and then walks you through the process of interacting with the Google Maps API via Ajax. + +So go forth and API. And if you'd like to point out other tutorials feel free to leave them in the comments below. + +[1]: http://www.thinkvitamin.com/features/ajax/go-forth-and-api "Go forth and API" +[2]: http://www.flickr.com/services/api/ "Flickr API" +[3]: http://del.icio.us/help/api/ "del.icio.us API" +[4]: http://www.google.com/apis/maps/ "Google Maps API" +[5]: http://www.amazon.com/gp/browse.html/ref=sc_fe_l_1/002-5739132-9234422?%5Fencoding=UTF8&node=3435361&no=3435361&me=A36L942TSJ2AJA "Amazon API" +[6]: http://luxagraf.net/photos/ "luxagraf.net"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/unity.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/unity.jpg Binary files differnew file mode 100644 index 0000000..5642aa3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/unity.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/vista.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/vista.txt new file mode 100644 index 0000000..e484ab9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/vista.txt @@ -0,0 +1,19 @@ +<img width="100" height="73" border="0" src="http://blog.wired.com/monkeybites/images/winvista_v_thumb_6_1.jpg" title="Winvista_v_thumb_6_1" alt="Winvista_v_thumb_6_1" style="margin: 0px 0px 5px 5px; float: right;" />What the heck is going on? Microsoft delivers the first new operating system in five years and the tech community seems to be doing a collective yawn. Our own Robert Lemos [reports][1] on empty stores on the East Coast, blogger Niall Kennedy [says][2] no one lined up in San Francisco, Gizmodo [calls][3] the release party "a PowerPoint presentation in the flesh" (which can't be good) and ZDNet blogger Mary Jo Coley [reports][4] that while there was a crowd at the Best Buy store on Fifth Avenue and 44th Street in Manhattan, "the vast majority in attendance seemed to be TV crews, reporters and Microsoft PR people." + +I feel Microsoft's pain. I tried to throw a party once last summer and everyone said, "oh yeah, sounds great" we'll be there and then come show time it was me and two other people working our way through a really large bowl of sangria. + +I my case it worked out for the best, but this is the biggest thing likely to come out of Redmond for years. Even the Zune looks like a highly anticipated release next to this, and Windows 95 certainly drew in the crowds, but has the shine gone out the release party? + +Apple still manages to draw pretty heavy for their releases, and despite a lukewarm reaction to Vista, I expected a little more hoopla for the first new version of Windows in five years. + +I have a theory on this lackluster launch: no one gets excited about work. For the average person computers, software and operating systems represent something they use at work. Sure they probably have one at home too, but Microsoft's true test of Vista is not really the consumer, it's businesses. + +Frankly the amount of enthusiasm the Apple faithful manage to generate for even the most of lackluster of products makes me nervous, so while on one hand I'm surprised at the lack of enthusiasm for Vista, I also can't help thinking it's a good thing. Perhaps the world is right, there's nothing exciting about a new operating system -- maybe instead of lining up for Vista, everyone is out strolling through a park with a loved one in hand. + + + +[1]: http://www.wired.com/news/technology/0,72601-0.html "Vista Launch a Late-Night Yawn" +[2]: http://www.niallkennedy.com/blog/archives/2007/01/windows-vista-launch-san-francisco.html "No one is lining up for Windows Vista in San Francisco" +[3]: http://gizmodo.com/gadgets/software/vista-launch-party-schwag-bag-add-it-up-232387.php "Lackluster Vista Party" +[4]: http://blogs.zdnet.com/microsoft/?p=227 "Vista Launch" +[5]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyID=2007-01-30T053604Z_01_N29314484_RTRUKOC_0_US-MICROSOFT-VISTA-ADOPTION.xml&WTmodLoc=TechNewsHome_C2_technologyNews-7 "Vista is ready for consumers but businesses key"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/vista2.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/vista2.txt new file mode 100644 index 0000000..1e10def --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Tue/vista2.txt @@ -0,0 +1,23 @@ +At this point there isn't much I can tell you about Windows Vista that you probably haven't already heard, so consider this entirely subjective, but I really like Vista. I installed Vista through Apple's Bootcamp in order to test Office 2007 and have since converted that installation to a Parallels-based virtual machine. + +As Leander [noted recently][1] on Cult of Mac, Vista is screaming fast when you run it natively on recent Mac hardware and I'd agree with him that Vista "feels" faster than OS X in many respects. + +On moving my installation over to a virtual machine, the speed dropped off considerably, but it's still very usable. Vista performs at speeds roughly the same as XP (also running in a virtual machine), but I did find that disabling the Aero effects sped things up quite a bit. Your own experience will depend somewhat on how much RAM you allow Parallels to allocate to Vista -- I'm giving it 640MB. + +Quite frankly I did not expect to be particularly impressed with Vista, but I am. I like the design, it has a very dark, classy look to it. You can dismiss that as irrelevant if you want, but I appreciate well thought out design choices and Microsoft certainly pulled out all the stops with Vista. + +Of course I'm not using Vista extensively, I don't have to live in it. If I did, you can bet I'd be complaining about DRM and peripheral support among other things. If you're seeking an objective point of view, have a look at Bruce Gain's [recent article][5]. + +I now have four operating systems running on my Macbook, OS X, Vista, XP and Ubuntu Linux. Granted most people don't test and write about software for a living so you might not have any need for such diversity, but it's certainly doable if you're interested. + +For the most part I still work in OS X, but using [Firefox][2] for browsing, [Thunderbird][3] for email (IMAP), and [emacs][4] for writing I'm able to get more or less the same experience across all the platforms. + +And I'm learning to rely less on vender specific software and more on cross-platform solutions so that the tools I need for my day to day work needs are platform independent. I like Vista, I like OS X and I like Linux, but I don't want to be tied to any of them. + + + +[1]: http://blog.wired.com/cultofmac/2007/01/running_vista_o.html "Running Vista on a Mac" +[2]: http://www.mozilla.com/en-US/firefox/ "Firefox 2" +[3]: http://www.mozilla.com/en-US/thunderbird/releases/2.0b2.html "Thunderbird Beta 2" +[4]: http://www.gnu.org/software/emacs/ "emacs" +[5]: http://www.wired.com/news/culture/reviews/0,72295-0.html "Why You Don't Need Vista Now"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/ZZ5C3DB998.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/ZZ5C3DB998.jpg Binary files differnew file mode 100644 index 0000000..f56cafd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/ZZ5C3DB998.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/bootstrap.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/bootstrap.txt new file mode 100644 index 0000000..992a859 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/bootstrap.txt @@ -0,0 +1,40 @@ +Michael just [posted a roundup][7] of our [Vista Predictions][8] survey we ran a couple days back and I couldn't help but notice that one of my predictions failed to make the top ten. In fact it failed to get much support at all. At last count there are only thirteen people that agree with my hypothesis that Apple will buyout [Parallels][6] virtualization software and start bundling Vista with Mac. + +Now I know it sounds perverse, but hear me out. + +First of all Apple has a history of buying/absorbing/ripping off technologies it likes. The cover art in iTunes 7 was a plugin Apple purchased from the developer. iTunes itself comes from the code base that was originally [SoundJam MP][1]. And then there's the whole Dashboard - Konfabulator debate that's already been beat to death. + +And Apple likes Parallels. Granted Apple has said it [isn't interested ][2] in virtualization software, but Steve Jobs denied the existence of [Marklar][3] for years and that turned out to be true. The fact is Apple is way too secretive to be taken at its word. Besides which is you read that article closely you'll notice Apple's Phil Schiller says Apple has no interest in virtualization *for Leopard*. Okay, but how about 10.6? + +So why do I think Apple will buy Parallels? For one thing Parallels keeps cranking out free updates which mean either they're really cool, or they have some funding from somewhere. Development is expensive and companies rarely give it away. + +Another reason I stand by this prediction is Windows Vista. Vista is a really nice looking piece of software, the sort of thing that Mac users [seem to like][4]. While sales may be slow off of the blocks, Vista will eventually come to hold 95 percent of the market just like its predecessors have done. + +The reason Windows' dominance in the OS market doesn't threaten Apple is because Apple is in the hardware business. OS X is a great system and obviously Apple has put a lot of money into it, but they don't recoup it by selling the OS, they make money by selling the machine that runs the OS. + +Given that 95 percent of the market clearly wants to run Windows, Apple stands to make giant strides in hardware sales if they can bundle both OSes with their hardware. Combine this with a generation of kids growing up with iPods and a love of Halo and you can see where the market potential is huge. + +Now Apple claims they aren't interested in virtualization because of the performance hit (and apparently Wired readers believe with them). + +Fair enough, how about I change my prediction slightly? Forget Parallels, what about Wine? [Wine is open source][5], which means Apple could take the code and improve/customize it -- just like they took FreeBSD for OS X and Konqueror for Safari -- so long as they donate that code back to the project. + +Wine has the distinct advantage of doing something Apple users clearly want (running Windows apps), but doesn't violate Apple's obsessive control over the "user experience." That is, Wine runs Windows software, not Windows. + +Here's my new scenario: + +* Apple retains control the user experience in the primary OS -- OS X. +* Bootcamp allows for a separate install of Windows (sold as an add-on with new Macs). +* Apple takes Wine and creates something called *Bootstrap* which allows you to open and use your Windows Apps and documents within your OS X partition. + +How you like dem apples? + + + +[1]: http://en.wikipedia.org/wiki/ITunes "Wikipedia: iTunes History" +[2]: http://www.appleinsider.com/article.php?id=2277 "Apple reiterates: no interest in virtualization for Leopard" +[3]: http://en.wikipedia.org/wiki/Marklar "Marklar" +[4]: http://blog.wired.com/cultofmac/2007/01/running_vista_o.html "Running Vista on a Mac" +[6]: http://www.parallels.com/en/products/workstation/mac/ "Parallels Desktop for Mac" +[5]: http://www.winehq.com/ "Wine HQ" +[7]: http://blog.wired.com/monkeybites/2007/01/vista_predictio_1.html "Vista Predictions: Recap" +[8]: http://blog.wired.com/monkeybites/2007/01/vista_predictio.html "Predictions for Windows Vista"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/else.txt new file mode 100644 index 0000000..1fec03b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/else.txt @@ -0,0 +1,21 @@ +Elsewhere on Wired: + +* 27B Stroke 6 [reports][2] on the "secret court that oversees spying on spies and the even more secret court of review that's only met once in 27 years." + +[2]: http://blog.wired.com/27bstroke6/2007/01/secret_report_o.html "Secret Report on Secret Spy Court" + +* Table of Malcontents [reports][3] that the bomb squads of Boston are "scrambling after a number of suspicious packages were left littered around the city." Turns out it's not a terrorist threat, it's an advertising campaign for Aqua Teen Hunger Force. + +[3]: http://blog.wired.com/tableofmalcontents/2007/01/aqua_teen_hunge.html "Aqua Teen Hunger Force Sparks Bomb Panic in Boston" + +* Bodyhack [looks at claims][4] that Da Vinci may have had ectrodactyly a condition that produces webbed fingers and toes. + +[4]: http://blog.wired.com/biotech/2007/01/da_vinci_a_webf.html "Da Vinci: A Web-Fingered Renaissance Man?" + +* Cult of Mac [has a CNN][5] video that shows Bill Gates squirming as the show's host calls him out for copying OS X. Gates does indeed inhabit a parallel universe if he thinks Vista is the first time parental controls have been used. Or perhaps it's possible Gates has simply never used another OS and thus has no idea that the rest of world is way ahead of him. + +[5]: http://blog.wired.com/cultofmac/2007/01/bill_gates_occu_1.html "Bill Gates Occupies Alternative Universe Where Vista is Innovative" + +* Listening Post [has a link][1] to Thom Yorke's iTunes playlist. + +[1]: http://blog.wired.com/music/2007/01/thom_yorkes_itu.html "Thom Yorke's iTunes Playlist - Who Are These Bands?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/flickr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/flickr.jpg Binary files differnew file mode 100644 index 0000000..afd03cc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/flickr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/flickr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/flickr.txt new file mode 100644 index 0000000..b794859 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/flickr.txt @@ -0,0 +1,34 @@ +As I mentioned in the reboot, Flickr sent out some emails last night to users who haven't yet switched over to a Yahoo ID encouraging them to do so. The official deadline to do so isn't until MArch 15th, but clearly Flickr would like to expedite the transition. + +The change applies only to those of us who signed up with Flickr prior to the Yahoo acquisition last year. As one who falls in that group I decided the go ahead and migrate my account last night. My experience was seamless, but here's two caveats, one, my username is a made up word so there's isn't going to be a name conflict when changing to Yahoo and two, I don't have more than 3,000 contacts nor do I have any photos with more than 75 tags. + +If you do end up with a different username you will have to update any outside tools that store your Flickr username or password. + +Some users reported losing contacts and tags when they swtiched, but as it turns out this isn't limited to old school Flickr users. If you do have more than 3,000 contacts or have photos with more than 75 tags, you're going to lose some data in the transition, but even if you're a recent member those limits still apply to you. + +Because you must be logged in to read the official Flickr announcement, I'll reprint it in its entirety: + +>A pair of items for your attention: + +In our ongoing efforts to Make Flickr Better<sup>TM</sup>, we're introducing two additional limits: the new maximum number of contacts is 3,000 contacts (good luck with that), and each photo on Flickr can have a maximum of 75 tags. + +We love your freedom, but, in this particular case, limiting these things will actually improve the system performance, making pages load faster across the site for everyone and cut out some unwelcome spammy behaviors. Both of these new limits apply equally to free and pro account members. + +If you have questions or comments about these changes, we've opened a <a href="http://www.Flickr.com/forums/help/32686/">topic in Flickr Help</a>. + +On March 15th, 2007 we'll be discontinuing the old email-based Flickr sign in system. From that point on, everyone will have to use a Yahoo! ID to sign in to Flickr. + +We're making this change now to simplify the sign in process in advance of several large projects launching this year, but some Flickr features and tools already require Yahoo! IDs for sign in -- like the mobile site at m.Flickr.com or the new Yahoo! Go program for mobiles, available at <a href="http://go.yahoo.com">http://go.yahoo.com</a>. + +If you still sign in using the email-based Flickr system (<a href="/signin/Flickr/">here</a>), you can make the switch at any time in the next few months, from today till the 15th. (After that day, you'll be required to merge before you continue using your account.) To switch, start at this page: <a href="http://Flickr.com/account/associate/">http://Flickr.com/account/associate/</a> + + +This isn't the first time a company has tried to pass off an artificial limitation as a "feature," but it's the first time Flickr has and it's drawing fire from users. I sympathize with those that say, "who cares, those limits are plenty high enough," but the change is still a bad move on Flickr's part. + +The logic that restrictions will make "pages load faster across the site for everyone," doesn't wash for me. If your site is having performance issues it's time to look at your code base, not penalize users. If Flickr is in fact being honest with this logic, it doesn't bode well for the future. + +Obviously I don't know anything about Flickr's code base, but generally speaking if one user with 500 tags on a photo slows a system down, 500 users with one tag are also going to slow the same system down. In other words the problem is the system, not the user and passing the problem along to the user is just plain wrong. + +Consider this offer: I have an incredibly fast photo sharing site on my laptop here at home, it smokes anything Flickr has got, but to get this incredibly blazing fast site and make it work for everyone, you're limited to one photo. Obviously no one would join my site, but the truth is Flickr's new restrictions differ only in terms of scale, not concept. + +So perhaps the limits aren't so bad since they're fairly high, but the logic behind them doesn't make sense. Bad Flickr, no donut.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/mac-ad.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/mac-ad.jpg Binary files differnew file mode 100644 index 0000000..cc4d1b2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/mac-ad.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/mypunchbowl.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/mypunchbowl.jpg Binary files differnew file mode 100644 index 0000000..1fdd750 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/mypunchbowl.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/nightly.txt new file mode 100644 index 0000000..f855df5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/nightly.txt @@ -0,0 +1,22 @@ +The Nightly Build: + +* As someone who's been writing about Vista in Parallels and how great it is, I was dismayed to learn that the EULA forbids the use of the Home Basic and Home Premium version of Vista in virtual environments. Say what? The Parallel's blog [has more details][1]. + +[1]: http://parallelsvirtualization.blogspot.com/2007/01/vista-is-here-so-what-does-it-mean-for.html "Vista is here. So what does it mean for virtualization?" + +* Skype 2.5 for the Mac is [finally out of beta][2]. The official release adds support for SMS messaging, conference calling and more. + +[2]: http://www.skype.com/download/skype/macosx/ "Skype 2.5 for Mac" + +* Now the Vista has been released the security exploits are starting to roll in. This one isn't all that serious but it's kind of funny. Apparently a flaw in the speech command system would allow malicious, um, yelling, to [commandeer your computer][3]. Expect this one to be popular on MySpace. + +[3]: http://blogs.zdnet.com/Ou/index.php?&p=416 "Vista Speech Command exposes remote exploit" + +* Earlier today I gave Flickr a hard time about their [newly imposed limitations][4], but then I discovered something potentially much more disturbing. So far this is just a [hysterical thread on Digg][5], but it seems that Yahoo is using Flickr photos on some of their public portals without the author's permission. I don't know for sure whether that's legal or not under the respective TOSes, I'm not even sure whether Flickr is now governed by the Yahoo TOS or the old Flickr TOS. And how do the CC license you can apply to your photos fit into that? I'll be digging into this one more tomorrow. + +[4]: http://blog.wired.com/monkeybites/2007/01/as_i_mentioned_.html "Flickr imposes new limits" +[5]: http://digg.com/business_finance/OUTRAGEOUS_Yahoo_t_STEALS_copyrighted_photos_from_Flickr_users "Yahoo using Flickr photos" + +[photo credit][6] + +[6]: http://www.flickr.com/photos/michgm/376012759/ "From michgm's photostream"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punch1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punch1.jpg Binary files differnew file mode 100644 index 0000000..d0ead7b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punch1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punch2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punch2.jpg Binary files differnew file mode 100644 index 0000000..9524bea --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punch2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punch3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punch3.jpg Binary files differnew file mode 100644 index 0000000..01680d1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punch3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punchbowl b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punchbowl new file mode 100644 index 0000000..4f509a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/punchbowl @@ -0,0 +1,24 @@ +I thought I'd follow up my [Super Bowl Party][1] article with some more in depth reviews of the services mentioned and to kick that off we'll start with [MyPunchBowl][2]. As I mention in the article, MyPunchBowl is a party planning site designed to help you create a webpage for your party. + +MyPunchBowl takes the familiar features of Evite and raises the bar considerably by offering a wide range of social networking tools to help you plan and organize your party as well as interact with your guests both before and after your party. + +Once you sign up for an account you can get started by creating a party. MyPunchBowl has a number of preset templates for parties (right now they've got a special "football party" template) or you can create your own custom templates. + +There's a number of ways to customize your party's page including some nice Ajax color widgets that updates in realtime. Other options include uploading a picture (or pulling one in from your Flickr account) and mapping tools via Google Maps. + +Once you have your party page looking the way you want it, it's time to add your friends to your guest list. MyPunchBowl can import your contacts list from just about any popular email service including, GMail, Hotmail, Yahoo, or if all else fails you can export your contacts as a .csv file import them. + +After you have your guest list filled in, you can start sending out invites. If you don't have clear plans yet, but you know you want to have a party on certain date, you can send out a "save the date" message to your guest list and follow up later with details. + +Perhaps my favorite feature of MyPunchBowl is the ability to append personalized messages at the top of each mass email you send. Its a nice touch and it will make your mailing seem a little less generic. + +Once your announcement goes out, MyPunchBowl makes it easy to coordinate with your guests. There's a message board for posting comments or suggestions and you can always send out individual messages to encourage the slackers. + +For the vast majority of the party panning sites I looked at, that's the end of the story, but MyPunchBowl offers some nice after-party features like the ability to display your photos on your party page. If you host your photos on Flickr it's easy to pull them in to your MyPunchBowl page, just enter your Flickr username and all the sets in your photostream will come up (note that depending on how may sets you have, this could take a minute). Select the set you want to display and MyPunchBowl will pull display it for all your guests to see. + +And photo sharing isn't limited to just the host, anyone on your guest list can add their photos as well, which gives you a single page from which to see all your party pics. + +One key thing MyPunchBowl lacks at the moment is SMS support which would be handy for the those last-minute, day-of reminders. The folks behind MyPunchBowl assure me that they're planning SMS support for the near future, but in the mean time you'll have to take care of that yourself. + +[1]: http://www.wired.com/news/culture/0,72613-0.html?tw=wn_culture_2 "Geek Up Your Super Bowl" +[2]: http://www.mypunchbowl.com/ "MyPunchBowl"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/reboot.txt new file mode 100644 index 0000000..116206e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/reboot.txt @@ -0,0 +1,34 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + + +* Apple has released the software necessary for unlocking the 802.11n wifi features of recent Macs. The upgrade is called "[802.11n Enabler for Mac][4]" and costs $1.99 at the Apple Store. + +[4]: http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?mco=9BFE4FC5&nplm=D4141ZM%2FA "802.11n Enabler for Mac" + +* The end of the floppy. Sniff. PCWorld UK has [announced][3] it will stop stocking floppy disks when current supplies run out. + +[3]: http://news.bbc.co.uk/1/hi/technology/6314251.stm "No more Floppies" + +* A Canadian researcher [says][10] that bloggers "living in a world where emotions may be real but everything else is make-believe." He goes on to conclude that bloggers are "a lonely bunch." Not to be overly defensive (or offensive), but "Canadian Researcher" doesn't sound like a hotbed of meaningful social interaction either. [via Micro [Persuasion][11]] + +[10]: http://cnews.canoe.ca/CNEWS/MediaNews/2007/01/30/3482799-cp.html "Calgary author: Bloggers a lonely bunch" +[11]: http://www.micropersuasion.com/2007/01/the_lonely_the_.html "The Lonely, The Proud, the Bloggers" + + +* Old school Flickr users are [mighty unhappy][5] about merging their Flickr accounts with their Yahoo Accounts. I went ahead and merged my account last night when I got the email and didn't have any problems, but some people report losing contacts, tags and other nightmares. YMMV. + +[5]: http://www.flickr.com/photos/thomashawk/375290980/ "Unhappy Flickr Users" + + +* Performancing [has an article][6] on why the annoying [Snap Preview Anywhere][7] widget on your blog is pissing people off. Like me. I'm looking at you [Techcrunch][8]. For those that would like to disable the feature in your browser, Snap [claims][9] to have a cookie that does the job, but it didn't work for me in Safari (on Firefox it does though). + +[6]: http://performancing.com/node/5721 "3 Reasons Why Snap Preview is Ruining Your Blog, and Hurting Your Readership" +[7]: http://www.snap.com/about/spa1B.php "Snap Preview Anywhere" +[8]: http://www.techcrunch.com/ "Techcrunch" +[9]: http://www.snap.com/about/spa_faq.php "Disable Snap Preview Anywhere" + + +* This isn't software but it's pretty sweet: Buy.com is [offering a free][1] 2 GB SD memory card. The card is $50 with a $50 mail in rebate. What makes it even better is that if you're not already signed up for Google Checkout, you can use Google Checkout to get $10 off your purchase, which means you actually make about $7 on the deal (after taxes). Of course I can't vouch for the quality of the card, nor could I find any write speed specs, but no matter how slow it is a free back-up card is never a bad thing. [via [CNet][2]] + +[1]: http://www.buy.com/prod/Connect3D_2GB_Secure_Digital_Card/q/loc/101/204044460.html +[2]: http://news.com.com/2061-11728_3-6154821.html?part=rss&tag=2547-1_3-0-20&subj=news "CNet Deal of the Day"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-1.jpg Binary files differnew file mode 100644 index 0000000..c1eb084 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-2.jpg Binary files differnew file mode 100644 index 0000000..8e9b022 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-3.jpg Binary files differnew file mode 100644 index 0000000..a623de8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-logo.jpg Binary files differnew file mode 100644 index 0000000..02ec7d7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo.txt new file mode 100644 index 0000000..4ca90db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/renkoo.txt @@ -0,0 +1,18 @@ +[Renkoo][1] is another party planning site that aims to improve on the Evite model. Renkoo's main twist is the variety of party types that it allows you to create. Creating an invite in Renkoo give you a myriad of choices ranging from the vague email to friends that says he lets do lunch this week, to the specific, I'm having a party on x date. + +Once your account is set up you can add your friends by importing a contact list. As with MyPunchBowl, Renkoo leverages Plaxo to import lists so you should be able to import almost any contact info you have whether it's through GMail or a custom .csv file. + +Creating a new invite brings up a form that lets you add a title and description and then asks for a kin of the invite which includes options like, "drink," "food," "gathering" and more (see screenshot below). + +The form also asks you to either pick a date or choose something nebulous like "this week." + +There's also a field for picking a location and deciding which friends to invite. Once you have your invite set up you can send it out to your invite list and they will receive an email with links to RSVP. From there you can chat with your friends using Renkoo to figure the details. + +Renkoo also allows you to send messages via SMS which makes it easy to send out notices about last minute changes. + +Renkoo seems less geared toward a planning intensive one-off party and more suitable for the casual get-together, and most of the site's tools reflect that emphasis. + +Renkoo has strong promise, but it is still in beta and there are a number of [known issues][2], the biggest of which is that your Safari using friends are going to be left out of the fun. + +[1]: http://renkoo.com/ "Renkoo" +[2]: http://renkoo.com/status.php "Renkoo Known Issues"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/sunset-11.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/sunset-11.jpg Binary files differnew file mode 100644 index 0000000..2c86bbd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/sunset-11.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/tut.txt new file mode 100644 index 0000000..c3e3be4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/tut.txt @@ -0,0 +1,11 @@ +There are times when Ajax makes the web a lovely place and there are times when it drives even the most progressive of web surfers a bit batty. It's the J. Yes Javascript is main problem in Ajax since not all browsers handle it the same and some users disable it altogether. + +But that's no reason to abandon Ajax completely. The secret is to make sure your Ajax functionality degrades gracefully, that is, users without Javascript or whose browsers don't quite support what you're doing should still be able to accomplish the same tasks without the Ajax. + +There is no magic bullet tutorial I can point to for accessibility issues with Ajax, every situation is different. A good rule of thumb is to design your app without Javascript and then start adding it in afterward, but in some cases that might not be practical. + +Because there's no cure-all, today we have not really a tutorial but a list of tutorials and articles that address various aspects of Javascript usability. Max Kiesler has rounded up 40 tutorials in an article entitled [How to Make Your AJAX Applications Accessible][1]. + +The issues addressed in the tutorials in Kiesler's round-up won't solve all the problems and in some cases there may not be a way to solve certain issues, but at least it's a start. + +[1]: http://www.maxkiesler.com/index.php/weblog/comments/how_to_make_your_ajax_applications_accessible/ "How to Make Your AJAX Applications Accessible"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/wii-pwned b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/wii-pwned new file mode 100644 index 0000000..fe7d476 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/wii-pwned @@ -0,0 +1,21 @@ +Yahoo had a bit of snafu this evening. I linked to it in the nightly build, but I wanted to follow up a bit. Yahoo has been pulling in a stream of all Flickr photos tagged "Wii" to display on their [Wii portal][1]. The only problem with that is that according to the terms of service on Flickr, the copyright of all Flickr photos remains in the hands of the user. + +Naturally on discovering this the Flickr community promptly pwned Yahoo by uploading a barrage of anti-Yahoo photos tagged "wii," which now fill the first several pages of the Wiiportal. My personal favorite is the hand pointing up with the text "I'm with stupid." Power to the people. + +As far as I can tell no one got a goatse image through which is too bad, if you have or know of a screencap of a goatse image on the front page of the Wii portal, post a link in the comments. + +In numerous threads in the [Flickr forums][3] users ranted and staff attempted to set the record straight, but were somewhat hamstrung by legal requirements. Eventually Flickr team members announced they would get in touch with the Yahoo Wii team and now as far as I can tell the photos being pulled in only from the Creative Commons Attribution pool. + +But of course the pwnage continues. + +And the moral of the story? Yahoo probably has the rights to do whatever they want with your photos regardless of copyright restrictions you've placed on them. Here's the relevant line from [the Yahoo TOS][2]: + +>"With respect to photos, graphics, audio or video you submit or make available for inclusion on publicly accessible areas of the Service other than Yahoo! Groups, the license to use, distribute, reproduce, modify, adapt, publicly perform and publicly display such Content on the Service solely for the purpose for which such Content was submitted or made available. This license exists only for as long as you elect to continue to include such Content on the Service and will terminate at the time you remove or Yahoo! removes such Content from the Service." + +It's been a while since I got my English degree, but I'm pretty sure the first sentence in that paragraph isn't an actual sentence -- there's no verb. But I can tell you this, one sure way to remove Yahoo's rights is to take down your photos. + +It's been a rough day for Flickr, but in this case they did the right thing and so did Yahoo and so for that matter did the users, maybe Time was right after all. + +[1]: http://wii.yahoo.com/photos?pg=1 "Wii Portal Photos" +[2]: http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html "Yahoo! Terms of Service" +[3]: http://www.flickr.com/forums/help/32752/#reply165536 "Yahoo Forums"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/yahoo1-promo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/yahoo1-promo.jpg Binary files differnew file mode 100644 index 0000000..455d1a7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/yahoo1-promo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/yahoo1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/yahoo1.jpg Binary files differnew file mode 100644 index 0000000..19395f8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/yahoo1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/yahoo2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/yahoo2.jpg Binary files differnew file mode 100644 index 0000000..00e9898 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/01.29.07/Wed/yahoo2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/else.txt new file mode 100644 index 0000000..bd5b579 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/else.txt @@ -0,0 +1,17 @@ +Elsewhere on Wired: + +* It's not all iPods you know, there are some other nice mp3 players out there. Listening Post's Eliot Van Buskirk [has a look at a new model from Tascam][1] that bills itself as the MP3 player for guitarists. Some cool features include, "a DSP that can slow down playback without changing the pitch, loop sections in order to learn them, and pitch the song up or down in 1 percent increments to match your instrument's tuning." + +[1]: http://blog.wired.com/music/2007/02/an_mp3_player_f.html "An MP3 Player for Guitarists" + +* Gadget Lab's Rob Beschizza finds a "[living lightshade][2]." The living lightshade consists of a hanging bulb and a vine the slowly grows up a metal frame. Strange, but kind of cool. + +[2]: http://blog.wired.com/gadgets/2007/02/living_lightsha.html "Living Lightshade from Dreamingreen" + +* Annalee Newitz at Table of Malcontents wants to know why there's [more sex][3] in fantasy novels than sci-fi novels. + +[3]: http://blog.wired.com/tableofmalcontents/2007/02/hotter_sex_in_f.html "Hotter Sex in Fantasy Than in Science Fiction?" + +* Cult of Mac [weighs in][4] on New York State Senator Carl Kruger's moronic proposal to ban iPods while crossing the street. Don't worry we already sent Kruger a memo about that thing called the Walkman, should be all straightened out by tomorrow. But we do predict somebody isn't getting re-elected. + +[4]: http://blog.wired.com/cultofmac/2007/02/new_york_state_.html "New York State Senator Wants to Ban Walking With iPods"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/firefox-follow-up.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/firefox-follow-up.txt new file mode 100644 index 0000000..25f0bf3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/firefox-follow-up.txt @@ -0,0 +1,24 @@ +Yesterday's [review of Firefox 3 Alpha 2][2] generated a fair bit of discussion both here and [on Digg][1] so I thought I'd follow up on a few things. + +First off, the use of Cocoa widgets in the new Mac builds applies mainly to UI elements like scroll-bars and is intended, as I understand it, to provide rendering speed improvements over the Carbon UI elements used by current version of Firefox. It does not mean that page elements like drop down lists and text fields will look like those in Safari (which uses Webkit). Sorry for any confusion. + +If you're a Mac user and you'd like to make Firefox look more "Mac-like" check out [our guide to the various themes and add-ons][3] aimed at mac users. + +Here's some more Q & A drawn from yesterday's post: + +Q: Does the Cocoa widgets support include the contextual menu item for look up in Dictionary? + +A: Unless I'm missing something, the current build does not support that and I don't think the final release will either. The Cocoa widgets are UI elements, Firefox is not actually a Cocoa program. + +Q: Firefox uses too much memory. + +A: Personally I find Firefox uses less memory than Safari, but some people have reported very different experiences. A commenter on Digg pointed to [this guide][4] which has some tips for limiting Firefox's memory usage. + +Q: Why did they change the Firefox logo? + +A: They didn't. All development builds of Firefox have always used the stripped-down globe icon. AFAIK the final release of Firefox 3 will use the same logo as Firefox 2. + +[1]: http://digg.com/software/First_Look_Firefox_3_Alpha_2 "First Look: Firefox 3 Alpha 2" +[2]: http://blog.wired.com/monkeybites/2007/02/firefox_3_alpha.html "Firefox 3 Alpha 2" +[3]: http://blog.wired.com/monkeybites/2006/07/apple_up_your_f.html "Apple Up Your Firefox" +[4]: http://howto.helpero.com/howto/Reduce-Firefox-Memory-Usage_4.html "How To Reduce Firefox Memory Usage "
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/ipod-walk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/ipod-walk.jpg Binary files differnew file mode 100644 index 0000000..417250e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/ipod-walk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/ms-photo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/ms-photo.txt new file mode 100644 index 0000000..6af790b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/ms-photo.txt @@ -0,0 +1,19 @@ +Professional photographers eyeing a Vista upgrade should be aware that some users have reported that Windows Vista Explorer and the Microsoft Photo Info tool can destroy metadata and in some cases the images itself. For now pro photographers may want to [hold off on upgrading][5]. + +According to the [MS Knowledge Base][1] article: + +>When you edit the properties of a photo to add metadata to that photo in Windows Vista, the software for the digital camera may no longer recognize the metadata that is automatically added to the photo by the digital camera. + +Other photo-related problems with Vista include problems with RAW images. Microsoft built [an extendable framework][3] into Vista which allows camera manufacturers to add support for proprietary RAW file formats. So far Nikon, Sony and Olympus have released RAW software for Vista. + +Unfortunately the Nikon codecs appear to [conflict][2] with edits done through Windows Vista or the MS Photo Info tool causing files to become unreadable in other applications like Adobe Photoshop. The photos can reportedly still be opened with Nikon Capture, the software that ships with Nikon Cameras. + +For the time being there doesn't seem to be a workaround for either of these issues. + +[via [CNet][4]] + +[1]: http://support.microsoft.com/kb/927527/en-us "When you edit the properties of a photo in Windows Vista, the software for the digital camera may no longer recognize the metadata that is automatically added to the photo" +[2]: http://blogs.msdn.com/pix/archive/2007/01/30/nikon-raw-codec-issues.aspx "Nikon RAW codec issues" +[3]: http://blogs.msdn.com/pix/archive/2007/01/23/raw-support-in-windows-vista.aspx "RAW Support in Windows Vista" +[4]: http://news.com.com/2061-10805_3-6157801.html?part=rss&tag=2547-1_3-0-5&subj=news "Metadata mangling in Windows Vista" +[5]: http://www.wired.com/news/culture/reviews/0,72295-0.html "Why You Don't Need Vista Now"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/nightly.txt new file mode 100644 index 0000000..40341ea --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/nightly.txt @@ -0,0 +1,25 @@ +The Nightly Build: + +* CrunchGear [reports][6] that not only is there a Zune phone in the works, but that it could well arrive on the market as early as May, a full month before the iPhone. + + +* Reuters [has a cool article][1] on the growth of the ancient game Go on the internet. For those that don't know, Go (that's the Japanese name) is somewhat like Othello, but infinitely more complex and interesting. And unlike Chess, no computer program has been developed to compete with experienced human Go players -- the infinite combinations and complexity have never been successfully modeled by programmers. + +[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyID=2007-02-09T211235Z_01_SEO265080_RTRUKOC_0_US-COLUMN-PLUGGEDIN.xml&pageNumber=0&imageid=&cap=&sz=13&WTModLoc=NewsArt-C1-ArticlePage3 "Ancient Asian board game goes online" + +* [The Effect of File Sharing on Record Sales: An Empirical Analysis][2] is a forthcoming article by Felix Oberholzer-Gee and Koleman Stumpf of the [Journal of Political Economy][3]. Unlike RIAA sponsored studies, this one finds that file sharing has "an effect on sales that is statistically indistinguishable from zero." [via [Techdirt][2]] + + +[6]: http://crunchgear.com/2007/02/09/zne-phone-confirmed-launch-scenario-4g-wimax-action-rumors-off-the-wtf-o-meter/ "Zune Phone Confirmed! Launch Scenario! 4G WiMax Action! Rumors Off the WTF-o-Meter" + +[2]: http://www.journals.uchicago.edu/JPE/papers.html "The Effect of File Sharing on Record Sales: An Empirical Analysis" +[3]: http://www.journals.uchicago.edu/JPE/home.html "Journal of Political Economy" +[4]: http://techdirt.com/articles/20070209/082603.shtml "Latest Research Shows No Noticeable Impact On CD Sales From Downloads" + +* Mac rumor site ThinkSecret [claims][5] that the next version of OS X will arrive in late March. The dart I just through at the wall calendar argues for April 6th though so who knows? + +[5]: http://www.thinksecret.com/news/0702leopardilife.html "Mac OS X 10.5, iLife '07, iWork '07 as early as March" + +[photo credit][7] + +[7]: http://www.flickr.com/photos/re-ality/354739410/ "Flickr: Key unlocking on the Zunephone"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/nikon-vista.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/nikon-vista.jpg Binary files differnew file mode 100644 index 0000000..a02071d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/nikon-vista.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/reboot.txt new file mode 100644 index 0000000..020055a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/reboot.txt @@ -0,0 +1,21 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Following Steve Jobs' call on record companies to drop DRM, EMI is [reportedly considering][1] the move, but Warner Bros [think's it's crazy talk][2]. + +[1]: http://www.suntimes.com/technology/250463,emi020907.article "Report: EMI in talks with online retailers to possibly sell MP3s without copy protection" +[2]: http://news.bbc.co.uk/2/hi/business/6344929.stm "Warner insists on copy protection" + +* Powerset, a search engine startup, [has licensed][3] "a broad portfolio of patents and technology" Xerox's Palo Alta Research Center. Powerset is working on a "natural language" search engine which the company hopes will one day rival Google. + +[3]: http://www.nytimes.com/2007/02/09/technology/09license.html?ex=1328677200&en=86eecf5c76d7eef3&ei=5090&partner=rssuserland&emc=rss "In a Search Refinement, a Chance to Rival Google" + + +* Ars Technica has a nice article examining Steve Jobs' claim that licensing Fairplay DRM would [make it less secure][4]. Ars concludes: "none of the hacks to date on FairPlay or Microsoft's DRM stem from secrets being leaked. The same is true for the majority of DRM hacks out there, including the most recent hacks on AACS." + +[4]: http://arstechnica.com/news.ars/post/20070208-8799.html "Is interoperable DRM inherently less secure? The case of FairPlay versus Windows Media" + +* The Electronic Frontier Foundation wants to know if you were [wronged][5] by Viacom's recent DMCA take-down attack on Google. "Among the 100,000 videos targeted for takedowns was a home movie shot in a BBQ joint, a film trailer by a documentarian, and a music video (previously here) about karaoke in Singapore. None of these contained anything owned by Viacom. For its part, Viacom has admitted to 'no more than' 60 mistakes, so far. Yet each mistake impacts free speech, both of the author of the video and of the viewing public. + +Has your video been removed from YouTube based on a bogus Viacom takedown? If so, contact information@eff.org --we may be able to help you directly or help find another lawyer who can. In this situation, as in so many others, EFF will work to make sure that copyright claims don't squelch free speech. + +[5]: http://www.eff.org/deeplinks/archives/005109.php "EFF: Unfairly Caught in Viacom's Dragnet? Let Us Know!"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-1.jpg Binary files differnew file mode 100644 index 0000000..3807e7c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-2.jpg Binary files differnew file mode 100644 index 0000000..a54fbca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-3.jpg Binary files differnew file mode 100644 index 0000000..ef9ebe3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-4.jpg Binary files differnew file mode 100644 index 0000000..d8dafdb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-5.jpg Binary files differnew file mode 100644 index 0000000..caea0b6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-logo.jpg Binary files differnew file mode 100644 index 0000000..b56f615 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/taste-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/tastespotting.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/tastespotting.txt new file mode 100644 index 0000000..d5dcf9f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/tastespotting.txt @@ -0,0 +1,12 @@ +A couple of weeks ago I ran across [Tastespotting][1] and I've been hungry ever since. Tastespotting is essentially just food porn, amazing images of delicious food, kitchen ware, and other miscellanious food related posts. + +The site functions like a moderated version of Digg, submit your post and after it's reviewed your image/link will show up on the front page. Once you've had a number of posts approved you get to skip the moderation part and go straight to the front page. + +Note that if you're using Firefox with AdBlock the Tastespotting images might get blocked; just add the espotting.com domain to your whitelist and everything should be fine. + +Here's a few random images pulled from the front page to whet your appetite. Enjoy. + + +Random Trivia: The radish tattoo belongs to my former boss as the exquisite [Five and Ten][2] in Athens, GA. +[1]: http://www.tastespotting.com/ "Tastespotting" +[2]: http://fiveandten.com/ "Five and Ten, Athens GA"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/vmware.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/vmware.jpg Binary files differnew file mode 100644 index 0000000..4d20ff3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/vmware.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/vmware.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/vmware.txt new file mode 100644 index 0000000..44a0e32 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/vmware.txt @@ -0,0 +1,18 @@ +Someone has [posted a video][1] on YouTube showing VMWare's coming 3D graphics acceleration support in action (video after the jump). VMWare's Mac virtualization software, dubbed [Fusion][4], was announced last last year and is currently in a beta testing phase. The video is amateurish, but provides a glimpse of things to come and VMWare [has acknowledged][2] that it's not a fake. + +VMWare and Parallels, the two major players in the Mac virtualization market, have both promised support for Windows 3D graphics acceleration in the next version of their respective products, but this the first time anyone has seen it. + +According to VMWare's blog post on the subject, the video in question is of an internal beta so the final release may still be a ways off. + +Regardless of when this build makes its way to the market, this is certainly good news for Mac gaming fans. Unfortunately most of the games in the video are somewhat dated (Duke Nuke 'Em?!), it'd be nice to see how some newer, more graphics intensive games fare. + +But for the time being here's the drool-worthy video. + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/xF_CoXsXtk4"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/xF_CoXsXtk4" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[via [Ars Technica][3]] + +[1]: http://www.youtube.com/watch?v=xF_CoXsXtk4 "YouTube: 3D Graphics in VMware Fusion for Mac OS X" +[2]: http://compfusion.blogspot.com/2007/02/double-dragon.html "Double Dragon" +[3]: http://arstechnica.com/journals/apple.ars/2007/2/8/6960 "VMWare's 3D graphics acceleration just around the corner?" +[4]: http://www.vmware.com/products/beta/fusion/ "VMware Virtualization for Mac Beta Program"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/zunephone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/zunephone.jpg Binary files differnew file mode 100644 index 0000000..928b3f3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Fri/zunephone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/amarok.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/amarok.txt new file mode 100644 index 0000000..21d8223 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/amarok.txt @@ -0,0 +1,15 @@ +<img alt="Amaroklogo" title="Amaroklogo" src="http://blog.wired.com/photos/uncategorized/amaroklogo.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Amarok, the awesome music jukebox software for linux, has [announced a new version][1], which brings the app to version 1.4.5. New features include: + +* An integrated Shoutcast stream directory. +* Support for custom labels. Organize your music how you want. +* Magnatune redownload manager +* Improved sound quality when using the equalizer with xine. + +That's excellent news for Linux users, but the Amarok team has good news for other OSes as well. Apparently work is already underway on Amarok 2.0. + +Amarok 2.0 will run natively on Linux, OS X and Windows and could be released as early as this summer. As long as that doesn't mean Amarok 2.0 will be running in Java, that's the most exciting software news I've heard since BitTorrent [announced plans][2] to port µTorrent to Linux and Windows. + + + +[1]: http://amarok.kde.org/content/view/10/66/ "Amarok 1.4.5 now available" +[2]: http://blog.wired.com/monkeybites/2006/12/bittorrent_inc_.html "BitTorrent Inc. Acquires µTorrent"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/elsewhere-22.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/elsewhere-22.jpg Binary files differnew file mode 100644 index 0000000..9821f2d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/elsewhere-22.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/elsewhere.txt new file mode 100644 index 0000000..65952aa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/elsewhere.txt @@ -0,0 +1,21 @@ +Elsewhere on Wired: + +* Cult of Mac picks up on something we skipped and concludes it's unlikely: [iTunes for Linux][1]. The strange thing is, Amarok is, IMHO, so much better than iTunes, why would you want iTunes on Linux? + +[1]: http://blog.wired.com/cultofmac/2007/02/itunes_for_linu.html "ITunes for Linux - Don't Count On It" + +* Autopia brings word of a UK-based ad campaign [designed to educate school children][2] about global warming. "BBC News notes that the FOE site also 'includes a game involving a polar bear which destroys a 4x4 vehicle by hurling ice cubes at it.'" Sweet. Does that work? + +[2]: http://blog.wired.com/cars/2007/02/if_smart_ads_we.html "Global Warming: Silence = Death" + +* Listening Post [has the scoop][3] on the first band to "tour" Second Life. A London-based band Redzone will play a four-show tour inside the virtual world starting this Friday. Saves a bundle on airfare, that's for sure. + +[3]: http://blog.wired.com/music/2007/02/band_to_tour_se.html "Band to Tour Second Life" + +* Table of Malcontents continues to [dig up some of the awesome artwork][4] lurking around the webernets. This time it's Ukranian artist Oleg Denisenko who specializes in weird chimera, specifically, "Quixotic-looking sphinxes dress their chicken-legged, dragon-winged bodies in suits of armor constructed with anachronistic mechanical sophistication." (see small pic above) + +[4]: http://blog.wired.com/tableofmalcontents/2007/02/the_strange_sph.html "The Strange Sphinxes of Oleg Denisenko" + +* And our best headline of the day goes to 27B Stroke 6's Luke O'Brien for this gem: "[Conservative Think Tank Not Thinking][5]" + +[5]: http://blog.wired.com/27bstroke6/2007/02/conservative_th.html "Conservative Think Tank Not Thinking"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/full-speed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/full-speed.jpg Binary files differnew file mode 100644 index 0000000..5d938b7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/full-speed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/linuxkernal.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/linuxkernal.txt new file mode 100644 index 0000000..cf1e334 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/linuxkernal.txt @@ -0,0 +1,35 @@ +On hearing my description of the Super Bowl, a slightly nerdy British friend of mine said "oh, so it's like the World Cup but more homoerotic and xenophobic?" I didn't respond to the baiting, but certainly the Super Bowl is not to everyone's taste, fortunately Linux was there to offer an alternative. + +Any nerd worth their salt wasn't vegetating in front of the television yesterday, they were busy downloading and compiling the newly released Linux kernal. As part of what Linus Torvalds calls Super Kernal Sunday, version 2.6.20 of the Linux kernal was made available yesterday. The new kernal features numerous bug fixes, unpdates and new features including the introduction of KVM (Kernel-based Virtual Machine) virtualization to the mainline kernel. + +Proving once again that FLOSS software has more fun, the press lease from Torvalds is chock full of nerd humor. Here's what Linus [wrote][1] in an email to the Linux Kernel mailing list: + +>Before downloading the actual new kernel, most avid kernel hackers have +been involved in a 2-hour pre-kernel-compilation count-down, with some +even spending the preceding week doing typing exercises and reciting PI +to a thousand decimal places. + +The half-time entertainment is provided by randomly inserted trivial +syntax errors that nerds are expected to fix at home before completing +the compile, but most people actually seem to mostly enjoy watching the +compile warnings, sponsored by Anheuser-Busch, scroll past. + +As ICD head analyst Walter Dickweed put it: "Releasing a new kernel on +Superbowl Sunday means that the important 'pasty white nerd' +constituency finally has something to do while the rest of the country +sits comatose in front of their 65" plasma screens". + +Walter was immediately attacked for his racist and insensitive remarks +by Geeks without Borders representative Marilyn vos Savant, who pointed +out that not all of their members are either pasty nor white. "Some of +them even shower!" she added, claiming that the constant stereotyping +hurts nerds' standing in society. + +Geeks outside the US were just confused about the whole issue, and were +heard wondering what the big hoopla was all about. Some of the more +culturally aware of them were heard snickering about balls that weren't +even round. + +The above link also includes a list of updates, changes and bug fixes in the new kernal. + +[1]: http://lkml.org/lkml/2007/2/4/119 "Super Kernel Sunday"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/nightly-b-23.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/nightly-b-23.jpg Binary files differnew file mode 100644 index 0000000..bbbf5a3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/nightly-b-23.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/nightly.yxy b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/nightly.yxy new file mode 100644 index 0000000..fffa9ac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/nightly.yxy @@ -0,0 +1,28 @@ +The Nightly Build: + +* Ebiquity, an internet research group comprised of students and faculty from the University of Maryland, [released some interesting numbers on spam][4] in the world of blogs (no I will not use that term). Highlights from the study: over 50 percent of blog pings are spam, most spam blogs are based in Mountain View CA and MySpace is now the largest contributer of to the world of blogs. + +[4]: http://ebiquity.umbc.edu/blogger/2007/02/01/pings-spings-splogs-and-the-splogosphere-2007-updates/ "Pings, Spings, Splogs and the Splogosphere: 2007 Updates" + +* For those Mac users who are lovin' Vista, Parallels has [released a new build][7] of its popular virtualization software. Parallels Release Candidate 2 adds full USB support, improvements to Coherence Mode and more. + +[7]: http://www.parallels.com/products/desktop/beta_testing/ "Parallels Desktop for Mac Release Candidate 2" + +* Google has added some more tools to its [Webmaster Tools][5] to include a way to view a much larger sample of pages with inbound links your site. From the [Google Webmaster Central blog][6]: "unlike the link: operator, this data is much more comprehensive and can be classified, filtered, and downloaded. All you need to do is verify site ownership to see this information." + +[5]: https://www.google.com/webmasters/tools/ "Webmaster Tools" +[6]: http://googlewebmastercentral.blogspot.com/2007/02/discover-your-links.html "Google Webmaster Central Blog" + +* TSIA: [Gorbachev Asks Bill Gates To Save Russian Teacher From Siberia After Students Use Unauthorized Copies Of Windows][8] + +[8]: http://techdirt.com/articles/20070205/122618.shtml "Gorbachev Asks Bill Gates To Save Russian Teacher From Siberia After Students Use Unauthorized Copies Of Windows" + +* And finally your daily web zen: [photoshopped animals][2] (most of which were taken from the ever-entertaining [worth1000][3].) [Thanks NoEnd] + +[2]: http://www.i-am-bored.com/bored_link.cfm?link_id=21785 "Photoshopped animals" +[3]: http://www.worth1000.com/ "worth1000.com" + +[photo credit][1] + +[1]: http://www.flickr.com/photos/twoblueday/376922196/ "Sunset Lake Dora" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/reboot.txt new file mode 100644 index 0000000..949b63a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/reboot.txt @@ -0,0 +1,21 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Rumors of an Apple announcement in a super Bowl ad proved to be unfounded, but Reuters reports that Apple has [settled their long-running trademark dispute with the Beatles'][1] record company of nearly the same name. Which means you can probably expect to see the Beatles' music on the iTunes Store sooner rather than later. + +[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-05T144058Z_01_WEN3541_RTRUKOC_0_US-APPLE-BEATLES.xml&src=rss "Apple and Beatles settle trademark squabble" + +* Speaking of Super Bowl ads, YouTube has got them [all in one spot][2]. + +[2]: http://www.youtube.com/browse?s=sb&t=&c=0&l=&p=1 "Superbowl Ads" + +* Microsoft has [turned on a feature][3] in Internet Explorer that allows Web sites with a new type of security certificate to display a green-filled address bar in IE 7. The certificate is designed to help prevent phishing scams. + +[3]: http://news.com.com/2100-1029_3-6155826.html?part=rss&tag=2547-1_3-0-20&subj=news "IE 7 gives secure Web sites the green light" + +* Is a Google Powerpoint on the way? Techcrunch [reports][4] that some posted what appears to be a header file from an existing Google application by the name of "Presently." The files has since been edited to remove that reference, but Techcrunch posted a screencap of the original if you're interested. + +[4]: http://www.techcrunch.com/2007/02/04/google-powerpoint-clone-coming/ "Google PowerPoint Clone Coming" + +* This is the headline every traveler has been waiting for: [Wireless Internet for All, Without the Towers][5]. The New York Times reports that Meraki, a start up founded by two MIT grad students is hoping to solve the "last ten yards" problem of universal WiFi access by using in-home boxes to create a "mesh network." The network then "dynamically reroutes signals as boxes are added or unplugged, and as environmental conditions that affect network performance fluctuate moment to moment." + +[5]: http://www.nytimes.com/2007/02/04/business/yourmoney/04digi.html?ex=1328245200&en=28e094940f7284cb&ei=5088&partner=rssnyt&emc=rss "Wireless Internet for All, Without the Towers"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/superbowlbathroom.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/superbowlbathroom.jpg Binary files differnew file mode 100644 index 0000000..9ce7f77 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/superbowlbathroom.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/tut.txt new file mode 100644 index 0000000..d585028 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/tut.txt @@ -0,0 +1,28 @@ +This week's theme for the tutorial o' the day is how to be a better blogger. But by "better" we don't necessarily mean wealthier -- you might want to [hang on to that day job][0] -- nor do we mean more popular. By better we mean more discoverable. + +There are a number of ways that you can improve your blog's relevancy in search engine results that have nothing to do with getting high profile inbound links. Perhaps the most important thing you can do is write good headlines. + +For a case study in how not to write headlines, I offer myself. In case you haven't noticed from this site I suck at coming up with catchy headlines and it only gets worse when I write for my personal site. To address this decided lack of creativity I started culling headlines from song titles and lyrics (duly credited of course). + +The problem with this is that when my articles turn up in a Google search (which isn't often) the headline offers the searcher absolutely no clue how the content of the page might relate to their search. This is dumb, a colossally bad idea. + +A much better way is to write, if not for Google, at least bearing in mind how Google is going to index your page. Obviously I am not the person to look to for advice on this matter, rather I suggest you turn to John Gruber of Daring Fireball, who wrote an article some time ago called *[Writing for Google][1]*. Not coincidentally it is the number one result for the Google search "write for Google" -- I rest my case. + +BoingBoing also had [a relevant post][2] over the weekend in which Cory Doctorow attributes at least some of BoingBoing's high ranking in search results to their headline writing skills. "I actually think that this is part of the secret of our success," he writes, "we write headlines like wire-service stringers, headlines that are meant to be easy to grok from a cluster of RSS links, search-results, and so on." + +Then there is of course the older, but [still relevant advice][3] of Jakob Nielson. + +Of course no matter how good your headlines are if you content is poorly written you're not going to get much traction with readers, but for that one you're on your own. It's also worth noting, as the BoingBoing post linked above does, that in some ways the web has [ruined the pithy headline][4] that print rags live by. + +And that my friends is how I justify my own failure to take my advice. Bring back the pithy headline! Damn the search engines and full speed ahead! Of course you might actually want people to read your blog, whereas the idea that anyone reads my blog quite frankly frightens me. + +Later this week we'll take a look at how URLs can be improved and some better linking practices for your blog. + +[photo credit][5] + +[0]: http://www.csmonitor.com/2007/0205/p01s03-ussc.html "Bloggers can make money, but most keep day jobs" +[1]: http://daringfireball.net/2004/05/writing_for_google "Writing for Google" +[2]: http://www.boingboing.net/2007/02/03/searchengines_kill_t.html "Search-engines kill the art of clever headlines" +[3]: http://www.useit.com/alertbox/980906.html "How to Write Headlines, Page Titles, and Subject Lines" +[4]: http://news.com.com/2100-1038_3-6155739.html "Newspapers search for Web headline magic" +[5]: http://www.flickr.com/photos/evdg/150114657/ "Full Speed Ahead!"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/vistaEULA.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/vistaEULA.txt new file mode 100644 index 0000000..0189bcf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Mon/vistaEULA.txt @@ -0,0 +1,43 @@ +Every since I found out that Vista Home and Vista Home Premium editions explicitly prevent you from running the software in a virtual machine I've been pouring over Microsoft's EULAs trying to make sense of them. Kudos to Microsoft for providing a nice easy way to [browse through all the EULAs for all their software][1]. You can download all the licensing agreements as pdf files from that link. + +There have been a number of reports on the internet about all sorts of terrible things you agree to when accepting the Vista EULA, but it isn't really that bad. + +There are however a couple of things that you might want to know. It's true that Vista Home and Home Premium can not be installed in virtual machines. The specific text reads: + +>USE WITH VIRTUALIZATION TECHNOLOGIES. You may not use the software installed on the licensed device within a virtual (or otherwise emulated) hardware system. + +Microsoft claims that the majority of users wanting to run Vista under virtualization software are businesses and enthusiast who would be better served by the Business and Ultimate versions respectively. Which, while it may have some merit, is nevertheless market-speak for "we arbitrarily decided to punish users looking to run our software on a part time basis." + +But the crippling doesn't stop there, even those who go with Vista Ultimate on their virtual machine still can't play Microsoft DRM content: + +>You may use the software installed on the licensed device within a virtual (or otherwise emulated) hardware system on the licensed device. If you do so, you may not play or access content or use applications protected by any Microsoft digital, information or enterprise rights management technology or other Microsoft rights management services or use BitLocker + +Another rumor I'd heard about the Vista EULA is that it allows Windows Defender, the built in virus and spyware protection that ships with Vista, to arbitrarily remove programs. How much merit this has depends on how paranoid you are, here's the relevant text: + +>If turned on, Windows Defender will search your computer for "spyware," "adware" and other potentially unwanted software. If it finds potentially unwanted software, the software will ask you if you want to ignore, disable (quarantine) or remove it. Any potentially unwanted software rated "high" or "severe," will automatically be removed after scanning unless you change the default setting. Removing or disabling potentially unwanted software may result in + +* other software on your computer ceasing to work, or +* your breaching a license to use other software on your computer. + +By using this software, it is possible that you will also remove or disable software that is not potentially unwanted software. + +In other words, Windows Defender could remove programs you don't want removed (certain torrent software comes to mind) if the mothership decided to tell it to do so with an update. However you can always disable it and use another anti-virus/adware remover. + +The last line in that quote is kind of interesting since it basically says that Windows Defender may not work. However in this day and age it probably behooves Microsoft to error on the side of caution when it comes to security, still it's not very comforting. + +The last part of the licensing that bears mention is sure to send shivers down the spine of any FLOSS advocate: + +>The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. For more information, see http://www.microsoft.com/licensing/userights. You may not + +* work around any technical limitations in the software; +* reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; +* use components of the software to run applications not running on the software; + +I still have trouble with the idea that commercial software is not sold but licensed, but that's hardly unique to Windows, most other large commercial software packages ships with similar wording. What varies from manufacturer to manufacturer is how the license is applied. In Vista's case the software is licensed to a specific machine, not a user. You can transfer your software and license to a new machine exactly once if you bought Vista retail. If your copy of Vista came with the purchase of new computer that copy of Vista may only be legally used on that machine. + +On the bright side, Microsoft has done a good job of writing the Vista EULA in a surprisingly readable, low-jargon manner. There's a few places where the wording gets tricky, but it's nothing compared to the Yahoo user agreement I [struggled through][2] last week. + +I should also point out that regardless of the Vista EULA, local laws governing the country of your residence always trump any EULA so bear that in mind. + +[1]: http://www.microsoft.com/about/legal/useterms/default.aspx "Find License Terms for Software Licensed from Microsoft" +[2]: http://blog.wired.com/monkeybites/2007/01/yahoo_wii_porta.html "Yahoo Wii Portal Gets Pwned"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/about-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/about-screen.jpg Binary files differnew file mode 100644 index 0000000..4522651 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/about-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/cclogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/cclogo.jpg Binary files differnew file mode 100644 index 0000000..2157a6f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/cclogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/cocoa-widgets.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/cocoa-widgets.jpg Binary files differnew file mode 100644 index 0000000..9fdccb7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/cocoa-widgets.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/copyright.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/copyright.txt new file mode 100644 index 0000000..a61a88b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/copyright.txt @@ -0,0 +1,37 @@ +Rarely a day goes by on the webernets when someone isn't either decrying DRM, announcing a new form of DRM or demanding more DRM. It's probably obvious by now that I don't like DRM and I refuse to use anything that has DRM. + +But DRM is really just a method of trying to enforce copyright. Earlier this week Steve Jobs [wrote an essay][5] slamming DRM and professing a wish to get rid of it, which got me thinking that really there is no way to get rid of DRM without making some radical changes to U.S. copyright law. + +[Jonathan Lethem][4], author the novel *Motherless Brooklyn*, had one of the best essays I've ever read on the issue of copyright in the last issue of Harpers. The article, entitled [*The Ecstasy of Influence*][6], is now online and, while I admit it's quite long, I encourage you to read it through to the end, because at the end you'll discover something -- most of what Lethem writes is borrowed, copied and re-appropriated from other texts. + +Even the authorial "I" of the article is often not the "I" of Lethem himself, but that of other authors ranging from Lawrence Lessig to David Foster Wallace. Not only does Lethem make an incredibly cohesive, well-reasoned argument for a more open copyright system, but he does so using the very methods and results he's advocating. + +Here's a clip: + +>If nostalgic cartoonists had never borrowed from Fritz the Cat, there would be no Ren & Stimpy Show; without the Rankin/Bass and Charlie Brown Christmas specials, there would be no South Park; and without The Flintstones—more or less The Honeymooners in cartoon loincloths—The Simpsons would cease to exist. If those don't strike you as essential losses, then consider the remarkable series of "plagiarisms" that links Ovid's "Pyramus and Thisbe" with Shakespeare's Romeo and Juliet and Leonard Bernstein's West Side Story, or Shakespeare's description of Cleopatra, copied nearly verbatim from Plutarch's life of Mark Antony and also later nicked by T. S. Eliot for The Waste Land. If these are examples of plagiarism, then we want more plagiarism. + +I'm something of a copyright nut, the first thing I did while playing with [Yahoo's new Pipes tool][7] was try to create a mashup of newsfeeds that just track the word copyright. Unfortunately the site went down before I could get it set up, but when I do I'll add a link to the bottom of this article if anyone is interested. My personal feeling on copyright is nicely summed up by Woodie Guthrie: + +>This song is Copyrighted in U.S., under Seal of Copyright #154085, for a period of 28 years, and anybody caught singin it without our permission, will be mighty good friends of ourn, cause we don't give a dern. Publish it. Write it. Sing it. Swing to it. Yodel it. We wrote it, that's all we wanted to do. + +Lethem, along with [Mike Doughty][1], [Mark Hosler][2], and [Siva Vaidhyanathan][3] were also on PRI's Open Source Radio last night to talk about issues of copyright. The broadcast repeats much of the article but is still a marvelous listen and it's available online (mp3). + +>Why do we need a term like open source? Why do we need a term to apply to cultural production and distribution? Why do we need a term like open source to apply to software? The reason is that in just the last twenty or thirty years we've seen the rise of a completely different model of cultural distribution, what I call the proprietary model. + +>... + +>What we think of as open source is basically culture, it's how human beings have organized themselves, communicated with each other, joined each other, forged identities and most importantly grooved and danced for centuries. This is basically how people have always dealt with each other. It's just in recent years that we've imposed these interesting cages, legal cages, psychological cages, ethical cages around this level of sharing. + +The suggestion here is not that copyright should be abolished, but that it was working just fine before Disney and Sonny Bono got hold of it. Of course the ultimate irony being that almost nothing Disney has ever done is remotely original. + +Think about this way, if Bob Dylan were just starting out today, he'd be sued out of existence. + + + +[1]: http://www.mikedoughty.com/ "Mike Doughty" +[2]: http://www.negativland.com/ "Mark Hosler founder of Negativland" +[3]: http://www.nyu.edu/classes/siva/ "Siva Vaidhyanathan Associate Professor of Culture and Communication, New York University" +[4]: http://en.wikipedia.org/wiki/Jonathan_Lethem "Wikipedia: Jonathan Lethem" +[5]: http://www.apple.com/hotnews/thoughtsonmusic/ "Thoughts on Music" +[6]: http://www.harpers.org/TheEcstasyOfInfluence.html "The Ecstasy of Influence" +[7]: http://blog.wired.com/monkeybites/2007/02/yahoo_launches_.html "Yahoo Launches Pipes"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/granparadiso.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/granparadiso.jpg Binary files differnew file mode 100644 index 0000000..a4f5528 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/granparadiso.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/granparadiso.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/granparadiso.txt new file mode 100644 index 0000000..6513cb9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/granparadiso.txt @@ -0,0 +1,21 @@ +Mozilla announced this morning the [release of Firefox 3 alpha 2][1]. The new release follows Mozilla's semi-regular 6 week test release pattern and in no way represents a finished product, but I decided to download the new alpha and see how things were coming along. + +There are still major issues. I haven't had any stability problems, but there are bad memory leaks. Gran Paradiso, as Firefox 3 is code named, launches using about 33mb of RAM; after ten minutes of browsing that number jumped to 100mb and after a couple of hours it was close to 400mb -- and that's with no extensions installed. If that doesn't discourage you then nothing will. + +However, the main reason for the memory leaks, according to the release notes, is the new and improved garbage collection system which promises a much improved memory footprint once the bugs are ironed out. The release notes say: + +>In order to better handle memory issues, a new garbage collection system has been implemented. However, as the process of integrating Gecko into this system is still ongoing, there are some known leaks that result in large memory usage when the browser is used for a long period of time. A restart should resolve the problem, which will be fixed in Alpha 3. + +While this alpha may have some memory leaks, I am happy to say that it uses much less CPU power than Firefox 2, especially when it's idle. One of my main gripes with Firefox 2 is that even when it's in the background doing nothing it still manages to consume 4-5 percent of my processing power, which seems unnecessary. However, when Gran Paradiso is sitting in the background unused its CPU usage drops to zero, which beats even Safari. + +Gran Paradiso is the first release to use the new Gecko 1.9 rendering engine which means that Windows 95, Windows 98, and Windows ME are no longer supported and Mac users will need OS X 10.3.9 or better. + +This new release is the first from Mozilla to be totally [Acid2 compliant][2]. Gran Paradiso supports the new Cairo graphics layer which alo still has a few bugs. + +Mac users are no doubt looking forward to Firefox 3's use of native Cocoa widgets which should make the browser feel more "Mac-like." Perhaps I'm misunderstanding what Cocoa widgets are, but in my testing UI elements like drop down lists and text fields still look the same as they always have in Firefox. + +Overall Firefox 3 looks very promising and feels much faster than Firefox 2 (particularly on graphic heavy sites like Flickr). Alpha 2 marks yet another milestone on the way to the finished product, but it's still obviously only for testing. If you'd like to help out the Firefox team by testing out the alpha 2 build they'd love to [hear your feedback][3]. + +[1]: http://www.mozilla.org/projects/firefox/3.0a2/releasenotes/ "Firefox 3 alpha 2 release notes" +[2]: http://en.wikipedia.org/wiki/Acid2 "Wikipedia: Acid2 test" +[3]: http://groups.google.com/group/mozilla.feedback/topics "mozilla.feedback" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/nightly.txt new file mode 100644 index 0000000..09324b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/nightly.txt @@ -0,0 +1,14 @@ +<img alt="Nightlybuild" title="Nightlybuild" src="http://blog.wired.com/photos/uncategorized/nightlybuild.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build + +* Did anyone else hear a loud popping noise earlier today? I think it was the sound of a bunch of congressional heads pulling out of, er, the ground and deciding that [e-voting machines ought to have a paper trail][1]. Because frankly that movie with Robin Williams wasn't really that good. + +[1]: http://www.internetnews.com/bus-news/article.php/3658576 "E-Voting Machines Get The Fish-Eye" + + +* In case you couldn't figure it out yourself, [Reuters has the inside scoop][2]: Chad Hurley and Steve Chen, the co-founders of YouTube are very very very rich. + +[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-08T015758Z_01_N07247460_RTRUKOC_0_US-YOUTUBE-PAYDAY.xml&src=rss "YouTube founders split $650 mln in Google payday" + +Today's web zen: [24: Aqua Teen Hunger Force][3] + +[3]: http://www.youtube.com/watch?v=ZWUaQVZHzyI "24: Aqua Teen Hunger Force"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/paradiso-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/paradiso-logo.jpg Binary files differnew file mode 100644 index 0000000..19c29bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/paradiso-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/pipes-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/pipes-1.jpg Binary files differnew file mode 100644 index 0000000..0437746 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/pipes-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/pipes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/pipes.jpg Binary files differnew file mode 100644 index 0000000..055148c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/pipes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/pipes.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/pipes.txt new file mode 100644 index 0000000..c80513f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/pipes.txt @@ -0,0 +1,20 @@ +Earlier today Yahoo [launched Pipes][1], a new service designed to make the process of gathering and mashing up RSS feeds a little bit easier. Although somewhat nerdy and technical, Yahoo Pipes makes it reasonably easy to take multiple feeds and combine them to create unique ways to aggregate data. + +The site has been up and down intermittently this morning probably do to the massive amount of traffic it's receiving at the moment. Once Yahoo solves the technical issues I expect Pipes to be popular with RSS aficionados, though it may be a bit complicated for RSS beginners. + +To create a pipe, you can select from a variety of services which are drag-n-drop, widget-like interface elements that take a URL and some additional parameters. Once you've entered your URL for each service you'd like to scrap you can then generate a feed. For instance, I took a feed for creative commons licensed photos, Digg posts to the technology section and technorati posts with the tag "web" and generated a feed -- and then the whole site went down. + +The interface for creating pipes makes sense if you know what raw RSS xml looks like, for instance there's fields to specify language with the standard two digit language extension, i.e. lang:en. + +If the whole thing puts you off, you can always just browse through existing pipes and select one that sounds interesting. You can also 'clone' an existing pipe, and tweak it to suit your needs. Pipes can really take any feed as an input, though if it's an obscure feed you may have to track down the url yourself. + +One interesting thing I noticed before the site went down completely was the fact that Yahoo include Google Base as one of the pre-built sources. That's the kind of open web we're talking about, why limit what a user can do just because the source comes from a competitor? + +There's been a plethora of coverage this morning with a number of people positively gushing over Pipes, like Tim O'Reilly who calls it "[a milestone in the history of the internet][2]." It could end up being that big, but Yahoo has a long way to go before the average internet user is going to find Pipes useful. + +And by the way the name is not a reference to Ted Stevens' infamous quote about "tubes", it was taken from the unix tool of the same name -- super nerdy goodness. + +When Pipes gets back up I'll update this post with some screenshots. + +[2]: http://radar.oreilly.com/archives/2007/02/pipes_and_filte.html "Pipes and Filters for the Internet" +[1]: http://pipes.yahoo.com/ "Yahoo Pipes"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/reboot.txt new file mode 100644 index 0000000..5e74e6d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/reboot.txt @@ -0,0 +1,19 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Yahoo has [announced a new service, dubbed pipes][5], that lets you mashup web services to create custom RSS feeds. Pipes features a drag and drop editor that lets you grab data sources, combine the and generates RSS feeds for your mashup. Examples include an NYTimes-Flickr mashup that matches NYTimes headlines to relevant images. + +[5]: http://pipes.yahoo.com/ "Yahoo Pipes" + +* Mozilla has [released Firefox 3 alpha 2][3]. The build is intended for developers only, with the final product slated to ship sometime later this year. + +[3]: http://www.mozilla.org/projects/firefox/3.0a2/releasenotes/ "Firefox 3 alpha 2" + +* Sun has [announced an ODF plugin][1] for Microsoft Word 2003. Organizations looking to switch from proprietary document formats to open standards can download the plugin beginning in April. A similar plugin from Microsoft is already available. There's some [screenshots][2] on the Sun blogs. + +[1]: http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=104&STORY=/www/story/02-07-2007/0004522369&EDATE= "Sun Microsystems Announces OpenDocument Format (ODF) Plug-in Application for Microsoft Office" +[2]: http://blogs.sun.com/dancer/entry/what_sun_s_odf_plug "Sun ODF plugin screenshots" + +* Office apps will be [bundled with Windows Mobile 6][4]. Microsoft will be release Windows Mobile 6 next week and plans to pre-load it with mobile versions of Outlook, Word, Excel and PowerPoint. + +[4]: http://news.yahoo.com/s/infoworld/20070207/tc_infoworld/85851 "Microsoft to put Office in Win Mobile 6" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/wal.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/wal.jpg Binary files differnew file mode 100644 index 0000000..321f549 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/wal.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/walmart-code.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/walmart-code.jpg Binary files differnew file mode 100644 index 0000000..f55686f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/walmart-code.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/walmart-message.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/walmart-message.jpg Binary files differnew file mode 100644 index 0000000..ddc863e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/walmart-message.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/walmart.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/walmart.txt new file mode 100644 index 0000000..ae38f60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Thu/walmart.txt @@ -0,0 +1,10 @@ +Walmart's new movie download service is trying to [turn back the clock to 1996][1]. The new service not only is Windows exclusive (get your DRM for free!) but the site requires Internet Explorer. We culled together a list of [the worst offenders of the IE-only disease][2] a while back and we've added Walmart to the list. + +But Walmart's new download service isn't just limited, crippled, DRM-laden, expensive and doomed, it has something I haven't seen in ages -- the dreaded spacer.gif. And I'm not talking about the site layout itself, which I can't get to because I don't have IE, I'm talking about the error page. + +Yes just to show me a page telling me I can't use the browser of my choice, the intrepid programmers in the Walmart code sweatshop had to resort to the spacer gif. + +I predict Walmart's movie download service will fold by the end of summer. Good riddance. + +[1]: http://mediadownloads.walmart.com/mmce/jsp/ieonly.jsp "Party Like it's 1996" +[2]: http://blog.wired.com/monkeybites/2006/10/this_page_requi.html "This Page Requires Internet Explorer: Worst Offenders?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/ZZ3AC61D18.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/ZZ3AC61D18.jpg Binary files differnew file mode 100644 index 0000000..2bed6f5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/ZZ3AC61D18.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/allcode-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/allcode-logo.jpg Binary files differnew file mode 100644 index 0000000..b58a446 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/allcode-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/allthecode.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/allthecode.jpg Binary files differnew file mode 100644 index 0000000..06ad6c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/allthecode.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/allthecode.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/allthecode.txt new file mode 100644 index 0000000..38c03f3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/allthecode.txt @@ -0,0 +1,19 @@ +AllTheCode is a new search engine designed to help you locate useful source code from around the web. AllTheCode joins an already crowded field that seems increasingly dominated by Google Code Search, but AllTheCode offers a few nice touches that set it apart. + +AllTheCode is currently listed as alpha and at the moment it only returns results in Java. AllTheCode claims that its results are rated by frequency of use, however I couldn't find any info on whether that means how often the entire files is used or whether that is broken down further by function or included lib. + +In addition to only returning Java results, AllTheCode doesn't support regular expressions which is a shame since that is the only way to effectively search through code in my opinion. Straight keyword searches are going to return much more "junk" than something you can filter with complex regular expressions. + +On the brighter side, AllTheCode is much better at displaying code than other engines I've used, including Google Code Search. Results pages are displayed with the first ten or so lines of code and then a link. Clicking the link will display the code with syntax highlighting right in your browser. If the code is what you're looking for, you can then download the remote file. + +The preview is handy and saves you from having to download the file right away. This way you can browse through the code, see if it actually does what you're looking to do and then download it. + +One of the really nice things about Google Code Search is that it displays the license that the code is released under right along side each search result (or at least when it can parse out a license, which is fairly often). Currently AllTheCode doesn't offer such functionality, but hopefully that'll be added in the future. + +The site performed well, searching was fast and code previews were quick as well. A couple of times the code previews were slightly mangled by character set issues, but that could also be my browser settings. + +I'm not a Java programmer so I can't vouch for the quality of the results returned, but a few quick scans for "strcmp" and other common functionalities returned relevant results. That is, the engine found implementations and functions named strcmp, whether or not they were good Java implementations isn't something I feel qualified to judge. + +As with any niche search field, the more the merrier and while AllTheCode still has a ways to go, it's definitely worth adding to your toolkit if you're a Java programmer. If Java isn't for you, check back in a little while, AllTheCode promises support for more languages is coming soon. + +[1]: http://www.allthecode.com/ "AllTheCode.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/elsewhere.txt new file mode 100644 index 0000000..dc953ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/elsewhere.txt @@ -0,0 +1,23 @@ +Elsewhere on Wired: + +* Listening Post's Stewart Rutledge [has discovered][1] that a prostitution service in Brazil now offers a weekly iPod videos showcasing the latest talent. From the post: "M.Class, a Brazilian virtual brothel, says that the videos increase the ladies sex sales by three times in the weeks following the video posts." + +[1]: http://blog.wired.com/music/2007/02/brazilian_prost.html "Brazilian Prostitutes Turn On iPod" + +* Chris Kohler at Game Life [reports][4] that the latest run of Xbox 360s are using a new, quieter DVD drive -- "too bad for the ten million people who already bought an Xbox 360." + +[4]: http://blog.wired.com/games/2007/02/360s_new_quiete.html "360's New, Quieter Disk Drive" + +* This is the coolest thing you'll see today: [The Charleston, synchronized to Daft Punk's 'Around The World.'][2] Courtesy of John Brownlee at Table of Malcontents. + +[2]: http://blog.wired.com/tableofmalcontents/2007/02/daft_punk_does_.html "Daft Punk Does The Charleston" + + + +* Bodyhack's Randy Dotinga wins today's best headline award with: Inbreeding: [Bad for Kings, Good for Fish][3]. + +[3]: http://blog.wired.com/biotech/2007/02/inbreeding_bad_.html "Inbreeding: Bad for Kings, Good for Fish" + +[photo credit][5] + +[5]: http://www.flickr.com/photos/cogdog/269050017/ "Transmit Your Images Elsewhere"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/gummy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/gummy.jpg Binary files differnew file mode 100644 index 0000000..e54a95b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/gummy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/india-scaffolding.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/india-scaffolding.jpg Binary files differnew file mode 100644 index 0000000..b50f3f2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/india-scaffolding.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/iso.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/iso.jpg Binary files differnew file mode 100644 index 0000000..16a35f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/iso.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/ooxmliso.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/ooxmliso.txt new file mode 100644 index 0000000..6dd1fbd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/ooxmliso.txt @@ -0,0 +1,18 @@ +<img alt="Office" title="Office" src="http://blog.wired.com/photos/uncategorized/office.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Microsoft has received another couple of setbacks in its bid to [control office document format][1]s. Microsoft's Open Office XML document format has been challenged by a number of international groups. + +The International Standards Organization (ISO) will soon begin evaluating the feedback of member countries regarding the proposed spec. Reportedly, Canada, France, Germany, India, Italy, Japan, Kenya, Malaysia, New Zealand, Norway, Singapore, Sweden and UK are submitting contradictions to OOXML, which may derail a proposed fast track process. + +While not directly related to ISO approval both [Texas][2] and [Minnesota][3] have recently introduced bills to the state legislature that would mandate the current ISO standard Open Document Format for all government documents. If the bills pass Texas and Minnesota will join Massachusetts and over a dozen countries world wide that have mandated open formats for government documents. + +I'd like to point out, since it will inevitably come up in the comments, that these moves have very little to do with Office software packages. Microsoft Office 2007 offers a free download of ODF plugins which allow it to read and write most of the ODF formats. The issue in question here is whether or not Microsoft should have a lock on public document formats. + +Governments and businesses alike seem to be slowly waking up to the fact that tying themselves to Microsoft and its document formats puts them at the whim of the Redmond giant. + +For those that would like to learn more about the difference between Microsoft's proposed document format and ODF can start with the Wikipedia article on the subject. Yes that Wikipedia article, which Microsoft attempted to have paid shills edit. + +You could also turn directly to Microsoft's manual on OOXML, but I have to warn you it's over 6000 pages long. With the possible except of Marcel Proust, no one should ever write 6000 page documents. + + +[1]: http://www.wired.com/news/technology/software/0,72403-0.html "MS Fights to Own Your Office Docs" +[2]: http://www.capitol.state.tx.us/BillLookup/History.aspx?LegSess=80R&Bill=SB446 "Texas Bill to consider open document format for electronic state documents" +[3]: http://www.revisor.leg.state.mn.us/bin/bldbill.php?bill=H0176.0.html&session=ls85 "Minnesota Preservation of State Documents Act"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/picme.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/picme.jpg Binary files differnew file mode 100644 index 0000000..ab0cb6b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/picme.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/picme.tx b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/picme.tx new file mode 100644 index 0000000..a9e20e1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/picme.tx @@ -0,0 +1,22 @@ +[Picme is a photo sharing application][1] currently in development over at Raizlabs. This could well turn out to be vaporware, but there is a movie (after the jump) that seems to show a working app. Normally we don't give much attention to software announcements, we prefer to wait for the actual product, but PicMe is novel enough to warrant a look. + +Picme seems to be aimed at the photo catalogue market which would put it alongside [Google Picasa][2], [Adobe Lightroom][3] and others, but it features a very unique 3-D interface that offers a "perspective view" to allow users to sift through large collections of photos. + +Some the highlights listed on the site include: + + +* Unique view to handle large collections of photos (Patent Pending) +* Sharing-centric design makes it easy to share with individuals, clients, groups and social networks. +* Plug-in architecture allowing us to support photo editing tools as well as sharing service providers such as Flickr. +* Progressive on-demand client side upload means no wait uploads and quick downloads even for large image files. + + +Picme certainly looks and sounds like an interesting piece of software. And the 3D nav system seem like it would right at home with Windows Vista's Aero interface. Perhaps spatial navigation is going to be the next Windows UI design trend. + +Raizlabs claims Picme will be released later this year. In the meantime, if you'd like to find out more there's a mailing list you can join. We'll be sure to give you a full review if and when it becomes available. + +[1]: http://www.raizlabs.com/software/picme/ "PicMe - professional photo sharing application" +[2]: http://picasa.google.com/ "Google Picasa" +[3]: http://labs.adobe.com/technologies/lightroom/ "Adobe Lightroom" + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/Y9u7zdFLaxE"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Y9u7zdFLaxE" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/reboot.txt new file mode 100644 index 0000000..b52c9e5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/reboot.txt @@ -0,0 +1,23 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Walmart has [jumped in the digital movie download game][1] with a huge splash announcing that it will be offer downloads from all six major studios, something no one else has been able to do until now. Participating movie studios include 20th Century Fox, Disney, Lions Gate, MGM, Paramount, Sony Pictures, Universal and Warner Bros. The bad news: downloads will cost roughly the same as in-store DVD purchases, ranging from $13-$20 for new releases and $7.50 and up for older titles. The store will also include television shows. + +[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-06T142601Z_01_WEN3625_RTRUKOC_0_US-WALMART-HP.xml&src=rss "Wal-Mart launches new movie, TV download service" + +* Leander Kahney, of Cult of Mac fame, points out something many people may not know, the recent settlement between the Beatles and Apple means that Apple [can now sell iPods pre-loaded with music][2], something they were previously unable to do according to an older agreement. + +[2]: http://www.wired.com/news/columns/0,72656-0.html?tw=rss.index "IPod Will Be the New CD" + +* Is Apple using its iPod muscle to slow adoption of Windows Vista? The official [Apple page on the subject says][3]: "iTunes 7.0.2 may work with Windows Vista on many typical PCs. Apple recommends, however, that customers wait to upgrade Windows until after the next release of iTunes which will be available in the next few weeks." If you feel like installing Vista now Apple has [released the iTunes Repair Tool for Vista 1.0][4], which may help with some, but not all, iTunes-Vista issues. + +[3]: http://docs.info.apple.com/article.html?artnum=305042 "iTunes and Windows Vista" +[4]: http://www.apple.com/support/downloads/itunesrepairtoolforvista10.html "iTunes Repair Tool for Vista 1.0" + +* Microsoft is warning of a new zero day flaw in Microsoft Excel that could allow remote code execution. The warning affects Excel in Microsoft Office 2000, Office 2003 and Office XP, as well as in Office 2004 for Mac. Currently there is no patch available. + +[5]: http://www.microsoft.com/technet/security/advisory/932553.mspx "Vulnerability in Microsoft Office Could Allow Remote Code Execution" + +* Princeton Library is the latest university library to [join Google's ambitious Google Book Search project][6] which aims to scan the world's libraries and make them searchable over the Web. As with the other 11 participants Princeton, will be offer only public domain books (roughly 1 million). + + +[6]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2007-02-06T012745Z_01_N05495149_RTRUKOC_0_US-GOOGLE-LIBRARIES.xml&src=rss "Princeton libraries join Google book-scan project"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/tut.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/tut.txt new file mode 100644 index 0000000..fc82c4e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/tut.txt @@ -0,0 +1,30 @@ +Structure matters. If you want your blog to be more discoverable to those searching Google, you need to tell Google what your site is about. Once upon a time there was and HTML meta tag that could do that for you, but then spammers abused the heck out of those so Google and the rest largely ignore them. So how can you tell Google what your site is about? + +In the process of digging through Google's [revamped Webmaster Tools][6] earlier today I learned some more things I've done on my personal blog that were not a good idea. So armed with my own stupidity as an example here's a case study of what not to do (you could also view source on this page for a good example of bad structural decisions -- sigh). + +Google prioritizes items on your page using (X)HTML structural elements. For instance, wrapping something in an h1 tag will tell Google the contents of that tag are more important than the contents of what's inside and h2 tag. And so on. + +Which brings me to today's two pronged point. Structure your pages well using [semantically meaningful HTML][5] and learn to love the lede. Do not for instance add a span tag with an RSS feed inside your h2 tag because it allows you to work around an IE 5.5 float bug. This will cause Google to think that the link and text inside it are just as important as your headline. + +Until I started working for this fine journalistic institution, I thought "lede" was some sort of obscure reference to [Leda][1], but it turns out that is incorrect. After my training period (ordering *All The Presidents Men* from Netflix) I learned that [lede][3] refers to the first sentence of your post, which ideally should sum up roughly everything you're writing about -- [the 5 W's][4]. Your reader should be able to skim the lead and more or less know what you're going to say. + +If you're like me you don't naturally think of ledes and in fact you might even pride yourself on long winded introductions that frequently have nothing to do with what you're writing, that's fine but you should still write a lede. True a blog is not a newspaper, but in many ways search engine spiders read your page as if it were a newspaper. + +If you feel like the lede is cramping your creative style just stick it above your article like a long sub-headline or off in a sidebar, but tag it with high priority tags and get it in the code. Wrap your ledes in tags that are one headline level less than your headline, because, while I can't guarantee it, I'd be willing to bet that it will end up being the two line excerpt that appears below your page headline in Google search results. + +Armed with that brief synopsis, potential readers will theoretically be more inclined to click through to your site than if your page summary in Google's search results reads: "click for RSS feed." + +Of course this is largely speculation on my part since I don't know the inner workings of Google's page crawling methods -- YMMV. + +And before we go I wanted to address something John Brownlee over at Table of Malcontents [brought up about yesterday's tutorial][2] (which applies to today's as well). Brownlee argues that titles (and ledes) aren't as important as I've made them out to be. + +>The thing of prime importance in running a successful blog is consistently writing enough content that people know that every time they come back, there'll be something new. Traffic begets bigger traffic: if you're making the posts, people will keep checking, and more and more links will come into your site. + +And that is absolutely correct. These added tips are built on the assumption that you're already producing interesting content and producing it frequently. If you don't start with basics none of these fine tuning tips are going to make up for your lack of quality content. If you don't build it, they won't come. + +[1]: http://en.wikipedia.org/wiki/Leda_and_the_swan "Leda and the Swan" +[2]: http://blog.wired.com/tableofmalcontents/2007/02/yesterday_in_wi_3.html "Better Blogging, Cheap Booze, Mind Control, Madonna Kidnapped By Neo-Nazis" +[3]: http://en.wikipedia.org/wiki/News_style "Lede" +[4]: http://en.wikipedia.org/wiki/Five_Ws "Five Ws" +[5]: http://blog.wired.com/monkeybites/2007/01/tutorial_o_the__1.html "Tutorial 'O The Day: XHTML Semantics" +[6]: http://blog.wired.com/monkeybites/2007/02/google_adds_lin.html "Google Adds Links To Webmaster Tools"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/webmaster-tool-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/webmaster-tool-2.jpg Binary files differnew file mode 100644 index 0000000..9b1e8b3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/webmaster-tool-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/webmaster.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/webmaster.txt new file mode 100644 index 0000000..3a8555b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Tue/webmaster.txt @@ -0,0 +1,15 @@ +<img alt="Googlelogo" title="Googlelogo" src="http://blog.wired.com/photos/uncategorized/googlelogo.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Google added a small but very useful feature to its Webmaster Tools suite yesterday. In addition to the diagnostic, statics, and sitemaps tools there is a new tab, links, which displays information about who is linking to your site. + +The top level display breaks down how many other sites are linking to you and what pages they link to. In the column that shows how many people are linking to that page, every number is a link that lets you drill down into the specific for that URL. + +In two clicks you can get a list of every page on the internet that links to you (well at least those that Google is aware of). + +How frequently your site gets crawled will determine how up to date the inbound link data is. If your site just made the front page of Digg, it might be a little while before that information shows up. + +There's also a section that shows you how many internal links your site has, though this data will be heavily weighted to the pages in your main site menu since they appear on overy page. + +I've always found Google's Webmaster Tools to be of limited usefulness because it's very slow to update and doesn't seem to flush its old listings very often. For instance it still lists dozens of pages that haven't been on my site in almost a year. + +However the new links feature is very nice and makes Webmaster Tools a bit more interesting. + +While I like the new Webmaster Tools, I can't help wondering why it wasn't added to Google Analytics or for that matter why Google doesn't just merge Webmaster Tools and Analytics.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/else b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/else new file mode 100644 index 0000000..90eee08 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/else @@ -0,0 +1,17 @@ +<img width="200" height="135" border="0" src="http://blog.wired.com/tableofmalcontents/images/pans.jpg" title="Pans" alt="Pans" style="margin: 0px 0px 5px 5px; float: right;" />Elsewhere on Wired: + +* Cult of Mac's Leander Kahney [asks][1]: EMusic Sells DRM-Free Music, Why Doesn't Steve Jobs? Indeed. + +[1]: http://blog.wired.com/cultofmac/2007/02/emusic_sells_dr.html "EMusic Sells DRM-Free Music, Why Doesn't Steve Jobs?" + +* Listening Post also has some follow up on Jobs' anti-DRM rant with some tasty quotes from the RIAA, who apparently [think Jobs wants to license Fairplay][2]. The thing is, Jobs writes the exact opposite in his letter. It just goes to show you that even the fabled reality distortion field of Steve Jobs is no match for the reality distortion field of the RIAA. All your rights are belong to us. + +[2]: http://blog.wired.com/music/2007/02/riaa_response_t.html "RIAA Response to Steve Jobs' Thoughts on Music?" + +* 27B Stroke 6's Ryan Singel is at the RSA security conference where [Javascript vulnerabilities are all the rage][3]. Isn't that why everyone stopped using Javascript the first time around -- because it was too easy to exploit? Just because it got a shiny new acronym doesn't mean it's easier to write secure code. + +[3]: http://blog.wired.com/27bstroke6/2007/02/web_20_as_a_sto.html "Web 2.0 As A Story To Be Destroyed by Hackers" + +* If you haven't seen Guillermo del Toro's amazing movie *Pan's Labyrinth*, don't follow this link, it gives away the ending (and much more), but Table of Malcontent's Annalee Newitz has an [interesting analysis][4] of the film. More importantly, if you haven't seen it yet hurry up and do so before it disappears from theaters. + +[4]: http://blog.wired.com/tableofmalcontents/2007/02/pans_labyrinth_.html "Pan's Labyrinth – Can Fantasies Rescue Us from Fascism?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/gmail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/gmail.jpg Binary files differnew file mode 100644 index 0000000..6f940c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/gmail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/goodbye.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/goodbye.jpg Binary files differnew file mode 100644 index 0000000..721805d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/goodbye.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/nightly.txt new file mode 100644 index 0000000..3e8458c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/nightly.txt @@ -0,0 +1,16 @@ +The Nightly Build: + +* Google has joined the cable companies to say that the [internet can't handle movie downloads][1]. Google says the bandwidth strain of movie download services like Joost will bring the network to its knees. The Internet was not designed for TV Google claims. Good. Let's not put TV on the internet. + +[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyID=2007-02-07T182929Z_01_L0767087_RTRUKOC_0_US-CABLE-WEBTV.xml&pageNumber=1&imageid=&cap=&sz=13&WTModLoc=NewsArt-C1-ArticlePage1 "Google and cable firms warn of risks from Web TV" + + +* Two significant flaws have been found in Firefox. The first is a [flaw in the pop up blocker][5] that shipped with Firefox 1.5 which allows remote sources to read local files. The second vulnerability is more serious and [allows phishing sites to fool Firefox][6] into thinking that the site is secure. The phishing attack appears to work on newer versions of Firefox including the most recent v2.0.0.1. + +[5]: http://www.securiteam.com/securitynews/5JP051FKKE.html "Firefox Popup Blocker Allows Reading Arbitrary Local Files " +[6]: https://bugzilla.mozilla.org/show_bug.cgi?id=367538 "Firefox 2.0.0.1 Phishing Protection bypass" + +* [FuturePhone][2] has [gone the way of the Dodo][3]. Well sort of, the dodo wasn't sued for 2 million dollars that I know of, but they are both gone. + +[2]: http://pogue.blogs.nytimes.com/2006/10/19/19pogue-email/ "The Final Word on Futurephone" +[3]: http://gigaom.com/2007/02/07/atts-free-call-bill-2-million/ "AT&T’s Free Call Bill: $2 Million" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/reboot.txt new file mode 100644 index 0000000..74004b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/reboot.txt @@ -0,0 +1,24 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Amazon and TiVo [have announced a new video download service][1]. However, unlike competing offerings (such as Walmart's disastrous launch yesterday), the new partners will download movies and TV shows directly to customers' televisions via their TiVos. So far officials refused to give a target date for the service's launch. + +[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-07T053842Z_01_N06308517_RTRUKOC_0_US-TIVO-AMAZON-DOWNLOAD.xml&src=rss "Amazon, TiVo to test movie downloads direct to TVs" + +* The RIAA [received a huge setback][2] yesterday when a judge ordered the music lobby group must pay the attorney fees for a woman wrongfully accused of illegal downloading. The judge, echoing sentiments of just about everyone but the RIAA, called the suit "frivolous and unreasonable." Listening Post [has more details][3]. + +[2]: http://www.eff.org/deeplinks/archives/005114.php "Big Win for Innocent RIAA Defendant" +[3]: http://blog.wired.com/music/2007/02/scoop_label_mus.html "Label Must Pay P2P Defendant's Legal Fees" + +* Hackers [attacked][4] the DNS servers that form the backbone of the internet yesterday. Several key DNS servers saw a traffic spike yesterday morning experts say, which is usually a sure sign of an attack. The good news is the servers stood up to the attack. + +[4]: http://news.com.com/2100-7349_3-6156944.html?part=rss&tag=2547-1_3-0-20&subj=news "Internet backbone at center of suspected attack" + +* It appears one the home-planet's (Condé Nast) auxiliary tentacles (CondeNet) has [acquired][6] [flip.com][7], a social networking site for teen girls. + +[6]: http://sev.prnewswire.com/computer-electronics/20070206/AQTU04206022007-1.html "CondeNet Launches Flip, New Online Outlet for Teen Girls' Creativity" +[7]: http://www.flip.com/ "Flip.com" + + +* TSIA: [World's Oldest Paper Ditches Newsprint][5] + +[5]: http://blog.wired.com/furthermore/2007/02/worlds_oldest_p.html "World's Oldest Paper Ditches Newsprint"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/vista-beginners.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/vista-beginners.jpg Binary files differnew file mode 100644 index 0000000..9f4013c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/vista-beginners.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/vista-beginners.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/vista-beginners.txt new file mode 100644 index 0000000..b641214 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/vista-beginners.txt @@ -0,0 +1,10 @@ +Continuing with our Vista Month theme, we recently came across the excellent [Vista for Beginners][1] website, which is chock full of advice, tutorials, tips and tricks for those migrating to Windows Vista. + +Much of the content on Vista for Beginners is aimed at XP users, but even those migrating from older systems and those who are brand new to the world of Windows will find some time and frustration saving gems in here. + +Right now Vista for Beginners doesn't have a huge amount of content, but you can expect that will change as more people adopt Vista and start looking for help. Especially useful for those familar with past version of Windows is the "[Where to find...][2]" section of Vista for Beginners, which so far has tutorials for restoring the Shut Down and Log Off buttons as well as the good old "Run" button. + +If you're having trouble adjusting to the Vista way of thinking, or if you're thinking about upgrading, but are worried about having to learn a new workflow, Vista for Beginners can help ease the transition. + +[1]: http://www.vista4beginners.com/ "Windows Vista For Beginners" +[2]: http://www.vista4beginners.com/where-to-find "Windows Vista For Beginners: Where to find"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/vistamyths.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/vistamyths.txt new file mode 100644 index 0000000..cd4b521 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.05.06/Wed/vistamyths.txt @@ -0,0 +1,19 @@ +Users concerned about upgrading to Windows Vista should have a look at Tech Republic's recent article [dispelling Windows Vista myths][1]. With the release of any new OS there's bound to be a certain amount of FUD percolating around the internet. In Vista's case the main rumors I've seen are that it breaks all your software, it's just eye candy, and it requires a new computer. + +That last item has been played up extensively in the mainstream press and no doubt gets encouraged by retail salesmen and hardware manufacturers, but the truth is Vista will probably run on your existing machine. You may need to upgrade your RAM and you may not get the Aero glass interface, but that *is* eye candy. + +Deb Shinder's article does a good job of pulling together the top ten myths about Windows Vista and separating rumor from fact. + +The article doesn't just dispel anti-Vista rumors though, it also takes Microsoft to task for propagating the myth that Vista will solve all your security worries. + +>Because much of operating system, including its networking technologies, has been redesigned and new code written, Vista is likely to present some vulnerabilities that weren't in older versions of the OS even as it fixes many that were. This is true of any new software and Vista, despite its focus on security and Microsoft's best efforts, is no exception. + +>In fact, Microsoft shipped the first critical security update for Vista over a year ago, when it was still in the beta testing stage. It will be just as important with Vista as with any other operating system to ensure that updates are installed regularly. The danger is that novice users, hearing that Vista is more secure, may let their guard down and fail to take the protective measures necessary to prevent attacks, virus infestations, etc. + +Another popular rumor I've heard is that Vista won't run on dual core machines, which is not true, however here's something I didn't know: + +>In fact, all versions of Vista will run on a machine with multiple processors installed--but Home Basic and Premium will recognize and use only one of the processors. + +If you've been hesitating to upgrade because of rumors you've been hearing/reading check out the article, it does a good job of dispelling the FUD and getting down to the facts. + +[1]: http://articles.techrepublic.com.com/5100-10877_11-6156413.html?part=rss&tag=feed&subj=tr "Don't be misled by these 10 Windows Vista myths"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/elsewhere.txt new file mode 100644 index 0000000..1a2a801 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/elsewhere.txt @@ -0,0 +1,21 @@ +Elsewhere on Wired: + +* Cult of Mac's Pete Mortensen dares to dig into [the differences between Mac and PC color rendering][1]. I'm a afraid I gave up on this one long ago, my first move on any new Mac system is to set the gamma to 2.2. + +[1]: http://blog.wired.com/cultofmac/2007/02/good_intentions.html "Good Intentions Make Macs Display Web Photos Wonkily" + +* Autopia [reports][3] that Volvo will soon begin manufacturing hybrid electric garbage trucks that use 30 percent less fuel. Gothenburg and Stockholm will serve as the test cities for the project. + +[3]: http://blog.wired.com/cars/2007/02/coming_from_vol.html "Coming From Volvo: Hybrid-Electric Garbage Trucks" + +* Table of Malcontents' John Brownlee has a suggestion for those trying to learn a foreign tongue, [read a familiar novel][4] in that language. My friend who speaks seven languages swears by this technique, though she also admits that having a strong background in Latin helps. + +[4]: http://blog.wired.com/tableofmalcontents/2007/02/je_suis_voldemo.html "Je Suis Voldemort" + +* Listening Post tells you [how to explain DRM to your dad][5]. + +[5]: http://blog.wired.com/music/2007/02/how_to_explain_.html "How to Explain DRM to Your Dad" + +* Bodyhack has the best headline today: [This Just In: Pot Makes You Cough][2]. You don't say, + +[2]: http://blog.wired.com/biotech/2007/02/this_just_in_po.html "This Just In: Pot Makes You Cough"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/gui.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/gui.jpg Binary files differnew file mode 100644 index 0000000..ad7303f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/gui.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/lisptn.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/lisptn.jpg Binary files differnew file mode 100644 index 0000000..b82cd68 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/lisptn.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/marijuana.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/marijuana.jpg Binary files differnew file mode 100644 index 0000000..d93f33e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/marijuana.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/osx.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/osx.jpg Binary files differnew file mode 100644 index 0000000..4ee75b5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/osx.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/osxtip.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/osxtip.txt new file mode 100644 index 0000000..197394e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/osxtip.txt @@ -0,0 +1,9 @@ +Here's a time saving tip for Mac users. When you're in an Open/Save dialogue the keyboard shortcut Shift ~ will bring up a CLI style folder navigation window that lets you easily type the path to a folder. Even better, the path window features bash-style tab complete. Type the first letter of the folder, press Tab and it will auto-fill the name. Press tab again and type the next letter and so on. Perfect for keyboard junkies. + +I can't believe I've been using OS X for six years and I never knew this. + +There are some other keyboard-based navigation shortcuts for the same Open/Save dialogues, including Apple-D which will jump to your Desktop folder and probably more I don't know about, but feel free to educate me in the comments below. + +This handy tip comes [courtesy of OS X Daily][1]. + +[1]: http://osxdaily.com/2007/02/14/geek-gui-in-mac-os-x-opensave-dialog-boxes/ "Geek GUI in Mac OS X Open/Save Dialog Boxes"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/reader.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/reader.txt new file mode 100644 index 0000000..774e461 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/reader.txt @@ -0,0 +1,15 @@ +Google Reader [announced][3] this morning that it is now providing subscriber counts for feed publishers. The counts make it easy to see who is reading your feeds through Google Reader or the Google Personalized Homepage. In a blog post of the the subject, the Google Reader team says that in future more RSS-enabled Google features will also be reporting stats. + +Additionally there is now a [Google Reader Publishers Guide][2] which has some tips and suggestions for optimizing your feeds and reaching a wider audience. There are also [cut-n-paste buttons][4] to provide your readers with an "add to Google Reader" link. The FAQs section also explains how to read the stats through RSS tracking services like FeedBurner. + +If you use FeedBurner to track your readers, you'll now be able to see how many are using Google Reader and Google Personalized Homepage to view your feed. According to an [announcement of the FeedBurner Blog][1], the new Google numbers will be available starting tomorrow, February 17th. + +If you don't use FeedBurner you can dig through your server logs and see how many Google Reader subscribers you have by looking for HTTP header requests from Google. + +What would be really nice is to see these stats rolled into Analytics or Webmaster Tools, but for the time being this is a step in the right direction and it's good to see that Google Reader is listening to user feedback. + + +[1]: http://blogs.feedburner.com/feedburner/archives/2007/02/the_google_effect.php "Google Now Reporting Subscribers" +[2]: http://www.google.com/help/reader/publishers.html "Google Reader: Tips for Publishers" +[3]: http://googlereader.blogspot.com/2007/02/one-subscriber-two-subscribers-three.html "One subscriber, two subscribers, three..." +[4]: http://www.google.com/webmasters/add.html "Add to Google button"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/reboot.txt new file mode 100644 index 0000000..bc6ee74 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Fri/reboot.txt @@ -0,0 +1,17 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Apple has released a [new security update][1] that patches four of the flaws found by the Month of Apple Bugs project. The update is recommended for all users of 10.4 and can be downloaded from Apple or by using Software Update. + +[1]: http://www.apple.com/downloads/macosx/apple/security_updates/securityupdate2007002universal.html "Security Update 2007-002 (Universal)" + +* According to a new report broadband users will [finally crest over the 50 percent mark][2] later this year, making high speed internet access more common than dial-up for the first time. + +[2]: http://news.yahoo.com/s/zd/20070215/tc_zd/201301 "Report: Broadband Users Now the Majority in U.S." + +* Google has agreed to [purchase video game ad service Adscape][3] for $23 million. Adscape gives Google access to some patents and opens the potential for partnerships with game companies like Electronic Arts, but many analysts don't expect any deals in the near future. + +[3]: http://www.redherring.com/Article.aspx?a=21323 "Google Agrees to Buy Adscape" + +* Speaking of Google, the Google Code Blog has kicked off [Summer of Code 2007][4] and will begin accepting application next month. Last year Google funded over 600 students in 93 countries to work with 100 open source groups. + +[4]: http://google-code-updates.blogspot.com/2007/02/speaking-of-summer.html "Google Summer of Code"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/TweakVista.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/TweakVista.txt new file mode 100644 index 0000000..4d9a17e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/TweakVista.txt @@ -0,0 +1,12 @@ +For those of you that have already taken the Vista plunge but are feeling a bit lost in Microsoft's new operating system, [TweekVista][1] may have a few tip and tricks you can use to customize your set up. + +TweakVista is similar to [last week's Vista For Beginners][2], but geared more toward advanced users looking to tweak hidden Vista settings and discover time-saving shortcuts. TweakVista also features software reviews and security tips. + +Standout articles include some tips on [enabling Vista's built-in firewall][3] and nice trick for [altering the color][4] of your Aero Glass windows. The later tutorial even has a built in tool for converting ARGB colors to the hex string that Vista's registry requires for Aero values. Note that hacking the registry is of course somewhat risky -- YMMV. + +There's also a number of handy tips for speeding up Vista including ways to disable the window transparency. + +[1]: http://www.tweakvista.com/ "TweakVista" +[2]: http://blog.wired.com/monkeybites/2007/02/vista_month_win.html "Windows Vista For Beginners" +[3]: http://www.tweakvista.com/article39081.aspx "Turn on outbound filtering" +[4]: http://www.tweakvista.com/article39028.aspx "Change color of glass with regedit"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/adobe flash lite.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/adobe flash lite.txt new file mode 100644 index 0000000..be96681 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/adobe flash lite.txt @@ -0,0 +1,21 @@ +As we mentioned in [The Morning Reboot][0], Adobe [announced Flash Lite 3.0][1] earlier today at the ongoing 3GSM World Congress. Flash Lite 3.0 will feature support for the same video formats used by Adobe Flash Player, namely .flv, which is used by YouTube and MySpace. The new Flash Lite will also support streaming video from Adobe's Flash Media Server. Flash Lite runs on almost all the major mobile OSes including Symbian and MS Mobile. + +The press release is somewhat vague, but it seems to indicated that Flash Lite 3 will support the higher quality Flash 8 video codec which means content providers can deliver better quality videos and still support mobile devices. Adobe's Flash Player is currently powers the video capabilities of many social networking sites such as YouTube and MySpace. + +However the real news may well turn out to be Flash Lite's support for video streaming from Flash Media Server since many content providers prefer to deliver streaming video rather than downloadable content. On mobile devices streaming makes sense because most handhelds don't have the memory capacity to make regular downloading and saving video files practical -- at least for now. + +Of course the primary question for many interested consumers is: can I watch YouTube videos on my phone? + +For the time being, not with Flash Lite 3. + +Phones running Flash Lite 3 won't be able to view YouTube videos since, as I understand it, the Flash Media Server can't detect mobile screen sizes and reformat video to fit. Adobe spokesman Stefan Offerman [tells PC magazine][2], that Adobe wanted to release the client software first because of the amount of time required to develop and release new cell phones. By contrast the new server capabilities can be implemented quickly, Offerman claims. + +Adobe plans to deliver Flash Lite 3 in the first half of 2007. + +Interestingly, Nokia also announced some video news this morning at the 3GSM conference. [According to the press release][3], Nokia will be delivering YouTube videos to the Nokia N series via the "Nokia Web Browser with Mini Map." Nokia's service will access videos via YouTube Mobile. + + +[0]: http://blog.wired.com/monkeybites/2007/02/the_morning_reb_6.html "The Morning Reboot Monday February 12" +[1]: http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20070211005079&newsLang=en "Adobe Flash Lite To Support Video for Mobile Handsets" +[2]: http://www.pcmag.com/article2/0,1895,2093422,00.asp "Adobe Brings Flash Video to Phones " +[3]: http://www.nokia.com/A4136001?newsid=1104222 "Nokia unveils new mobile internet video experience "
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/casemod.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/casemod.txt new file mode 100644 index 0000000..97d7b4e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/casemod.txt @@ -0,0 +1,10 @@ +Just when you think you've seen every conceivable case mod, something comes long that really blows you away. In this case I give you [the stained glass mod][1] showcased on boredstop.com. + + + +Pretty spectacular and vaguely steampunkish. I gotta build one them for my laptop. + +[via Digg][2] + +[1]: http://www.boredstop.com/index.php?option=com_content&task=view&id=16&Itemid=1 "Stained Glass PC Case" +[2]: http://digg.com/mods/Amazing_Stained_Glass_PC_Case_Photos "Amazing Stained Glass PC Case (Photos)"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/clogged tube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/clogged tube.jpg Binary files differnew file mode 100644 index 0000000..7e330ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/clogged tube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/elsewhere.txt new file mode 100644 index 0000000..890a3dd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/elsewhere.txt @@ -0,0 +1,26 @@ +Elsewhere on Wired: + +* Today is Darwin day -- a celebration of Charles Darwin's birthday and mankind's crowning achievement: science. Check out the [Wired coverage][1]. + +[1]: http://www.wired.com/news/technology/0,72703-0.html?tw=rss.index "Darwin Day Celebrates Science" + +* Would an end to DRM mean cheaper music downloads? Eliot Van Buskirk of Listening Post [ponders the possibilities][2] of a DRM free world. + +[2]: http://blog.wired.com/music/2007/02/no_drm_could_me.html "No DRM Could Mean Cheaper Music" + +* Game|Life [has a tip][3] for XBox fans using a Mac: a newly released program called [MacLive][4] lets your Mac interact with Xbox Live and track friends just like your PC-lovin' buddies. Right now the features are mostly limited to Growl alerts but the developer of the software claims he's hard at work on some improvements. + +[3]: http://blog.wired.com/games/2007/02/maclive_lets_os.html "MacLive Lets OS X Users Get in on the 360 Love" +[4]: http://code.google.com/p/maclive/ "Google Code: MacLive" + +* Bodyhack [reports][5] that the parapsychology unit at Princeton University is closing down, but fear not reruns of the XFiles still abound on cable. Okay maybe that's too harsh, according to Bodyhack's Randy Dotinga, several reputable universities consider esp and telekinesis legitimate fields of study. + +[5]: http://blog.wired.com/biotech/2007/02/esp_telekinesis.html "ESP, Telekinesis No Strangers to Academia " + +Title of the day goes to Table of Malcontents for this one: [LSD Inspires Japan's Apartments for the Elderly][6]. + +[6]: http://blog.wired.com/tableofmalcontents/2007/02/lsd_inspires_ja.html "LSD Inspires Japan's Apartments for the Elderly" + +[photo credit][7] + +[7]: http://www.flickr.com/photos/katemonkey/182815822/ "Charles Darwin is my homie"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/flash-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/flash-icon.jpg Binary files differnew file mode 100644 index 0000000..fb56d48 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/flash-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/glass-case.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/glass-case.jpg Binary files differnew file mode 100644 index 0000000..9bcea95 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/glass-case.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/moonite.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/moonite.jpg Binary files differnew file mode 100644 index 0000000..2e54ab2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/moonite.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/moremedia.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/moremedia.txt new file mode 100644 index 0000000..23653be --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/moremedia.txt @@ -0,0 +1,18 @@ +Despite claims that the internet [doesn't have the backbone][4] for the coming onslaught of digital media, the onslaught continues. Today Apple [announced a new deal with Lionsgate][1] film studio and YouTube has [signed a deal with Digital Music Group][2]. + +iTunes has added 400 films new films as port of a deal Lionsgate studio. Lionsgate films like Terminator 2, LA Story, and Basic Instinct are now available for download through the iTunes Store. + +The YouTube deal with Digital Music Group will bring a number of popular 1960s U.S. television programs such as "I Spy" and "My Favourite Martian." + +Some of Digital Music Group's holdings are already available through the iTunes Store. + +Hopefully the tubes can stand up to the newly inflamed desires of I Spy fans. Speaking of which, who owns the rights to Get Smart and when will we get see it on YouTube? + +[Clogged pipe photo credit][3] + +[1]: http://www.apple.com/pr/library/2007/02/12itunes.html "Lionsgate Movies Now on iTunes" + +[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-12T174447Z_01_N12390630_RTRUKOC_0_US-YOUTUBE-DIGITALMUSICGROUP.xml&src=rss "YouTube to offer old TV programs" + +[3]: http://www.flickr.com/photos/ellievanhoutte/301331498/ "StandPipe_Baltimore_11.18.2006.jpg" +[4]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyID=2007-02-07T182929Z_01_L0767087_RTRUKOC_0_US-CABLE-WEBTV.xml&pageNumber=1&imageid=&cap=&sz=13&WTModLoc=NewsArt-C1-ArticlePage1 "Google and cable firms warn of risks from Web TV"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/nightly.txt new file mode 100644 index 0000000..7fa5ff2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/nightly.txt @@ -0,0 +1,21 @@ +The Nightly Build: + + +* A while back we told you that Yahoo was planning to [integrate chat features in to the new Yahoo Mail][5]. Yahoo Mail is still in beta, but the rumored chat integration [kicks off today][6] for select users. The new feature alerts Yahoo Mail users if their contacts are logged on to Yahoo Messenger and gives them the option of starting a text chat session from within the mail interface. Even better, Yahoo Mail can grab email text and paste it into the chat window and vice versa. Which makes me think, there ought to be Thunderbird plugin for that.... + +[5]: http://blog.wired.com/monkeybites/2006/11/yahoo_debuts_in.html "Yahoo Debuts Integrated Chat in Yahoo Mail" +[6]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyID=2007-02-12T234342Z_01_N09400214_RTRUKOC_0_US-YAHOO-MAIL.xml&pageNumber=0&imageid=&cap=&sz=13&WTModLoc=NewsArt-C1-ArticlePage2 "Yahoo Mail offers instant messaging inside e-mail" + +* A commenter on today's [story about Vista DRM][3] pointed me to [this article][2] which says new plug-ins for Linux will bring LEGAL support of WMV, MPEG-2/4 files. As with anything that brings DRM content to a DRM-free platform, you have to wonder -- is that a good thing? + +[2]: http://www.lobby4linux.com/index.php?option=com_content&task=section&id=2&Itemid=36 "New plug-ins bring WMV, MPEG-2/4 to Linux" +[3]: http://blog.wired.com/monkeybites/2007/02/vista_month_wel.html "Vista Month: Welcome To The DRM?" + +* There's been a Safari hack floating around for a while which claims that by reducing the "page load delay" in the preferences you can speed up the browser. Users have reported that the hack makes Safari considerably faster which Safari developer David Hyatt [finds amusing][4] since "the preference in question is dead and does absolutely nothing in Safari 1.3 and Safari 2.0." + +[4]: http://webkit.org/blog/?p=94 "Surfin’ Safari: Amusing" + + +* And finally, today's web zen: [Moonite Wack-a-mole][1]. Chowda! + +[1]: http://www.dyewell.com/saveboston/ "Save Boston"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/reboot.txt new file mode 100644 index 0000000..be5abe3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/reboot.txt @@ -0,0 +1,22 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Adobe has announced that support for video will be [integrated into the next version of Adobe Flash Lite][5]. Flash Lite is the mobile optimized version of Adobe's Flash Player, used by video sharing sites like YouTube to deliver cross-platform video players. The new Flash Lite 3.0 will be available "in the first half of 2007." + +[5]: http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20070211005079&newsLang=en "Adobe Flash Lite To Support Video for Mobile Handsets" + +* Vista is barely out the door and Microsoft is already [talking about a follow up][1] as early as 2009. The new system will reportedly bring some the features rumored to have been included in Vista, but which didn't make the cut. + +[1]: http://news.yahoo.com/s/pcworld/20070209/tc_pcworld/128888 "Microsoft: Vista Follow-up Likely in 2009" + +* The Associated Press is [partnering with you][2], well actually a citizen journalism site, NowPublic.com, to integrate user-generated content into the wires. Citizens start your Blackberries. + +[2]: http://www.cyberjournalist.net/news/004043.php "AP partners with citizen journalism site" + +* Firefox 3 will apparently [support offline applications][3], which means you'll be able to use web apps, like Google Docs & Spreadsheets, etc, in the browser even when offline. This is exactly what the whole software-as-a-service industry has been waiting for -- eliminating the offline issues of web based applications. + +[3]: http://www.drury.net.nz/2007/02/03/firefox3-web-apps-game-changer/ "Firefox3: Web Apps Game changer" + +* A new European law that will go into effect later this year will make fake blogs, reviews and other false promotional schemes illegal. Companies that post glowing reviews of themselves under false identities [could face criminal prosecution][4]. No word on how the Europeans plan to enforce the new law. + +[4]: http://www.timesonline.co.uk/tol/news/politics/article1361968.ece "Fake bloggers soon to be named and shamed" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/tweakvista.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/tweakvista.jpg Binary files differnew file mode 100644 index 0000000..663d545 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/tweakvista.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/vista-lock.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/vista-lock.jpg Binary files differnew file mode 100644 index 0000000..e3d510c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/vista-lock.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/vistadrm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/vistadrm.txt new file mode 100644 index 0000000..0441012 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Mon/vistadrm.txt @@ -0,0 +1,39 @@ +<img alt="Vistalock" title="Vistalock" src="http://blog.wired.com/photos/uncategorized/vistalock.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Despite some software snafu's, notably [iTunes][6] and [Camera Raw data mangling][5], we've been cautiously optimistic about Windows Vista. However there is one white elephant in the room that we haven't addressed -- DRM. As it ships Windows Vista has support for DRM built into very low-level areas of the OS. + +The question is, are consumers concerned about Vista's DRM mechanisms enough to hold off on upgrading? One one hand Vista offers compelling new features, added security and performance gains, but at the same time these benefits come with the cost of DRM. + +Vista only allows, what Microsoft docs on the subject refer to as "Premium Content," to be played back through interfaces that have DRM mechanisms built in. But what is "Premium Content?" The most common example and on that's most likely to effect consumers in the immediate future are HD-DVD or Blu-Ray discs, which both feature various DRM controls. Here's a real world example: if you have a high end video card that doesn't offer DRM support you would have to disable that card before playing back a new Blu-Ray disc. + +Many have excused Microsoft's decision to build DRM controls into Vista by arguing that Microsoft is bowing to Hollywood pressure -- which is the same argument Steve Jobs has used to explain iTunes DRM -- but as security guru Bruce Schneier [rightly points out][1]: + +>It's all complete nonsense. Microsoft could have easily told the entertainment industry that it was not going to deliberately cripple its operating system, take it or leave it. With 95% of the operating system market, where else would Hollywood go? + + +An article posted earlier this month by Peter Gutmann provides a thorough, geeky and technical, [breakdown of Vista's DRM controls][2]. Gutmann claims that Vista's DRM protection "incurs considerable costs in terms of system performance, system stability, technical support overhead, and hardware and software cost." + +Microsoft responded by posting a twenty questions [article on the Windows Vista Blog][4] that attempted to allay consumer concerns. Microsoft points out that many of these features already exist in XP and even on other consumer devices like DVD players. But even within the detailed explanations, Microsoft admits that Windows Vista's content protection features will increase CPU resource consumption. + +There's also a couple of market-speak twists of logic in Microsoft's defense of DRM, including the notion that because the hardware requirement specs are available there will be no difficulty in writing open source drivers, which neatly sidesteps the point that open source drivers that don't implement Vista's DRM simply won't work for premium content. + +Clearly DRM is something to think about if you're planning to upgrade and it raises the question: is Microsoft trying to create a new monopoly on content distribution? The music labels are already realizing that iTunes DRM ties them to Apple and Schneier seems to think Vista's DRM will do the same for Hollywood content producers. + +Schneier thinks that Microsoft is aiming to create a lock-in not just for Hollywood content producers but also peripheral manufacturers. "It's another war for control of the computer market," he writes. + +However with Steve Jobs publicly decrying DRM and some major labels contemplating DRM free downloads, it seems possible that Vista's DRM could end up being a hinderance to Microsoft. What happens when major studios decide to deliver non-DRM downloads? + +For all those that dismiss Vista entirely and vow to stick to their XP/Mac/Linux machines, consider this tidbit from Gutmann's aforementioned *Cost Analysis of Windows Vista Content Protection*: + +>These issues affect not only users of Vista but the entire PC industry, since the effects of the protection measures extend to cover all hardware and software that will ever come into contact with Vista, even if it's not used directly with Vista (for example hardware in a Macintosh computer or on a Linux server). + +I'm curious how many of you are putting off upgrading to Vista because of DRM concerns? Is this just something the paranoid are concerned about or are general consumers concerned about DRM lock-in? Do the benefits of Vista outweigh DRM concerns? Let us know what you think. + +[photo credit][3] + +[<b>Update:</b> This post was heavily re-written after I first published it to give a more detailed explaination of Vista DRM.] + +[1]: http://www.schneier.com/blog/archives/2007/02/drm_in_windows.html "DRM in Windows Vista" +[2]: http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.html "A Cost Analysis of Windows Vista Content Protection" +[3]: http://www.flickr.com/photos/lordcuauhtli/218948748/ "Lock and key" +[4]: http://windowsvistablog.com/blogs/windowsvista/archive/2007/01/20/windows-vista-content-protection-twenty-questions-and-answers.aspx "Windows Vista Content Protection - Twenty Questions" +[5]: http://blog.wired.com/monkeybites/2007/02/vista_issues_fo.html "Vista Issues For Pro Photographers" +[6]: http://blog.wired.com/monkeybites/2007/02/vista_day_three.html "Vista Day Three: What's Broken?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/3dflipvista.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/3dflipvista.txt new file mode 100644 index 0000000..c17638d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/3dflipvista.txt @@ -0,0 +1,29 @@ +Windows Vista ships with a nice window switcher by the name of Flip-3D for quickly moving between windows, but it's not without its drawbacks. For one thing, if you have a lot of windows stacked together it can be hard to tell which is which, with that in mind we decided to take a look at some alternatives. + +I should note upfront that to use the built-in Flip 3D feature you'll need to have a version of Vista that has Aero enabled (and obviously the necessary hardware as well). + +One possible alternative to Flip 3D is [SmartFlip][2] (download requires forum registration) which is essentially the exact same thing as Flip-3D, but it moves the windows in a circle so it's easier to tell them apart. SmartFlip has a number of configuration option that let you show off Vista's graphical eye candy by slowing window switching or changing transparency. + +Rather than trying to explain all the features in detail I've embedded the developer's nice video demo at the end of the post. + +The other app that gets some good marks around the web is [My Exposé][1], which, as its name implies, mimics the functions of OS X's Expose. As with the original OS X app you can set hot-keys or corner activation or both. Activating My Exposé overlays your desktop with a black background and scales windows so they all fit on the screen. + +I had some problems with the latest version of My Exposé generating error messages, but an earlier version worked just fine. + +Of course neither of this has to replace the stock window switcher, you could use all three in conjunction if you wanted -- just make sure to assign each on a different hot-key combo. For my money Vista's enhanced Alt-Tab with previews does the job quite well, but if 3D window navigation is more your cup of tea you have plenty of options. + +Stock Flip-3D: + +SmartFlip: + +My Exposé: + + + + +SmartFlip developer demo movie: + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/bYX6YboNA4c"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/bYX6YboNA4c" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://blogs.labo-dotnet.com/simon/archive/2006/11/08/11485.aspx "My Exposé" +[2]: http://www.neowin.net/forum/index.php?showtopic=529816&st=0 "SmartFlip"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/ZZ785A2B3F.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/ZZ785A2B3F.jpg Binary files differnew file mode 100644 index 0000000..93381f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/ZZ785A2B3F.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/else-23.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/else-23.jpg Binary files differnew file mode 100644 index 0000000..0e2fef4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/else-23.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/elsewhere.txt new file mode 100644 index 0000000..9c71477 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/elsewhere.txt @@ -0,0 +1,21 @@ +Elsewhere on Wired: + +* Eliza Gauger at Table of Malcontents has a [review of Terry Gilliam's new movie][1]. I didn't actually read the review because I was worried about spoilers, but if you're not, have at it. + +[1]: http://blog.wired.com/tableofmalcontents/2007/02/tideland.html "Review: Terry Gilliam's Tideland" + +* I mentioned in the Reboot this morning that Senator Stevens's new bill would not ban Wikipedia contrary to what some people have been saying, but 27B Stroke 6 [digs deeper][2] and comes up with the actual text of the bill and a careful reading. + +[2]: http://blog.wired.com/27bstroke6/2007/02/fear_and_loathi.html "Fear And Loathing on The Anti-Anti-Predator Campaign" + +* Game|Life finds an Ebay auction for [161 joysticks][3]. + +[3]: http://blog.wired.com/games/2007/02/ebay_watch_161_.html "eBay Watch: 161 Joysticks" + +* Wired Science is doing a series of "Ask a Scientist" interviews and wants your questions. The next victim, er, scientist is David Des Marais of the Ames Research Center's Astrobiology institute. Go ahead [ask him about sex in space][4]. + +[4]: http://blog.wired.com/wiredscience/2007/02/ask_a_scientist_1.html "Ask A Scientist: David Des Marais" + +[photo credit][5] + +[5]: http://www.flickr.com/photos/techbirmingham/160543932/ "Flickr: Websites as Graphs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/iconish.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/iconish.jpg Binary files differnew file mode 100644 index 0000000..2ef13af --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/iconish.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/ms-whine.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/ms-whine.jpg Binary files differnew file mode 100644 index 0000000..bff422c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/ms-whine.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/myexpose.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/myexpose.jpg Binary files differnew file mode 100644 index 0000000..7f0a81f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/myexpose.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/nightly.txt new file mode 100644 index 0000000..43f8190 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/nightly.txt @@ -0,0 +1,23 @@ +The Nightly Build: + +* A site called [The Lighting blog][1] has some good tips on how to reduce eyestrain when working at a computer all day (and yeah I know it's a corporate blog, but they aren't hawking any wares in the article). Taking breaks is one of the key ideas, but that's hard with this electric collar thing we have to wear at the office -- what's this OSHA thing and why does my collar go off every time I say that word? [via [Lifehacker][2]] + +[2]: http://lifehacker.com/software/health/22-ways-to-reduce-computer-eyestrain-237121.php "22 ways to reduce computer eyestrain" +[1]: http://www.ipnlighting.com/blog/2007/02/22-ways-to-reduce-eye-strain-at-your.asp "22 Ways to Reduce Eye Strain at Your Computer" + +* Loren Baker of Search Engine Journal has [listed 13 reasons nofollow tags suck][5]. I disagree, but I can't think of a sillier argument to get into so I won't go there, you can decided for yourselves. + +[5]: http://www.searchenginejournal.com/?p=4410 "13 Reasons Why NoFollow Tags Suck" + +* Quick panic! A [new security threat][6] described by Symantec and the Indiana University School of Informatics opens up the possibility of remote reconfiguration of unprotected hardware via malicious JavaScript. In English: Change the default password on your router ya dope. + +[6]: http://www.virusbtn.com/Session-41268bd239c1dee16ae4f446042b089a/news/virus_news/2007/02_15.xml "50% of broadband users face pharming risk" + +* Today's web zen: [Buster Keaton on YouTube][4] (via [Kottke][3]) + +[3]: http://www.kottke.org/remainder/07/02/12787.html "Lots of Buster Keaton movies on YouTube and Google Video." +[4]: http://video.google.com/videosearch?q=buster+keaton "Buster Keaton on YouTube" + +[photo credit][8] + +[8]: http://www.flickr.com/photos/alan-light/253464236/ "Flickr: 405"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/ooxml.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/ooxml.txt new file mode 100644 index 0000000..c39cb28 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/ooxml.txt @@ -0,0 +1,23 @@ +Yesterday Microsoft posted an [open letter][2] (this "open letter" thing seems to be a catching disease with software companies) regarding OOXML. The letter, which is signed by two MS general managers, Tom Robertson and Jean Paoli, claims that IBM is attempting to slow down the ISO approval process for OOXML. + +Those who have been [following][3] the [ongoing][4] [OOXML battle][5] will probably shrug and might even point to the fact that Sun, Novell and an international consortium of countries are also trying to slowdown OOXML's ISO approval. In fact the only one interested in having OOXML declared an ISO standard is, predictably, Microsoft. + +IBM has refused to comment on the Microsoft letter saying they've addressed the same issues enough in the past. + +Ironically, while attempting to point out the benefits of OOXML, Microsoft blows its own cover in the first sentence: "Over the past year, Microsoft has stepped up efforts to identify and meet the interoperability needs of **our customers**" (emphasis mine). The debate is not about what's best for users at large but rather the important thing is that Microsoft retain its customer base -- even when sowing FUD Microsoft can't hide its real agenda. + +What follows that telling opening sentence is less an impassioned appeal than a whining plea. Former Microsoft Business Development Manager [turned blogger][1], Stephen Walli, calls Microsoft's letter "professionally embarrassing." + +The doublespeak and hypocrisy is thick over at Redmond. Microsoft seems to have already forgotten the anti-ODF smear campaign it launched back when Massachusetts introduced a bill to mandate ODF for government documents. + +First there was the Wiki editing snafu and now this, just how much lower is Microsoft going to sink in its misguided attempt to ramrod OOXML through the ISO process? + +It's a shame Microsoft has chosen the low road because Office 2007 is a great product, its functionality and ease-of-use blow OpenOffice out of the water. What would be ideal would be for Microsoft to embrace the existing standard, ODF, and compete in the market on the the merits of their software rather than the entrapment-through-format approach they seem to be dedicated to today. + + +[1]: http://stephesblog.blogs.com/my_weblog/2007/02/microsoft_whini.html "Microsoft Whining for Sympathy about OOXML" +[2]: http://www.microsoft.com/interop/letters/choice.mspx "Interoperability, Choice and Open XML" +[3]: http://blog.wired.com/monkeybites/2006/12/ecma_approves_o.html "Ecma Approves OpenXML Standard" +[4]: http://blog.wired.com/monkeybites/2007/01/more_questons_s.html "More Questions Surround Microsoft's OOXML Format" +[5]: http://www.wired.com/news/technology/software/0,72403-0.html?tw=rss "MS Fights to Own Your Office Docs" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/reboot.txt new file mode 100644 index 0000000..d1fd951 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/reboot.txt @@ -0,0 +1,18 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Poor Ted Stevens should really think about retiring. The infamous senator-that-thinks-the-internet-is-a-series-of-tubes is now, according to Computer World, [calling on Congress][1] to "ban access to Wikipedia, MySpace, and social networking sites from schools and libraries." The things is that's not quite true, Stevens is supporting a bill whose wording is so poor that it could end up banning Wikipedia, but it doesn't directly go after Wikipedia. However, you can expect every headline on this story to be something along the lines of "Stevens to Ban Wikipedia," since most of the press doesn't really understand the internet any better than Stevens. + +[1]: http://www.computerworld.com/blogs/node/4598 " U.S. senator: It's time to ban Wikipedia in schools, libraries" + +* Speaking MySpace, a U.S. District Court judge has [dismissed a lawsuit][3] brought against the site by the parents of a girl who was sexually assaulted by someone she met on MySpace. The parents plan to appeal the decision. + +[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-15T043644Z_01_WEN4320_RTRUKOC_0_US-NEWSCORP-LAWSUIT.xml&src=rss "MySpace teen suit dismissed by Texas court" + +* The Drug company [Eli Lilly has failed][4] in its attempt to stop other websites from linking to copies of the documents that are damaging to its image. The case, which was seen as test of online free speech, was hailed a victory by the EFF. + +[4]: http://www.out-law.com//default.aspx?page=7769 "Wiki can link to controversial documents, says US judge" + + +* Map geeks rejoice, all those KML files you've been creating are now [searchable in Google Earth][2]. From the Google Maps Blog: "users can now search through all of the world's Keyhole Markup Language (KML) files, making the millions of Google Earth layers on the Web instantly accessible for geobrowsing and exploration." + +[2]: http://googlemapsapi.blogspot.com/2007/02/search-for-kml-in-google-earth.html " Search for KML in Google Earth"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/smartflip.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/smartflip.jpg Binary files differnew file mode 100644 index 0000000..a1ca69b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/smartflip.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/sound of traffic.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/sound of traffic.jpg Binary files differnew file mode 100644 index 0000000..5726b79 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/sound of traffic.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/trafficsound.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/trafficsound.txt new file mode 100644 index 0000000..66872e8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/trafficsound.txt @@ -0,0 +1,17 @@ +Ever wanted to compose avant-garde music by browsing the web? Me neither, but now you can thanks to a really fun little app by the name of [Sound of Traffic][1]. + +Sound of Traffic is a lightweight Java program that converts TCP/IP header information into midi notes via the Java Synthesizer. Ostensibly the the purpose is to listen in on network traffic, as the website puts it, "in ordered time, via a tempo, rather than realtime, which could be more chaotic." + +Sound of Traffic is fairly sophisticated in its setup, you can assign particular instruments to a particular port, which allows you a fairly fine grained control over the output. + +The results are not unlike some of the compositions on the [Early Gurus of Electronic Music][2] compilation that came out a few years back. Alternately annoying and eerily musical, Sound of Traffic's appeal will probably depend somewhat on whether or not you're a fan of experimental music. + +I found that playing William Basinski's Disintegration Loops in the background and browsing through Flickr with Sound of Traffic turned on produced some great sounds and textures. I'd be curious to see what at DOS attack sounds like, but I don't have a home server to launch one against. + +While not particularly useful, Sound of Traffic is definitely the most fun I've had with an application in some time. Here's a [sample audio file][3] with William Basinski's Disintegration loop in the background, with the exception of the pulsing background sound, everything is TCP/IP traffic as rendered by Sound Of Traffic. + +Sound of Traffic is available for Mac, Windows and *nix. + +[1]: http://www.smokinggun.com/projects/soundoftraffic/ "Sound of Traffic" + +[2]: http://www.furious.com/PERFECT/ohm/ "OHM- The Early Gurus of Electronic Music" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/vista default-thumb.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/vista default-thumb.jpg Binary files differnew file mode 100644 index 0000000..4aee4f5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/vista default-thumb.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/vista default.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/vista default.jpg Binary files differnew file mode 100644 index 0000000..82b8476 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Thu/vista default.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/crook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/crook.jpg Binary files differnew file mode 100644 index 0000000..5f6b657 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/crook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/cuban b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/cuban new file mode 100644 index 0000000..a50440a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/cuban @@ -0,0 +1,41 @@ +Internet trends and computing paradigms are notoriously difficult to predict, but if you've been following them lately you've likely noticed two things that seem to gaining some traction: first is the notion that the PC is migrating to the living room, not new, but undoubtedly persistent. The second trend we've noticed is an increasing interest in virtual machines. + +Never one to shy from outlandish statements, Marc Cuban, HDNet chairman and dot-com billionaire, recently [posted an interesting vision of the future of home computing][1]. Cuban sees computing moving to game consoles for heavy duty apps that need processing power and the remaining casual apps, email, internet browsing, etc, will be done via internet-VM thin clients -- sans dedicated OS. + +The thin client notion has been around almost since Turing, but Cuban turns the age old debate on its head a bit by suggesting that the thin client will remain on the PC and the rest of our apps will move to the living room game console. He writes: + +>Gaming consoles are already serving as hosts for DVD , HD DVD and Blu Ray players, along with hard drive and USB support for video and pictures. Which leads to the question. Will gaming consoles replace PCs in the home, not just for gaming as they have done already, but also as the primary home device for all things graphical? + +It's certainly not that big of a stretch, clearly Microsoft is already moving in this direction with XBox movie downloads and bigger hard drives with every revision. Storage is not a problem, processor power is also not a problem. + +The big problem is that software for gaming consoles largely doesn't exist save those hobbyists who've got Linux running on various machines. Apple has long held to the dictum that to be a truly great maker of software you much also make the hardware, and with the Xbox Microsoft is clearly positioned to be able to just that. + +But Cuban thinks that there's another player better positioned to take advantage of this transition -- Google. "Google is in a unique position with their datacenters and infrastructure to dominate thin client computing and everything they are doing seems to point in that direction," Cuban writes. + +But Cuban has a slightly different vision of "thin-clients" than the one you might expect. He sees virtual machines as the future of thin clients. + +>VMs are more ideally suited for applications that don't chew up a lot of bandwidth, which is why the separation of multimedia applications to consoles is critical to VMs becoming popular. + +>If the heavy bandwidth apps are on gaming consoles, then why wouldn't consumers just connect to the net and use Google Office apps, or Microsoft Live Office Apps, or any other provider of online apps ? + +There are of course a number of obstacles to this scenario, the big one is the lack of bandwidth. As even Cuban admits, the lack of available bandwidth means that this "ain't gonna happen the way things stand today." + +However I've seen a couple of interesting details lately that Cuban doesn't mention that also support his theory. + +For one thing the next version of Firefox will [support working with online content offline][2]. This means that office documents from online service providers like Google Docs or Zoho can be edited in the browser even when the machine is offline. + +The other thing that Cuban seems to ignore is the drive to mobile devices. It seems more plausible to me that mobile devices as thin clients will replace the traditional PC. The small memory footprint (relatively speaking) of VM thin clients seems to make them ideal for the mobile platform. + +Of course, as with any predictive tract, there are some big holes in Cuban's vision, but it's not entirely far-fetched. I do have trouble picturing people editing photoshop files via the XBox or PS3, but the VM-based web apps as a replacement for desktop software seems almost a given. + +As Cuban writes: + +>Which is a better development platform for app developers of the future, Vista or a Google Virtual Machine ? + +>Which is a better consumer platform, using any low end PC to run all your non-multimedia apps, or worrying about upgrading to VIsta ? Buying the latest Office apps or running them for free online ? + +[via Epicenter][3] + +[1]: http://www.blogmaverick.com/2007/02/11/the-future-of-personal-computing/ "The Future of Personal Computing?" +[2]: http://www.drury.net.nz/2007/02/03/firefox3-web-apps-game-changer/ "Firefox3: Web Apps Game changer" +[3]: http://blog.wired.com/business/2007/02/mark_cuban_is_s.html "Mark Cuban is smarter than you think"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/else.txt new file mode 100644 index 0000000..307a936 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/else.txt @@ -0,0 +1,17 @@ +Elsewhere on Wired: + +* It was wildly reported today that Michael Crook, the "internet griefer who deluged web hosting providers with false copyright takedown notices over an unflattering television screenshot," as Ryan Singel of 27B Stroke 6 puts it, has agreed to retract all the notices as part of a settlement with the EEF. However, [according to Singel][1] there are further terms which have not yet been disclosed -- we can hardly wait. + +[1]: http://blog.wired.com/27bstroke6/2007/02/dmca_abuser_ret.html "DMCA Abuser Retracts" + +* Speaking lawsuits, Listening Post's Eliot Van Buskirk [points out][2] that a new website from the RIAA, P2PLawsuits.com, which is currently a parked domain hosted by GoDaddy, is serving up ads for P2P clients. Oh sweet irony. + +[2]: http://blog.wired.com/music/2007/02/riaa_to_launch_.html "RIAA to Launch P2PLawsuits.com" + +* Table of Malcontents as cool [painting of unknown origin][3] that reminds a bit of something Henry Darger would have painted. + +[3]: http://blog.wired.com/tableofmalcontents/2007/02/deviant_artists.html "Deviant Artists of the Day: Jorge and Alma???" + +* Bodyhack has coverage of my favorite but of news for the day: [Midday naps good for your health][4]. + +[4]: http://blog.wired.com/biotech/2007/02/check_out_in_mi.html "Check Out in Midday and Live Longer?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/end.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/end.jpg Binary files differnew file mode 100644 index 0000000..f1297f2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/end.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/marc-cuban.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/marc-cuban.jpg Binary files differnew file mode 100644 index 0000000..09139c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/marc-cuban.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/nightly.txt new file mode 100644 index 0000000..6448094 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/nightly.txt @@ -0,0 +1,23 @@ +The Nightly Build: + +* Los Angeles Mayor Antonio Villaraigosa [wants to blanket all of Los Angeles][1] with free or very cheap wireless Internet service by 2009. If he carries through with the the plan it would create the nation's largest municipal Wi-Fi network. Great now that I'm moving. + +[1]: http://www.latimes.com/news/local/la-fi-wifi14feb14,0,3502072.story?coll=la-home-headlines "Villaraigosa pledges citywide Wi-Fi by 2009" + +* Google lost its case against some Belgium newspapers that [want to be removed][3] (or get revenue sharing) from Google's news database. Apparently they feel they're better off without the traffic. The mostly French language newspapers claim... wait, I can just stop there can't I? + + + +[3]: http://www.iht.com/articles/ap/2007/02/13/business/EU-FIN-Belgium-Google-vs-Newspapers.php "Google loses copyright case launched by Belgian newspapers" + +* This one is serious, sorry for including it between two jokey entries. The BBC has a great article on how [Iraqi civilians are using Google Earth images][4] to work out escape routes and routes to block in their efforts to avoid death squads and other violence. There were some stories in the media last week about insurgents using the same maps, hopefully the media will also pick up on the fact that the technology can help innocent people as well. [Thanks William] + +[4]: http://news.bbc.co.uk/2/hi/middle_east/6357129.stm "Iraqis use internet to survive war" + +* Today's (second) bit of web zen: [Jealous Astronaut the song][2]. + +[2]: http://www.jealousastronaut.com/ "the Jealous astronaut" + +[photo credit][5] + +[5]: http://www.flickr.com/photos/scragz/131809761/ "Flickr: End"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/reboot.txt new file mode 100644 index 0000000..91ce6be --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/reboot.txt @@ -0,0 +1,19 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* It took years of work and a ton of money for Hollywood to develop the AACS encryption scheme behind HD-DVD and Blu-Ray formats, it took hackers 3 months and some spare change for Mountain Dew to crack it. Following up on Muslix64's crack to extract volume keys, another user, Doom9, has [extracted the actual processing key][1] which means now you can break all AACS-locked discs. + +[1]: http://forum.doom9.org/showthread.php?t=121866&page=6 "Processing Key, Media Key and Volume ID found" + +* The One Laptop Per Child project has announced that it will [ship nearly 2,500][2] of its $150 laptops to eight nations this month. + +[2]: http://news.zdnet.com/2100-9584_22-6158664.html "Eight nations set to get $150 laptops" + +* My partner in crime at this site used to run a much-loved little OS by the name of BE, well he and other former BE OS can rejoice because the project [lives on under the name Haiku][3]. A small group of developers reverse-engineered BE and recently demoed a "pre-alpha" version. The lead developer tells TGDaily, "if I didn't have BeOS, I'd pack up all my computers and move to an Amish community." Now that's dedication. + +[3]: http://www.tgdaily.com/2007/02/12/haiku_beos_scale/ "It Lives! BeOS fans resurrect their favorite operating system" + +* Microsoft has [announced a beta testing phase][5] for its new Windows Home Server. In order to qualify for the testing phase, MS suggests you meet the following criteria: have two or more PCs, connect to the net via broadband and have a spare PC or server that can be dedicated to Windows Home Server software. If that sounds like you, [fill out the online survey][4] and MS will notify you if you're selected. + + +[4]: http://connect.microsoft.com/WindowsHomeServer "Windows Home Server" +[5]: http://news.com.com/2061-10805_3-6158755.html?part=rss&tag=2547-1_3-0-20&subj=news "Microsoft holding open house on Home Server"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/teddybear.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/teddybear.jpg Binary files differnew file mode 100644 index 0000000..f20c881 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/teddybear.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/thunderbird-bugs.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/thunderbird-bugs.txt new file mode 100644 index 0000000..62b5234 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/thunderbird-bugs.txt @@ -0,0 +1,12 @@ +<img alt="Thunderbirdlogo" title="Thunderbirdlogo" src="http://blog.wired.com/photos/uncategorized/thunderbirdlogo.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />When I [looked at Mozilla's Thunderbird 2.0 beta 2][1] a while back I claimed that the new beta was significantly less buggy than its predecessor. While I stand by that for the Mac OS X version, I've been using beta 2 under Vista and it's still quite buggy. + +Issues I've noticed include freezing while trying to move messages via drag and drop and a weird screen flicker that seems to happen randomly. The drag and drop issue appears to be related to IMAP since it doesn't happen when I log in to a POP account. + +The screen flicker is more a more drastic problem and highly annoying. Of course I should note that my Vista install is on Macbook with possibly outdated hardware drivers -- in other words, it may not be Thunderbird's fault. Still, no other app has caused the screen to dim out, go completely black and then return a second later. + +The likely cause seems like it would be some sort of screen refresh bug in Thunderbird. I've been digging through the [Bugzilla archives][2] trying to find something similar but so far I haven't turned anything up (I can only stare at that creepy red, bug-eating monster for so long at any one setting). If it turns out to be an unfiled bug, I will of course file it. + +And naturally this isn't meant as a slam of Thunderbird 2 since it's obviously still in a pre-release phase and bugs are to be expected. I just wanted to follow up for those users who may have been tempted to go ahead and start using the beta based on my previous review. + +[2]: https://bugzilla.mozilla.org/ "Bugzilla@Mozilla – Main Page" +[1]: http://blog.wired.com/monkeybites/2007/01/report_thunderb.html "Report: Thunderbird 2.0b2"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/valday.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/valday.txt new file mode 100644 index 0000000..ce2c812 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/valday.txt @@ -0,0 +1,14 @@ +It's nearly Valentine's Day, or Evil Marketing Wednesday as I like to call it, and to help you out with any last minute shopping confusion, Amazon has put together [a humorous list][3] of things your Valentine probably won't enjoy: + +* A really awesome sounding book entitled: Taxidermy Today +* Tick Nipper: Tick Removal Tool +* Wolf Urine Lure 32 oz +* Tapeworms: A Medical Dictionary, Bibliography, And Annotated Research Guide To Internet References + +And quite a bit more, including this, which I would personally be thrilled to receive on Valentine's or any other day: [Teddy Bear Cannibal Massacre][1]. + +[via The Consumerist][2] + +[1]: http://www.amazon.com/gp/product/0976654601/ref=cm_gift_gg_0976654601/102-0123733-3528963 "Teddy Bear Cannibal Massacre (Paperback)" +[2]: http://consumerist.com/consumer/amazon/amazons-valentines-day-bad-gift-ideas-236272.php "Amazon's Valentine's Day Bad Gift Ideas" +[3]: http://consumerist.com/consumer/amazon/amazons-valentines-day-bad-gift-ideas-236272.php "Amazon's Valentine's Day Bad Gift Ideas"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/vista-macbook-wireless.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/vista-macbook-wireless.jpg Binary files differnew file mode 100644 index 0000000..07313b7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/vista-macbook-wireless.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/wireless.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/wireless.txt new file mode 100644 index 0000000..9c4d3dd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Tue/wireless.txt @@ -0,0 +1,30 @@ +If you're having problems getting a Boot Camp installation of Windows Vista to recognize your wireless card, I may have a solution for you. + +I wrote once before about [installing Vista on a MacBook][5]. At the time the main purpose for doing so was to test the new Office 2007 suite so I never really tried to get online or do much with Vista. I then used Parallels to migrate my partition over to a virtual drive. + +Since then I decided that for software testing purposes it would be better to have a native install of Vista rather than a virtualized one. I used this as an excuse to reinstall everything, including OS X, which all went off without a hitch. + +I [downloaded Boot Camp][6] from the Apple site and installed the Boot Camp Assistant. I then used the assistant to partition off a bit of my hard drive, popped in the Vista CD and everything went swimmingly for the initial installation. + +Drivers, however, are another story. The disc that Boot Camp burns turned out to be useless for me, though I was able to get the keyboard drivers installed using [this tutorial][2] (also worth grabbing is the autohotkey file at the bottom of the tutorial which will let you turn Apple-click into right-click since Apple still refuses to use two-button trackpads). + +I was able to connect to the internet via Ethernet out of the box, but the one thing that just wasn't working was the wifi. I searched and scoured for anyone who'd tackled the issue and quickly realized that for most people the Apple drivers seem to work fine, even if you have to [extract them yourself][1]. + +However, those of us with Core 2 Duo Macbooks (and I presume Macbook Pros) have a different wireless chip so the drivers currently bundled with Boot Camp don't work. After several hours of frustration I [ran across this brilliant tidbit][3] by a poster named Ernie Soffronoff on the MacInTouch forums. + +Soffronoff points out that, while there are no official drivers from Apple or Atheros, the same Atheros chipset is used in some of IBM's Thinkpads and there's an Windows XP driver for the Thinkpads. + +I [downloaded the driver][4] and installed it successfully. Soffronoff says that after he double-clicked to install the driver nothing happened and then "Vista came up and asked if I wanted to try to run the installer again with 'recommended settings' -- I said OK and this time it ran with no problem." I didn't have that issue, mine worked the first time -- YMMV. + +Once I restarted Vista a notice came up saying a new device had been installed. I was then able to connect via wifi without a problem -- sweet. + +So there you have it, if you've been having problems getting Vista and wifi working on your Macbook Core 2 Duo, give the IBM drivers a try. It seems to work, the speeds aren't quite as good as what I get with the OS X drivers, but it's useable and seems to be perfectly stable. Hopefully at some point Apple will upgrade the driver package in Boot Camp to offer better support, but in the mean time this will have to do. + +Note that this is certainly not supported by any of the companies involved and could conceivably do very bad things to your system, though I doubt it. + +[1]: http://www.apcstart.com/4276/how_to_wrangle_boot_camp_1_1_2_drivers_into_windows_vista_rc2 "HOW TO: Wrangle Boot Camp 1.1.2 drivers into Windows Vista RC2" +[2]: http://jannis.to/daily/archives/745-Installing-Vista-on-a-MacBook.html "Installing Vista on a MacBook" +[3]: http://www.macintouch.com/readerreports/vista/topic4532.html "Macbook Wifi in Boot Camp installed Vista" +[4]: http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-66449 "Thinkpad Atheros XP drivers" +[5]: http://blog.wired.com/monkeybites/2007/01/windows_vista_u.html "Windows Vista Under Parallels" +[6]: http://www.apple.com/macosx/bootcamp/publicbeta.html "Boot Camp beta"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/crystalball.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/crystalball.jpg Binary files differnew file mode 100644 index 0000000..e1eda88 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/crystalball.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/else.txt new file mode 100644 index 0000000..9a67a8c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/else.txt @@ -0,0 +1,22 @@ +Elsewhere on Wired: + +* Wired's Kevin Axline has your Valentine's day guide to [winning the heart of your Flickr crush][4], along with some hilarious recommendation and photographs. We at Monkeybites are of the opinion that there's a good chance your Flickr crush is actually some sort of art/sociology project designed to mess with your head and create an online persona similar to lonelygirl15 -- especially if your crush happens to be the [preternaturally talented Miss Aniela][5]. Of course we've been wrong once or twice. + +[4]: http://blog.wired.com/wiredphotos41/ "How To Turn Your Flickr Crush Into Real Romance" +[5]: http://www.flickr.com/photos/ndybisz/ "Miss Aniela's photos" + +* Which reminds me, I've been meaning to say this for some time: Flickr is the new MySpace. OMG! + + +* Anyway. Table of Malcontents wins today's best title (they always win best title, damn them) for this ditty: [Parasitology of Blogging][6]. "In the sea of the internet, blogging is a million lampreys sucking on the bloated cephalopod of a giant squid feeding upon the tiny Nautilus of a single unique thought." Yup, that about covers it. + +[6]: http://blog.wired.com/tableofmalcontents/2007/02/parasitology_of.html "Parasitology of Blogging" + +* Talk about getting screwed, 27B Stroke 6 reports that travel author Edward Hasbrouck was invited to attend the aviation security summit in Washington yesterday, paid his own way, sat quietly in the back and was then [ejected][1] because his name tag read: Author. Wired reporter Bob Usselman was [barred at the door][2] along with the rest of the press. + +[1]: http://blog.wired.com/27bstroke6/2007/02/aviation_lockou.html "Aviation Lockout Update" +[2]: http://blog.wired.com/27bstroke6/2007/02/aviation_securi.html "Aviation Security Conference Closed to Undesirables" + +* Cult of Mac has a [hands on review][3] of the new Airport Extreme -- sounds pretty sweet. + +[3]: http://blog.wired.com/cultofmac/2007/02/review_new_airp.html "Review: New Airport Extreme Completely Rules "
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/krugle.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/krugle.txt new file mode 100644 index 0000000..610f76c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/krugle.txt @@ -0,0 +1,20 @@ +The Yahoo Developer Network has partnered with the code search engine [Krugle][1] to add a nice [code searching interface][2] to the Developer Network website. Wired has [previously covered Krugle][3] about this time last year when it launched and, for my money, it's still the best code search engine out there. + +The new search engine in the Yahoo Developer Network site integrates most of the features of Krugle into the home page. In fact from the looks of it, Yahoo pretty much just added their logo and otherwise the layout and design of the site is nearly identical to the Krugle homepage. + +The really nice thing about Krugle is that, unlike many code search engines, you can search code, tech pages or projects. Even better, within a code based search you can specify that the search terms should appear in comments, code, function call, function definition, class definition or all of the above. This kind of fine grained filtering makes it much easier to find exactly what you want. + +The results on Yahoo's new Krugle integrated search match those of the main Krugle site (see example screenshot below) and the search is lightening fast. Apparently Yahoo Developer Network launched before the Krugle folks had time to index Yahoo's own documentation and code, but that oversight is expected to be fixed soon. If you have other suggestions or features you'd like to see, Yahoo is [soliciting feedback][6]. + +I find it interesting that code search is such a hot vertical market -- it seems that every week there's a new code search engine popping up. We recently [looked at AllTheCode][4] and I found [this post][5] on the Krugle blog that lists fifteen other code search engines. + +As a some time developer myself it's nice to have so many options but I can't help wishing a Krugle for blog searches would pop up, neither Technorati nor Google Blog Search have ever impressed me. + +I'd hardly be original if suggested that vertical search is the future of the internet. I have no doubt that a generalized Google search will always be useful for some, but increasingly, to really find quality results, you need to narrow your searching pool. Searching a subset of the web -- Code, Blogs, News, Medical, etc -- is in the end perhaps the only way to make sense of it. + +[1]: http://www.krugle.com/ "Krugle Code Search" +[2]: http://ydn.krugle.com/ "Yahoo Developer Network Code Search" +[3]: http://www.wired.com/news/technology/0,70219-0.html "Here Comes a Google for Coders" +[4]: http://blog.wired.com/monkeybites/2007/02/allthecode_a_se.html "AllTheCode: A Search Engine For Programmers" +[5]: http://blog.krugle.com/?p=223 "A bushel of code search engines" +[6]: http://suggestions.yahoo.com/?prop=ydn "Yahoo Developer Network Suggestions"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/lonely.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/lonely.jpg Binary files differnew file mode 100644 index 0000000..4ba0432 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/lonely.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/mactactic.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/mactactic.txt new file mode 100644 index 0000000..843ab57 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/mactactic.txt @@ -0,0 +1,9 @@ +Mactactic is a goofy little website that purports to predict Mac hardware updates. The predictions are based on product life-cycle history and other mojo. Mactactic has wisely included the following disclaimer: "No responsibility is taken for the accuracy of any data on this website." + +Predicting anything Mac related is somewhat akin to bending metal spoons, but if nothing else the site is a quick way to see how long a particular piece of Mac hardware has been on the market. + +Right now the hardware listings are somewhat incomplete, the basic computers are there, but the only iPod listed is the 5G video. + +Really the only good rule of thumb for buying new Mac hardware is don't do it at Christmas. Apple's January Macworld conference almost always sees the introduction of some kind of new hardware and with my Murphy's law luck it's inevitably whatever I bought during the holiday season. + +If you really trust Mactactic there's even a dashboard widget you can download. Mactactic gets bonus points for being built with Django.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/nightly.txr b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/nightly.txr new file mode 100644 index 0000000..6788aa8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/nightly.txr @@ -0,0 +1,27 @@ +The Nightly Build: + +* Along with the Window's updates we [mentioned this morning][8], Microsoft has also released a new [security update for Mac Office 2004][6]. The patch address a vulnerability that could allow attackers to overwrite the contents of your computer's memory with malicious code. + +[6]: http://www.microsoft.com/mac/downloads.aspx?pid=download&location=/mac/download/Office2004/Office2004_1134.xml "Microsoft Office 2004 for Mac 11.3.4 Update" +[8]: http://blog.wired.com/monkeybites/2007/02/the_morning_reb_8.html "The Morning Reboot Wednesday February 14" + +* GMail is finally [open to the public.][7] We're serious this time. It really is. Possibly. I was able to sign up straight from the page and that's all I'm willing to commit to, having been burned by reporting this story twice already. **YMMV** + +[7]: https://www.google.com/accounts/ServiceLogin?service=mail&passive=true&rm=false&continue=http%3A%2F%2Fmail.google.com%2Fmail%2F%3Fui%3Dhtml%26zy%3Dl<mpl=ca_tlsosm<mplcache=2 "Gmail Public" + +* ZDNet [reports][1] that the hard drive stolen from the Birmingham VA Medical Center last week may have contained personal information on 535,000 people -- 10 times the amount originally estimated. Yeah that's the same VA folks that announced [increased security measures][2] last year. That worked well. [Via Techdirt][3] + +[1]: http://government.zdnet.com/?p=2918 "VA underestimated info on missing hard drive - tenfold" +[2]: http://www.baselinemag.com/article2/0,1540,1974652,00.asp "VA Secretary Announces New Security Measures" +[3]: http://techdirt.com/articles/20070214/064307.shtml "Latest VA Data Breach Worse Than Initially Reported" + +* A US Group [wants Canada listed][5] on the infamous blacklist of intellectual property villains, alongside China, Russia and Belize. That group is naturally made of of the RIAA, the MPAA, the BSA, the ESA, which is way too many acronyms in one sentence so we're following BoingBoing's lead and mashing them to just read: [MAFIAA][4]. But remember to sing: Blame Canada, blame Canada! Everybody Now. + +[4]: http://www.boingboing.net/2007/02/14/mafiaas_list_of_enem.html "MAFIAA'" +[5]: http://www.theglobeandmail.com/servlet/story/RTGAM.20070214.wblacklist14/BNStory/National/home "U.S. group wants Canada blacklisted over piracy" + +* Today's web zen doesn't exist, how zen is that? + +[photo credit][11] + +[11]: http://www.flickr.com/photos/alan-light/213239498/ "Flickr: valentinep"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/reboot.txt new file mode 100644 index 0000000..72e9c22 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/reboot.txt @@ -0,0 +1,17 @@ +The Morning Reboot: + +* Microsoft has a Valentine's Day present for you in the form of security patches. There are [patches for eleven vulnerabilities][1], including six which Microsoft lists as critical. Update thyself and be merry. + +[1]: http://www.microsoft.com/technet/security/bulletin/ms07-feb.mspx "Microsoft Security Bulletin Summary for February, 2007" + +* Paypal is moving to a [token system to heighten security][2] and they plan to charge customers $5 for the additional peace of mind. However, as the BBC article points out, "all authentication with a token proves is that you have the token in your possession." + +[2]: http://news.bbc.co.uk/2/hi/technology/6357835.stm "PayPal introduces security token" + +* Ubuntu Linux has decided to stick with free drivers, the upcoming release of Feisty Fawn [will not ship with any proprietary video drivers][3]. Ubuntu does however ship with some proprietary wireless drivers largely because no free drivers exist. The Ubuntu team also notes that the PowerPC port has been downgraded to an unofficial release. + +[3]: http://enterprise.linux.com/article.pl?sid=07/02/13/1943218&from=rss "Ubuntu says no to non-free video drivers for Feisty" + +* The Associated Press is running an extremely short story on Middlebury College's decision to [prohibit students from using Wikipedia][4] when writing papers. I have no idea why that's considered news, but the article does contain the best synopsis of Wikipedia-as-reference-tool that I've read: "Wikipedia is an ideal place to start research but an unacceptable way to end it." + +[4]: http://news.yahoo.com/s/ap/20070213/ap_on_fe_st/wikipedia_ban;_ylt=AhA2JzGrL43zp0A3ZmNeReftiBIF "College: Wikipedia not source for papers"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/search-results.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/search-results.jpg Binary files differnew file mode 100644 index 0000000..aac07bd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/search-results.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/utorrent-speed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/utorrent-speed.jpg Binary files differnew file mode 100644 index 0000000..a12e46b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/utorrent-speed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/utorrent.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/utorrent.jpg Binary files differnew file mode 100644 index 0000000..3e7ea85 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/utorrent.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/utorrent.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/utorrent.txt new file mode 100644 index 0000000..954f1ff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/utorrent.txt @@ -0,0 +1,23 @@ +The popular lightweight torrent program, [µTorrent][4], has been updated to version 1.6.1. This is an incremental update doesn't bring any spectacular new features , but it does fix a serious security vulnerability and it's the first official release since [BitTorrent acquired][6] µTorrent. + +I downloaded and tested the new version earlier today. As with past versions, 1.6.1 is fast and sleek -- still my favorite torrent program -- but I had to look up the new features in the [change log][3] to actually notice anything different from previous versions. + +The new encryption option in the "Speed Guide" menu makes it easy to to encrypt your traffic, if your ISP is tracking your downloads and slowing your bandwidth. If you notice your torrents slowing down over time, this could be part of the problems. + +The other main feature noted in the release announcement is the addition of the download speed selector as a contextual menu item. It's not exactly something to jump up and down about, but it does make it easier to control both upload and download bandwidth caps. + +Aside from the handful in interface changes, the main focus of µTorrent 1.6.1 is bug fixes, and the most important is a patch for the fairly [serious security vulnerability][1] that plagued version 1.6. Granted this flaw has been patched for some time in beta versions, but this is the first official release to take care of the problem. + +As an incremental update 1.6.1 is a long time coming, especially considering the known exploit that threatened l.6, hopefully the future development of µTorrent will be somewhat faster. In the mean time because of the bug fixes and moderately useful UI add-ons, I recommend updating your copy. + +Also note that 1.6.1 isn't listed on µTorrent's download page as of this writing, however TorrentFreak posted this [direct link][5] for the impatient. + +[via TorrentFreak][2] + + +[1]: http://forum.utorrent.com/viewtopic.php?id=19775 "µtorrent 1.6 Remote Announce Heap Overflow Exploit POC" +[2]: http://torrentfreak.com/utorrent-161-released/ "µTorrent 1.6.1 Released" +[3]: http://forum.utorrent.com/viewtopic.php?id=11463&p=11 "µTorrent 1.6 released" +[4]: http://blog.wired.com/monkeybites/2006/10/best_of_bt_torr.html "Monkeybites on µTorrent" +[5]: http://download.utorrent.com/1.6.1/utorrent.exe "utorrent.exe download" +[6]: http://blog.wired.com/monkeybites/2006/12/bittorrent_inc_.html "BitTorrent Inc. Acquires µTorrent"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/val_key.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/val_key.jpg Binary files differnew file mode 100644 index 0000000..853c67f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/val_key.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/valentine.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/valentine.jpg Binary files differnew file mode 100644 index 0000000..c303a62 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/valentine.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/ydn-code-search.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/ydn-code-search.jpg Binary files differnew file mode 100644 index 0000000..5104f33 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/Wed/ydn-code-search.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/laptopdestruction.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/laptopdestruction.txt new file mode 100644 index 0000000..96844f6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.12.06/laptopdestruction.txt @@ -0,0 +1,43 @@ +There's been some talk 'round these parts about a series of how-to type articles and while that sounds great and all I just got back from an extended stay in Asia and I feel such a project would necessarily require a balancing counterpart -- how-not-to articles. + +This started out as an attempt to combine two broken half broken iBooks into one working iBook which my folks could use when they travel. Utilizing my training as a certified Apple repair technician I was able to successfully remove the screen and trackpad from one iBook and place them in the other to create a fulling working, good as new iBook. + +Okay that's a lie. I'm not a certified Apple technician, but I was able to convert my two half-broken iBooks into two completely broken iBooks. Read on to find out how I did it. + +A word of warning for the casual reader: What follows is a graphic depiction of carelessness, stupidity and total disregard for the structural integrity of pricey electronic equipment and human life. Sickness bags may be found in the seat back in front of you. + +I'm told there are some instructions out there on the internets about how to disassemble your iBook and replace the hard drive, cd drive etc. Some of them are supposedly quite good and helpful, but I'm not a RTFM kind of guy so screw that noise. + +Here's the Monkeybite's rule of thumb for disassembling your iBook: if you see a screw, remove it, if it isn't coming apart, apply more pressure, it's just plastic, it'll break at some point. + +Now before we get started, a word about tools. Some people would have you head to the hardware store and pick up a nice set of jewelers screwdrivers, but I recommend a regular screw driver because it is far more likely to completely strip the screws and render them useless which makes reassembly much easier -- if none of your screws work anymore, you don't have to put them back. + +There's also these handy blunt objects for prying things apart, but I find a sturdy steak knife works just as well. You may want to keep a hammer near by, just in case. If nothing else it makes spectators nervous and unlikely to offer any annoyingly helpful advice. + +Some people also recommend the use of an anti-static wrist strap, but I found it far more convenient and cheaper to discharge any accumulated static electricity on the earlobes of spectators. + +Also, lots of hardware tinkering types have a nice workbench or at the very least clear off the kitchen table. Wussies. Get on your knees. On the floor. Preferably hardwood. Ideally you shouldn't be able to stand by the time you're done, and walking should be out of the question for the better part of the weekend. + +Okay, we're ready. Remove the keyboard. Turn the iBook over and use an Allen wrench to pull out the three main screws. Pry off the little rubber feet and remove the screws hidden beneath them. + +Look over the top and bottom of the laptop and if you see a screw -- remove it. + +At some point the overall structure of the iBook should begin to weaken, now is the time to start prying at plastic. Look for any sort of grooved plastic joints, structural weaknesses, the seam between the top and bottom of the iBook is a good place to start. Jab a sharp blunt object into these creases and pry them apart, a screwdriver might work, but if not then steak knives are recommended. + +Remember, if it isn't coming apart just use more force. + +Once you've separated the top and bottom of your iBook you'll be left with a whole bunch of silly metal heat-shield-like coverings. These are held in with screws and I suppose you could unscrew them if you're a Proustian-type momma's boy, but really this stuff if no thicker than aluminum foil so I just ripped it off. If John Glenn can make it back from the moon without a heat shield then your ultra modern portable can too. + +Okay now you're staring at the guts -- a mass of circuit boards that bear an eerie resemblance to aerial views of the machine city in the Matrix. If you notice any fields of human embryos be sure not to mess them up, just because you're destroying an iBook is no reason to mess with the universe as we know it. + +Near the top of your iBook you'll find the central processing unit. Poke it it with a knife. See if any keys move or the screen changes. If you're the cautious type and you turned off your laptop and unplugged it before we started you're going to miss out on the real fun. Just off the main CPU is the logic board. poke it with a screwdriver. Try pulling off a couple of the wires that run up to the screen so that your display begins to resemble what Steve and Woz saw in their garage in the late seventies when that bad blotter stuff was making the rounds. + +Okay now you can unplug it. Unscrew and remove the CPU. I don't know why, because it's there. Stop asking so many questions. + +Now it's time to scavenge useful parts, that hard drive could go in its own enclosure so go ahead and remove it. There's a thin metal mounting frame you can optionally remove or simply force your steak knife underneath the drive and pry upward. Bonus points for remembering to detach the connection wires before inserting steak knife. + +Now would be a good time to yell "Nurse, ball-peen hammer please." Yes some things are stubborn and may necessitate more radical solutions, like that F'ing CD ROM drive which for the life of me I couldn't get out. + +Now that you've retrieved the hard drive and CPU and have a healthy collection of well-stripped phillips head screws scatter across the floor, it's time to put the thing back together. Good luck with that. + +[Note: All the the above is incredibly stupid and should not actually be done. Especially the part about plugging in the laptop and poking it with screw drivers. You could really really hurt and possibly even kill yourself doing that. Monkeybites in no way encourages, endorses or otherwise recommends that you do that, nor can we be held responsible, libel or accountable in anyway if you're dumb enough to take this post seriously.] diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ZZ2A1FCD2F.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ZZ2A1FCD2F.jpg Binary files differnew file mode 100644 index 0000000..1217c9c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ZZ2A1FCD2F.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ZZ50C892D0.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ZZ50C892D0.jpg Binary files differnew file mode 100644 index 0000000..04ffe61 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ZZ50C892D0.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/booksearch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/booksearch.txt new file mode 100644 index 0000000..bec148f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/booksearch.txt @@ -0,0 +1,19 @@ +The Google Search API can be overwhelming with its myriad of options and possible uses, which is why Google has a whole section of "[Wizards][1]." Tools like the [Map Search Wizard][2] and the [News Bar Wizard][3] make it easy to generate cut-and-paste code that you can drop into your site. + +Earlier today I ran across a new wizard called the [Book Search wizard][4]. Google bills the Book Search Wizard as a means to show off books that interest you on your blog. While there's no click through revenue to be made since the links just lead to Google Books, it's an easy way to help others discover books you've enjoyed or found helpful. + +To use the Book Wizard (or any other wizard) you'll need to have a free Google Search API key. Once you've got your API key all you need to do is select some book topics and enter your blog URL. You can also choose between vertical or horizontal layout. The wizard will do the rest. + +The resulting code can then be dropped anywhere on your page and you'll see something like this: + + +In this case I enter Python, Javascript and Perl, though after hitting refresh a few times this resulting books seem heavily weighted to the first entry -- python. + +In this case a fair number of the results are O'Reilly books which is nice for viewers since the fulltext of O'Reilly books are viewable in Google books (most of the time, some sections are occasionally not included). Depending on your search terms and the results they generate the books may or may not be fully searchable. + + + +[1]: http://code.google.com/apis/ajaxsearch/wizards.html "Google AJAX Search API Wizards" +[2]: http://www.google.com/uds/solutions/wizards/mapsearch.html "Map Search Wizard" +[3]: http://www.google.com/uds/solutions/wizards/newsbar.html?uds_o=0 "News Bar Wizard" +[4]: http://www.google.com/uds/solutions/wizards/bookbar.html "Book Bar Wizard"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/else.txt new file mode 100644 index 0000000..1c80342 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/else.txt @@ -0,0 +1,17 @@ +Elsewhere On Wired: + +* Leander Kahney at Cult of Mac is trying to [figure out][2] the long term implications of the recent Apple/Cisco iPhone name agreement. Could it, for instance, mean that Apple's iPhone will never be able to support VOIP? + +[2]: http://blog.wired.com/cultofmac/2007/02/is_voip_why_cis.html "Is VOIP Why Cisco Wants From the iPhone?" + +* Epicenter's coverage yesterday of the Google Apps challenge to Microsoft's office software dominance inspired reader Andrew Melcher to [write a long comment][1] which contains, among other things, the best description of Google that I've seen in a long time: "Google is now the Internet’s dominant source of intelligence -- its dominant brain -- a rudimentary and non-conscious brain, but a brain nonetheless. A brain that suppresses noise and amplifies the quality signals of its component cells (web sites and web surfers evaluating those cells). The cells that scream spammy nonsense get suppressed. The cells that are well-regarded get automatically driven to the top where they can become global thoughts for anybody that is interested in that subject." + +[1]: http://blog.wired.com/business/2007/02/lethal_impact.html "More Better Meta" + +* Wired Science's Greta Lorge [writes about girih][3], the incredibly intricate patterns that cover Islamic mosques and palaces dating from the medieval age. It turns out that some of these patterns involved advanced geometry that wouldn't be discovered in the Western world until 500 years later. Lorge also has links to an excellent *Science* article on the subject. + +[3]: http://blog.wired.com/wiredscience/2007/02/finding_math_in.html "Finding Math in the Muslim World" + +* John Brownlee at Table of Malcontent's has [dug up a great video][4] entitled "How To Cook A Beat" featuring the beatbox stylings of a man in a blond wig. + +[4]: http://blog.wired.com/tableofmalcontents/2007/02/how_to_cook_a_b.html "How To Cook A Beat"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/google-code.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/google-code.jpg Binary files differnew file mode 100644 index 0000000..648d062 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/google-code.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/nightly.txt new file mode 100644 index 0000000..21f8a88 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/nightly.txt @@ -0,0 +1,17 @@ +The Nightly Build: + +* It took all of a month. Yes Virginia, there appears to be a [serious exploit/flaw in Microsoft's new Office 2007][3] software. The exploit affects Microsoft Office Publisher 2007 and would allow an attacker to create a malicious publisher file, which, when opened, could leave the victim's system infected and susceptible to a remote attacks. + +[3]: http://news.com.com/Flaw+found+in+Office+2007/2100-1002_3-6161835.html?tag=nefd.top "Flaw found in Office 2007" + +* Gizmodo wants everyone to [boycott RIAA music][2] for the month of March. Instead they'd like to see people support bands without supporting the RIAA, i.e. buy indie records, go to shows and buy DRM free downloads. Its a nice thought, however, call me cynical but I have a feeling most of the people who would really get behind this probably haven't bought a CD since Napster debuted. + +* Estonia will be the first country in the world to [allow internet voting][4] in a national election. Estonia has allowed internet voting in local elections since 2005. + +[4]: http://www.iht.com/articles/2007/02/22/business/evote.php "Estonians will be first to allow Internet votes in national election" + +* Today's web zen: [Yoshihiko Satoh artworks][1] + +[1]: http://www.makezine.com/blog/archive/2007/02/yoshihiko_satoh.html "Yoshihiko Satoh artworks" + +[2]: http://gizmodo.com/gadgets/home-entertainment/putting-our-money-where-our-mouths-are-boycott-the-riaa-in-march-239281.php "Boycott the RIAA in March"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ogg.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ogg.jpg Binary files differnew file mode 100644 index 0000000..f09a248 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ogg.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ogg.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ogg.txt new file mode 100644 index 0000000..cb71b95 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/ogg.txt @@ -0,0 +1,26 @@ +Listening Post's Eliot Van Buskirk [wrote an article today][3] for Wired News about the recent patent lawsuit between Microsoft and Alcatel-Lucent. A federal jury ordered Microsoft to pay Alcatel-Lucent $1.52 billion for patent infringements involving the MP3 audio-compression format. + +One the potential bits of fallout from the recent ruling is that now, to a certain extent, all MP3 licenses are on questionable legal footing. As Buskirk points out, there are number of competing formats that may benefit from this, most notably the audiophile favorite -- [Ogg Vorbis][4]. + +For years now one of my audiophile friends has been going on about how great Ogg Vorbis is and how I need to convert my whole music library to Ogg Vorbis. As it stands my library is about 120 GB so that's no light undertaking and, as my friend will admit after a few drinks, converting MP3s to Ogg Vorbis files won't give me the additional sound quality the format is famed for since the files are already compressed. + +To be honest though, I *would* rather have my files in an open format, but unfortunately Apple doesn't support .ogg files on the iPod and that remains a deal breaker for me. + +There are some plugins that will let you play .ogg files in iTunes. A couple months back I [wrote about the Quicktime 7 ogg components][2] from [Xiph][1] (note that, as I mentioned in that original article, I've never gotten the FLAC support to work, but Ogg Vorbis component works fine). + +But the Quicktime plugins only solve half of the problem -- playback. If I really wanted to embrace Ogg Vorbis, I'd need an encoder/converter as well. Unfortunately the QuickTime 7 codec plugins from Xiph don't support encoding (the Quicktime 6 version did for those of you on older systems). + +The official Ogg Vorbis site recommends [Ogg Drop][5] for encoding, and I also found a nice looking free, open source Mac app by the name of [Max][6], which supports encoding/converting of some 20 different formats including Ogg Vorbis. + +Of course none of this addresses my main complaint about Ogg Vorbis -- the iPod problem. Gizmodo [wrote an open letter to Apple][7] almost three years ago asking them to support Ogg Vorbis. According to Ogg's developer the iPod could handle it and in fact todays article quotes him as saying Apple has had "several chances" to add Ogg support, but "passed each time." At this point I think it's safe to assume Apple has no plans to do so, since they seem quite happy with AAC. + +I just downloaded Max and Off Drop which I'm planning to try them out over the weekend, but in the mean time does anyone else have any other suggestions for people looking to try out Ogg Vorbis? Linux has good Ogg Vorbis support I know, but what about Windows? And is there some obscure firmware hack that lets .ogg files play on the iPod? + + +[1]: http://www.xiph.org/quicktime/download.html "Ogg Vorbis QuickTime Components" +[2]: http://blog.wired.com/monkeybites/2007/01/plugin_adds_ogg.html "Plugin Adds Ogg/FLAC Support In ITunes" +[3]: http://www.wired.com/news/culture/music/0,72785-0.html "MP3's Loss, Open Source's Gain" +[4]: http://www.vorbis.com/ "Ogg Vorbis" +[5]: http://www.nouturn.com/oggdrop/index.php "Ogg Drop" +[6]: http://sbooth.org/Max/ "Max" +[7]: http://gizmodo.com/archives/open-letter-to-apple-ogg-for-us-please-015547.php "Ogg For Us, Please"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photob-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photob-logo.jpg Binary files differnew file mode 100644 index 0000000..e877d9b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photob-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photob1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photob1.jpg Binary files differnew file mode 100644 index 0000000..97e597a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photob1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photob2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photob2.jpg Binary files differnew file mode 100644 index 0000000..257459f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photob2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photobucket.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photobucket.txt new file mode 100644 index 0000000..9898dc2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/photobucket.txt @@ -0,0 +1,27 @@ +Earlier this week Adobe and [Photobucket][2] [announced][1] a partnership to bring some Adobe Premier-like editing and remixing capabilities to Photobucket users. The new tool lets users take video and image clips and remix, caption and enhance them into new movies which can then be shared with the world at large. + +Currently the new Flash-based remixing app is limited to a beta trial for Photobucket pro members, but the service should be available to all Photobucket users sometime next month. + +I took Photobucket for a spin this morning and found that while the new tools are easy to use, the offerings are pretty limited even for a web-based app. + +Ars Technica [mentions][3] in their review that the tool didn't work in any Mac browsers, but I had no problems using it in Firefox, save needing to update to latest Flash Player. + +You'll find the new remixing tools on your main login page under the heading "Create Remix." Provided you have Flash Player 9.0.28, clicking the create remix plugin opens up the tool and loads your available media. Prior to arriving at the Flash page, you'll be asked if you want to upload any video or images. + +Once you've got the media loaded, the editing tool is a drag and drop interface that uses a simple timeline paradigm. A library on the right side of the screen displays all your media elements. Drag your pictures or videos onto the timeline and then you can add captions, borders, transitions and music. + +There didn't seem to be a way to create your own border, though I suppose you could just upload your own images with the appropriate transparency, which is a good thing because most of the frames Photobucket provides are fugly -- hearts anyone? Corrugated metal? + +And that's about it. There's no way to resize any of the media elements, though you can trim and split video into multiple chunks. + +There's an undo button, but it only applies to the last action. And as with any Flash application, the back button is a no-no. I managed to destroy my initial attempt at a mix because I instinctively hit the back button to undo an action. + +The oddest thing about the remixer is the inability to upload and add your own music. No doubt there's some copyright concerns lurking behind that decision, but regardless of the reason most users are going to find the lack of music options discouraging. + +Once you've got your remix in working order you can preview and then save your mix as a Flash SWF file on the Photobucket servers. Then it's time to spam it out to hapless victims via email and links. Photobucket's standard sharing tools are available -- import your address book from a web based mail service like GMail, or just enter addresses separated by commas. The published video page also provides embed links for a number of popular sites like Facebook and MySpace as well as forum code. + +I'll admit I was a little let down by Photobucket's new video remixer considering the amount of hype Adobe has put behind the project, touting it as a true web-based Premier Elements tool. While the average user will probably like the simplicity and ease of use, more adventurous users will probably want to stick with a desktop app like iMovie or Premier Elements. + +[1]: http://blog.wired.com/monkeybites/2007/02/the_morning_reb_13.html "Morning Reboot: Adobe and Photobucket partner for new Video tool" +[2]: http://photobucket.com/ "Photobucket" +[3]: http://arstechnica.com/news.ars/post/20070222-8905.html "Photobucket Video Remixer"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/reboot.txt new file mode 100644 index 0000000..321701e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Fri/reboot.txt @@ -0,0 +1,22 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Microsoft is [touting][1] some new news readers that use Vista technology to deliver headlines to your desktop. Both Forbes and Hearst have released applications that rely on Microsoft .NET 3.0 technologies available in Vista. + +[1]: http://www.microsoft.com/presspass/features/2007/feb07/02-22digitalreaderapps.mspx "New Ways to Reach Readers Using Windows Vista" + +* It appears that Mozilla is about ready to release a minor Firefox update. The official Firefox page still lists 2.0.0.1, but a poster in the [Neowin forum][4] has links to Firefox 2.0.0.2, including the thus far [blank release notes page][5]. Keep an eye on the main [Firefox page][6] as we expect this to be live later today, with the new version bringing some much needed bug fixes. + +[4]: http://www.neowin.net/forum/index.php?showtopic=541218 "Firefox 2.0.0.2 Released" +[5]: http://www.mozilla.com/en-US/firefox/2.0.0.2/releasenotes/ "Firefox 2.0.0.2 release notes" +[6]: http://www.mozilla.com/en-US/firefox/ "Firefox 2.0" + +* There's something strange going on over at Flickr. Users have reported strange photos showing up in their photostream, including in some cases pornographic images. The Flickr forums has a [post on the issue][7] which appears to have been [caused by internal server problems][9]. [via [CNet][8]] + +[7]: http://www.flickr.com/forums/help/33657/ "Phantom Photos -- My photos have been replaced with those of another" +[8]: http://news.com.com/2100-1025_3-6161469.html?part=rss&tag=2547-1_3-0-5&subj=news "Flickr shows a little too much skin" +[9]: http://blog.flickr.com/flickrblog/2007/02/crapola.html "Tonight's problems - an explanation" + +* A new blog has joined the Wired Blogs family. [Danger Room][3] will be covering security and weapon issues and tech, but isn't afraid delving into topics like [spear wielding chimpanzees][2] (I also love that the auto-title-truncation of our blogging tool renders the permalink for that article: "chimps_new_arse.html." + +[2]: http://blog.wired.com/defense/2007/02/chimps_new_arse.html "Chimps' New Arsenal" +[3]: http://blog.wired.com/defense/ "Danger Room"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/P1020070.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/P1020070.jpg Binary files differnew file mode 100644 index 0000000..f56f589 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/P1020070.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/guts.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/guts.jpg Binary files differnew file mode 100644 index 0000000..367bf55 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/guts.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/harddrive.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/harddrive.jpg Binary files differnew file mode 100644 index 0000000..975135e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/harddrive.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/ie7addons.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/ie7addons.txt new file mode 100644 index 0000000..e30b7ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/ie7addons.txt @@ -0,0 +1,15 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/images.jpeg" title="Images" alt="Images" style="margin: 0px 0px 5px 5px; float: right;" />The more I use Internet Explorer 7 the more I realize it's a clone of Firefox 2, which in turn, it could be argued, is a clone of Opera, which is probably a clone of some other obscure thing and so on ad nauseam. The revolutionary aspect of Firefox was it's extendibility, but IE 7 has added it's own improved extension capabilities. + +One feature IE 7 missed was Firefox 2's great built-in spell checker, but thanks to IE add-ons you can grab [ieSpell][3] and have your IE and your spell checking too. + +IeSpell does a nice job of staying out of the way until you need it. There are three ways to activate ieSpell, from the tools menu, from it's own top level menu and from the contextual (right click) menu. If you happen to using a branded version of IE7 such as those from MSN or AOL that last option will be your only means of accessing ieSpell. + +Last week we did a round up of our [favorite Firefox add-ons][4] and this week I'll be looking at some popular IE 7 add-ons. So far I like ieSpell, the [del.icio.us buttons][2] are nice (though not unique to IE 7) and [Inline Search][1] replicates Firefox's search features, though it lacks the handy "find as you type" feature. + +What are your favorite IE7 add-ons? I'd prefer to stick to the free options, but if there's a killer feature that's pay-only feel free to mention it. What I'd like to find is a [Tab Mix Plus][5] style feature for IE7, anyone have any suggestions? + +[1]: http://www.windowsmarketplace.com/details.aspx?view=info&itemid=3012162 "Inline Search for Internet Explorer" +[2]: http://del.icio.us/help/ie/extension "del.icio.us Buttons for Internet Explorer" +[3]: http://www.windowsmarketplace.com/details.aspx?view=info&itemid=1513531 "ieSpell" +[4]: http://blog.wired.com/wiredphotos37/ "Gallery: Best Firefox Add-Ons" +[5]: https://addons.mozilla.org/firefox/1122/ "Firefox: Tab Mix Plus"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/iespell.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/iespell.jpg Binary files differnew file mode 100644 index 0000000..719e0cd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/iespell.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/iespell2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/iespell2.jpg Binary files differnew file mode 100644 index 0000000..727e769 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/iespell2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/kungfuapple.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/kungfuapple.jpg Binary files differnew file mode 100644 index 0000000..134778e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/kungfuapple.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/machinecity.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/machinecity.jpg Binary files differnew file mode 100644 index 0000000..2c77f2e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/machinecity.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/reboot.txt new file mode 100644 index 0000000..8c32547 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/reboot.txt @@ -0,0 +1,17 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot, presidential style: + +* The media industry is [unhappy with YouTube's proposal][3] to offer anti-piracy tools only to companies that have distribution deals with the site. One industry rep even likened YouTube's policy to a "mafia shakedown." According to Reuters, "YouTube claims the process of identifying copyrighted material is not an automated process and required the cooperation of media company partners." + +[3]: http://news.yahoo.com/s/cmp/20070219/tc_cmp/197006987 "YouTube Anti-Piracy Software Policy Draws Fire" + +* PCWorld [reports][4] that your credit card could be broadcasting information to anyone with an RFID scanner including personal data and credit card number. Don't you just love RFID? + +[4]: http://www.pcworld.com/article/id,129096-pg,1/article.html "New Credit Cards May Leak Personal Information" + +* The [MPAA has apparently been stealing code][1] to run its website. The movie industry site was caught using linkware-licensed software created by an English web developer, but had removed all links back and did not credit developer in any way. Good enough to fit an Alanis Morissette song, provided you think hypocrisy is a form of irony. + +[1]: http://torrentfreak.com/mpaa-steals-code-violates-linkware-license/ "MPAA Steals Code, Violates Linkware License" + +* Dr. Robert Adler, inventor of the television remote control and modern American culture, [passed away yesterday][2]. + +[2]: http://sev.prnewswire.com/television/20070216/CGF02016022007-1.html "Robert Adler, 1913-2007 -- TV Remote Control Co-Inventor" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/screen.jpg Binary files differnew file mode 100644 index 0000000..b9803f6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/sillymetal.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/sillymetal.jpg Binary files differnew file mode 100644 index 0000000..53b7f25 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/sillymetal.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/tools.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/tools.jpg Binary files differnew file mode 100644 index 0000000..027ddd4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/tools.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/tophinge.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/tophinge.jpg Binary files differnew file mode 100644 index 0000000..4009ed3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/tophinge.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/trackpad.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/trackpad.jpg Binary files differnew file mode 100644 index 0000000..1d7f5f1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Mon/trackpad.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/codeide.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/codeide.jpg Binary files differnew file mode 100644 index 0000000..6337f72 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/codeide.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/codeide.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/codeide.txt new file mode 100644 index 0000000..bc7a0ef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/codeide.txt @@ -0,0 +1,18 @@ +Online apps are the way of the future they tell me, and if you needed more proof there's now an online IDE for programmers called [CodeIDE][1]. CodeIDE is an in-browser development environment that mixes a text field for writing code with debug panel, command line input and other tools. + +So far CodeIDE supports Basic, Pascal, C++, Perl, Javascript, HTML. MATH and LISP. Registered users get chat tools which can be used to solicit help and advice from other users. If you sign up for an account you'll also get access to organizational tool like projects and files. + +While the text field-based text editor has some impressive features like syntax highlighting, line numbering and search and replace capabilities, I doubt it's going to replace emacs or Vi for the serious coder. + +But aside from the limited text editor feature, CodeIDE is an impressive setup and when used in conjunction with a real text editor the debug features are just a cut-and-paste away. Where applicable (HTML mainly) the debug window auto updates so you can see your markup as you enter it. + +While it isn't all that useful, there's a nice little AJAXy widget that show live debug results from other users which is kind of fun to watch. + +There's also a [forum][2] and [wiki][3], though both are a bit short on content since the site just went live a couple of days ago. + +[found via [Kottke][4]] + +[1]: http://www.codeide.com/ "CodeIDE.com" +[2]: http://www.codeide.com/forum/ "CodeIDE Forum" +[3]: http://www.codeide.com/wiki.cgi "CodeIDE Wiki" +[4]: http://www.kottke.org/remainder/07/02/12835.html "Kottke.org: CodeIDE"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/codeidethumb.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/codeidethumb.jpg Binary files differnew file mode 100644 index 0000000..de38fe7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/codeidethumb.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/elsewhere.txt new file mode 100644 index 0000000..1562ef7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/elsewhere.txt @@ -0,0 +1,17 @@ +Elsewhere on Wired: + +* Listening Post [follows][3] the alarming news that the RIAA is pursuing an appeal which will make the owner of an ISP account is responsible for all activity on that account. If the RIAA gets their way, say goodbye to open wifi hotspots. + +[1]: http://blog.wired.com/music/2007/02/riaa_contests_d.html "RIAA Fights Back, Threatens Open Wi-Fi" + +* 27B Stroke 6 [thinks][2] the actual rules for REAL-ID, a "government mandate that states comply with federal rules for drivers licenses in order to create a de facto national I.D. card," are about to be revealed. Maine has already opted out saying the program is too expensive and invasive, and Montana is reportedly thinking of doing the same. Orwellian times ahead. + +[2]: http://blog.wired.com/27bstroke6/2007/02/national_id_fig.html "National I.D. Fight Coming Soon" + +* Table of Malcontents has a [write up on Herman Melville][3] in which we learn that he hated photos and wrote an obscure novel, *Pierre, or The Ambiguities*, in which a young writer (Pierre) has "a semi-incestuous relationship with his mother, then runs away to New York after pretending to marry his sister." And if that isn't enough, Melville throws in an ex-girlfriend who joins them and they form "one big, unhappy, adulterous-incestuous love nest." + +[3]: http://blog.wired.com/tableofmalcontents/2007/02/to_the_devil_wi.html "To the devil with you and your Daguerreotype!" + +* Bodyhack [asks][4] what they think is a rhetorical question: would you buy prescription drugs from a shady-looking stranger on the subway? I wish I could answer no, but the truth is I'd be lying. + +[4]: http://blog.wired.com/biotech/2007/02/buyer_beware.html "Buyer Beware"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/google-blog-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/google-blog-logo.jpg Binary files differnew file mode 100644 index 0000000..e8bddd1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/google-blog-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/keyboard.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/keyboard.jpg Binary files differnew file mode 100644 index 0000000..dc92576 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/keyboard.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/melville.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/melville.jpg Binary files differnew file mode 100644 index 0000000..6295334 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/melville.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/nightly.txt new file mode 100644 index 0000000..d77529a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/nightly.txt @@ -0,0 +1,17 @@ +The Nightly Build: + +* Holy Ginormous settlements Batman! A U.S. federal jury found that Microsoft MP3 technology [infringed on audio patents][1] held by Alcatel-Lucent and should pay $1.52 billion in damages. Ouch. + +[1]: http://news.wired.com/dynamic/stories/M/MICROSOFT_ALCATEL?SITE=WIRE&SECTION=HOME&TEMPLATE=DEFAULT "Microsoft Hit With $1.5B in Damages" + +* A Korean company [claims][2] to have broken the 22nm limit that has held Flash media back from larger storage capacities. The company says it has developed 10nm semiconductors based on carbon nanotubes which could lead to storage cards of up to 100 GB. + +[2]: http://www.tgdaily.com/2007/02/21/flash_memory_cnt/ "Korean researchers aiming for 100 GB flash memory cards" + +* Feedburner has some [interesting statistics][3] about the RSS world. Feedburner currently tracks 604,533 feeds. + +[3]: http://blogs.feedburner.com/feedburner/archives/2007/02/feedburners_view_of_the_feed_m.php "FeedBurner's View of the Feed Market" + +Today's web zen: [make your own steampunk keyboard][4] + +[4]: http://steampunkworkshop.com/keyboard.shtml "Steampunk Keyboard Mod"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/reboot.txt new file mode 100644 index 0000000..94c0780 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/reboot.txt @@ -0,0 +1,19 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" /> The Morning Reboot: + +* Google has [announced][1] [Google Apps Premier][2] a new version of Google Apps that ditches the adverts and aims to compete with Microsoft Office in the business sector. + +[1]: http://googleblog.blogspot.com/2007/02/google-apps-grows-up.html "Google Apps grows up" +[2]: http://www.google.com/a/enterprise/ "Google Apps Enterprise" + +* Apple and Cisco have [reached a deal][3] whereby both of them will be able to use the iPhone name. + +[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-22T054024Z_01_WEN4609_RTRUKOC_0_US-APPLE-CISCO.xml&src=rss "Apple, Cisco reach agreement on iPhone name" + +* Firefox's growth [stumbled a bit last month][4] according to a Net Applications survey. For the first time since last year the browser lost market share, slipping to 13.7 percent. More interesting, however, is that Safari, Apple's web browser, rose to 4.7 percent in January up from 3.1 percent a year ago. + +[4]: http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9011619&intsrc=hm_list "Firefox loses browser share, Safari gains" + +* CNet [reports][5] that Microsoft may be looking to acquire the popular video sharing site [Revver][6]. + +[5]: http://news.com.com/2100-1027_3-6161245.html "Microsoft kicks the tires on Revver" +[6]: http://one.revver.com/revver "Revver"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/robotstxt.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/robotstxt.txt new file mode 100644 index 0000000..fc88079 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/robotstxt.txt @@ -0,0 +1,12 @@ +The Google blog has a nice ongoing set of tutorials on how to use the Robots Exclusion Protocol rules to control how and what search engines index on your site. The first part was [published last month][1] and this afternoon they [posted a sequel][2]. + +Most of the information in the little tutorials applies to all search engines that follow robots.txt, though a couple of things are specific to Google. + +And even if you think you know everything about robots.txt already there still might be a few surprises for you in these tutorials. For instance I never knew that it was possible to stop Google from displaying the little summary text snippets below the results links. I still can't think of a situation where that would be helpful, but it's good to know should the need arise. + +Today's post promises at least one more short tutorial detailing common exclusion problems that and how to solve them so stay tuned. Also worth checking out is Google's overall [guide to the Robots Exclusion Protocol][3] as well as the more search engine neutral [guidelines at robotstxt.org][4]. + +[1]: http://googleblog.blogspot.com/2007/01/controlling-how-search-engines-access.html "Controlling how search engines access and index your website" +[2]: http://googleblog.blogspot.com/2007/02/robots-exclusion-protocol.html "The Robots Exclusion Protocol" +[3]: http://www.google.com/support/webmasters/bin/topic.py?topic=8843 "How Google crawls my site" +[4]: http://www.robotstxt.org/wc/exclusion.html "Robots Exclusion"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/untitled text b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/untitled text new file mode 100644 index 0000000..1bd30f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/untitled text @@ -0,0 +1,3 @@ +A premise: Flickr is the most self-congratulatory, hyperbolic group of aesthetically-impaired psuedo artistes ever collected into one chunk of cyberspace. + +2221 warfield ave unit a redondo beach ca
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/vistacompatible.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/vistacompatible.txt new file mode 100644 index 0000000..a4ce5a9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Thu/vistacompatible.txt @@ -0,0 +1,17 @@ +Microsoft has put together an handy guide to programs that work with Windows Vista. If you're thinking about upgrading it's worth your time to check out what works and what doesn't. + +Microsoft has broken the categories of apps in to two different ratings, software that is "Certified for Windows Vista" and software that "Works with Windows Vista." Microsoft says that the Certified label means that the technical requirements have been met in "four core areas: reliability, security, compatibility with Windows Vista and future operating systems, and installation and removal." + +According the Microsoft docs the "Works with Vista" category is intended for software which has been tested to "make sure that the applications meet the program's guidelines." + +I think that means the Certified apps have been more thoroughly tested. + +If you'd like to check specific apps there's also a link on the page to the Microsoft Application Compatibility Toolkit 5.0, which will help you test your applications against Vista's requirements. + +The lists themselves are quite interesting, for instance I noticed a total absence of Adobe apps on either list, but some other big names qualify as "Works with Vista," including AutoCAD, Quickbooks and Corel Painter. + +Microsoft cautions that the guide isn't 100 percent comprehensive yet, but it will updated frequently. + +[1]: http://support.microsoft.com/kb/933305 "Applications that have earned the Certified for Windows Vista logo or the Works with Windows Vista logo" + + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/__new_unused.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/__new_unused.txt new file mode 100644 index 0000000..005945b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/__new_unused.txt @@ -0,0 +1,56 @@ + + + + * * * * * + + +We quit the farm years ago, just before the garlic should have broken the trampled black soil. It was near daylight by the time we settled on a price for the boat. + +She smoked Dunhills and drank whiskey like the tide water rising to cover the sulfer smell of the marsh reeds, cattails, egrets and cranes, like ghosts in the water where the dead swim and teenagers throw bottles to watch them sink. + +The north pole migrated, summering in Siberia, but our compasses held true and in inky blackness we slipped away from shore, wind filling the sails. + +The buttons of her blouse fumbled with my fingers, her ankle jewelry chimed the wind and kicked up sand along the beaches while I lay awake dreaming of a sleep I used to know when the best water I had ever tasted came from a 7-11 in Singapore. I went to porthole and yes the sea was still there, vast and unmoving on the map above the bed. + +I thought of the funeral pyre we watched from the statium benches with the swirling pigeons caught in flight. Like the first breathe after a nightmare the heat draws the eyes open the minute the fire licks the feet, the smoke and leaves curl the skin tight like a snaredrum until it breaks and dissolves in bubbling fizzles. + +She had photographs of pigeons in a white room made of crushed eggshells with shelves stuffed full of telescoping Russian dolls. She learned of sailors and seafaring ways and dressed as a boy took to the far cities, prisoner to her dream of white light and burnt sandelwood like crumbling teak altars turned to ash. + +I bought the nightgown you were wearing when we met and it was better when you wore it. I tried to hold the water in my hands but it slipped through the stone and into the fountain bathing the pigeons in squeals of children. + +And when the strangers settled in it seemed all right for a time + + + * * * * * + +She left just before the blindfish turned up. The limestone was rough and I only had three more shells for the carbine. I still had half a box of smaller shells, but the pistola was rusty and of questionable use. My feet were bleeding. + +I am not sure that I have killed. It may be that I have. I have only three shells, but it maybe that I have always only had three shells. The Pistola appears to have been retrieved from the creek though I do not remember taking it myself. She may have done that before she left. There are no empty casings in the streambed, though it is difficult to see with the murkiness. It may be that I have not killed at all. In any case, not recently. And I have no plans to do so in the future. Though I am keeping the carbine in my hand and shells in my pocket. + +We left the truck at the bottom of the road where it slipped and disppeared, broken slabs of concrete crumbling to dusty stone, rebar from a long departed bridge poked out between waterworn rocks, little red flags, markers, still tied on the ends like rotting silk, hung limp and still. Weeds and thin vines of honeysuckle poked up between ragged conrete, coiling around each other into snarls impossible to cut through. Closer to the river we dodged sumac and milkweed, stepping carefully over the body of a dog, bloated, fur picked clean, skin swollen and split. The dead stillness of tropical heat, the buzz of flies, the crinkling sound of maggots seething through the rotting flesh, the buzz of locusts, beatles testing their harped wings in lengthening light. No birdsong. + +The air hung heavy; closer to the river wafts of cool, ephemeral air. The bank was steep but cannelured with footholds. We moved downstream, watching garbage and leaf detritus collect in edgewater pools drawn inexorible down. + +The sharpness of the karst cut my calloused heels, neat lateral incissons that would soon turn to lesions in the tropical heat. I sat to fashion sandles out of heavy leaves from an overhanging rubber tree. When I stood up she was gone. I made my way down to the cave, limping and watching the frothy white sap flow from the thin strips of rubber tree flesh tied over my feet. The milky liquid begin to mix with blood and pool on the curled edges of leaf, resembling a mixture of blod and semen. There was no one at the cave. I was about to turn around when I saw the blind fish clucking its gills; it swirled its tail in the muddy water and disappeared into the darkness leaving behind curious cryptic characters etched in the sandy bottom of the pool. The flickering of sunlight moving in ripples through the leaden weight of water made it impossible to decipher the runes. + +The depths of the river in the cave are uncharted, some say deeper than time itself, most certainly harboring the the murky doom of uncertainty. The unfathomed depths were said to have dried up in an earthquake that swallowed the river whole leaving behind flopping helpless fish, eels, crabs and something of which none of the villagers would speak. Upstream. If she went down into those depths all hope is lost. I tossed the pistola in gurgling black shadows as an offering and studied to stream flowing inward, the yawning mouth of the cave seemed ready to crack, dry fossil scarabs and trilobytes dropping like teeth falling from the depths of dream. I had not expected this. The going out, the letting up, the water moves inward, we outward like beggard peasants, interlocutors trawling through encampments of the damned. I loaded the carbine, sliding the shells in and ramming them home with a solid click that echoed back from the mouth of the cave. I stepped slowly into the water and moved toward the center of the stream, the cabine raised about my head. River jetsamn banged against my ankles, I felt something slick and biting darting at the spaces between my toes. The river sucked and swallowed, I could feel the bottom open up and then the rush of night. + + + * * * * * +merging to some blurred unaccountable shape and then the crunch of the Falcon's tires sliding into the parking lot. The slamming doors, the bouncer's extended a hand, Jimmy grabbed it and reached around clapping the back of the leather jacket, Claire deigned a kiss on the bouncer's stubble cheek, the smell of leather, smiles. + + + +In the distance a group of balloons set alight into the afternoon air. + +Like a + +Earlier, when the sunlight dragged the shadow puppets of cottonwood and telephone poles across the wall, Jimmy had spoken ardently, pacing the room like a caged cat, gesturing, gesticulating, gestating and hatching forth the most marvelous of thoughts, anything that floated by in the ether of his consciousness. He had a natural energy Claire envied, but when the light faded something in him seemed to temporarily collapse, though she knew it would return again later, when night had riped to total darkness, it was here in the rheumy dusk that he stuggled and fell to empty ramblings, here in the borderlands, where Claire felt most at home, he stuggled to find something to hold on to. + + + +Outside a dying dust devil made a last dash across the parking lot, grabbing small flotsam of paper and dry leaves as it moved, slowly testing its way until it reached the side of the West Rider Hospital where it dropped down the stairwell and collapsed, falling against the green door which read Staff. Two leaves and a small scrap of paper edged up and flapped against the door which was propped open a couple inches by a rolled issue of *Boys Life* magazine, purloined from a waiting room two floors up where schoolboys distracted themselves from the looming dread with stories of lost mountains inhabited by goblins and hunch-backed terrors. A last wisp of winter air worked its way around the tattered cover dragging one of the leaves and a bit of paper in with it. The ratty pages of *Boy's Life* gave way and the door eased shut behind the wind. The paper swirled inward drawn by the backdraft of the closing door, skating down the cold linoleum tiles, beneath the buzzing hum of half-burned-out florescent lights, swirling bits of dust and lint traced an echo of movement, the ghosts of nothing. + + + +To some people the desert is a hot wind at the gas station, something passing through and to be passed through. Others see a sunny retreat from cold wind billowing off northern lakes. Some see it as an endless playground of sunshine, golf and hotel pools. Some are just born into it and forget to leave. Claire did not think she looked nervous or worried. She suspected that her older and more malicious nephew had put the younger up to this sort of thing. She felt she had composed herself rather well throughout the evening, dealt admirably with the blistering afternoon heat and then amicably with the barely known relative and extended family that stopped by to wish her well. It alarmed her that she could so completely separate the words coming out of her mouth from the ones forming in her mind. When will they slip over, some sort of damn break loose and everything comes tumbling out. She thought of the sea gulls leaping into the air, they hunched slightly coiling up to spring of the ground and then their wings lifted them into the wind.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/coolsite.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/coolsite.txt new file mode 100644 index 0000000..6429fa4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/coolsite.txt @@ -0,0 +1,7 @@ +Maybe it's just me, but for the life of me I've never been able to figure out my sites' pagerank in Google's index. Alexa and Technorati confuse me as well. Perhaps it's just that I've never really cared enough to track down all the figures, let alone sort out what they might me. + +If you're as mystified by all this traffic data as I am you might enjoy the handy tool I just discovered that will pull up your site's Google pagerank and Alexa ranking just from typing in your URL. + +There's a probably a million similar tools out there, but this is the first one I've used that was simple enough for me to grok it. Type in your site's URL, click the button. Bang, pagerank and Alexa rank. + +Still no clue what it all means, but a pagerank of -1 doesn't sound so good.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/else.txt new file mode 100644 index 0000000..b2d8487 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/else.txt @@ -0,0 +1,18 @@ +Elsewhere on Wired: + +* Gadget Lab's David Becker has the [inside scoop][1] on some nice looking new Nikon digital cameras that will arrive in April. + +[1]: http://blog.wired.com/gadgets/2007/02/nikon_adds_seve.html "Nikon Adds Seven Point-and-Shoot Digicams" + +* 27B Stroke 6 has [more on the still unfolding AT&T wiretapping case][2]: "A federal judge rebuffed an effort by media organizations, ranging from the Associated Press to Wired News, to unseal whistleblower documents in a civil rights group's case against AT&T for allegedly helping the government's warrantless wiretapping of Americans." + +[2]: http://blog.wired.com/27bstroke6/2007/02/spy_docs_stay_s.html "Spy Docs Stay Sealed For Now - UPDATED" + +* Wired Science [reports][3] that the geniuses (with a soft "g" please) at Pixar are creating a new math. "The problem is that human skin, for example, goes through extreme deformations when it is being animated. Because of that the Pixar team needs to figure out new ways to represent complex geometry." + +[3]: http://blog.wired.com/wiredscience/2007/02/aaas_pixar_is_i.html "Pixar Is Inventing New Math" + + +* Listening Post has a look at a fascinating [proposal from Bennett Lincoff][4], an intellectual property law attorney, who says that the music industry need to be restructured such that the "only right consumers would need to license from record labels is the right to distribute music." The full proposal is twenty age pages long, but Lincoff summarizes for Listening Post. + +[4]: http://blog.wired.com/music/2007/02/white_paper_pro.html "Attorney Proposes Licensing Music Distribution, Not Downloading"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-bug.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-bug.jpg Binary files differnew file mode 100644 index 0000000..4b63b28 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-bug.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-channels.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-channels.jpg Binary files differnew file mode 100644 index 0000000..870bc47 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-channels.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-mychannels.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-mychannels.jpg Binary files differnew file mode 100644 index 0000000..986ad02 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-mychannels.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-widgets.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-widgets.jpg Binary files differnew file mode 100644 index 0000000..b5720b4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost-widgets.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost.jpg Binary files differnew file mode 100644 index 0000000..8b374d3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost.txt new file mode 100644 index 0000000..5cabb63 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/joost.txt @@ -0,0 +1,28 @@ +As I mentioned in the [Morning Reboot][3] the video site [Joost][2] unveiled their Mac client over the weekend. With Joost set to announce a deal with Viacom today, we thought it was time to take a look at the new Mac beta test client. + +Before Mac users get to excited, bear in mind that the Mac client is not a universal binary and works only on new Intel-based Macs. It's also worth noting that there were some problems with the initial OS X program and Joost [pulled it from the site yesterday][4]. There's a new version available now and if you downloaded the Mac client over the weekend, you should update your copy. + +For those of you who've been living under a rock, Joost is a peer-to-peer video service that streams rather than downloads videos. Joost's somewhat lofty goal is to replace television as you know it. According to the founders in this [Wired Mag interview][1], user-generated content isn't part of the goal, but the Joost website says it may be an option in the future. + +Joost's whole interface paradigm mirrors that of television. There are video stream by channel, such as offering from National Geographic or very limited MTV content. Channels the way joost thinks of them are actually closer to playlists of videos at this point, though with the addition of Viacom content that may change to something more like television. + +The interface in the Mac client defaults to full screen mode with is slightly annoying if you happen to doing something else when open Joost, but it's possible to change this behavior in the preferences. The navigation menus are translucent overlays that make it easy to move from one program to the next even while the current one is still playing. For the mouse-o-phobes there's the option to navigate through channels and videos using the arrow keys. + +For those that were wondering, yes Joost is free and no extra points for guessing how it supports itself. Yup, in-stream ads. And you can't skip the ads, but thankfully there are a lot less of them than on TV. + +So far Joost's biggest downfall is that there isn't much content available, but the Viacom deal expected later today will change that (at the moment none of those channels are available yet). + +Overall Joost is provides a nice experience, the interface is intuitive and well thought out, though there are some quirks and bugs in the new Mac client (see screenshot). Video streams are smooth with little or no stuttering or playback problems. + +Regrettably video quality is not good enough at the moment to replace TV. Playback in fullscreen mode on my Macbook was somewhat fuzzy and would likely look horrible on a big plasma screen TV. In other words, Joost has incredible potential, but TiVo probably isn't too concerned yet. However, none of the telecom companies were concerned with Skype in the beginning either. + +Joost is currently in private beta trials and hopefully these issues will be worked out by the time it hits the mainstream. I'm not a big television watcher myself and in some ways I think Joost is aimed at people like myself, those of us that have dreamed of a la carte cable or the like. I would love for Joost to get to the point that I could login, watch The Daily Show or catch a rerun of Anthony Bourdain's No Reservations, without having to deal with an entire monthly cable package, but at the moment Joost doesn't have much in the way of compelling content. + +One thing to keep in mind with Joost is that downstream traffic is arriving as UDP packets, which may be blocked by default by some firewalls and occasionally even ISPs so if you're having problems getting Joost to work, check your settings or call your ISP. + +Unfortunately I have no invite tokens left, but if I ever get anymore, I'll be sure to give them away to loyal Monkeybites readers so stay tuned. + +[1]: http://www.wired.com/news/wiredmag/0,72506-0.html?tw=rss.index "Why Joost Is Good for TV" +[2]: https://www.joost.com/ "Joost" +[3]: http://blog.wired.com/monkeybites/2007/02/the_morning_reb_12.html "The morning Reboot" +[4]: https://www.joost.com/blog/2007/02/mac-build-pulled.html "Joost: Mac build pulled"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/nightly.txt new file mode 100644 index 0000000..4d91a3c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/nightly.txt @@ -0,0 +1,21 @@ +The Nightly Build: + +* A torrent of MP3s from bands showcasing at next month's South By Southwest Music festival is now [available for your downloading pleasure][1]. The torrent has 739 MP3s and is roughly 3.1 gigabytes in size. + +[1]: http://2007.sxsw.com/blogs/plat.php/2007/02/19/don_t_miss_the_sxsw_toolbox "SXSW 2007 Showcasing Band MP3s" + +* This morning it was AOL, this afternoon Digg, everybody loves OpenID. Today at the Future of Web Apps in London, Kevin Rose [announced that Digg plans to support OpenID][2]. + +[2]: http://radar.oreilly.com/archives/2007/02/digg_will_suppo.html "Digg Will Support OpenID" + +* The U.K. has [rejected a call to ban DRM][3]. However the government did acknowledge that the technology could undermine consumer rights. + +[3]: http://news.com.com/U.K.+government+rejects+calls+for+DRM+ban/2100-1028_3-6160760.html?tag=nefd.top "U.K. government rejects calls for DRM ban" + +* Seeming to contradict Ballmer's earlier comments, Bill Gates said earlier today that Microsoft's Windows [Vista has been well received][4]. "People who sell PCs have seen a very nice lift in their sales. People have come in and wanted to buy Vista." + +[4]: http://www.reuters.com/article/technologyNews/idUSTOR00156520070220 "Windows Vista well received: Gates" + +[photo credit][5] + +[5]: http://www.flickr.com/photos/sonnenbrand/396719685/ "Flickr: Waiting on the Hill"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/pixar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/pixar.jpg Binary files differnew file mode 100644 index 0000000..2582e32 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/pixar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakea.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakea.jpg Binary files differnew file mode 100644 index 0000000..142852c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakea.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakea.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakea.txt new file mode 100644 index 0000000..c56dfef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakea.txt @@ -0,0 +1,19 @@ +Tagging is all the rage on the web, but does it translate to desktop apps? Mozilla thinks so, they're building support for tags into Thunderbird 2.0. But the [Mac-only app Punakea][1] aims to take that a bit farther and apply the tagging metaphor to all your files. Punakea is currently available as a free public beta. + +Punakea works by injecting its tag data into the spotlight comments metadata field in the Finder. Punakea runs as a standalone app and there's a preference setting to auto-start it on launch, so if you do fall in love with it, it'll always be there. + +To see what Punakea is doing to your files, tag something and then use the "Get Info" command in the Finder. You'll see something like the screenshot to the left. My only gripe with this method of creating tags is that I sometimes search using spotlight to find files that have "#" in them since, on my machine that's going to bring up all my programming files. Punakea hoses that technique, but to be honest it wasn't a very good search in the first place, still it's something to think about. + +To use Punakea you can either drag your files into the main application window or you can use a sidebar that hides off screen. Dragging a files to that edge brings up the drop zone and a list of existing tags. To apply tags to your files, all you need to do is type the tag name and hit return. There doesn't appear to be a limit on the number of tags you can apply to any individual file, though I imagine there probably is an upper limit to the string length of Spotlight comments. If so it's high enough that most people probably won't need to worry about it. + +Once you have your files tagged, Punakea displays everybody's favorite search mechanism -- a tag cloud. Click a tag and all the tagged files come up, the tag cloud also then narrows to show only tags from files returned in your search. This allows you to zero in on specific tags and refine your search down until you get the file you were looking for. + +The search results window mirrors the look and structure of the spotlight search results window and groups files by type. However, unlike Spotlight there didn't appear to be any way to filter by date, kind, location or any of the other spotlight filters. + +The other major shortcoming of Punakea is that its bookmark support is limited to Safari. In Safari it's easy to add a bookmark to Punakea by dragging the site's favicon to the sidebar and dropping it on the hotspot. However I couldn't get this feature to work with Firefox. + +If you're big on tags, you'll probably find much to love with Punakea. I'll be honest with you, all the tagging I do, be it through Flickr or ma.gnolia or what have you, is generally for others. That is, I'm not trying to make it findable by me, I'm trying to make it discoverable by others. As such I remain unconvinced that tagging has a place on my desktop; it's a great way to browse but I'm not sure it's a good way to find. + +No doubt many would disagree and for them I highly recommend Punakea, it's by far the simplest and best implementation of desktop tagging that I've seen. + +[1]: http://www.nudgenudge.eu/punakea "Punakea Public Beat"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakeasearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakeasearch.jpg Binary files differnew file mode 100644 index 0000000..0230cb1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakeasearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakeasidebar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakeasidebar.jpg Binary files differnew file mode 100644 index 0000000..8fe6658 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakeasidebar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakeaspotlight.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakeaspotlight.jpg Binary files differnew file mode 100644 index 0000000..9765594 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/punakeaspotlight.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/reboot.txt new file mode 100644 index 0000000..c865c14 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/reboot.txt @@ -0,0 +1,18 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* The video download service, Joost, is expected to [announce a licensing deal with Viacom][1]. Viacom, which has been in the news lately for going after YouTube with DMCA takedown notices, is expected to make hundreds of hours of programming from Viacom networks such as MTV, Comedy Central and Spike available to Joost users. In other Joost news, I received an email from the company over the weekend which announced the first Mac beta. + +[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-20T112925Z_01_N20456807_RTRUKOC_0_US-VIACOM-JOOST.xml&src=rss "Viacom to license content to Joost" + +* OpenID is being [embraced by AOL][2] which is offering the free identification scheme to 63 million new users. If OpenID weren't such a great idea I'd have to say it just jumped the shark. + +[2]: http://news.bbc.co.uk/2/hi/technology/6376029.stm "AOL supports open ID scheme" + +* Microsoft CEO Steve Ballmer claims that sales of Vista are not meeting projections [because of piracy][3] in Brazil, China and other nations. He says Microsoft will be using Windows Genuine Advantage to try and combat the problem. However, if Russia is any indicator increased pressure may drive many to switch to Linux rather than buy Vista. + +[3]: http://www.theinquirer.net/default.aspx?article=37721 "Ballmer blames pirates for poor Vista sales " + +* The beleaguered social networking music site [Odeo][5] [is for sale][4]. The official blog post from Odeo owner Evan Williams reads: "To clarify, what we're talking about is selling odeo.com and studio.odeo.com, including all code, the domain, brand, database of three million MP3s, etc. Not a company, but a site and platform that could be ramped up to something much bigger." + +[4]: http://blog.obvious.com/2007/02/looking-for-odeos-new-home.html "Looking for Odeo's new home" +[5]: http://odeo.com/ "Odeo.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/vpc.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/vpc.txt new file mode 100644 index 0000000..4d120a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/vpc.txt @@ -0,0 +1,15 @@ +Last year Microsoft announced that it would begin giving away Virtual PC rather than charging for it and yesterday they made good on that promise [announcing the immediate availability of the new Virtual PC 2007][1]. Virtual PC 2007 comes in two flavors, one for 32-bit systems and one for 64-bit systems. + +The new version adds support for Windows Vista as a host, Windows Vista as a guest and improved performance compared to Virtual PC 2004, which Microsoft began giving away last year. + +For the suspicious among you who find it hard to believe that Microsoft would give anything away, the company claims that "virtualization technology moving forward will be in the management and the operating system rather than in the virtualization stack." So I guess the value is in the OS, not the virtualization of the OS. Perhaps that's why lower-end versions of Vista aren't licensed for virtualization. + +Microsoft is obviously pushing Virtual PC as a means to maintain legacy and custom applications that don't work with Vista, rather than as a way to run Windows and Linux apps side-by-side as many virtualization enthusiasts like to do. For that there's always [Wine][3]. + +Virtual PC 2007 seems squarely aimed at large corporate enterprise users who would like to upgrade to Vista but need to support custom legacy software. To that end the Microsoft Virtual PC 2007 page [points out][2] that users can "install up to four copies of the operating system in virtual machines on top of Windows Vista Enterprise with a single license." + +The new Virtual PC 2007 is available for download from Microsoft's website. + +[1]: http://www.microsoft.com/downloads/details.aspx?FamilyId=04D26402-3199-48A3-AFA2-2DC0B40A73B6&displaylang=en "Download Virtual PC 2007" +[2]: http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx "Virtual PC 2007" +[3]: http://www.winehq.com/ "Wine"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/webtools.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/webtools.jpg Binary files differnew file mode 100644 index 0000000..7ed1cdb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/webtools.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/windows.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/windows.jpg Binary files differnew file mode 100644 index 0000000..7712f05 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Tue/windows.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/27b.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/27b.jpg Binary files differnew file mode 100644 index 0000000..7d67eae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/27b.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/culy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/culy.jpg Binary files differnew file mode 100644 index 0000000..440152c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/culy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/google-image.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/google-image.jpg Binary files differnew file mode 100644 index 0000000..d484053 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/google-image.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/googleimagesearch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/googleimagesearch.txt new file mode 100644 index 0000000..23874f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/googleimagesearch.txt @@ -0,0 +1,8 @@ +I just got done testing some IE 7 add-ons and in the course of doing so I noticed that Google has once again changed the [Google Image Search][2] results page. About a month ago Google changed the Images search results page so that it hid the details for images until you hovered over them with your mouse. While the results page looked tidier, many were unhappy that it required an extra step to see the details of an image. + +There was [Greasemonkey script][2] to revert the search results page back to how it was, but it would seem that Google must have gotten some negative feedback on the change, because they've rolled it back to the old look. + +It's a minor thing and I suppose it could even be a bug or something, but since I prefer the old results page it's good to see it back. I can't help but wonder though, why not just provide a little link to toggle the display behavior according to the user's preferences? + +[1]: http://images.google.com/ "Google Image Search" +[2]: http://userstyles.org/style/show/1711 "Greasemonkey: Google Image Search back to normal"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/html.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/html.jpg Binary files differnew file mode 100644 index 0000000..dd2f4d7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/html.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/imgtag.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/imgtag.txt new file mode 100644 index 0000000..c2ef27a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/imgtag.txt @@ -0,0 +1,29 @@ +I spend a fair bit of time perusing the web for images to go with theses posts and I generally limit my search to Flickr because Flickr makes it easy to find Creative Commons Attribution Licensed work. Sometimes I remember that there's actually a [dedicated search engine for CC-licensed work][3], but neither of these solutions is optimal. + +Let's face it, Google, Yahoo and the other big boys that offer image searches, have a wider and deeper reach than the smaller players. But the problem with the big image search engines is that it's very difficult to find out what licenses govern the images shown in the results. + +Now for the purpose of thumbnails on this blog, legal speaking, there is a good set of precedents that thumbnails falling under Fair Use guidelines. However, not only could that be challenged if someone was angry that I used their image, but it doesn't cover me if I want to use a full size picture. + +Even removing legal concerns, the truth is I just prefer to use CC licensed images because, well, I like to support and draw attention to the CC and reward the people who use it with back links from this site. I like sharing. + +Naturally there are those that spent all of their childhood with that "does not play well with others" description checked on their report cards. For them modern copyright was invented and serves the intended purpose. + +Earlier today I wrote about how Google appears to have [reverted their image search][2] results to display size, format and other information below each photo and I started thinking it would be really nice to see the license information displayed as well. + +Google displays license information in the Code Search results -- why not images? + +Well for one thing, there's no simple way for Google to figure out what license applies to an individual image. I suppose it could try to guess it from meta tag information, but often the content of page is governed by a different license than the images. Consider a forum page for instance, each member might have his own license for the images he posts and that license might differ from the one listed in the meta tag. + +Which led me to this idea: the (X)HTML specs should add an attribute to specify the license governing a photograph. + +Currently there are 11 attributes for the img tag, 2 required and 9 optional. Frankly the tag is already bloated enough that I don't think one more attribute is going to matter. Something as simple as <code>lic="license-abbr"</code> would do wonders for image rights on the web. + +Not only would a license attribute help image search engines, it would help protect copyrighted works by drawing attention to the fact that they are copyrighted. + +Now I'll admit I haven't thought this through all the way, there may be some good objections to the idea that I haven't thought of yet, which is why I posted this, to see what other developers think of the idea. Is it sound? Let me know what you think in the comments below. + +[Photo Credit][1] + +[1]: http://www.flickr.com/photos/melita/38992864/ "Flickr: Body" +[2]: http://blog.wired.com/monkeybites/2007/02/google_rolls_ba.html "Google Rolls Back Image Search Design" +[3]: http://search.creativecommons.org/ "Search Creative Commons"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/lightroom.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/lightroom.txt new file mode 100644 index 0000000..1a440cd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/lightroom.txt @@ -0,0 +1,8 @@ +Earlier this year [Adobe announced][1] that it was taking Photoshop Lightroom out of beta and into the wild and yesterday they did just that. Lightroom 1.0 [is now shipping][2] and there's a 30 day trial version available for download. + +I'm currently testing out the 1.0 version for an in depth review that will be on Wired later this week, but if you'd like to go ahead and dive in yourself, [grab the demo version][2]. Note that the demo will require you to create an Adobe ID if you don't already have one (if you're like me and have an ancient Macromedia ID, that will work as well; after updating my profile I was able to download the demo). + +If you've got strong feelings about Lightroom, I'd love to know what you like/dislike about the new version. + +[1]: http://blog.wired.com/monkeybites/2007/01/adobe_announces.html "Adobe Announces Lightroom 1.0" +[2]: http://www.adobe.com/products/photoshoplightroom/ "Photoshop Lightroom"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/nightly.txt new file mode 100644 index 0000000..4f8a5ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/nightly.txt @@ -0,0 +1,17 @@ +The Nightly Build: + +* The long rumored CBS-YouTube deal appears to have [fallen through][1]. The Wall street Journal reports that the two companies were unable to reach an agreement. + +[1]: http://today.reuters.co.uk/news/articlenews.aspx?type=internetNews&storyid=2007-02-21T055223Z_01_N20215795_RTRIDST_0_OUKIN-UK-GOOGLE-CBS.XML&src=rss "Possible YouTube deal with CBS unravels" + +* Frances E. Allen, 75, was [awarded][2] the $100,000 Turing Award yesterday for her work at IBM. Allen helped create techniques that optimized the performance of compilers. The Turing Award is one of the most prestigious prizes in computing and this is the first time in the award's 40-year history that it's been awarded to a woman. Better late than never I guess. + +[2]: http://www.newsvine.com/_news/2007/02/21/579614-first-woman-honored-with-turing-award "First Woman Honored With Turing Award" + +* Microsoft hastily [removed a banner advertisement][3] that appeared on its instant-messaging program for a software application that falsely hypes security threats on a user's computer. Of the "scareware," Microsoft spokeswoman Whitney Burk writes: "we immediately investigated the reports and removed the offending ads, as this is a violation of our ad-serving policy." + +[3]: http://news.yahoo.com/s/infoworld/20070220/tc_infoworld/86192 "Microsoft falls victim to shady scareware" + +* Today's web zen: [broken image stamps][4]. + +[4]: http://www.neatorama.com/2007/02/21/broken-image-stamps/ "Neatorama: Broken Image Stamps"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/reboot.txt new file mode 100644 index 0000000..7af8a33 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/reboot.txt @@ -0,0 +1,17 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* The kids are not alright, in fact they're [a bunch of dirty pirates][1]. The RIAA has announced it will be increasingly targeting college students in the fight against copyright infringing downloads. Just as a note for those applying to college this year, Purdue says it rarely even notifies students accused by the RIAA because it's too much trouble to track down alleged offenders -- "we are a leading technology school with thousands and thousands of curious and talented technology students." + +[1]: http://news.yahoo.com/s/ap/20070221/ap_on_hi_te/downloading_music "AP: Recording industry targets colleges" + +* Google has [patched a potentially serious security hole][2] in its Google Desktop tool. The cross-site scripting hack was discovered earlier this year, but Google says the vulnerability has been patched by an automatic update. + +[2]: http://news.wired.com/dynamic/stories/G/GOOGLE_DESKTOP_SECURITY?SITE=WIRE&SECTION=HOME&TEMPLATE=DEFAULT "Google Shuts Hole in Desktop Product " + +* [ITunes outs classical music fraud][3]. The recordings of Joyce Hatto, a British concert pianist who found fame in the last years of her life, have been exposed as hoaxes. Last week, a critic at Gramophone magazine popped a Hatto recording of Lizt's 12 Transcendental Studies into his computer and noticed that iTunes identified the disc as recorded by another pianist, Lászlo Simon. The critic dug out the Simon album and discovered it sounded exactly the same as the Hatto one. + +[3]: http://www.gramophone.co.uk/newsMainTemplate.asp?storyID=2759&newssectionID=1 "Masterpieces Or Fakes? The Joyce Hatto Scandal" + +* Photobucket has announced a partnership with Adobe to [bring web-based video editing][4] technology to the site. The new editor on Photobucket is a Flash-based application that Adobe claims will bring the editing capabilities similar to Adobe Premiere Elements to Photobucket users. + +[4]: http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20070221005493&newsLang=en "Photobucket Brings Free Web-Based Video Editing to Millions of Photobucket Users"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/table.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/table.jpg Binary files differnew file mode 100644 index 0000000..7088ff5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/table.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/tattoquotes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/tattoquotes.jpg Binary files differnew file mode 100644 index 0000000..de05278 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/Wed/tattoquotes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/addsearchprovider.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/addsearchprovider.jpg Binary files differnew file mode 100644 index 0000000..8814aed --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/addsearchprovider.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/iespell.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/iespell.jpg Binary files differnew file mode 100644 index 0000000..727e769 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/iespell.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/inlinesearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/inlinesearch.jpg Binary files differnew file mode 100644 index 0000000..f7e7b1d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/inlinesearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_01.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_01.jpg Binary files differnew file mode 100644 index 0000000..123b32e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_01.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_02.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_02.jpg Binary files differnew file mode 100644 index 0000000..dae39df --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_02.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_03.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_03.jpg Binary files differnew file mode 100644 index 0000000..46975a1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_03.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_04.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_04.jpg Binary files differnew file mode 100644 index 0000000..fec41b7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/lightroom_image_04.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/trailfire.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/trailfire.jpg Binary files differnew file mode 100644 index 0000000..b2b6e15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.19.07/trailfire.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/cc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/cc.jpg Binary files differnew file mode 100644 index 0000000..4c80451 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/cc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/cc.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/cc.txt new file mode 100644 index 0000000..cdc9620 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/cc.txt @@ -0,0 +1,28 @@ +The Creative Commons has [released][1] version 3.0 of its licensing schemes. The [new version][4] includes several changes that make the licenses better for international users and those who want derivative works to be compatibly licensed. + +The "generic" license offered by Creative Commons now comes in two flavors, one, the CC US license and two a slightly modified version known as the "unported" license, which will work better for international users. + +Other changes affecting international users include changes to the way CC licenses handle royalty collection agencies. The Creative Commons site explains: + +>Elsewhere, collecting societies take either an assignment of copyright ownership or an exclusive license to a work of the rights that they represent (which tends to include all of the works an artist creates). This means, for the most part, that an artist cannot directly license their works online, including via CC licenses. The consequence of this is that artists who use CC licenses cannot receive voluntary royalties collected by a society because they are not able to become a member of the society. + +Essentially this meant that artists who were members of some royalty collection agencies could not use Creative Commons licenses in conjunction with a traditional all rights reserved license. The best example of this is the Non-Commercial clause in which non-commercial entities are free to use a work however they please, but commercial uses of the same work would be eligible for royalty collection. + +Version 3.0 solves this clash of interests by allowing the licensor to waive the compulsory collection where possible and "reserve the right to collect these royalties in those jurisdictions in which this cannot be waived." + +The other big change in version 3.0 involves a disambiguation of the language surrounding attributions so that attribution does not imply endorsement or even knowledge of the new work by the original artist. That there was no association or relationship between the licensor and new works was always implied, but in the interests of further clarification, the lack of relationship is now spelled out in both the legal code and the Commons Deed. + +Other changes include steps toward better compatibility with other "open" licenses. Many have long said that adding the "ShareAlike" (SA) component to your CC license was as restrictive as copyright since it forces the derivative work to use the same license. In many cases the artist may not wish to force CC licenses on derivatives. Version 3.0 of the CC licenses allows SA licensed works to be relicensed under a "Creative Commons Compatible License." + +Of particular concern is the clash between licenses like the [GNU Free Documentation License][3] which governs Wikipedia and CC making a mashup of say, Wikipedia, with CC content from Flickr impossible. The new plan aims to fix that problem. + +So far no approved license are [listed on the site][2], but the page promises that more compatible license information is on the way. + + + + + +[1]: http://creativecommons.org/weblog/entry/7249 "Creative Commons: Version 3.0 Launched" +[2]: http://creativecommons.org/compatiblelicenses "Compatible Licenses" +[3]: http://www.gnu.org/copyleft/fdl.html "GNU Free Documentation License" +[4]: http://creativecommons.org/license/ "License your work"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/elsewhere.txt new file mode 100644 index 0000000..7fff93e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/elsewhere.txt @@ -0,0 +1,22 @@ +Elsewhere on Wired: + + +* It's not quite as cool as the guy who claimed a Moleskine notebook stopped a bullet, but Cult of Mac [reports on a Macbook Pro that took a bullet][2] during a mugging and kept on trucking. As one commenter so drolly puts it: "See what you get when you use a 9MM for a mugging?" + +[2]: http://blog.wired.com/cultofmac/2007/02/bullet_doesnt_s.html "Bullet Doesn't Stop MacBook Pro" + +* I'm beginning to think that some of the supposedly satirical premises of Woody Allen's *Sleeper* are basically correct, for instance that food and nutrient science will essentially reverse all its conclusions every few years. Case in point, Bodyhack [reports][3] that a new study claims that pregnant women not eating fish is bad, whereas a few years ago the FDA warned the opposite. All of which reinforces my firm belief that the harder you try to be healthy the more likely you are to die from your efforts. + +[3]: http://blog.wired.com/biotech/2007/02/fish_good_bad_n.html "Fish: Good! Bad! No, Good!" + +* Because no software is so complicated, convoluted and anti-intuitive as recording software, Listening Post has a link to some [nice instructional YouTube videos][4] for the popular Cakewalk recording/mixing suite. + +[4]: http://blog.wired.com/music/2007/02/cakewalk_tutori.html "Cakewalk Tutorials on YouTube" + +* Autopia has the coolest looking car-I-can't-afford-that-doesn't-even-exist-yet, that I've ever seen -- [the Giugiaro Vadhò hydrogen concept car][5]. + +[5]: http://blog.wired.com/cars/2007/02/coming_to_genev.html "Giugiaro Vadhò Hydrogen Concept Coming to Geneva" + +[photo credit][1] + +[1]: http://www.flickr.com/photos/steven_sanchez/217673573/ "Flickr: Freeze"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/gun.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/gun.jpg Binary files differnew file mode 100644 index 0000000..d624809 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/gun.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/moon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/moon.jpg Binary files differnew file mode 100644 index 0000000..8a21765 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/moon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/nightlytxt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/nightlytxt new file mode 100644 index 0000000..ab5dd04 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/nightlytxt @@ -0,0 +1,23 @@ +* Reuters [reports][2] that Apple is delaying the release of Apple TV until mid-March. An Apple spokesperson says that "wrapping up Apple TV is taking a few weeks longer than we projected." + +[2]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2007-02-26T212440Z_01_N26235636_RTRUKOC_0_US-APPLE-TV.xml&src=rss "Apple TV debut delayed until mid-March" + +* Speaking of Apple products, Gizmodo [has a video][3] that purports to show iTunes-like Cover Flow navigation on a video iPod. Probably a fake, but you never know. + +[3]: http://gizmodo.com/gadgets/portable-media/exclusive-video-leaked-ipod-firmware-coming-enables-cover-flow-239726.php "Exclusive Video Leaked: iPod Firmware Coming, Enables Cover Flow" + +* Earlier today Techcrunch finally [got a response][4] from MySpace about why the service blocks certain widgets, which, as it turns, out basically boils down to whether or not the makers of the those widgets are trying to make money. It must be disheartening as a MySpace user to track down a bunch of cool video on Revver and then have it unceremoniously blocked by the Dark Lords that rule MySpace. + +[4]: http://www.techcrunch.com/2007/02/26/myspace-why-we-block-widgets/ "MySpace: Why We Block Widgets" + +* Virgin Chairman Richard Branson has [announced][5] a new online video game rental service with the terribly awkward name: A World of My Own (AWOMO). Reportedly the terrible name stems from the fact that in addition to the rental aspect the service will feature a *Second Life*-like virtual world as well as some additional bonuses like game tournaments with prizes including a trip to the moon. Yup, that moon. + +[5]: http://arstechnica.com/news.ars/post/20070226-8921.html "Virgin's Branson announces an iTunes for games" + +* Today's web zen: [giant pillow fight][1]. + +[photo credit][7] + +[7]: http://www.flickr.com/photos/jurvetson/97214206/ "Flickr: Moon Dreams" + +[1]: http://www.rocketboom.com/vlog/archives/2007/02/rb_07_feb_24.html "Rocketboom: Pillow fight"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/reboot.txt new file mode 100644 index 0000000..7e9695e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Mon/reboot.txt @@ -0,0 +1,23 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + + +* The BitTorrent movie/TV download store [launches today][1]. BitTorrent has opted for a rental scheme with prices ranging from $3 to $4 with a 24 hour viewing period. Are Mike and I the only ones who think download rentals are going to absolutely bomb? BitTorrent claims that it has decided not to sell films for now because the prices demanded by the studios were too high. + +[1]: http://hosted.ap.org/dynamic/stories/D/DOWNLOADING_MOVIES?SITE=WIRE&SECTION=HOME&TEMPLATE=DEFAULT "BitTorrent to Launch Movie, TV Downloads" + +* According to a new survey conducted by the Pew Internet Project [one-third of Americans have tried wireless internet][2]. That's it? + +[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-25T212605Z_01_N25183464_RTRUKOC_0_US-WIRELESS-INTERNET.xml&src=rss "A third of U.S. surfers tried wireless" + +* The New York Times [reports][3] that Google is in talks with a number of companies, including our own corporate overlords, Conde Nast, to syndicate video content on websites. The videos would appear inside Google ad boxes and advertisements will run during or after the content. + +[3]: http://www.nytimes.com/2007/02/26/technology/26google.html?ex=1330146000&en=5ac917a42d06e4cc&ei=5088&partner=rssnyt&emc=rss "Google in Content Deal With Media Companies" + +* Version number three of the Creative Commons licensing scheme [has arrived][4]. The new licenses main serve to clear up differences between U.S and international versions. + +[4]: http://creativecommons.org/weblog/entry/7249 "Creative Commons: Version 3.0 Launched" + +* Tor, the anonymous internet service, may be vulnerable to attack. Via [Slashdot][5]: "A group of researchers have written a paper that lays out an [attack against Tor][6] (PDF) ... The essential avenue of attack is that Tor doesn't verify claims of uptime or bandwidth, allowing an attacker to advertise more than it need deliver, and thus draw traffic. If the attacker controls the entry and exit node and has decent clocks, then the attacker can link these together and trace someone through the network." + +[5]: http://yro.slashdot.org/yro/07/02/25/1913219.shtml "Tor Open To Attack" +[6]: http://www.cs.colorado.edu/department/publications/reports/docs/CU-CS-1025-07.pdf "Tor attack PDF"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Thu/reboot.txt new file mode 100644 index 0000000..eead2ef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Thu/reboot.txt @@ -0,0 +1,21 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Adobe let slip yesterday that it plans to [release its flagship product Photoshop in online form][5]. The online version of Photoshop will be written using Adobe's Flex tools and will reportedly be launching sometime in the next six months. The service will be free and supported through advertising. + +[5]: http://news.com.com/2100-7345_3-6163015.html "Adobe to take Photoshop online" + + +* [Sun][3] has [joined][1] the [Free Software Foundation][2]. Sun is now an official patron of the FSF a title that allows companies to provide financial aid to the FSF in return for free license consulting services. Quite a change from last year when Sun's Jonathan Schwartz referred to the GPL as "intellectual property colonialism." + +[1]: http://arstechnica.com/news.ars/post/20070228-8938.html "Sun joins the Free Software Foundation" +[2]: http://www.fsf.org/ "Free Software Foundation" +[3]: http://www.sun.com/ "Sun Microsystems" + +* The EU isn't done with Microsoft. Today the European Commission [warned Microsoft that it faced further fines][4] in its long-running antitrust battle. The EU says Microsoft will face more formal charges that could lead to new daily penalties on top of fines already levied. + +[4]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2007-03-01T142851Z_01_BRU005479_RTRUKOC_0_US-MICROSOFT-EU-WARNING.xml&src=rss + +* Newsgator, the popular online RSS service, [launched a new and improved AJAX interface][6] for its online news reader yesterday. Unfortunately the service appears to be having a few problems at the moment, but [according to those who've seen it][7], the changes include improved speed and GMail-like keyboard shortcuts. + +[6]: http://www.newsgator.com/ngs/subscriber/Today.aspx "Newsgator public beta" +[7]: http://www.micropersuasion.com/2007/02/ajaxy_newsgator.html "Ajaxy Newsgator RSS Reader Enters Beta"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/else.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/else.txt new file mode 100644 index 0000000..61e6491 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/else.txt @@ -0,0 +1,18 @@ +Elsewhere on Wired: + +* 27B Stroke 6's Luke O'Brien that pure [analog TVs will disappear from stores][1] starting this Thursday. As mandated by Congress every TV "shipped by manufacturers to stores must include a digital tuner." Grab your analog collectors item before they fade so you can go blue in the face explaining to your hipster friends twenty years from now that no, you didn't just buy an analog TV as part of the new fade, you've had it this whole time and were just waiting for it to become cool again. + +[1]: http://blog.wired.com/27bstroke6/2007/02/analog_tvs_go_r.html "Analog TVs Go Retro, Officially" + +* Gadget Lab's Mike Ansaldo [reports][2] that Japanese telco DoCoMo has struck a deal with McDonald's that will "let consumers buy from the popular fast-food chain using specially equipped handsets." + +[2]: http://blog.wired.com/gadgets/2007/02/order_mcdonalds.html "Order McDonald's On Your Mobile" + + +* Epicenter has [another look at Steve Jobs' DRM letter][3] and concludes that the real problem with digital downloads is the crappy quality of files. Epicenter's Fred Vogelstein suspect that Apple's DRM doesn't play nice with higher quality files. + +[3]: http://blog.wired.com/business/2007/02/what_steve_jobs.html "What Steve Jobs really wants" + +* Sex Drive's Randy Dotinga has word of a study that says [people can distinguish between real humans and fake CG images][4]. Dotinga points out a few caveats though, the study is extremely small, the subjects had the most trouble identifying human images that were computer generated in 2006 and, oh yeah, the head of the study is also advising prosecutors in a child porn case that would likely be settled in the prosecutions favor if the study were accurate. + +[4]: http://blog.wired.com/sex/2007/02/study_people_ca.html "Study: People Can Tell Real Images from Fake"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/encode.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/encode.jpg Binary files differnew file mode 100644 index 0000000..f5a3293 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/encode.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/kdeosx.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/kdeosx.jpg Binary files differnew file mode 100644 index 0000000..0ee22ac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/kdeosx.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/kdeosx.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/kdeosx.txt new file mode 100644 index 0000000..1495d01 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/kdeosx.txt @@ -0,0 +1,19 @@ +Although I just discovered them last week, [this KDE 4 libs package for Mac OS X][1] has apparently been around since last autumn. The packages allow you to install and run certain KDE programs without resorting to Apple's provided X11 environment. The libs include int he KDE OS X project qt, kdelibs, kdesupport as well as applications like koffice. + +The project wiki lists the packages as "very alpha" and at this point they probably aren't for the faint of heart. Still, if you've been itching to run some KDE apps outside of Apple's X11 environment, this is probably your only hope. + +A disclaimer on the site offers the following humorous warning: + +>They may not work. They may not even install. They may make your monitor explode in a shower of glass. EVEN LCDs! They may make your children grow horns, and cause the people in your neighborhood to explode spontaneously while doing the Macarena. They will rip out your eyeballs, and eat your soul with a really dull spoon, laughing and cackling while forcing Cheerios up your nose. + +Once you get the libs installed you'll need to add them to your shell path and include a line for the new D-Bus session address that's part of KDE 4. + +I'll confess that I was drawn to these libs in hopes that they might be a step toward getting [Amarok][2] [running on OS X][3], but unfortunately I don't think it'll work. For one thing these are version 4 of the KDE libs which Amarok doesn't support and even if it did run, there's still a couple of libs that aren't included in this package. + +However, if you're looking to play around with some KDE apps, Konqueror for instance, these libs should give you what you need to get up and running with native KDE support. + +And if you're pining after Amarok on OS X, take heart -- version 2 should provide native support. + +[1]: http://ranger.users.finkproject.org/kde/index.php/Home "KDE 4 libs, OS X" +[2]: http://amarok.kde.org/ "Amarok" +[3]: http://amarok.kde.org/amarokwiki/index.php/On_OS_X "Amarok on OS X"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max-1.jpg Binary files differnew file mode 100644 index 0000000..6f4c893 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max-2.jpg Binary files differnew file mode 100644 index 0000000..f35600d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max-icon.jpg Binary files differnew file mode 100644 index 0000000..c670019 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max.txt new file mode 100644 index 0000000..672ea15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/max.txt @@ -0,0 +1,24 @@ +Last week I [looked into Ogg Vorbis][1] and in the process discovered a Mac-only format conversion program by the name of [Max][2]. While Max can indeed convert your audio files from a variety of formats to Ogg Vorbis, even more exciting is the fact that it supports LAME MP3 converting. + +I previously relied on the iTunes LAME Applescripts to rip CDs in iTunes, but unfortunately iTunes LAME stopped working for me with iTunes 7. Luckily Max has stepped in and filled that gap. + +Max is easy to use, just fire it up and select the tracks you'd like to convert. Once Max has grabbed the audio files it can output them to about 20 different formats including MP3, Ogg Vorbis, FLAC, and AAC including quite a few I never heard of like WavPack and Speex. + +Max uses common open source components (like LAME for MP3 and aoTuV for Ogg) as well as Apple's Core Audio functionality for formats like AAC and Apple Loseless. Max is integrated with [MusicBrainz][4] to automatically grab CD info which can then be written as metadata provided the output format you choose supports metadata. + +For badly scratched or otherwise damaged discs, Max offers the error-correcting options of [cdparanoia][3]. + +Max is not limited to just ripping CDs though, it also handles conversion between lossy formats, which is how I originally heard of it -- as a way to convert MP3 to Ogg Vorbis. In most cases Max even seamlessly transfers the artist and album metadata between the old and new files. + +I didn't have any problems going from MP3 to both Ogg and AAC, but my fellow Monkey Bites contributor mentioned that he occasionally has some trouble with FLAC to MP3 conversions losing metadata. He suggests identifying the artist, album, song before converting. + +If you're using Max in conjunction with iTunes there's a nice iTunes compatibility mode that will automatically add the new tracks to your library and even create a new playlist if you like. + +About the only thing Max lacks is the ability to convert proprietary formats like WMA or Real Audio files. + +Max is free and open source. + +[1]: http://blog.wired.com/monkeybites/2007/02/ogg_vorbis_the_.html "Ogg Vorbis: The Way Forward?" +[2]: http://sbooth.org/Max/ "Max" +[3]: http://www.xiph.org/paranoia/ "CD Paranoia" +[4]: http://musicbrainz.org/ "Musicbrainz"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/nightly.txt new file mode 100644 index 0000000..6ea8876 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/nightly.txt @@ -0,0 +1,26 @@ +<img alt="Nightly746" title="Nightly746" src="http://blog.wired.com/photos/uncategorized/nightly746.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Nightly Build: + +* California has joined Texas and Minnesota in what appears to be a growing trend toward legislation [mandating open document formats][5] for public documents. A bill introduced a few days ago in the State Legislature would require all the use of open document formats like ODF by 2008. + +[5]: http://www.leginfo.ca.gov/pub/07-08/bill/asm/ab_1651-1700/ab_1668_bill_20070223_introduced.html "An act to add Section 11541.1 to the Government Code, relating to information technology." + + +* The publishing industry might possibly be starting to understand this wacky digital world. Random House has [unveiled][1] a new tool dubbed Insight that will let consumers search and browse through more than 5,000 of its titles on the Internet. It's be better if they just let Google have at it, but at least it's a start. + +[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-02-27T211803Z_01_N27397690_RTRUKOC_0_US-MEDIA-DIGITAL.xml&src=rss "Publishers allow book browsing on the Web" + + +* Hacker Shawn Carpenter [has won][3] a $4.3 million settlement against his former employer Sandia National Laboratories. Carpenter a network security guru conducted his own probe of a security breach at the agency after being told that the agency would not investigate the case. Eventually Carpenter traced the attacks back to a Chinese cyber-espionage group and notified the Army Counterintelligence Group and later with the FBI of his findings. When Sandia officials learned that he had given information to the FBI they fired him. Before you rush to decry that decision read the linked article, Carpenter did some shady things that qualify as "cracking" against his company's network. + +[3]: http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9011283 "Reverse hacker wins $4.3M in suit against Sandia Labs" + +* Lifehacker [posted][4] an excellent review of various iTunes enhancements and scripts this afternoon, including a very nice Applescript that lets you browse Wikipedia for info on your favorite musicians. + +[4]: http://lifehacker.com/software/itunes/hack-attack-top-13-itunes-applescripts-239864.php "Hack Attack: Top 13 iTunes AppleScripts" + + +* Today's web zen: [Man Down][2] + +[2]: http://www.uclick.com/feature/07/02/25/wpopu070225.gif "Man Down" + +<a href="http://www.flickr.com/photos/reinoutvanrees/405015861/" title="Flickr: Nightly construction work in Rotterdam central station">photo credit</a>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/nightly746.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/nightly746.jpg Binary files differnew file mode 100644 index 0000000..27a3e57 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/nightly746.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/parallels.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/parallels.txt new file mode 100644 index 0000000..827ce9c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/parallels.txt @@ -0,0 +1,18 @@ +Parallels is reportedly releasing an upgrade for [Parallels Desktop for Mac][1] later today. The new version is the final release after months of public betas. Unfortunately at the moment the Parallels site is down, but [according to Ars Technica][2] the new version boasts the following new features: + +* Mac OS X 10.5 Leopard as the host OS +* Windows Vista as a guest OS +* Coherence: the Windows desktop becomes invisible and Windows applications live on the Mac desktop and in the Dock +* Running from a Boot Camp partition +* Full USB 2.0, built-in iSight, and DVD/CD writer support +* True drag and drop +* Transporter tool for moving an existing Windows installation into Parallels' virtual world + +While many of the features have been available for some time in the various public betas, this is the first official upgrade in some time. + +One thing I haven't been able to confirm is whether or not the "running from a Boot Camp installation" feature supports Windows Vista. I've personally never been able to get that working with any of the betas I've used. + +As mentioned above the Parallels site is currently down, but [this link][1] should take you to the download page whenever the site gets up and running again. The new version Parallels is free upgrade for existing customers and costs $80 new. + +[1]: http://www.parallels.com/en/download/desktop/ "Parallels" +[2]: http://arstechnica.com/journals/apple.ars/2007/2/27/7242 "Ars Technica on Parallels"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/reboot.txt new file mode 100644 index 0000000..4ef475a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/reboot.txt @@ -0,0 +1,20 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Netscape founder Marc Andreessen's new project, [Ning][2], has finally [gone public][4]. Ning is a designed to allow anyone to build social media applications with functionality similar to MySpace or Facebook. Techcrunch has a [detailed review][3] of the available tools and features. + +[2]: http://www.ning.com/ "Ning.com" +[3]: http://www.techcrunch.com/2007/02/26/ning-in-full/ "Ning In Full" +[4]: http://blog.ning.com/2007/02/launch_day.html "Ning Launches" + +* Speaking of social networks, everyone seems to think that Facebook is headed for some sort of acquisition. [Analysts at CNN][5] and elsewhere can't seem to stop repeating the apocalyptic myth of Friendster -- cash in while ye can entrepreneurs is the logic -- perhaps because the analysts still can't seem to wrap their heads around companies like Craig's List, which just don't seem interested in making billions of dollars. + +[5]: http://www.cnn.com/2007/TECH/internet/02/26/next.big.deal.ap/index.html "Will Facebook hold out or sell out?" + +* Symantec [released Norton 360][6], the company's new flagship security software, yesterday. Norton 360 combines anti-virus, anti-spyware and firewall programs with backup features and "tune-up" tools for Windows. Norton 360 is $80. + +[6]: http://www.symantec.com/norton360/ "Norton 360" + + +* For those that never got over the brilliance of Apple's Lisa Office System, the [Lisa Emulator has been released][1], allowing you to put an archaic piece of 1983 on your modern Mac or Windows machine + +[1]: http://lowendmac.com/hodges/07/0227.html "Lisa Emulator Released,"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/tvroad.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/tvroad.jpg Binary files differnew file mode 100644 index 0000000..62679b1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Tue/tvroad.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/joost.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/joost.txt new file mode 100644 index 0000000..4d8258a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/joost.txt @@ -0,0 +1,11 @@ +As most of you are probably aware, the online television-like service [Joost][2] is [currently a private beta][1]. You can apply for an invite, but we've got one to give away right now to one lucky Monkey Bites reader (this isn't like GMail, Joost has given me only three invites since I signed up last year). + +To get the invite just be the first person to answer these questions in the comments below: + +**What were the names of the two grumpy old men in the balcony on the Muppets and what were they named after?** + + +Be sure to use a real email address when you post your comment since that's where I'll be sending the invite. + +[1]: https://www.joost.com/ "Joost" +[2]: http://blog.wired.com/monkeybites/2007/02/joost_mac_clien.html "Joost Mac Client Now Available"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-backup.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-backup.jpg Binary files differnew file mode 100644 index 0000000..0415f95 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-backup.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-navigator.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-navigator.jpg Binary files differnew file mode 100644 index 0000000..57c2417 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-navigator.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-note.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-note.jpg Binary files differnew file mode 100644 index 0000000..9542518 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-note.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-online.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-online.jpg Binary files differnew file mode 100644 index 0000000..ad362ef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-online.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-sync.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-sync.jpg Binary files differnew file mode 100644 index 0000000..1875172 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/l-sync.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/lightning-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/lightning-logo.jpg Binary files differnew file mode 100644 index 0000000..6f564e1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/lightning-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/lightning.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/lightning.txt new file mode 100644 index 0000000..8eca0ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/lightning.txt @@ -0,0 +1,29 @@ +Earlier today Corel announced a new product by the name of [WordPerfect Lightning][1]. Lightning is a available now as a public beta for Windows (Vista and XP) and will apparently be free even when it hits the 1.0 mark. + +Corel is trumpeting Lightning as a "missing link" organizer for office suite users looking for a quick, lightweight way to organize, collaborate and create documents incorporating both text and images. + +If you're a WordPerfect user Lightning offers tight integration with Corel's flagship product, but for anyone else Lighning may leave you wanting more. + +Lightning is extremely lightweight, coming in at only 20MB and as its name implies it's fast. + +The main interface is a Windows Explorer-like tree view that can be organized using folders and projects. + +In addition to the main window, Lightning has a Viewer mode and a Notes tool. + +The Notes tool is where you can paste together text snippets and images to create and organize your thoughts. Creating new notes is one button simple and from there you can paste and format text to your liking. + +The Viewer mode handles outside documents that you'd like to group with your Lightning created Notes. + +In my testing was Lightning's PDF support was much faster than Adobe's Acrobat Reader, but in the processes of installing the app Lightning decided to set itself as the default app for PDF documents without asking, which I consider downright malicious. + +In addition to PDFs Lightning can also preview a number of other office suite formats such as Microsoft Word's .doc files. Unfortunately the new .docx format is not yet supported, but Corel says thy hope to include .docx support in the near future. + +The downside to Lightning is that you can't actually edit anything in the Viewer application (probably why the call it Viewer) and there's no easy way to open a .doc file in another application. The cursor will nevertheless blink and tease you into thinking you can edit the document. The best you can hope for is to highlight the document text and send it to a new note, but be prepared to lose any complex formating. + +Lightning also supports online syncing and sharing. The web storage is hosted by Joyant and a free account gets you 200MB of storage, a calendar and the ability to share documents with one other free user. For more serious collaboration you'll need to pony up for the $15/month subscription fee. + +Syncing with Lightning is a simple one button process, but the simplicity comes with a price -- lack of control. You can either sync to or from your web documents, but there doesn't seem to be a way to synchronize individual files while leaving others untouched. + +Frankly Lightning's features are wanting even for a free public beta. Lightning is too obviously an up-sell tool for WordPerfect and Joyant's server storage to be a truly compelling piece of software. + +[1]: http://www.corel.com/servlet/Satellite/us/en/Product/1171405162003 "Corel WordPerfect Lightning"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/muppets.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/muppets.jpg Binary files differnew file mode 100644 index 0000000..6203fea --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/muppets.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/reboot.txt new file mode 100644 index 0000000..09e69f1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/reboot.txt @@ -0,0 +1,18 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Corel has introduced a public beta for its new [Corel WordPerfect Lightning][1] software. WordPerfect Lightning is a free word processor/note-taking application designed to "make it easier to capture, use, and reuse ideas, information and images." + +[1]: http://www.corel.com/servlet/Satellite/us/en/Product/1171405162003 "Corel WordPerfect Lightning" + +* A while back we told you about the MPAA pirating someone's linkware blogging software. The MPAA is now [claiming][2] that the software was used for testing purposes only, as if that somehow excuses the infringement. Dear MPAA, don't worry I'm not infringing on copyrights I'm just using MacTheRipper for testing purposes, none of my copies will ever be made public; let's just call it even, fair enough? + +[2]: http://torrentfreak.com/mpaa-we-were-only-testing-forest-blog/ "MPAA: We Were Only Testing Forest Blog" + +* Macenstein [published][3] an article yesterday that purports to show Apple's Safari web browser as a resource hog. The Safari team has [responded][4] saying that the problem likely lies with the sites loaded, not the browser itself. + +[3]: http://macenstein.com/default/archives/540 "Using Safari can slow your system down as much as 76% vs Firefox" +[4]: http://webkit.org/blog/?p=96 "Background Music" + +* Microsoft has created a new category of Windows user, the "[maybe pirate][5]." In the past Microsoft's validation schemes have been pretty cut and dried, either the copy in use was pirated or it wasn't, but a new software update adds a boundary category for those cases where it just can't tell whether a copy is legitimate, for example, when a network error prevents the validation check. + +[5]: http://news.com.com/2100-7355_3-6162734.html?part=rss&tag=2547-1_3-0-20&subj=news "Windows adds 'maybe pirate' category"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/vistaonflashdrive.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/vistaonflashdrive.txt new file mode 100644 index 0000000..b642df4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/02.26.07/Wed/vistaonflashdrive.txt @@ -0,0 +1,9 @@ +Well it's the final day in our Vista Month and I just stumbled across [a handy trick to speed up your Vista instalations][1] should you choose to make the leap. + +Blogger Kurt Shintaku has posted some instructions on how to install Windows Vista from a USB flash drive. Now why would you want to do that? Well this tip is mainly for those that have several machines to upgrade; Shintaku explains: + +>Why would someone want to install a client OS from a thumb drive instead of a DVDROM or over the network? One reason: Performance. Installing Windows Vista from a high speed USB flash drive is in my experience the easiest & fastest way to complete a Windows Vista install. This is much faster than using a DVD, gigabit ethernet, or possibly even some external USB 2.0 hard drives, due to differences in access speed & transfer rate. To put this into perspective, y'know how installing Windows on a Virtual PC virtual machine from an .ISO CD image is really, really, really fast? Imagine something roughly just as fast, except for doing installations of the OS on to actual workstations. + +Naturally you'll need a Windows Vista DVD and a flash drive. Shintaku recommends an Apacer 4 gig drive, but anything of similar size will likely work. The process is fairly simple, just format the drive and copy Vista DVD. There's a few command line formatting steps to set up the drive though, so be sure to read through his instructions before you embark. + +[1]: http://kurtsh.spaces.live.com/blog/cns!DA410C7F7E038D!1665.entry "HOWTO: Install Windows Vista from a high speed USB 2.0 Flash Drive" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/elsewhere.txt new file mode 100644 index 0000000..96af8c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/elsewhere.txt @@ -0,0 +1,17 @@ +Elsewhere on Wired: + +* Ryan Singel of 27B Stroke 6 [wants your help][1] figuring out some new government documents. The docs outline a system that sounds like MySpace meets Tron. Singel writes: "From what little I've read it sounds like it's supposed to discover terrorists plots in real time and create social network graphics to find leads for investigators by translating news and blog stories into structured information in real time and by monitoring who is communicating with whom in real time... the system is supposed to be able to handle one billion structured and one million unstructured text messages per hour." Creeped out yet? + +[1]: http://blog.wired.com/27bstroke6/2007/03/help_27b_with_m.html "Help 27B With Massive Gov Data Mining Project" + +* Listening Post [reports on the very silly lawsuit][2] brought by Ric Silver, who owns the-electricslidedance.com and registered the dance with the U.S. Copyright Office using a video of himself teaching the dance in 1976. Silver has slapped Kyle Machulis with a DMCA takedown notice for video he posted on YouTube which shows some people doing the electric slide. Oh the humanity. + +[2]: http://blog.wired.com/music/2007/03/certain_dances_.html "Certain Dances Copyrighted?" + +* Bodyhack wins headline of the day for: "[Honey, Did You Order a Human Head?][3]" Apparently DHL mis-delivered some body parts shipped from China. Ludivine Larmande thought she was getting a new table and instead unwrapped a head. "My husband started to unwrap one and said, 'This is strange, it looks like a liver. He started the second one, but stopped as soon as we saw the ear." But wait it gets better, authorities believe "28 more bubble-wrapped human organs and body parts could be dispersed across the country." Check your mail early and often. + +[3]: http://blog.wired.com/biotech/2007/03/honey_did_you_o.html "Honey, Did You Order a Human Head?" + +* Pete Mortensen over at Cult of Mac [reports that Apple is holding an event Sunday, April 15][4] during the National Association of Broadcasters. Could be the release of Mac OS X Leopard to me, but personally I think it has something to do with AppleTV, it is the NAB after all. + +[4]: http://blog.wired.com/cultofmac/2007/03/apple_schedules.html "Apple Schedules April 15 Event. Expect Products."
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/flash-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/flash-logo.jpg Binary files differnew file mode 100644 index 0000000..d173cc7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/flash-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/mail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/mail.jpg Binary files differnew file mode 100644 index 0000000..ee6b316 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/mail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/mail.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/mail.txt new file mode 100644 index 0000000..00827c4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/mail.txt @@ -0,0 +1,24 @@ +Our friend Reid sent us a handy tip for speeding up Apple's mail.app over the weekend. The trick is the force optimize the SQLite database that Mail uses to reference messages and metadata. + +As with any database, Mail's reference tables can get bloated over time, but this line of code will slim things down. Quit Mail.app and then open up the Terminal and enter this line (be sure to back up your ~/Library/Mail folder before proceeding): + + sqlite3 ~/Library/Mail/Envelope\ Index vacuum; + +Assuming you haven't moved your Mail data from the default location, that line should optimize Mail's SQLite data and possibly speed things up a but. + +The SQL [docs for the vacuum command][1] say: + +>The VACUUM command cleans the main database by copying its contents to a temporary database file and reloading the original database file from the copy. This eliminates free pages, aligns table data to be contiguous, and otherwise cleans up the database file structure. + + +I can't say how safe this is, neither of us had any problems, but YMMV. Remember to quit Mail.app first and back up your ~/Library/Mail folder before running the command just to be on the safe side. + +If you'd like to find out just how much space you're saving run this command, which will output your index file size in megabytes, before and after the optimization command: + + ls -lh ~/Library/Mail/Envelope\ Index + +That . + +Many thanks to Reid. + +[1]: http://www.sqlite.org/lang_vacuum.html "SQLite Docs: Vacuum"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/reboot.txt new file mode 100644 index 0000000..9c47966 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.05.07/reboot.txt @@ -0,0 +1,18 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Mozilla's Songbird Media Player [has been updated][1], bring the fledglingly player to version 0.2.5. Note that if you're an existing Windows user the automatic software update does not work. You must manually download and install Songbird 0.2.5. + +[1]: http://www.songbirdnest.com/node/1396 "Songbird 0.2.5 Final (2007.03.01)" + +* Speaking of software updates, Wine, the popular Windows emulator for Unix received a [minor update recently][2]. The update is primarily a bug fix release and reportedly addresses some Direct3D issues. + +[2]: http://www.winehq.org/?announce=0.9.32 "release 0.9.32 of Wine" + +* Windows Vista [has offically been cracked][3]. A pirate group by the name of Pantheon has released a true crack that uses Vista's own activation program unlike previous hacks which relied on beta activation files or timestop cracks. It might not be what Microsoft had in mind, but it could speed the adoption of Vista. + +[3]: http://apcmag.com/5512/pirate_crack_vista_oem_activation "It's official: Pirates crack Vista at last" + +* The RIAA has been [sending out letters][5] to college students accusing them of infringing copyright and offering to settle if they identify themselves and confess. The main batch of letters was aimed at Marshal University which was recently brought into the spotlight by the film *We Are Marshall*, making it a high profile target for the publicity hungry RIAA. [[via The Consumerist][4]] + +[4]: http://consumerist.com/consumer/riaa/the-riaa-p2plawsuit-letter-sent-to-college-students-241054.php "The RIAA P2PLawsuit Letter Sent To College Students" +[5]: http://www.herald-dispatch.com/apps/pbcs.dll/article?AID=/20070302/NEWS01/703020385/1005/NEWS10 "Marshall students could owe hundreds of thousands in RIAA suit"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/exchange.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/exchange.jpg Binary files differnew file mode 100644 index 0000000..e86d2dd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/exchange.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/fonz.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/fonz.jpg Binary files differnew file mode 100644 index 0000000..b17a1d5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/fonz.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/itunes-license.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/itunes-license.jpg Binary files differnew file mode 100644 index 0000000..9bbce64 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/itunes-license.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/itunes-license.tiff b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/itunes-license.tiff Binary files differnew file mode 100644 index 0000000..430c45d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/itunes-license.tiff diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/itunesEULA.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/itunesEULA.txt new file mode 100644 index 0000000..3da0905 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/itunesEULA.txt @@ -0,0 +1,11 @@ +Having been on the road for several weeks I've missed out on Apple's recent updates to both OS X and iTunes. This morning I decided to take the plunge especially after my friend Corrie emailed me to point this paragraph in the iTunes license agreement: + +>10. Export Control. You may not use or otherwise export or reexport the Apple Software except as authorized by United States law and the laws of the jurisdiction in which the Apple Software was obtained. In particular, but without limitation, the Apple Software may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person’s List or Entity List. By using the Apple Software, you represent and warrant that you are not located in any such country or on any such list. <strong>You also agree that you will not use these products for any purposes prohibited by United States law, including, without limitation, the development, design, manufacture or production of missiles, or nuclear, chemical or biological weapons.</strong> (emphasis mine) + +Now I understand that Apple is covering its butt here and I'm not going to pretend to understand the nuances of U.S. export law, but this seems absurd. A quick search through Microsoft's EULAs reveals nothing of the sort. + +Apparently the wording has been in the agreement for a while now [judging by this post][1] (scroll down to the bottom of the page). + +Anyone know of any other wacky EULA requirements? Anyone using iTunes to manufacture missiles? + +[1]: http://www.thebestpageintheuniverse.net/c.cgi?u=macs_cant "thebestpageintheuniverse.net"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/joostinvites.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/joostinvites.txt new file mode 100644 index 0000000..7465ff0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/joostinvites.txt @@ -0,0 +1,9 @@ +I just got a notice from the internet TV service [Joost][1] informing me that I have two more invites and apparently they expire in a few days so the first two people to answer either of these questions in the comments gets an invite. + +Q1: Simpsons Trivia: How old is Marge Simpson? + +Q2: MASH Trivia: Captain BF Pierce was named Hawkeye after a character in famous American novel? + +Be sure to use a valid email when you post your comment since that's where I'll be sending the invite. + +[1]: http://www.joost.com/ "Joost"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/mash.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/mash.jpg Binary files differnew file mode 100644 index 0000000..83ba126 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/mash.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/outlookissues.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/outlookissues.txt new file mode 100644 index 0000000..1c1b6cb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/outlookissues.txt @@ -0,0 +1,20 @@ +Windows Vista and Internet Explorer 7 fixed a security hole that had plagued the browser for some time, however in doing so Microsoft broke some functionality in Outlook Web Access. Last month Microsoft released an update to both Exchange Server 2000 and 2003 that enables OWA support for IE7 in Windows Vista. + +But it would seem that many people have not applied the patch and are still having issues with OWA and Vista/IE7. A recent [post on the IEBlog][1] attempts to handle the issue with a more thorough explanation. + +The [original problem][2] involved a DHTML Editing Control vulnerability. IE7 (and a patch for IE6) introduced a change in the way the browser handles web pages that use ActiveX controls and Java applets such that a remote code execution flaw was fixed. + +Unfortunately in the process of patching the security hole, OWA, which relied on the old-style DHTML handling, ceased to work. However, last month's Exchange Server patch should get things straightened out. + +If your server does not have this update applied, OWA may not work with IE7 in Vista. Instead of the compose window you'll see a red "x" in your e-mail message body. + +A couple other items of note in the recent update: + +* Fixed inability to edit replies to messages composed in Entourage Exchange client +* Fixed inability to edit replies to meeting requests + +If you are running into problems with any of these issues, installing the Exchange Server update should fix the problem. + +[1]: http://blogs.msdn.com/ie/archive/2007/03/14/using-outlook-web-acess-owa-on-ie7-and-windows-vista.aspx "Using Outlook Web Access (OWA) on IE7 and Windows Vista" + +[2]: http://msexchangeteam.com/archive/2006/11/16/431521.aspx "Recent change of Internet Explorer 6 behavior in handling ActiveX controls and its effects on OWA"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/overheard.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/overheard.txt new file mode 100644 index 0000000..46e3896 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/overheard.txt @@ -0,0 +1,10 @@ +Just a note for regular readers, I am back from SXSW and will be returning to full time Monkey Bites duties. But before I do I wanted to share this genius exchange I overheard on my last morning at the conference. + +There were several large flatscreen monitors at SXSW that displayed Twitter messages floating by and there were times when the hustle and bustle of the conference could be overwhelming so I adopted a morning ritual of standing glass-eyed and hung over in front of the Twitter board for a few minutes before diving into the day's panels. + +The last morning I was standing there watching what mostly amounted to industry gossip float by when two guys next to me started talking about Twitter. Just before I walked away, one of them said: + +* [ConFonz][1] needs to put on some swim trunks and jump over this TV... + +[1]: http://techcrunch.valleywag.com/tech/confonz/ "Valleywag ConFonz" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/reboot.txt new file mode 100644 index 0000000..f620f3d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Fri/reboot.txt @@ -0,0 +1,19 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* The Google Talk widget can now be [added to your personalized homepage][1]. The Google Talk Gadget is a web-based module that brings the Talk functionality in GMail to your Google personalized homepage -- letting you see your friends and chat with them. + +[1]: http://www.google.com/ig/add?moduleurl=googletalk.xml "Google Talk Gadget" + +* Wordpress, the popular blogging platform, has rolled out the [Wordpress Plugins Directory][2], where plugins can be browsed, rated, commented on and downloaded. Previously plugins were largely scattered around at personal sites and lacked a centralized repository other than a [developer's Subversion-based site][3] which many casual users found difficult to figure out. + +[2]: http://wordpress.org/extend/plugins/ "Wordpress Plugins Directory" +[3]: http://dev.wp-plugins.org/ "Word Press Plugins Wiki" + +* The word "wiki" has [officially made it into the English language][4]. The word, which comes from Hawaiian and means roughly "quick" in its native language, has been added to the Oxford English Dictionary with the definition: a type of Web page designed so that its contents can be edited by anyone who accesses it. + +[4]: http://news.yahoo.com/s/nm/20070315/wr_nm/britain_dictionary_wiki_dc "Wiki wins a place in Oxford English Dictionary" + +* The web loves phone rumors. Ever since the iPhone turned out to be a real product (and perhaps even before that) rumors have swirled about a Google Phone. Now, [according to Engadget][5], a Google exec has confirmed the existence of R & D project phone. + +[5]: http://www.engadget.com/2007/03/15/google-exec-confirms-phone-in-the-labs/ "Google exec confirms phone in the labs" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/ajax-flash.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/ajax-flash.txt new file mode 100644 index 0000000..6ea0ea5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/ajax-flash.txt @@ -0,0 +1,13 @@ +It sounded like the panel-most-likely-to-start-a-real-life-flame-war, so I dropped in on the Flash versus Javascript talk this afternoon to try and gain a sense of where web developers stand on the issue these days. + +The panel had a lone moderator, Jonathon Boutelle of [uzanto.com][1]. Boutelle's angle was that to create truly compelling sites developers need to take advantage of both AJAX and Flash technologies. + +A quick audience survey showed that the room was pretty evenly split between AJAX and Flash developers, which played well with Boutelle's messages that you don't have to choose between the two. As Boutelle quipped, "Flash doesn't kill people, people kill people." + +That said, Boutelle's first slide was entitled "Keep Flash on a Leash," which seems to be the general direction of online apps these days -- Flash as a kind of "nugget," to use Boutelle's term. In this case Boutelle described using Flash to embed fonts and vector graphics which is difficult to do in other languages. + +So rather than the competitive environment I was expecting Boutelle spoke of a programming environment in which developers will increasingly become AJAX-Flash crossover programmers comfortable in both and aware of the strengths and weakness of each. + +Speaking of flame wars, I've noticed a pretty healthy mix of Mac and Windows OS (overwhelmingly still XP on the Windows boxes) among conference attendees, glancing around the panels usually puts things at about 50/50. I've yet to see anyone using Linux, though I have no doubt many are. + +[1]: http://www.uzanto.com/ "Uzanto"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/cal.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/cal.jpg Binary files differnew file mode 100644 index 0000000..9403437 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/cal.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/card.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/card.jpg Binary files differnew file mode 100644 index 0000000..5977271 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/card.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/lang.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/lang.txt new file mode 100644 index 0000000..a7b67ac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/lang.txt @@ -0,0 +1,15 @@ +The web was supposed to shrink the world and bring us all together, and in many ways it has, but at the same time it often highlights the differences between cultures and creates problems for web developers and content creators. The Perspectives On Designing For Global Audiences panel, moderated by Annette Preist of Dell, attempted to address some of the common issues developers face in creating international sites. + +The panel addressed the issue as an either/or dilemma with two common models: the one-size fits all approach vs localization. Obviously language localization is a priority for international developers, but the panel also raise some interesting points about user interface design. + +For instance, Rhonda Grindstaff Sesek of [runthinkmeasure.com][1] brought the issue of cultural differences in design. A western site with clean, well-spaced out design will not work as well for Chinese users who often wonder why the designer wasted so much space. The Chinese user, according to Sesek, is seeking a more compacted design that reflects cultural perceptions of space. + +As some on the panel pointed out, this is yet another case in which the flexibility of CSS allows designers to tailor sites to cultural norms. + +There was also some talk about brand localization. While large, well-known brands obviously have less to worry about since almost everyone is familiar with, say, the Nike identity, smaller companies have a harder time bridging the cultural divide (the classic example being the old Chevy Nova, which had to be renamed for sale in Spanish-speaking countries where No va literally mean "no go". + +As any English speaker who's ever accidentally switched their phone to German or French knows, there's nothing quite as important as language localization. Niftant Jain of Design for Use described meeting a man on a bus in indonesia who was using a Razr mobile phone with English menus, but spoke no english. When Jain asked him how he used the phone the man replied that he had by trial and error discovered and memorized the key sequences necessary to use the functions he needed. + +Hardly the ideal user experience, but for many it remains the only option. + +[1]: http://runthinkmeasure.com "runthinkmeasure.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/mag.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/mag.txt new file mode 100644 index 0000000..d39fdb1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/mag.txt @@ -0,0 +1,17 @@ +The Future of the Online Magazine panel proved to be by far the most entertaining session I've attended here at SXSW. Sean Mills from [The Onion][2] joined Ricky Van Veen of [College Humor][1], Laurel Touby of [Media Bistro][3], and Joan Walsh, Editor in Chief at [Salon][4]. Van Veen and Mills quickly descended into a friendly and totally hilarious sparring match of wits about their competing sites. + +But amid the ribbing and jokes, serious issues were broached as well. The general consensus among the panelists seemed to be that online magazines will replace printed content at some point, though Mills pointed out the the print version of the Onion belies that somewhat and has continued to expand into new markets. + +Salon of course defended the paid premium content model with Walsh claiming that nearly 25 percent of Salon's revenue comes from membership purchases. Most of the others seemed to think that freeing up the content and generating revenue via ads is the way of the future -- so very web 2.0 of them. + +Unsurprisingly everyone agreed that Flash-based "magazines" which try to imitate the reading experience of a magazine are a very bad idea. The magazine as website is obviously a more user-friendly model and the general consensus was that audience participation and blogs were the burgeoning areas of growth on magazine sites. + +None of the panelists seemed particularly keen on a Digg-like approach to audience participation and no one seemed to think that was what their readers wanted. After all if you're seeking unedited writings there's always blogs. What distinguishes most magazine sites from a run of the mill blog is precisely that editorial oversight that readers have come to value. + +At one point the panel took a highly surreal turn when an audience member (who was I believe part of the collegehumor staff) stepped up to the mic and launched into a very Andy Kaufmanesque question/tirade. Definitely the liveliest panel I've sat through. + + +[1]: http://collegehumor.com/ "College Humor" +[2]: http://www.theonion.com/content/ "The Onion" +[3]: http://www.mediabistro.com/ "Media Bistro" +[4]: http://www.salon.com/ "Salon"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/micro.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/micro.jpg Binary files differnew file mode 100644 index 0000000..df43c46 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/micro.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/micro.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/micro.txt new file mode 100644 index 0000000..02a4d04 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/micro.txt @@ -0,0 +1,32 @@ +[Microformats][2] were born at SXSW four years ago and while they remain somewhat of a geek-only tool, judging by the packed house at the Growth and Evolution of Microformats panel, the community's interest is piqued. + +Moderator [Tantek Çelik][3], creator of microformats, kicked things off with a history of microformats through t-shirts. Using a number of different company promotional tees Çelik did a humorous faux striptease through the birth and history of microformats. + +For those that aren't familiar with microformats, they are essentially just name spaces within HTML that let humans first, machines second as the site quips, easily read and share information. The classic example is the [hCard][4] syntax which mirrors the common vCard syntax, but wraps it in HTML. + +It might sound complicated and indeed describing microformats is much harder than using them, but the truth is adding microformat data to your site is dead simple. + +In fact there's a good chance you already have some microformat data on the web. If you use popular sites like Flickr or Upcoming much of that data is in microformats. If you'd like to add some microformat data, like an hCard, to your site the [hCard creator][6] makes it dead simple to do so. Just enter your info and the handy generator will give you some cut and paste code. + +But creating microformats is the boring part of the equation, the more exciting thing is what you can do with microformats. To that end panel member Michael Kaply showed off his Firefox plugin, [Operator][1], which makes it easy to use microformats. + +Once installed Operator auto-detects various microformats in a page and can then do useful things with them. For instance, all of the panel and event data on the SXSW site has microformat info on the page. Attendees with Operator (or similar) installed in their browser can auto add panelists contact info to their address book and send event schedules directly to Google or Yahoo calendar services. + +Combine that with some SMS notification from your calendar service and you've discovered how the über-geeks at SXSW always know what's happening and where. + +Glenn Jones of Magdex then showed some web app prototypes that integrate microformats into social networking sites, including a way to aggregate online profiles and import then into a single repository. Unfortunately those tools aren't available yet, but anyone with numerous online profiles will probably appreciate such services when they arrive. + +Other highlights included a rundown of microformat search engines and a list of popular sites that are using microformats. As I mentioned above, if you're using Flickr you already have an hcard available for the world to use. + +One demonstration from a Technorati employee (unfortunately I didn't catch his name) showed how the Firefox plugin [Tails Export][5] can be used to discover say and hCard with contact data and then send that data via bluetooth direct to your cellphone. sweet. + +Here's couple quick shots of the Operator Firefox plugin in action: + + + +[1]: https://addons.mozilla.org/firefox/4106/ "Firefox Addons: Operator" +[3]: http://tantek.com/ +[2]: http://microformats.org/ "microformats" +[4]: http://microformats.org/wiki/hcard "Microformats: hCard" +[5]: https://addons.mozilla.org/firefox/2240/ "Tails Export" +[6]: http://microformats.org/code/hcard/creator "hCard Creator"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/microformats.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/microformats.txt new file mode 100644 index 0000000..cd8ad73 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/microformats.txt @@ -0,0 +1,23 @@ + + +AUSTIN, Texas -- The burgeoning city of Austin blows open its doors on Friday for its annual media convergence megafest. Over the next 10 days, this vibrant cultural blip in the heart of Texas will host tens of thousands in the first carbon-neutral incarnation of the 21-year-old South by Southwest. Yee-haw. + +The three-pronged music, film and interactive components of the festival offer an endless panoply of panels, performances and parties that even New York and Los Angeles would be hard pressed to match. There are more than 150 panels, 200 films and 1,400 music acts at some 60 venues. + +This year, SXSW is taking advantage of the growing trends of user-generated content. Conference organizers literally turned over panel selection to the community: Visitors to the SXSW website could vote on event topics and suggest speakers through an automated tool. + +Interactive Festival event director Hugh Forrest, says SXSW "received incredible panel ideas" from the crowd. So much that "the bulk of programming for the 2007 event" came to them from website votes. + +Of course, music is the big ticket at the event, and the Austin Convention Center, parking lots, parks and venues will be jam-packed with acts ranging from new sensations like Amy Winehouse and Cloud Cult to old standbys like the Buzzcocks and David Byrne. + +But don't forget the interactive and film festivals, which attracts plenty of digital creatives and technology entrepreneurs, along with its share of geek celebs, from comedian and web designer Ze Frank to Sims creator Will Wright and Worldchanging's Alex Steffen. Google will host a panel about why XSLT is sexy, and Bruce Sterling gets to rant on stage about SXSW. + +"SXSW is an interesting show for web developers since it brings the geeks out of the pure-geek conference circuit, and mixes them in with designers, filmmakers and musicians," says Marc Hedlund, founder of the internet banking site Wesabe and a panelist on "Barenaked App: The Figures Behind the Top Web Apps." + +Normal fans -- who can't afford the A&R vacation lifestyle of many of the attendees or are otherwise unable to travel to south-central Texas -- can get a good dose of the festival online and through DIRECTV's eight hours of daily showcase programming (available on channel 101) during the music portion of the festival, running March 14 through 18. Independent television station ME TV (channel 15) offers impressive insight into the local music culture and will be streaming online content throughout SXSW. + +Similarly, radio station KUT (90.5 FM) is the go-to source to hear the many local bands, and will be reporting extensively throughout. SXSW's web site offers a toolbox of useful online and mobile apps, best of which is a free 3.1-GB bitorrent download with singles from most of the participating bands. + +Plus, SXSW Film Festival producer and wunderkind programmer Matt Dentler blogs daily with the deep inside. + +Stay tuned for daily news from the festival, in Listening|Post. diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/microformats2.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/microformats2.txt new file mode 100644 index 0000000..ab5d619 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/microformats2.txt @@ -0,0 +1,40 @@ +geotags as a microformat + +hcards, + +Microformats were born at SXSW four years ago and while they remain somewhat of a geek-only tool, judging by the packed house at the Growth and Evolution of Microformats panel, the communitiy's interest is piqued. By far the largest panel I've attended, moderator Tantek Çelik creator of Microformats kicking things off with a history of microformats through t-shirts. Using a number of different company promotional tees Çelik slowly hurmously stripped his way through the birth and history of microformats. + +For those that aren't familiar with microformats, they are essentially just name spaces within html that tell machines how to handle information. The classic example is the hcard syntax which mirrors the common vcard syntax, but wraps it in HTML. + +It might sound complicated and indeed describing microformats is often much harder than using them. In fact there's a good chance you already have some microformat data on the web. If you use popular sites like Flickr or Upcoming much of that data is in microformats. + +But creating microformats isn't the point, the point is using them and to that end panel member Michael Kaply showed off his Firefox plugin, Operator, which makes it easy to use microformats. Once installed Operator auto-detects various microformats and can then do useful things with them. For instance all of the panel and event data on the SXSW site has microformat info on the page. Attendees with Operator (or similar) installed in their browser can auto add panelists contact info to their address book and send event schedules directly to Google or Yahoo calendar services. + +Combine that with some SMS notification from your calendar services and you've discovered how the uber-geeks always knows what's happening and where. + +Glenn Jones of Magdex then showed some web app prototypes that integrate microformats into social networking sites, including a way to aggregate online profiles and import then into a single repository. Unfortunately those tools aren't available yet, but anyone with numerous online profiles will probably appreiciate such services when they arrive. + +Other highlights included a rundown of microformat search engines and a list of popular sites that are using microformats. As I mentioned above, if you're using Flickr you already have an hcard available for the world to use. + +One demostration from a Technorati employee (unfortunately I didn't catch his name) showed how the Firefox plugin lkadsfj can be used to discover say and hcard with contact data and then send that data via bluetooth to your cellphone. sweet. + +Microformats are unique in that usually when someone is creating a format or outlining code for something totally new whereas with microformats are dealing with information that already exists on the web, but could be organized better + +Microformats search engines: edgeio uses hlisting to aggregate craig's list type of data. + +Technorati kitchen: + +Tantik said something that cuts to heart of why many geeks hate MySpace, the content is trapped at the URL there's no way to use that data across the web + +hcard and openid openid2.0 may contain a way to exchange profiles and hopefully rather than reinventing the wheel, the openid folks will adopt vcard or hcard. + +Microformats are actually quite simple to use, for instance here is mine. + +GRDDL has come up twice now. + +Eventful one of the early adoptors of microformats + +Frances Berriman Volume +Michael Kaply IBM +Glenn Jones Creative Dir, Madgex +Tantek Çelik Chief Technologist, Technorati
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/politics.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/politics.txt new file mode 100644 index 0000000..a94882d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/politics.txt @@ -0,0 +1,13 @@ +Call me cynical but I was half expecting a panel entitled The Internet Can Make You President to be about e-voting machine hacks, fortunately SXSW has a brighter outlook on the future of politics. + +The, Net Politics: The Internet Can Make You President, panel consisted of Mark Stama from the Texas House of Representative as well as Patrick Ruffini who is consulting for Rudy Giuliani's campaign, Mark Soohoo from McCain's campaign, and Clay Johnson, formerly of the Dean from America campaign. + +Ostensibly the panel members where there to talk about ways in which candidates can use the internet to connect with people, but at this point it seems that the main use for the internet is as a fundraising tool. + +The problem, from the panel's point to view, is how to translate online groups and political action organizations which draw on the populist nature of the internet into some kind of real world support that goes beyond the simple tip jar aspect of current online campaign drives. + +The panel also touched on the fact that while Dean is often seen as the first candidate to embrace the internet, in fact it was more that the internet embraced him. Johnson said that Dean's success on the internet was largely a result of the internet finding Dean rather than Dean being internet savvy. In other words, [McLuhan][1] be damned, it's still the message that draws people to a candidate and campaign. + +The number one thing the panelists suggested candidates not do: Second Life. + +[1]: http://en.wikipedia.org/wiki/Marshall_McLuhan "Marshall McLuhan"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/reboot.txt new file mode 100644 index 0000000..8ca5fd5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/reboot.txt @@ -0,0 +1,18 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot does not mess with Texas: + +* Earlier this week Google [rolled out a new version of its Picasa Web Albums service][1]. The update adds search functionality and easier sharing via e-mails, IMs and websites. Storage space has also been increased to 1GB with available paid storage options for up to 250GB. + +[1]: http://picasa.google.com/intl/en_US/web/whatsnew.html "Picasa Upgrade" + +* Turkey [lifted][2] its [YouTube ban][3] yesterday. + +[2]: http://www.smh.com.au/news/Technology/Turkey-Lifts-YouTube-Ban-After-Two-Days/2007/03/10/1173166996611.html "Turkey Lifts YouTube Ban After 2 Days" +[3]: http://blog.wired.com/monkeybites/2007/03/turkey_vs_youtu.html "Turkey vs. YouTube" + +* Last week the RIAA announced that that instead of filing lawsuits against student downloaders, it would give them the option to pay a flat fee. At the time details were slim, but now 50 students from Ohio University are being told to [pay $3,000 or else face a lawsuit][4]. + +[4]: http://www.columbusdispatch.com/news-story.php?story=dispatch/2007/03/08/20070308-C3-00.html "50 students at OU asked to pay $3,000 each in pirating case" + +* More bad news for Yahoo. AT&T [reportedly][5] wants to renegotiate its longstanding deal with Yahoo. The telecom giant has been selling broadband DSL service under the joint AT&T-Yahoo brand name for five years. + +[5]: http://www.msnbc.msn.com/id/17538030/ "Yahoo feels the pressure of AT&T alliance"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/social.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/social.txt new file mode 100644 index 0000000..aed7493 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/social.txt @@ -0,0 +1,18 @@ +I just sat in on a panel entitled "Bridging The Online cultural Divide" which addressed issues of race and gender within the social networking sphere. [Jason Toney][1] of negroplease.com fame [Lynne D Johnson][2] of Fast company and [Samhita Mukhopadhyay][3] of feministing.com. + +In this case social networking was defined as not just as the obvious sites like Facebook or Flickr, but also more generally as blogs and interaction with readers through comments. One of the salient points of nearly everyone on the panel raised at some point was that software tools used to build communities often fall short when it comes to moderating and policing communities. + +The panelists response to how much policing is necessary varied from Johnson who does absolutely no moderation on her site, to Mukhopadhyay who said that feministing will delete deliberately off-topic and "hateful" speech. + +The software developers creating social networks often have very high-minded ideas about community and how community members will interact with one another, but then, as Jason Toney put it, "people show up." As anyone who writes a blog can tell you, things can quickly get messy. + +The panel also broached the question of how online reputations can be effected by comments and reader feedback and while none of the panelists felt their own careers have been effected certainly the existence of [ReputationDefender][4] and its ilk indicate that some people are concerned about not just those drunken pictures, but also what others are saying about them. + +Lynne Johnson raised an interesting point: in some ways the online world closely mirrors the real world in that a fifty year old white male is probably not spending much time on Blogher or feministing -- if people aren't connecting offline they probably won't connect online. + +One of the things that didn't come up and the Q & A ended before I could ask is how sites like Digg, which often expose small communities to a much larger audience, effect the dialogue and interaction within the community. Oh well, maybe next year. + +[1]: http://www.jasontoney.com/ "Jason Toney" +[2]: http://www.lynnedjohnson.com/ "Lynne D Johnson" +[3]: http://www.feministing.com/ "feministing" +[4]: http://www.wired.com/news/technology/0,72063-0.html "Wired: Delete Your Bad Web Rep"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/sxsw.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/sxsw.jpg Binary files differnew file mode 100644 index 0000000..dbd728a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/sxsw.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/tags.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/tags.txt new file mode 100644 index 0000000..5744927 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/tags.txt @@ -0,0 +1,17 @@ +Tag you're it was a panel was made up of representatives from Consumating, Flickr and Thomas Vander Wal who, among other things, coined the phrase folksonomy. + +George Oates of Flickr started things off with a rundown on Flickr's content and tags, which averages out to about 3000 photo uploads a minute and 9 million unique tags. Both Oates in the context of Flickr and Ben Brown of consumating talked about the kind of "accidental" information that tags can bring to light -- for instance tag clouds as a means of learning about a particular user. + +The panel also talked a bit about the so-called negative aspect of tagging that many companies, eager to jump on the tagging bandwagon often overlook. For a hilarious example of "negative" tagging check out the [Amazon page for Kevin Federline's album][1] -- the top three tags are "talentless" (29), "garbage" (19), "laughable" (17). + +Thomas Vander Wal gave some other examples of using tags, for example public libraries have apparently been opening up their catalogues to tagging which can help readers find books in easier ways. Vander Wal didn't give a specific example of a library and my local library doesn't seem to offer such features, but it certainly sounds like an excellent idea. + +The UK paper The Guardian is also experimenting with hackable tag urls (something I'd love to see this site get better about). + +Nearly everyone on the panel seemed against any kind of tag normalization. Vander Wal argued that a situation where you end up with my.tag, my_tag, mytag, and my-tag can actually help delineate different aspects of a community, which, while I agree with that observation, doesn't change the fact that from an outsider's point of view, it makes it more difficult to get at the information you want. + +As a footnote, Ben Brown co-founder of Consumating announced that they will be releasing the source code for the site in the next couple of weeks. The site is written in Perl so if you're a Perl programmer keep an eye out for that announcement. + + + +[1]: http://www.amazon.com/Playing-Fire-Kevin-Federline/dp/tags-on-product/B000IU3YLY/ref=tag_dp_ct_sa/104-2706321-9086304?ie=UTF8&qid=1173580718&sr=8-1 "Amazon Kevin Federline"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/xslt.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/xslt.txt new file mode 100644 index 0000000..c1fd25a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Mon/xslt.txt @@ -0,0 +1,18 @@ +There's nothing quite as geeky as a panel entitled "Why XSLT is Sexy", which was naturally the first place I headed this morning. Joe Orr of NYCircuits and Lindsey Simon of Google moderated a panel about XSLT and what, well, makes it sexy. + +Of course, for the most part there's nothing particularly glamorous about XSLT, but it is useful and some of the applications that were demoed do qualify as, if not sexy, then at least compelling. + +Some of the examples were still in the eye candy stage, but with the growth of both semantic web and Microformats I think XSLT usage will be increasing in the near future. + +The most interesting demo was the closed beta of something called MyTimes from the New York Times which looks a bit like the Google News page, but emphasizes New York Times data widgets and can be customized much like Google's implementation. + +The MyTimes service won't be public until later this year, but according to Orr, a framework will be available for developers to create their own widgets. + +MyTimes widgets can contain other widgets which makes it possible to create some very complex, data rich homepage implementations and, thanks to XSLT on the back end, it's relatively simple for developers to pull in outside data -- for instance you could create a widgets to grab your GMail and display it on your Times feed. + +Also some of the widgets that are currently only available in the Times Reader app (Windows), such as the slideshow functionality, will be coming to the web. + +If you're interested in XSLT there's some online examples you can play with [here][1] and [here][2]. + +[1]: http://www.commoner.com/lsimon/XSLDataGrid/test/Dynamic.php "XSLDataGrid Dynamic test" +[2]: http://www.screenbooks.com/sxsw ""
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Thu/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Thu/reboot.txt new file mode 100644 index 0000000..188d2bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Thu/reboot.txt @@ -0,0 +1,18 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* In a move that I find downright shocking, the International Organization for Standardization (ISO) has [announced][1] that it is putting Microsoft's Open XML format -- used for Office 2007 documents -- on the fast track to become a full ISO standard. Of course having OOXML on the fast track does not mean it will be accepted, that is still up to the voting countries come ballet time. + +[1]: http://arstechnica.com/news.ars/post/20070313-microsoft-office-xml-gets-fast-tracked-to-iso-standard.html "Microsoft Office XML gets fast-tracked to ISO standard" + +* Today is the last day for old school Flickr users to switch over to a Yahoo account and to make things perhaps a bit less painful, Flickr [announced a new feature yesterday][2] called "collection." Collections are essentially another top level organization tool that allows you to make sets of sets. Collections are available to Flickr Pro users only. + +[2]: http://blog.flickr.com/flickrblog/2007/03/today_we_launch.html "Flickr Blog: Collections" + + +* Google is reversing its long standing policy of storing user search data indefinitely. Our own Ryan Singel has an in depth [look at what the decision means][4] over at 27B Stroke 6: "by the end of the year [Google] will begin removing identifying data from its search logs after 18 months to two years, depending on the country the servers are located in." + +[4]: http://blog.wired.com/27bstroke6/2007/03/google_to_anony.html "Google To Anonymize Data" + +* Interesting copyright news: author Jonathan Lethem has [announced he will give away the film option rights for his new novel][3] (taking payment in royalties) so long as the filmmaker agrees to release all the materials and rights into the public domain after five years. It seems to me that this is exactly what it will take to raise the level of dialogue about copyright -- for the public to see actual authors/musicians/artist embrace alternative structures. Kudos to Lethem. + +[3]: http://jonathanlethem.com/freelove.html "free option & ancillary-rights give-away"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Tue/reboot.txt new file mode 100644 index 0000000..5df405a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Tue/reboot.txt @@ -0,0 +1,18 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Forget viruses and worms, it would seem Microsoft's own Live OneCare security software can [delete your data][1] just as easily. Over the weekend Microsoft quietly issued a patch to address the problem. OneCare auto-updates when connected to the internet so if you're using OneCare the problem should be fixed by now. + +[1]: http://www.zdnet.com.au/news/software/soa/_Microsoft_s_antivirus_deletes_users_e_mails/0,130061733,339274163,00.htm "Microsoft's antivirus deletes users' e-mails" + +* Malaysia is [added piracy sniffing dogs][2] to the increasingly bizarre world of copyright protection. Malaysia, which is on the U.S. watchlist on piracy, is the first country to try using animals to hunt for illegal recordings hidden in cargo. No word on the difference in smell between legal and illegal disks. + +[2]: http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyid=2007-03-13T105630Z_01_KLR293175_RTRUKOC_0_US-MALAYSIA-PIRACY.xml "Malaysia uses sniffer dogs to fight movie pirates" + +* Viacom is [suing Google and YouTube][3] for more than $1 billion over unauthorized use of its programming online. Viacom accuses YouTube of "massive intentional copyright infringement." Viacom is reportedly unhappy with the measures YouTube has taken to curb the uploading of copyrighted content -- perhaps Google can use some dogs to sniff out the illegal clips. + +[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-03-13T134200Z_01_WEN5351_RTRUKOC_0_US-VIACOM-YOUTUBE.xml&src=rss "Viacom in $1 bln copyright suit vs Google, YouTube" + +* A study by George Washington University claims that, ten years after Congress enacted the Electronic Freedom of Information Act Amendments (E-FOIA), [only one in five federal agencies actually complies with the law][5]. Check out 27B Stroke 6's coverage [here][4]. + +[4]: http://blog.wired.com/27bstroke6/2007/03/most_government.html "Most Government Sites Fall Short of FOIA Requirements" +[5]: http://www.gwu.edu/~nsarchiv/NSAEBB/NSAEBB216/index.htm "Agencies Violate Law On Online Information"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Wed/reboot.txt new file mode 100644 index 0000000..2387f8d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.12.07/Wed/reboot.txt @@ -0,0 +1,17 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot, on the road again: + +* Regarding yesterday's $1 billion Viacom lawsuit against YouTube and Google, Google [remains unfazed][1] (nearly limitless capital can do that for you) and claims that it is protected under current copyright law. + +[1]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-03-14T020357Z_01_N13164116_RTRUKOC_0_US-VIACOM-YOUTUBE-GOOGLE-LAWYERS1.xml&src=rss "Google confident digital liability law protects it" + +* Apple [released a significant new update for OS X][2] users yesterday. The update brings the system to version 10.4.9 and addresses a number of security updates including patches for a number of security flaws in third party products like the Adobe Flash plugin. Fire up Software Update to get the fixes. + +[2]: http://docs.info.apple.com/article.html?artnum=304821 "OS X 10.4.9" + +* Our own Michael Calore has the inside scoop, including leaked photos of a test site, on the [rumored MySpace Digg-clone][3]. Yes it is real Virginia. + +[3]: http://www.wired.com/news/technology/internet/0,72960-0.html?tw=wn_index_10 "Exclusive: MySpace News Pics" + +* And finally, Gadget Lab one of the [coolest iPod screenhacks][4] ever. Bound to be a hit at SXSW. + +[4]: http://blog.wired.com/gadgets/2007/03/ipod_hack_of_th.html "iPod Hack of the Year"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/elsewhere.txt new file mode 100644 index 0000000..7f4f1b7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/elsewhere.txt @@ -0,0 +1,17 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/2007/03/23/gun.jpg" title="Gun" alt="Gun" style="margin: 0px 0px 5px 5px; float: right;" />Elsewhere on Wired: + +* Table of Malcontents just opened up a strange set of memories I didn't know I had as Annalee Newitz looks at the [retro meme of Cal Worthington and His Dog Spot][1]. Anyone who grew up in Southern California in the late 70s and early 80s will no doubt remember these ads -- goofy, lamely funny and somehow classic. See Annalee's post for some links to online versions. + +[1]: http://blog.wired.com/tableofmalcontents/2007/03/retro_meme_cal_.html "Cal Worthington and His Dog Spot" + +* Eliot Van Buskirk at Listening Post has sad news: The Online Guitar Archive, or (OLGA), has been [served with a cease and desist letter and site is gone][2]. OLGA was, as Eliot describes it, "a guitar tablature repository where guitarists who had picked their way through a song would post charts in order to teach each other how to play the guitar parts from popular recordings." It was without a doubt one of the best resources on the net for aspiring guitarists. + +[2]: http://blog.wired.com/music/2007/03/music_publisher.html "Music Publishers Crack Down on Guitar Tabs" + +* Kevin Poulsen of 27B Stroke 6 has the text of [one of the "hit man" advance-fee e-mails][3] the FBI warned about last month. The basic scam is that an assassin claims to have been hired to kill you but is willing to negotiate, if you give more money than the person who supposedly took out the contract, you get to live. The actual text of the email is hilarious: "The reason why they want you Dead is not disclosed to me as i was not allowed to know, but you are now not better that the dead ok. " + +[3]: http://blog.wired.com/27bstroke6/2007/03/phisher_threate.html "Scammer Threatens Lives, English Language" + +* Sex Drive Daily brings news that [porn star legend Ron Jeremy has taken a new job as a tech product reviewer for Heavy.com][4]. I mean, why not right? At least we know he's not in it for the chicks. + +[4]: http://blog.wired.com/sex/2007/03/porn_legend_ron.html "Porn Legend Ron Jeremy Now a Gear Geek"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grand1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grand1.jpg Binary files differnew file mode 100644 index 0000000..9b193dd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grand1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grand2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grand2.jpg Binary files differnew file mode 100644 index 0000000..e9f7482 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grand2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grandcentral.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grandcentral.jpg Binary files differnew file mode 100644 index 0000000..29c7b5b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grandcentral.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grandcentral.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grandcentral.txt new file mode 100644 index 0000000..88d64a3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/grandcentral.txt @@ -0,0 +1,28 @@ +While the web has been buzzing about [Twitter][1], I've discovered something far more useful -- [GrandCentral][2]. GrandCentral is an all-in-one phone answering service that gives you a number and can forward calls to any other number you chose. There's also a host of other great features like call recording, email message delivery, and spam blocking for telemarketers. + +For those that missed it, David Pogue [wrote about GrandCentral][3] in his column last week, claiming "GrandCentral has rewritten the rules in the game of telephone." + +Normally I'm a bit cynical about new services, I still don't see the point of Twitter, but in this case I don't think Pogue is being hyperbolic. If GrandCentral doesn't get hijacked somehow by the existing phone companies, this service is going to be huge. + +Pogue starts off his column saying that the service isn't really for people that only have one phone, but I disagree. I only have one phone and I have still find GrandCentral to be indispensable. I've only been using the service for three days and I'm already hooked. + +Rather than recap Pogue's review, which is quite thorough, here's a brief list of what I think are GrandCentral's standout features: + +* Caller Name ID. Every GrandCentral caller is announced by name when you answer the phone. +* Listen to messages as they're being left. Every time you answer a GrandCentral call you have four options, answer, send to voicemail, send to voicemail and listen in with the option to pick up and answer and record. +* Record your phone calls. For most people this may not be a big one, but it's what sold me on the service. Note in some states you are required to disclose to the other party when you are recording a call. +* personalized greetings. You could, if you wanted,mid-conversation record a different greeting for every user in your GrandCentral phonebook. It's not essential, but it does add a nice personalized touch. +* GrandCentral can call any phone you chose and you can witch lines anytime during a call. Say you answer on your home phone and decide you need to run to store. Just press the * key to make all of your phones ring again and you can pick up on your cellphone in midconversation, unbeknownst to the person on the other end. + + +While most people may not be interested in it the ability to record calls it's indispensable when conducting phone interviews -- something I do a lot. I can spend far less time trying to hurriedly type up notes when I know that I'll be able to review the call later, which allows me to focus more on the interview. + +I also really like the ability to record individualized greetings for different callers, though several people have told me it creeped them out a bit, but even those folks immediately wanted to know how to do it. + +The one drawback that I can see is that dialing out straight from your phone, the person on the recieving end won't see your GrandCentral number on their caller ID. If you place a call through the website they will see the number, but otherwise it can be a bit confusing for your friends. + +However that's about my only gripe with GrandCentral and it hasn't stopped me from changing my number. However, keep in mind that the service is a beta. I haven't had any problems and I have already entrusted it with some critical communications, but as with any beta -- YMMV. + +[1]: http://blog.wired.com/monkeybites/2007/03/8_cool_twitter_.html "8 Cool Twitter Tools" +[2]: http://www.grandcentral.com/ "GrandCentral" +[3]: http://www.nytimes.com/2007/03/15/technology/15pogue.html?ex=1331611200&en=4df47d0c8f62356d&ei=5090&partner=rssuserland&emc=rss "One Number That Will Ring All Your Phones"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/nightly.txt new file mode 100644 index 0000000..97edfe8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/nightly.txt @@ -0,0 +1,22 @@ +The Nightly Build: + +* The Stration/Warezov [Trojan is back][1] and it's been modified to target Skype users. Websense Security Labs says a targeted Skype user will receive a chat message with a link to a malicious executable called "file_01.exe" on a Web site. The attack is vry similar to one that surfaced last month, but it has been adapted to use files hosted in different locations and running new code. Skype chat users be cautious. + +[1]: http://www.websense.com/securitylabs/alerts/alert.php?AlertID=757 "Malicious Website / Malicious Code: New Warezov spreading via Skype" + +* It's too bad Jean Baudrillard isn't around to see this: [Daily Show on the Viacom/Google Lawsuit][2]. + + +[2]: http://www.ifilm.com/video/2835488/show/17676 "iFilm" + +* Holy Tubes Batman! Research firm Park Associates, says that 29 percent of U.S. households, or 31 million homes, [do not have Internet access and do not intend to subscribe to an internet service over the next 12 months][3]. What do these people do without Twitter and YouTube? They must actually watch TV shows and talk to their neighbors or something. Suckers. + +[3]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-03-23T223329Z_01_N23234603_RTRUKOC_0_US-INTERNET-HOLDOUTS.xml&src=rss "Many Americans see little point to Web: survey" + +* Wired has a breaking story on some [personnel shakeups at Wikipedia][4]. Kim Zetter reports that "two top employees of the Wikimedia Foundation have resigned, citing disagreements with the board." Although both announced their resignations publicly yesterday they claim that they are unrelated and the timing coincidental. + +[4]: http://www.wired.com/news/technology/internet/0,73074-0.html?tw=rss.index "Wikipedia Shakeup: Resignations" + +Just in case you're one of the probably millions of NPR lovers who don't have Showtime, the first episode of <cite>This American Life</cite> is [now available via the Showtime website][5]. + +[5]: http://www.sho.com/site/thisamericanlife/video.do?source=blogs "This America Life"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/paint.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/paint.txt new file mode 100644 index 0000000..960cba6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/paint.txt @@ -0,0 +1,21 @@ +Here's the strangest thing I've seen in a while, a U.S. based company announced last week that they have [created a wireless blocking paint][1]. Contrary to what you might think, the intended use is not to help those who claim wifi signals induce headaches, but rather as a means of containing the signal within a building. + +A bit of digging reveals that WiFi blocking paint is not a new idea. In fact security expert [Bruce Schneier notes][2] an [Information Week article][3] on similar technology way back in 2004. The company mentioned in that article is even [still in business][4]. + +The chief problems with wifi-blocking paint appear to be, powerful antennas can generally still pull out a signal, mobile reception inside the building is most likely equally blocked and then there's whole problem with windows. + +According to this press release from EM-SEC, the makers of this new wifi shielding paint: + +>The tests demonstrated that intellectual property can no longer be stolen through the airwaves while inside an EM-SEC-coated facility. The results showed that a one-time application of the EM-SEC Coating creates an "electromagnetic fortress" by preventing airborne hackers from intercepting signals. + +To be honest I can't even tell if the press release is a hoax or not. I don't think it is but the outlandish claims do seem a bit much. Either way if you believe the above statement please contact Michael and I using the links to the right as we have some valuable antique bridge hardware you will absolutely love. + +On a serious note, I wonder is putting a coat of this paint, say on the bedroom walls, would help the folks that claim wifi signals give them migraines and other health problems? + +[photo credit][5] + +[1]: http://emsectechnologies.com/press_releases/press1.php "EM-SEC Technologies Announces Successful Test of Wireless-Blocking Paint" +[2]: http://www.schneier.com/blog/archives/2004/12/wifi_shielding.html "Wi-Fi Shielding Paint" +[3]: http://informationweek.com/story/showArticle.jhtml?articleID=56200676 " Startup Markets Wireless-Security Paint" +[4]: http://www.forcefieldwireless.com/products.html "Force Field Wireless" +[5]: http://www.flickr.com/photos/tiseb/209240887/ "Flickr: Free wifi"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/reboot.txt new file mode 100644 index 0000000..787ec73 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/reboot.txt @@ -0,0 +1,22 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* A federal district court has [struck down][3] the Child Online Protection Act of 1998 -- signed into law by President Bill Clinton -- saying that it violates the First Amendment and is not the most effective way to keep children from adult websites due to the current state of web filtering software. 27B Stroke 6 [has more][4]. + +[3]: http://news.wired.com/dynamic/stories/I/INTERNET_BLOCKING?SITE=WIRE&SECTION=HOME&TEMPLATE=DEFAULT "U.S. Judge Blocks 1998 Online Porn Law" + +[4]: http://blog.wired.com/27bstroke6/2007/03/court_strikes_d.html "Court Strikes Down Internet Censorship Law Intended to Protect Kids" + + +* Oh the search engine wars. The analyst firm comScore says [Google's share of U.S. web searches grew][1] to almost 50 percent in February. Google's closest rival in web search, Yahoo, had just over 28 percent of the U.S. market, while Microsoft's share dipped to down to about 10 percent. + +[1]: http://news.yahoo.com/s/nm/20070321/wr_nm/google_search_dc "Google share gains quicken in U.S. search market" + + +* The U.S. Federal Communications Commission has [started a "notice of inquiry"][2] into the question of whether or not high-speed Internet providers like AT&T and Comcast should be barred from charging extra fees to guarantee access to the Internet -- AKA net neutrality. The FCC's glacial pace has irritated some, Democratic commissioner Michael Copps said, "I want an FCC that unconditionally states its preference for nondiscrimination on the Internet." So do I. Plus I want a pony. + +[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-03-22T214200Z_01_N22240577_RTRUKOC_0_US-FCC-NETNEUTRALITY.xml&src=rss "U.S. FCC to examine future of Internet access" + + +* The EFF is [suing Viacom][5] claiming that the media giant is misusing copyright law by forcing YouTube to remove a parody video of The Colbert Report. Viacom denies the accusation and says it does not object to the video being on YouTube. + +[5]: http://news.com.com/2100-1030_3-6169765.html?part=rss&tag=2547-1_3-0-5&subj=news "Viacom sued over Colbert parody on YouTube"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/stewert.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/stewert.jpg Binary files differnew file mode 100644 index 0000000..d5da6de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/stewert.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/tabblo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/tabblo.jpg Binary files differnew file mode 100644 index 0000000..e6a206f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/tabblo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/tabblo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/tabblo.txt new file mode 100644 index 0000000..c786cd8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/tabblo.txt @@ -0,0 +1,21 @@ +Hewlitt Packard has [announced its intent to acquire][1] the photo sharing and printing service [Tabblo][5]. Additionally, Tabblo introduced the Tabblo print-at-home photo cube yesterday. The photo cube is a sort of updated take on the photo cubes that might still be hiding in your grandmothers house. + +The Tabblo photo cube can be made for free by anyone with a printer, paper and pair of scissors. No tape or glue are needed. Just head to the Tabblo Cube page and upload your photos. + +As a photo sharing site Tabblo stresses theme layouts and mini photo essays rather than the more familiar "stream" metaphor of Flickr and others. Along with that emphasis Tabblo has in recent months moved more and more into the print realm. You can print a variety of posters sizes, create collages pieces and more, which is undoubtedly where HP's interests lie. + +While we've never actually reviewed Tabblo I've always kept tabs on it, as it were, because it uses Django, one of the better development frameworks out there right now. + +In a note to Django Group [Ned Batchelder][2], designated "hacker and craftsman" at Tabblo, wrote: + +>One of the things that HP valued in Tabblo was our ability to innovate quickly and deliver solid products in a short amount of time. We definitely feel like Django was one of the reasons we were able to do that, and to make such an impression on HP. So thanks a bunch to the entire Django community. You were part of our success. We'll be continuing with Django inside HP. + +Django has a pretty strong track record in the journalism field, the [Lawrence Journal-World][3] and the parts of the [Washington Post][4] among others (sadly, not Wired), but Tabblo is definitely the highest profile Django-powered commercial site that I'm aware of. + +Incidentally the Tabblo folks have been quick to point out that the site will not be merged with HP's existing photo sharing site, Snapfish, but will instead remain a separate enitity focused mainly on printing photos. + +[1]: http://blog.tabblo.com/index.php/2007/03/22/hot-off-the-presses/ "Hot off the presses" +[2]: http://www.nedbatchelder.com/blog/200703.html#e20070322T091142 +[3]: http://www.ljworld.com/ "LJWorld.com" +[4]: http://code.djangoproject.com/wiki/DjangoPoweredSites#Sites/featuresatTheWashingtonPost "Parts of the Washington Post featuring Django" +[5]: http://www.tabblo.com/ "Tabblo"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/wifi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/wifi.jpg Binary files differnew file mode 100644 index 0000000..f3c4abe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Fri/wifi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/apollo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/apollo.jpg Binary files differnew file mode 100644 index 0000000..4d37713 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/apollo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/apollo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/apollo.txt new file mode 100644 index 0000000..5772ca5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/apollo.txt @@ -0,0 +1,46 @@ +As I mentioned in [The Morning Reboot][1], Adobe has [released][2] an alpha version of its new cross-platform deployment software code named Apollo. Apollo aims to bridge the gap between the growing functionality of web applications and traditional desktop applications. + +Apollo is designed to help rich internet application developers create on and offline web applications that behave like desktop application. Essentially, Apollo allows web developers to build desktop application without having to learn complex compiled languages Java or C++. + +Apollo applications can be written in HTML and Javascript, Flash, Flex or any combination of the three, and then be deployed on Mac OS X, Windows and (eventually) Linux. + +Using Apollo, online apps can offer a downloadable application installer that will put all the functionality of the website on the user's desktop. Apollo apps look and behave just like traditional desktop apps, complete with icons in the user's applications folder and dock (or system tray on Windows). + +But with the current trend moving in the opposite direction -- tasks traditionally handled by desktop apps are now online services -- why is Adobe touting desktop applications? Probably for the same reason Mozilla is planning to support offline components in the next version of Firefox, because the world of ubiquitous internet access remains illusory. + +Using technologies like Apollo, rich internet application designers can bridge the one shortcoming of online apps -- what to do when the internet isn't available? Need to edit a document mid-flight? Want to post your photos from the subway? Currently you're out of luck, but with Apollo-based apps you could perform your edits and then sync the next time you connect. + +Of course the road to cross-operating system, online/offline apps is littered with failed attempts, but, despite my initial skepticism, Apollo looks great. + +Imagine for instance the entire online component of Flickr's organizational and editing tools wrapped in a desktop app that you can use offline to organize your photos and then, when you connect, updates the data in the background. + +True, in Flickr's case there is already a cottage industry of apps that can do this sort of thing, but functionality and user experience varies widely. Using Apollo, it would be relatively easy for Flickr developers to simply repackage their online tools as an integrated on/offline application. + +[Apollo is free download][3] broken into two separate components, a software development kit for programmers and then the runtime software which allows users to run Apollo applications on Mac or Windows machines. + +Once Apollo hits 1.0 the runtime portion will feature an end user installation process somewhat like that of Adobe's Flash Player Plugin. Version 1.0 will also see the release of a Linux version of the runtime environment. + +The second development release of Apollo will be a beta and is due sometime this summer. Version 1.0 is planned for the second half of the year. + +While there is no specific IDE for developing applications, the initial alpha release of Apollo is squarely aimed at Flex developers while future releases with bring in more of the HTML/Ajax and Flash tools. + +Adobe's upcoming Creative Suite 3, which is schedule for release later this month, will integrate with Apollo and allow users to generate Apollo content via apps like Dreamweaver. + +So what is Apollo? In its current incarnation, Apollo is really a set of filesystem APIs combined with network APIs. The best way to understand what Apollo is capable of is to check out one of the [sample applications available through Adobe Labs][5] (note that you'll need to have the runtime software installed to use the samples). + +Unfortunately because Apollo is a software development kit and runtime application, there's really no way to demonstrate Apollo. If you'd like to watch a demo before committing to an install, here's a clip of Adobe's Mike Downey showing off a prototype Ebay Apollo app at the Demo conference earlier this year. + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/RurAaFUjpvE"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/RurAaFUjpvE" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + + + +The problem facing Apollo is whether or not users will download and install the runtime component. Historically web plugins have not faired well and runtime environments even worse. Still, Apollo has remarkable potential if it can achieve the necessary critical mass. + +If you're a web app developer wanting to see what Apollo can do for your applications, Lynda.com has has a series of instructional videos narrated by Adobe's Mike Chambers [available for download][4] that walk you through creating and deploying a simple Apollo application in Flex. + +[1]: http://blog.wired.com/monkeybites/2007/03/the_morning_reb_9.html "The Morning Reboot: Monday March 19" +[2]: http://www.adobe.com/aboutadobe/pressroom/pressreleases/200703/031907ApolloLabs.html "Public Alpha of Apollo Debuts on Adobe Labs" +[3]: http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5Fapollo "Adobe Labs: Developing with Apollo" + +[4]: http://movielibrary.lynda.com/html/modPage.asp?id=378 "Apollo Alpha Preview" +[5]: http://labs.adobe.com/wiki/index.php/Apollo:Applications:Samples "Adobe Labs: Apollo Sample Apps"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/bbc.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/bbc.txt new file mode 100644 index 0000000..ed2e118 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/bbc.txt @@ -0,0 +1,13 @@ +The BBC announced last week that it will be [using Apple's Final Cut Pro HD][1] software for all its digital editing needs. The BBC is currently in the process of transitioning to high definition content. Initially the [BBC Factual series][2] (link is to an unofficial, but much better organized, site) will begin shooting in HD and by the end of 2010 the network aims to shoot all programs in tapeless HD. + +The move to high definition is almost passé at this point, and indeed while researching an upcoming story on Final Cut Pro usage in the industry, I was somewhat surprised to learn the HD is more the norm than the exception, even if it is often still printed out to film. + +However the BBC's decision to embrace Final Cut Pro HD right now seems a bit odd given that Adobe's video editing suite is rumored to be arriving later this year. Adobe Premier has been nipping at Final Cut Pro's heels for years, I think there's good reason to believe that Adobe may have some new tricks up its sleeve with the next release. + +Certainly the BBC Factual is a feather in Apple's cap, and a pretty nice one at that, especially given that Final Cut Pro hasn't seen a significant updated in some time. If you can stomach the Apple PR slant, there's a video on the Final Cut Pro site that walks through [how the BBC uses Final Cut Pro][3]. + +For the video hardware geeks among you, the BBC Factual Studios will use Panasonic's AJ-HDX900 DVCPRO HD Camcorders well as other Panasonic equipment including the Varicam and AJ-HD1400/1200/1700 VTRs. + +[1]: http://www.hdtvuk.tv/2007/03/bbc_factual_sel.html "BBC Factual selects Panasonic DVCPRO HD standard for high definition programmes" +[2]: http://www.tvfactual.co.uk/ "Unofficial BBC Factual series site" +[3]: http://www.apple.com/finalcutstudio/profiles/?profiles/apple_fcs_profile-bbc_h640 "BBC Final Cut Pro promotional video"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/blogger-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/blogger-logo.jpg Binary files differnew file mode 100644 index 0000000..bb8dd52 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/blogger-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/blogger.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/blogger.txt new file mode 100644 index 0000000..386251f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/blogger.txt @@ -0,0 +1,11 @@ +According the security firm Fortinet, Google's [Blogger.com is being used extensively in both phishing attacks and to propagate malware][1]. In some cases the traffic to the sites is being driven by "a variant of the Stration mass mailer" worm a Fortinet security notes warns. + +One example listed in the security bulletin is a malicious script from "Pharmacy Express," which advertises Viagra and Valium but actually tricks victims into giving up personal and medical information to the fraudulent site. + +Other examples are even trickier including a Blogger.com site, which purports to be created by a Honda CR450 enthusiast, that infects visitors with the Wonka Trojan. Naturally the trojan doesn't load from Blogger itself, but, according to Fortinet, is hosted on a web site hosted in Russia. + +A Google spokesperson told CNet, "We are investigating and blogs found to include malicious code or promote phishing will be deleted." + +This is hardly the first time scammers have used a large social networking site to nefarious ends, both MySpace and YouTube have also been hit in recent months, and I think it's safe to say that this sort of scam will grow even more common as social networking sites continue to go more and more mainstream. + +[1]: http://www.fortiguardcenter.com/advisory/FGA-2007-04.html "Malicious Code Appears on Blogger.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/elsewhere.txt new file mode 100644 index 0000000..6f0f7fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/elsewhere.txt @@ -0,0 +1,18 @@ +Elsewhere on Wired: + +* Listening Post's Eliot Van Buskirk has some [choice quotes from a SXSW panel with Iggy Pop][1] (and all I got was microformats?): "American Indians and bellydancers -- those were influences too. I was really interested in Stone Age people in college." + +[1]: http://blog.wired.com/music/2007/03/iggy_pop_takes_.html "Iggy Pop and the Stooges Take the Stage" + +* 27B Stroke 6 tells us what we all know, but don't want to admit, the FBI lied, knew it lied, is probably still lying and doesn't give a damn by most accounts. [According to Luke O'Brien][2]: "Senior officials at the FBI alerted the bureau beginning in 2004 to legal problems with national security letters, but the bureau ignored or downplayed the warnings and continued to spy on Americans using methods of questionable legality, according to reports coming to light throughout the media yesterday and today." + +[2]: http://blog.wired.com/27bstroke6/2007/03/fbi_knew_spying.html "FBI Knew Spying Was Illegal in 2004, Did Nothing" + +* Table of Malcontent's John Brownlee [digs deeper into John Hargrave's claim][3] that he pranked Super Bowl. What happens when you build it and nobody notices? + +[3]: http://blog.wired.com/tableofmalcontents/2007/03/was_the_super_b.html "Was The Super Bowl Pranked?" + +* Regina Lynn at Sex Drive Daily [reports][4] on an article about the future of sex in which one James Hughes argues: "the two most important developments in the technological control of sex are both already occurring; first separating sex from physical contact, and then establishing our control over our sexual feelings altogether..." Regina politely refuses to dismiss the good Dr Hughes outright which is where I step in, that hypothesis Doctor, is a load of crap. Next. + +[4]: http://blog.wired.com/sex/2007/03/bleak_outlook_f.html "Bleak Outlook for Sex, Predicts Bioethicist/Sociologist" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/fcp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/fcp.jpg Binary files differnew file mode 100644 index 0000000..7539787 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/fcp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/jailcell.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/jailcell.jpg Binary files differnew file mode 100644 index 0000000..b819e4c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/jailcell.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/nightly.txt new file mode 100644 index 0000000..02d33d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/nightly.txt @@ -0,0 +1,21 @@ +The Nightly Build: + +* Netvibes, the personalized homepage site, [has released a new version][1] -- nicknamed the "Coriander Edition" -- featuring a new RSS reader with multimedia capabilities, improved sharing features, and a beta preview of a mobile edition. The changes has been discussed for some time on the Netvibes blog, but today marks the official launch. + +[1]: http://blog.netvibes.com/?2007/03/19/126-coriander-launch-second-and-final-step "Coriander launch: second step" + +* ILounge notes something I missed when upgrading software the other day, [Apple has updated QuickTime][2], adding an "Export to Apple TV" command. The new export options is capable of creating HD videos viewable via an Apple TV with resolution support up to 1280 by 720 videos + +[2]: http://www.ilounge.com/index.php/news/comments/quicktime-gains-720p-apple-tv-high-definition-export-mode/9658 "720P Apple TV high-definition export mode" + +* The New York Times [reports][3] that researchers at Microsoft have discovered that splogs and other web pages menaces are generated "by a small group of shadowy operators apparently with the acquiescence of some major advertisers, Web page hosts and advertising syndicators." The Times (in hyperbole mode) goes on to claim that "the finding is striking because it hints at the possibility of curbing the practice." Yeah just like all those Microsoft strategies to stop Windows piracy have worked so well. The Microsoft report can be [seen here][4] (PDF). + +[3]: http://www.nytimes.com/2007/03/19/technology/19spam.html?ex=1331956800&en=44a8402e53db4153&ei=5090&partner=rssuserland&emc=rss "Researchers Track Down a Plague of Fake Web Pages" + +[4]: http://www.cs.ucdavis.edu/~hchen/paper/www07.pdf + +* China has [jailed an online editor for six years][5] for "inciting subversion" by publishing anti-government essays. According to Paris-based Reporters Without Borders, China is the world's leading jailer of journalists, with at least 32 in custody, and another 50 Internet publishers in prison. + +[5]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-03-19T153239Z_01_PEK136875_RTRUKOC_0_US-CHINA-SUBVERSION.xml&src=rss "China jails online editor for subversion" + +strategies
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/prince.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/prince.jpg Binary files differnew file mode 100644 index 0000000..e4c9741 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/prince.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/reboot.txt new file mode 100644 index 0000000..594f671 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Mon/reboot.txt @@ -0,0 +1,26 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Adobe Labs has [launched Apollo][7], the new cross platform runtime environment designed to help web developers deploy web apps that behave like traditional desktop software. Apollo is [a free download][8] and includes a software development kit and the runtime software for deploying Apollo applications. + +[7]: http://www.adobe.com/aboutadobe/pressroom/pressreleases/200703/031907ApolloLabs.html "Adobe releases Public Alpha of Apollo" +[8]: http://labs.adobe.com/technologies/apollo/ "Adobe Labs: Apollo" + + +* Look out Hollywood, [YouTube Oscars are on the way][2]. Starting later today YouTube members can [browse through videos in seven genres and vote for their favorites][1] (note link not working as of 8 AM Eastern). Voting ends on friday and the awards will be handed out March 26th. The "YTAs" is kinda catchy and way more fun than the self-important pomp of the Oscars -- by the people, for the people. + +[1]: http://www.youtube.com/YTAwards/ "YouTube Awards" +[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-03-19T052906Z_01_N16217521_RTRUKOC_0_US-MEDIA-YOUTUBE.xml&src=rss "YouTube to present video awards" + +* According to a company press release, the popular Windows CD/DVD authoring tool [Nero][4] will be [coming to the Linux platform][3]. A beta version of Nero Linux 3 is expected to be available at the end of March 2007. + +[3]: http://www.afterdawn.com/news/archive/9003.cfm "Nero to unveil Nero Linux 3 at CeBIT" +[4]: http://www.nero.com/enu/index.html "Nero" + +* AOL has [released a plugin][5] for the AIM instant messaging service that adds new capabilities which allow you to see where people on your buddy lists are physically located. Not recommended for those that already have a stalker, but handy if you're looking to pick one up. + +[5]: http://www.theage.com.au/news/Technology/AOL-introduces-location-plugin-for-instant-messaging-so-users-cansee-where-buddies-are/2007/03/19/1174152920852.html "AOL introduces location plug-in for instant messaging so users can see where buddies are" + +* Okay we know you're probably [sick of hearing about Twitter][9], but check out what Gordon Meyer over at O'Reilly has done to [integrate Twitter into his home automation set up][6]. Imagine getting a Twitter message from your motion sensitive porch lights informing you that someone has just left the building. + +[6]: http://www.oreillynet.com/mac/blog/2007/03/twittering_your_home.html?CMP=OTC-13IV03560550&ATT=Twittering+Your+Home "Twittering Your Home" +[9]: http://blog.wired.com/monkeybites/2007/03/twitter_the_new.html "Twitter: The New Cat Blog?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/greasemonkey.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/greasemonkey.txt new file mode 100644 index 0000000..109ad54 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/greasemonkey.txt @@ -0,0 +1,15 @@ +If you're the type that obsesses over Google's [Webmaster Tools][1], you'll love Joost de Valk's [GreaseMonkey][3] [script that adds pagerank and anchor text][2] info to your link of inbound links. + +The script uses an XML HTTP request to grab the pagerank of the inbound links and adds it in front of each link (screenshots after the jump). + +The resulting text is color coded. If the link is found the pagerank and anchor text is displayed in black. If the link has rel="nofollow" on it (Wikipedia linking to your site?) the info is made orange and wrapped in strike-through tags. If the link is not found the info text is displayed in red, and the text "Link not found" is added. And finally if the link is an image link, the alt text is added. + +It's not earth shattering but it does make Google Webmaster Tools a bit more informative. + +There is also a version available that omits the pagerank info but still shows the anchor text and nofollow info. + +To use Google Webmaster Tools External links, you'll need to have Firefox with the [Greasemonkey extension][3] installed. + +[1]: https://www.google.com/webmasters/tools/ "Google Webmaster Tools" +[2]: http://www.joostdevalk.nl/code/greasemonkey/gwt-external-links/ "Google Webmaster Tools External links ++" +[3]: http://www.greasespot.net/ "Greasemonkey"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/reboot.txt new file mode 100644 index 0000000..e49c7bb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/reboot.txt @@ -0,0 +1,23 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* The media giants are making good on their promise to deliver a YouTube knock-off. The LATimes [reports][1] that News Corp. and NBC plan to announce a new video service today that sounds pretty much like YouTube -- pro production shows plus clips that users can remix and share with friends. Expect this to be in the news again inside of year when it collapses from lack of interest. + +[1]: http://www.latimes.com/business/la-fi-youtube22mar22,0,326504.story?page=1&coll=la-home-headlines "News Corp., NBC pull together to challenge YouTube" + +* The KDE developers have [released a timeline/roadmap for KDE 4.0][2]. The first betas will be available toward the end of June with the final release scheduled for October 23. KDE 4 will feature, among other things, improved speed through Qt 4, integration of hardware through [Solid][3], and completely new artwork experience called [Oxygen][4]. + +[2]: http://dot.kde.org/1174481326/ "KDE 4.0 Release Schedule" +[3]: http://solid.kde.org/ "KDE Solid" +[4]: http://www.oxygen-icons.org/ "Oxygen" + +* Google's Picasa web photo service has [added a data API][5]. The Picasa Web Albums data API is part of the GData family so if you're family with other GData APIs you should be able to use the [Picasa API][6] with no trouble. The API isn't quite as robust as the [Flickr API][7], but it's a step in the right direction. + +[5]: http://google-code-updates.blogspot.com/2007/03/gdata-for-picasa-web-albums.html " GData for Picasa Web Albums" +[6]: http://code.google.com/apis/picasaweb/overview.html "Picasa Web Albums Data API Overview" +[7]: http://flickr.com/services/api/ "Flickr API" + +* Zoho has [launched][10] a new feature, [Zoho Meeting][8], currently in private beta, that lets users conduct meetings online. Most of the key features come from [WebEx][9] including the ability to control remote desktops, chat, email the host, and view meeting details. The new service is cross platform and utilizes ActiveX on Windows, and Java and Flash on Mac and Linux. + +[8]: http://meeting.zoho.com/ "Zoho Meeting" +[9]: http://www.webex.com/ "WebEx" +[10]: http://blogs.zoho.com/announcements/announcing-zoho-meeting/ "Zoho announces Zoho Meeting"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/webmaster-script.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/webmaster-script.jpg Binary files differnew file mode 100644 index 0000000..540be51 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/webmaster-script.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/webmaster-tools2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/webmaster-tools2.jpg Binary files differnew file mode 100644 index 0000000..81b3673 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/webmaster-tools2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/webmaster.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/webmaster.jpg Binary files differnew file mode 100644 index 0000000..e27dd3f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/webmaster.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/zoho.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/zoho.txt new file mode 100644 index 0000000..de98225 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/zoho.txt @@ -0,0 +1,22 @@ +As I mentioned in the [Morning Reboot][4], Zoho has [launched a new web conferencing feature][1] dubbed [Zoho Meeting][2]. For now Zoho Meeting is a private beta available to select users -- to apply for the beta trial login to Zoho and request access. The final release of Zoho Meeting is slated for April. + +For the initial beta phase meetings must be initialized by a Windows machine (via an ActiveX controller), though meeting participants can be on any platform that supports Java or Flash. + +As with other web conferencing applications, like [WebEx][3], Zoho Meeting allows for schedule meetings, shared desktop, integrated chat through Zoho Chat and more. Meeting attendees can request remote control of the host's desktop and with Zoho Chat's forthcoming VOIP capabilities Zoho meeting looks to be a nice all-in-one conferencing app. + +While the meeting initiator needs download the ActiveX controller, one of the really nice things about Zoho Meeting is that attendees do not need to install anything to join a meeting. When you receive an invite to a meeting you're given a choice between downloading the ActiveX component (Windows) or simply using the Java or Flash options which leverage the software already installed on your machine. + +The Flash element of Zoho Meeting is where things get interesting and move a bit beyond what most of Zoho's competitors offer. Meetings can be recorded and saved as slides in Zoho Show and, even better, if you choose to record your desktop presentation, the file is then available as a download. That also means that meetings can be embedded and displayed just about anywhere. + +And the integration with Zoho Show works both ways. When creating a new presentation in Show, if you add a meeting slide (which embeds the Meeting Flash object) a meeting is automatically created for you. The Meeting-Show integration should be a boon for those wanting to remotely demo things for a large crowd of observers. + +Zoho claims that by the time Meeting is released to the public in April there will be integration with even more Zoho apps, though thus far they haven't given any details. + +Some of the highlights of Zoho Meeting can be seen in the demo video embedded below. + +<embed src="http://www.vimeo.com/moogaloop.swf?clip_id=157541" quality="best" scale="exactfit" width="400" height="300" type="application/x-shockwave-flash"></embed> + +[1]: http://blogs.zoho.com/announcements/announcing-zoho-meeting/ "Announcing Zoho Meeting" +[2]: http://meeting.zoho.com/ "Zoho Meeting" +[3]: http://www.webex.com/ "WebEx" +[4]: http://blog.wired.com/monkeybites/2007/03/the_morning_reb_12.html "The Morning Reboot March 22"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/zohomeeting.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/zohomeeting.jpg Binary files differnew file mode 100644 index 0000000..2f06606 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Thur/zohomeeting.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/baccus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/baccus.jpg Binary files differnew file mode 100644 index 0000000..a3cac33 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/baccus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/baccus.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/baccus.txt new file mode 100644 index 0000000..8c3f547 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/baccus.txt @@ -0,0 +1,19 @@ +John W Backus, the creator of the [Fortran][2] programming language [died at his home in Oregon][1] this past Saturday. Backus was 82. + +Backus led the I.B.M. team that created Fortran in the late 1950s, which was the first widely used programming language and in many ways can be credited with starting programming as we know it today. + +At the time it was developed, there weren't many programming languages that were easily read and understood by humans. Machine readable code was the rule of the day, but Backus was convinced there had to be a better way. + +In his quest to ease the pains of programmers, Backus and his team developed Fortran and in doing so, helped usher in the era of human readable programming languages. + +Though many might argue about just how readable Fortran actually is, it is nevertheless considered the first successful high-level programming language. + +Fortran, which is roughly short for **For**mula **Tran**slator, was designed for scientists and engineers and is particularly adept at numerically intensive programs. Because of that background, Fortran still dominates computationally intensive fields such as climate modeling, fluid dynamics, physics, and chemistry. + +Monkey Bites salutes Mr. Backus and offer our condolences to his family. + +[Photo from the [New York Times][1]] + +[1]: http://www.nytimes.com/2007/03/20/business/20backus.html?ex=1332043200&en=31f321141420c56d&ei=5090&partner=rssuserland&emc=rss "John W. Backus, 82, Fortran Developer, Dies" + +[2]: http://en.wikipedia.org/wiki/Fortran "Wikipedia: Fortran" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/osxstartup.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/osxstartup.jpg Binary files differnew file mode 100644 index 0000000..da25c88 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/osxstartup.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/reboot.txt new file mode 100644 index 0000000..5575f5b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/reboot.txt @@ -0,0 +1,23 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* YourMinis has [added a new blog directory][1] to highlight widgets for specific blogs. The widgets themselves aren't new, but the new section makes it easier to find a widget for your favorite blog. That said, the "featured" blog widgets happen to mainly be tech review sites (which are likely to reviewing the new feature) which I find a bit tacky. + +[1]: http://www.yourminis.com/blogs "Yourminis: Blog Widgets" + +* Google inked a deal yesterday to [provide software for students and government workers in Rwanda and Kenya][2]. The move represents Google's increasing interest in working with developed countries, which may not be internet hotbeds at the moment, but are headed in direction. The students and government workers will have access to the Google Apps set of free communications tools, including e-mail, shared calendars, instant messaging and word processing. + +[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-03-20T023810Z_01_N19292941_RTRUKOC_0_US-GOOGLE-AFRICA.xml&src=rss "Google signs software deals in two African nations" + + +* Wired's own Jeanette Borzo has an interesting piece on NetVibes which includes an [interview with Tariq Krim][4], the man behind Netvibes and Krim's plans to revamp online advertising. + +[4]: http://www.wired.com/news/technology/0,72999-0.html?tw=rss.index "Latest Twist: Useful Online Ads" + +* Symantec has [released a new study][3] which claims "the current Internet threat environment is characterized by an increase in data theft, data leakage, and the creation of targeted, malicious code for the purpose of stealing confidential information that can be used for financial gain." In other news, the world is apparently "round." + +[3]: http://www.symantec.com/about/news/release/article.jsp?prid=20070319_01 "Symantec Reports Rise in Data Theft, Data Leakage, and Targeted Attacks Leading to Hackers’ Financial Gain" + + +* And finally, of interest to science nerds: Discover magazine has [opened its online archives to everyone][5], you no longer need to be a subscribe to access older articles. + +[5]: http://discovermagazine.com/2007 "Discover Magazine"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/yahoo-search-mobile.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/yahoo-search-mobile.jpg Binary files differnew file mode 100644 index 0000000..e7a56b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/yahoo-search-mobile.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/yahoo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/yahoo.txt new file mode 100644 index 0000000..b0299f6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Tue/yahoo.txt @@ -0,0 +1,9 @@ +Yahoo has [expanded their oneSearch mobile][1] search feature, making it available to just about any phone in the U.S. via the Yahoo Mobile Web Service. Previously the service was available only through the Yahoo Go for Mobile 2.0 package. + +OneSearch, which launched back in January, will be rolled out for other countries and in other languages in the coming months. + +Yahoo's oneSearch displays small advertisements and sponsored links, but the results are more just spammy links to other Yahoo pages, which some of their past services have been. OneSearch also uses context like zip code to provide more targeted, relevant search results. + +If you'd like to try oneSearch on your mobile phone, head over to the site and enter your phone number. Yahoo will send you a text message with a link leading to the oneSearch page. + +[1]: http://yhoo.client.shareholder.com/press/ReleaseDetail.cfm?ReleaseID=234360 "Yahoo! Reinvents Search for the Mobile Web"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/appletv b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/appletv new file mode 100644 index 0000000..8a3db38 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/appletv @@ -0,0 +1,12 @@ +Just a quick note for those that have been waiting, the [Apple website][2] has been updated and says that the company is now shipping Apple TV to U.S. stores. + +The iPhone has overshadowed Apple TV considerably, but I have high hopes for Apple's set top box. The only downside I can see is the puny hard drive. But with Quicktime recently updated to support 720p movies I think Apple TV may well be a kind of sleeper hit in much the say way the iPod started out rather slowly. + +In other Apple news Cult of Mac's Pete Mortensen has the [Apple NAB show announcement][1] and concludes that the most likely announcement will be a new version of Final Cut Pro. + +>Apple dashed any remaining hopes that it would announce anything really exciting at its upcoming event at the National Association of Braodcasters conference on April 15, the company has begun shipping out digital invitations to the event, dubbed, "Lights, Camera, [Apple logo]." Which means, yes, that we're probably looking at nothing more than new version of Final Cut Pro and Shake and maybe a Mac Pro with some added power and maybe 8 cores. Maybe I'm just cranky -- maybe I only get excited about laptops these days. + +Much as I'd love to see a new version of Aperture, I think Pete is probably right. + +[1]: http://blog.wired.com/cultofmac/2007/03/apple_issues_ve.html "Apple Issues Vegas Invite" +[2]: http://www.apple.com/ "Apple TV, now shipping"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/appletv.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/appletv.jpg Binary files differnew file mode 100644 index 0000000..259365d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/appletv.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/elsewhere.txt new file mode 100644 index 0000000..fc83784 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/elsewhere.txt @@ -0,0 +1,17 @@ +Elsewhere On Wired: + +* Listening Post has an [update on the Copyright Royalty Board situation][1]: The Copyright Royalty board has announced that it is 'considering' the Broadcasters' Motion for Rehearing submitted by webcasters. This does not mean -- as was mistakenly reported by a News.com blog and Radio & Records -- that the board will rehear arguments. It just meant that the board is thinking about a rehearing, that SoundExchange has until April 2nd to respond to the motion for a rehearing." + +[1]: http://blog.wired.com/music/2007/03/copyright_royal.html "Copyright Royalty Board to Consider Rehearing" + +* Table of Malcontents has a [video of someone playing Tetris][2] on a hacked ATM card reader. The stunt comes from Steven Murdoch and Saar Drimer, two Cambridge security researchers, who wanted to explain the technical vulnerabilities in card readers to a non-technical audience. That's your sensitive, valuable data falling down in blocks -- nervous yet? + +[2]: http://blog.wired.com/tableofmalcontents/2007/03/the_quiet_beaut.html "The Quiet Beauty of Tetris on a Credit Card Reader" + +* Danger Room has a story about the "[culture of mismanagement][3]" at Los Alamos National Laboratory. Mismanagement and nuclear laboratory are never two words you want to hear together, it always leads to re-animation and mayhem in the end. In this case current and former nuclear security specialists "want Congress to investigate the birthplace of the atomic bomb -- again -- for "health, safety, security and management concerns." + +[3]: http://blog.wired.com/defense/2007/03/nuke_lab_worker.html "Nuke Lab Workers' SOS to Congress" + +* And finally because I seemed to have missed the memo, I thought I'd let everyone know that there's a new member of the Wired Blogs family, [Geek Dad][4]. Geek Dad will focus on tech toys, science projects and other nerdy things to do with your kids. + +[4]: http://blog.wired.com/geekdad/ "Geek Dad"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/losalamos.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/losalamos.jpg Binary files differnew file mode 100644 index 0000000..83ad005 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/losalamos.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/macbook issues.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/macbook issues.txt new file mode 100644 index 0000000..e7fab8d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/macbook issues.txt @@ -0,0 +1,17 @@ +Your Morning Reboot was hideously delayed this morning by a snafu on my main machine. Yesterday evening, while getting ready to post a few things to Monkey Bites, Apple's Software Update program popped up to remind me that OS X 10.4.9 was available. + +I've never had a problem with incremental upgrades to OS X so I started the process without giving it much thought. Eventually everything was installed and I closed up what I was working on and restarted the machine. + +When I came back I noticed my Macbook had booted into Windows Vista rather than OS X. Frustrated, but not alarmed, I rebooted, held down the option key and noticed that the OS X drive was already selected. I hit return and the Macbook promptly booted into Vista again. + +For the next couple hours I tried every startup keyboard shortcut I could find, hacking and pounding away, but nothing changed -- much like the black knight in Monty Python, Windows Vista just kept booting up and screaming, "I'm not dead yet!." + +Since Vista is not officially supported via Boot Camp, it occurred to me that perhaps the OS X upgrade contained some new drivers or something that had messed up the Vista partition. + +I used the Google to try and find others who'd experienced this problem, but I only found one person who had written about it in a blog comment and they never followed up with a solution. + +So for that person, and anyone else who might run into this issue, here's what I did: startup from the original install disks, open the "Startup Disk" program, select your OS X volume and restart. + +I have no idea what was causing this issue, no idea why the Startup Disk program seems to be more powerful than just holding down the option key at startup, but that's what worked for me. YMMV. + +Also if any of our uber-savvy readers would care to enlighten me as to what the heck was happening please let everyone know in the comments below.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/nightly.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/nightly.jpg Binary files differnew file mode 100644 index 0000000..cdc0282 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/nightly.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/nightly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/nightly.txt new file mode 100644 index 0000000..1dae12e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/nightly.txt @@ -0,0 +1,22 @@ +The Nightly Build: + +* Analysts group IDC claims that [laptops will overtake desktop PCs][1] as the main form of computer by 2011. The report says that will desktop machines will continue to grow the rate of growth in laptops will significantly outpace them. + +[1]: http://news.bbc.co.uk/1/hi/technology/6474581.stm "Laptops set to out sell desktops" + +* Firefox 1.5 has [reached the end of the road][2]. A small note in [yesterday's update][6] reads: "Firefox 1.5.0.x will be maintained with security and stability updates until April 24, 2007." I like to think everyone that reads Monkey Bites has already upgraded to Firefox 2.0 but if you haven't now's the time. + +[2]: http://www.mozilla.org/news.html#p427 "Firefox 1.5 to be discontinued" +[6]: http://blog.wired.com/monkeybites/2007/03/firefox_2003_re.html "Firefox 2.0.0.3 Released" + +* Last week more rumors surfaced that Google is working a mobile phone of some kind, but now Google is [denying][3] that it's making any forays into the hardware ball game. Various Google execs have repeatedly said that, while company is working of mobile software, it is not building a phone. + +[3]: http://www.smh.com.au/news/mobiles--handhelds/google-quashes-mobile-phone-talk/2007/03/21/1174153139660.html "Google quashes mobile phone talk" + +* Walt Mossberg over at the Wall Street Journal has a [review of the new Apple TV][4]. Here's a nice synopsis from the article: "Apple TV isn't for that small slice of techies who buy a full-blown computer and plug it directly into a TV, or for gamers who prefer to do it all through a game console. And it's not for people who are content to watch downloaded TV shows and movies directly on a computer screen. Instead, it's for the much larger group of people who want to keep their home computers where they are and yet enjoy their downloaded media on their widescreen TVs." + +[4]: http://ptech.wsj.com/archive/solution-20070321.html "WSJ: Apple TV review" + +[photo credit][5] + +[5]: http://www.flickr.com/photos/pandemico/231077513/ "Flickr: Untitled"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/osxstartup.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/osxstartup.jpg Binary files differnew file mode 100644 index 0000000..da25c88 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/osxstartup.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-1.jpg Binary files differnew file mode 100644 index 0000000..f9ad925 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-2.jpg Binary files differnew file mode 100644 index 0000000..29cf4f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-3.jpg Binary files differnew file mode 100644 index 0000000..081ee0a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-4.jpg Binary files differnew file mode 100644 index 0000000..e0aa867 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-icon.jpg Binary files differnew file mode 100644 index 0000000..e1026a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers.txt new file mode 100644 index 0000000..e652884 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/papers.txt @@ -0,0 +1,33 @@ +Papers is a new [public beta PDF document browser][1] from the makers of [EnzymeX][2], a DNA sequence analysis and editing program for Mac OS X. Papers requires OS X 10.4 (Tiger) or higher. + +Papers features an all-in-one PDF organizer which can download, archive, and organize your .pdfs and allows you read in fullscreen mode, add notes and email files (leveraging Apple's Mail program) to friends and colleagues. + +While much of the functionality of Papers is aimed at the research and scientific communities, the program is so well done that even casual pdf readers may prefer it to Apple's Preview application. + +To get started you'll want to import some files. I used the import dialogue to search for the .pdf extension on my drive and then dumped everything I had into Papers. Papers took maybe a minute to import about 10,000 pages worth of pdf files. + +Once you've got your files added to the library it's easy to filter, search, flag and annotate your .pdfs. + +The main window in Papers is divided into three panels (sometimes four depending on your selection). On the right you have a very Mail/iPhoto like top-level panel where you can browse through your library, store saved searches, browse journals and dump files to the trash. + +The center panel is the meat of the application. Depending on your source selection, you'll see various lists of files in the center panel. For instance when browsing your library you'll see a list of local files. When searching the journals list you'll get a list of available journals and in the lower half of the pane a list recent articles. + +Anytime you select a file in the center pane, an abstract or preview appears in the right pane -- depending on the files type. + +Papers also features search integration with [PubMed][3] and even includes predefined search terms to make browsing PubMed easier. + +Papers also handles a number of other file types besides PDF, most of which the average person probably doesn't encounter much such as BibTeX, EndNote, RefMan RIS and some others. There are a couple of other BibTeX readers for OS X, but Papers is by far the slickest interface I've used. + +One of the best features in Papers is the fullscreen reading mode. Apple's Preview is somewhat cumbersome for prolonged reading and longer articles are much easier to browse in Paper's fullscreen mode. + +It would be nice if the fullscreen mode supported more keyboard shortcuts and hopefully that's something the Papers folks will be adding before the app hits 1.0. In the mean time there is a very iPhoto-like navigation toolstrip at the bottom of the screen that shows and hides itself as needed. Fullscreen mode also supports zoom and annotation notes, just like the normal view. + +Papers is a beta and not without bugs, particularly in fullscreen mode, for instance when making notes in fullscreen mode and switching apps with cmd-tab the notes continue to overlay the screen. But in spite of a few bugs here and there Papers never crashed or mangled any files and I would feel comfortable using it even in production work. Of course YMMV. + +While primarily of interest to scientists and scholars (particularly the emphasis on PubMed with is unlikely to be of interest to most), Papers is easy to use and the slick interface and fullscreen mode make it useful for even the casual user. + +For the time being Papers is a free beta, once the app reaches the 1.0 stage mekentosj.com plans to charge $15 for a single seat license. + +[1]: http://mekentosj.com/papers/ "OS X PDF Viewer: Papers" +[2]: http://mekentosj.com/enzymex/ "Enzymex" +[3]: http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=PubMed "PubMed"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/reboot.txt new file mode 100644 index 0000000..6748e0a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/reboot.txt @@ -0,0 +1,18 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot, Ode To Spring: + +* If you were thinking you could migrate your Adobe apps from XP to Vista, think again. Adobe [posted a statement yesterday][1] (PDF) saying that it has no plans to update its existing line of products, including Photoshop, InDesign, and Dreamweaver, for Windows Vista. Instead the company suggests upgrading to the new CS3 suite which is expected to be released later this month. + + +[1]: http://www.adobe.com/support/products/pdfs/adobe_products_and_windows_vista.pdf "Vista Compatibility" + +* Speaking of Vista, Microsoft has [announced a change to the Vista licensing agreement][3]. Reversing an earlier stance, Microsoft says it will allow those who purchase a boxed copy of Vista and then upgrade to a more expensive version to move that upgraded edition to other machines. + +[3]: http://news.com.com/2061-10794_3-6168963.html?part=rss&tag=2547-1_3-0-20&subj=news "Vista Anytime Upgrade to become transferable" + +* TSIA: [Oops! Computer tech wipes out info on $38B fund][2]. + +[2]: http://www.usatoday.com/tech/news/2007-03-20-alaska-data_N.htm?csp=34 "Oops! Computer tech wipes out info on $38B fund" + +* Google is [beta testing a new "pay-per-action" advertising scheme][4]. Under the new system, which is in limited testing mode, advertisers only pay when a consumer takes a specific action, for instance, makes a purchase, fills out a form or visits a web page. The new program is designed to combat problems with click fraud in Google existing adwords program. + +[4]: http://adwords.blogspot.com/2007/03/pay-per-action-beta-test.html "Pay-per-action beta test"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/webmaster.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/webmaster.jpg Binary files differnew file mode 100644 index 0000000..278aac3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.19.07/Wed/webmaster.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/boot1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/boot1.jpg Binary files differnew file mode 100644 index 0000000..86546d7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/boot1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/boot2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/boot2.jpg Binary files differnew file mode 100644 index 0000000..3744c46 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/boot2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/boot3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/boot3.jpg Binary files differnew file mode 100644 index 0000000..a93bbe7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/boot3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/ffext.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/ffext.jpg Binary files differnew file mode 100644 index 0000000..0132a9d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/ffext.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/icann.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/icann.txt new file mode 100644 index 0000000..4d1ee2a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/icann.txt @@ -0,0 +1,32 @@ +ICANN Board Member Calls .xxx Decision "Weak And Unprincipled" + +The U.S.-based ICANN, the group responsible for internet domain suffixes, has once again rejected calls to create a .xxx domain for adult sites. The board voted 9-5 against the domain, but not everyone is happy with the decision. + +Susan Crawford, a member of the ICANN board, [writes on her blog][3] that she found the resolution adopted by the Board (rejecting .xxx) both "weak and unprincipled." + +This is not the first time ICANN has rejected the idea of an adults-only domain suffix. The idea was first floated in 2001 and rejected in 2006. + +"This decision was the result of very careful scrutiny and consideration of all the arguments," Dr Vinton Cerf, chairman of ICANN, said in a statement on the group's Web site. + +But Crawford disagrees, writing on her blog that ICANN has ignored the internet community at large. "I am personally not aware that any global consensus against the creation of an .xxx domain exists." + +She goes on to argue that "in the absence of such a prohibition, and given our mandate to create TLD competition, we have no authority to block the addition of this TLD to the root." + +Those in favor of the .xxx domain argue that creating a virtual red light district would make it easy for those who wanted to avoid or filter adult content to do so, but opponents argue that it would also be easier to find the material. + +The European Union has already accused the U.S. of political interference in the decision claiming that ICANN is bowing to political pressure from the Christian groups in the U.S. who feel that the .xxx domain would somehow legitimize the porn industry. + +But it's not just Christians that opposed the domain, some porn site operators worry that the domain name, while voluntary, would make it easier for governments to shun adult sites into what the industry terms an online ghetto. + +However Crawford points out that "this content-related censorship should not be ICANN’s concern." She goes one to argue that "ICANN should not allow itself to be used as a private lever for government chokepoint content control by making up reasons to avoid the creation of such a TLD in the first place." + +Traditionally ICANN does not regulate content in any way and indeed in the U.S. requiring porn sites to use the .xxx domain would very likely violate the First Amendment. + +Although ICANN rejected to current proposal it is possible that supporters will rewrite the proposal and resubmit at a later date. + +[photo credit][4] + +[1]: http://www.icann.org/minutes/resolutions-30mar07.htm#_Toc36876524 " Proposed sTLD Agreement with ICM Registry" +[2]: http://www.icann.org/announcements/announcement-30mar07.htm "Board Rejects .XXX Domain Application" +[3]: http://scrawford.blogware.com/blog/_archives/2007/3/30/2845638.html "Why I Voted For XXX" +[4]: http://www.flickr.com/photos/pinkmoose/181948399/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/notebook-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/notebook-logo.jpg Binary files differnew file mode 100644 index 0000000..a14d510 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/notebook-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/notebook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/notebook.jpg Binary files differnew file mode 100644 index 0000000..d7ad342 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/notebook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/notebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/notebook.txt new file mode 100644 index 0000000..df5b716 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/notebook.txt @@ -0,0 +1,20 @@ +[Google Notebook][1] is no longer a [Google Labs][2] project. Notebook, Google's scrapbook and note-taking service, has [officially come out of beta][3] and gained a sleek new interface in the process. Other changes include support for Notebook in seventeen languages with more reportedly on the way. + +The old look of Google Notebook has been replaced by an Ajax interface that borrows heavily from GMail and looks more or less like what we've come to expect from Google services (screenshots after the jump). + +The left column navigation has been rearranged and a rich text toolbar was added to the main Notebook pane. + +International users will welcome the additional language support, and while the functionality of Google Notebook remains largely unchanged, the new interface makes it feel like more of a finished project. + +That said, Notebook still lacks some key features, most notably a good organizational scheme -- support for tags would be nice. + +I'll confess that, while I've flirted with Google Notebook in the past, I've never really found much use for it. Still, if you're the sort of person that loves to save random scraps of data, the new interface should make it easier to do so and Google notebook definitely beats the pants off cutting and pasting into Notepad. + +Also be sure to check out the Firefox extension which puts all the functionality of Notebook in the browser so you can take notes on a page without leaving it behind. + +The new Google Notebook interface (here's a [screenshot of the old look][4] for comparison) + +[1]: http://www.google.com/notebook "Google Notebook" +[2]: http://labs.google.com/ "Google Labs" +[3]: http://googleblog.blogspot.com/2007/03/google-notebook-goes-multi-lingual.html "Google Notebook goes multi-lingual" +[4]: http://bp1.blogger.com/_ZaGO7GjCqAI/RgtqEWQ_B_I/AAAAAAAABPo/JfBh5lTfOrA/s1600-h/google-notebook-initial-ui.jpg "Old Notebook Interface"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/office4mac.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/office4mac.txt new file mode 100644 index 0000000..6fdbc2c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/office4mac.txt @@ -0,0 +1,16 @@ +According to [APC magazine][1], Microsoft's Office For Mac 2008 has moved from alpha to private beta. There's still no word on when the public betas will arrive, but APC has a few screenshots of the new user interface design. + +Although the Mac version of Office will not use the Ribbon interface found in the new Office 2207 for Windows, the interface design in Office For Mac is clearly striving for the same goals -- exposing previous hidden tools and making complex tasks simpler. + +Unlike the Window's version of Office, which largely dispensed with toolbars in favor of the single Ribbon design, the Mac UI retains the traditional menus and toolbars. However, the design principles behind Ribbon -- making tools more visual and less dialog box based -- have made their way to the Mac version. + +Judging by the screenshots APC has posted, the Mac Office UI will have a modern black sheen look similar to some of the apps in Apple's recent iLife suite. + +All of the Office 2008 for Mac applications sport what APC calls, "elegant visuals such as 3D effects, mirroring, glass effects, glows and shadows." Clearly Microsoft is trying to use the UI visual "wow," if you will, to distance itself from competitors like NeoOffice. + +Unfortunately the APC article doesn't mention much in the way of new features, other than the UI changes and MyDay, an Entourage appointments like app that keeps track of your daily tasks. The only other notable feature mentioned is integration with iPhoto in Word's Publishing Layout View. + +When I [spoke to the Mac Office team][2] several months ago they refused to give any sort of time table for the first public betas, but judging from these screenshots, Office For Mac 2008 appears to be progressing nicely and I wouldn't be surprised if the public betas dropped by the end of summer. + +[1]: http://apcmag.com/5780/office_2008_for_mac_hits_beta_shows_slick_ui_and_draws_on_escher "Office For Mac 2008 private beta" +[2]: http://www.wired.com/software/coolapps/news/2007/01/72476 "MS Office for Mac on the Way"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/vistaupdates.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/vistaupdates.txt new file mode 100644 index 0000000..8d3f397 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/vistaupdates.txt @@ -0,0 +1,17 @@ +Earlier this week Microsoft released a collection of patches for some prominent Windows Vista bugs, most notably one that affected a certain MP3 player from Apple. Although Apple released an update to iTunes recently that solved a number of Vista-iPod issues, they neglected to patch a flaw in the Safely Remove Hardware command that could cause data corruption. + +Among this week's Vista updates is one that [solves the Safely Remove Hardware bug][1]. If you haven't updated Apple recommends using the Eject iPod command in iTunes to unmount your iPod rather than the Vista Safely Remove Hardware taskbar tool. + +Other patches in the Vista update include one that [keeps Vista from corrupting Camera RAW images][3] taken with Canon EOS-1D or EOS-1Ds cameras. We wrote about [the Camera RAW issues in Vista][2] last month and while this patch doesn't solve all the problems, it is at least a step in the right direction. + +So far as I can tell, the metadata corruption issues we covered last month appear to still be a problem and the Nikon codec problems also remain unsolved (if you know of an update for the Nikon RAW codecs in Vista be sure to let us know in the comments below. + +Other Vista bug fixes include one that solves a video quality issue when Vista is connected to a TV, one that [stops Vista from abruptly going to sleep][4] when a dial-up PPP connection is active, and one that [updates Microsoft's Windows Customer Experience Improvement Program][5]. + + + +[1]: http://www.microsoft.com/downloads/details.aspx?familyid=AE02A107-EBC8-4B67-A597-80349631C395&displaylang=en "Update for Windows Vista" +[2]: http://blog.wired.com/monkeybites/2007/02/vista_issues_fo.html "Vista Issues For Pro Photographers" +[3]: http://www.microsoft.com/downloads/details.aspx?familyid=D413A8E9-5B51-4C39-8842-209D65DFE069&displaylang=en "Update for Windows Vista" +[4]: http://www.microsoft.com/downloads/details.aspx?familyid=5754C17D-91A0-4DCA-AB86-16E09A5C717B&displaylang=en "Update for Windows Vista" +[5]: http://www.microsoft.com/downloads/details.aspx?familyid=3f1b3917-3eda-4bf9-bb00-3de33f6f22fe&displaylang=en&tm "Update for Windows Vista" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/xxxdomain.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/xxxdomain.jpg Binary files differnew file mode 100644 index 0000000..d1bf32e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Fri/xxxdomain.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/del.icio.us.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/del.icio.us.txt new file mode 100644 index 0000000..49ed6c3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/del.icio.us.txt @@ -0,0 +1,21 @@ +While researching my [earlier post on Popuri.us][1] I ran across a cool del.icio.us feature I wasn't familiar with. The [del.icio.us url feature][2] lets you track when people bookmark your sites. Moreover, it lets you see what other people are saying about your site through the tags they use and (possibly) the descriptions they write. + +You can see this information by pointing your browser to delicious.com/url and type in the page you'd like to track. Even better, at the bottom of the page there's a link to an RSS feed that will send results to the RSS reader of your choice. + +If you'd like to skip the visit to del.icio.us, here's the base url for the RSS feed: http://del.icio.us/rss/url?url=http://yoursite.com/. Just replace yoursite.com with the page you'd like to track. + +Unfortunately there doesn't seem to be a way to track a whole domain so if you enter the base URL for your site you'll only see those people that have bookmarked your homepage, not the people that have bookmarked your permalinks for instance. + +Because I prefer [ma.gnolia][4] to del.icio.us I dug around the ma.gnolia site for bit looking for similar functionality, but came up empty. Ma.gnolia does offer a nice Javascript bookmarklet called "[Roots][5]" which provides the same functionality as delicious.com/url, but thanks to Ajax, you can view the results from any page. + +Stripping out the Javascript aspect, if you just point your browser to http://ma.gnolia.com/meta/get?url=http%3A%2F%2Fmysite.com you'll get the results of Roots. Unfortunately there's no RSS feed to subscribe to, which limits the usefulness of the feature. + + +found via [Digital Inspiration][3] + + +[1]: http://blog.wired.com/monkeybites/2007/03/popuri_website_.html "Popuri: Website Statistics At A Glance" +[2]: http://del.icio.us/url/ "del.icio.us url" +[3]: http://labnol.blogspot.com/2007/03/know-when-people-bookmark-you-on.html "Know When People Bookmark You on Del.icio.us" +[4]: http://ma.gnolia.com/ "ma.gnolia.com" +[5]: http://ma.gnolia.com/meta/roots "ma.gnolia Roots"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/elsewhere.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/elsewhere.txt new file mode 100644 index 0000000..eb9d9ac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/elsewhere.txt @@ -0,0 +1,18 @@ +<img width="200" height="141" border="0" src="http://blog.wired.com/sex/images/2007/03/26/us0714760920061212d00000_2.gif" title="Us0714760920061212d00000_2" alt="Us0714760920061212d00000_2" style="margin: 0px 0px 5px 5px; float: right;" />Elsewhere on Wired: + +* Listening Post reports that SnoCap, the MySpace music service, [tried to license Apple's FairPlay DRM technology][1]. SnoCap's CEO Rusty Rueff told Listening Post's Eliot Van Buskirk that Rueff contacted Steve Jobs about two weeks before the Apple chief issued his famous "Thoughts on Music" essay, asking him for a licensing deal for Fairplay DRM. Obviously Jobs said no. + +[1]: http://blog.wired.com/music/2007/03/snocap_asked_ap.html "SnoCap Asked Apple for Fairplay DRM" + +* 27B Stroke 6 says that members of Senate Homeland Security subcommittee claim that "complying with the REAL ID Act, which seeks to create a de facto national ID by requiring states to have standardized driver's licenses and share information about citizens, [will cost too much and create too many privacy problems][2] to meet a May 2008 deadline set by DHS earlier this month." + +[2]: http://blog.wired.com/27bstroke6/2007/03/senate_looks_in.html "Senate Looks into REAL ID" + + +* Bodyhack's Steve Edwards has some information on [proposed inter-species cloning][3]. Yeah it is as creepy as it sounds, from Bodyhack: "The FDA may require patients getting the sheep-human chimera-based treatments to sign similar 'I will not reproduce' agreements. The choice would then be between a potential cure and having kids. The no-kids requirement would likely remain in place until the FDA has adequate data to believe that such transplants were free of risk. To ensure no changes in the germline occurred, the FDA may be able to study the sperm and eggs of transplant recipients to determine germline changes. If not, the no-kids requirement (which could only be realistically enforced by sterilization) would present a nasty Catch-22: without the ability to look for changes in the offspring of transplant recipients, the FDA would never be able to collect the data necessary to determine the transplant's safety." + +[3]: http://blog.wired.com/biotech/2007/03/chimeras_chimer.html "Chimeras, Chimeras, All Around" + +* On a lighter note, Sex Drive Daily's Randy Dotinga has [dug up a patent][4] for a "penile volumetric measuring device." Yes, that's why Google Patent Search exists. + +[4]: http://blog.wired.com/sex/2007/03/patent_suggests.html "Patent Suggests New Motto: Volume Matters"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/life-byebye.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/life-byebye.jpg Binary files differnew file mode 100644 index 0000000..8c776b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/life-byebye.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/life.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/life.txt new file mode 100644 index 0000000..4b7cb72 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/life.txt @@ -0,0 +1,17 @@ +Just days after the struggling-news-sites-are-doomed meme made yet [another][5] [tired][6] [circuit][7] through the webernets, Time has [announced that it will stop printing Life magazine][4]. The "iconic photography magazine," as Reuters refers to it, has been published since 1936 with one interruption from 1972-1978. + +But print mags dying off to live again online isn't really news, it's progress (and welcome progress if you happen to be a tree slated for the wood pulper), the real news in Time's announcement is that Life's collection of 10 million images will be made available online, for free for personal use. + +Time says that more than 97 percent of the collection has never been seen by the public and includes pictures by [Alfred Eisenstaedt][1], [Margaret Bourke-White][2], [Gordon Parks][3] and other twentieth century luminaries. + +The last issue of Life will hit stands April 20th, but so far no word on when the Life image archive will be online. + +[4]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-03-26T162518Z_01_N26366501_RTRUKOC_0_US-TIME-LIFE.xml&src=rss "Time to end LIFE magazine but keep it online" +[5]: http://doc.weblogs.com/2007/03/24#howToSaveNewspapers "How to Save Newspapers" +[6]: http://www.scripting.com/stories/2007/03/24/troubleAtTheChronicle.html "Trouble at the Chronicle" +[7]: http://scobleizer.com/2007/03/24/newspapers-are-dead/ "Newspapers are dead" + +[1]: http://en.wikipedia.org/wiki/Alfred_Eisenstaedt "Alfred Eisenstaedt" +[2]: http://en.wikipedia.org/wiki/Margaret_Bourke-White "Margaret Bourke-White" +[3]: http://en.wikipedia.org/wiki/Gordon_Parks "Gordon Parks" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/myspace.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/myspace.jpg Binary files differnew file mode 100644 index 0000000..ab70666 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/myspace.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/nightly b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/nightly new file mode 100644 index 0000000..091e2c7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/nightly @@ -0,0 +1,23 @@ +The Nightly Build: + + +* Photobucket has [opened Adobe's web-based video remix and editing tool to all Photobucket users][4]. The service originally launched last month but was previously available only to Photobucket's Pro members. + +[4]: http://press.photobucket.com/blog/2007/03/remix_service_a.html "Remix service available to all" + + +* The YouTube Video award [winners have been announced][1]. Winners include OK Go in the most creative category and Ask A Ninja for best series. This my friends is the beauty of the internet, no sitting through murderously long ceremonies, self-important speeches and whatever else it is that the Oscars involve. + +[1]: http://www.youtube.com/ytawards "YouTube Video Awards" + +* New Jersey lawmaker are talking about [banning text messaging while driving][2]. The plan comes in response to a recent survey which claims that one in five drivers are texting while driving, while about one in three people aged 18 to 34 are texting. Quick! Do something or the kids are all gonna die. + +[2]: http://today.reuters.com/news/articlenews.aspx?type=internetNews&storyid=2007-03-26T193606Z_01_N26221946_RTRUKOC_0_US-NEWJERSEY-TEXTING.xml&src=rss "New Jersey lawmakers may ban texting while driving" + +* Seems like there's a Wikipedia alternative popping up every other month, but this time the new player, [Citizendium][3], just might have a shot at succeeding. The project, comes from a founder of Wikipedia and aims to improve on the Wikipedia model by adding "gentle expert oversight" and requiring contributors to use their real names. + +[3]: http://en.citizendium.org/wiki/Main_Page "Citizendium" + +[photo credit][5] + +[5]: http://www.flickr.com/photos/blmurch/181178654/ "Flickr: You looked better on MySpace"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/popuir.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/popuir.jpg Binary files differnew file mode 100644 index 0000000..8783ffe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/popuir.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/popuri-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/popuri-screen.jpg Binary files differnew file mode 100644 index 0000000..252c290 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/popuri-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/popuri.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/popuri.txt new file mode 100644 index 0000000..6ce441a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/popuri.txt @@ -0,0 +1,14 @@ +We've looked at few web statistics sites in the past, but none of them are as comprehensive and slickly designed as [Popuri.us][2]. + +Popuri will give you a quick overview of your domain including Google Page Rank, Alexa Rank, backlinks on Google, Yahoo and Live.com, Technorati links and del.icio.us bookmarks leading to your site. There are also handy links to Whois and DNs reports. + +It would appear an [earlier write up in Techcrunch][1] has drawn in a fair bit of traffic making the server a bit unstable. The page also warns that several services have temporarily banned Popuri, but the developer claims to be working on that issue. + +When I tested it the Technorati inbound links and del.icio.us bookmarks features were not working. I didn't verify all the data but the Alexa data was correct for the domains I tested while the Google Pagerank info was often wrong. + +As with any such stats sites take the numbers with a grain of salt. + +That said, while Popuri isn't perfect, it's an easy way to get a quick overview of website statistics. + +[1]: http://www.techcrunch.com/2007/03/25/lots-of-stats-for-any-site/ "Popuri: Lots of Stats For Any Site" +[2]: http://www.popuri.us/ "Popuri.us"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/reboot.txt new file mode 100644 index 0000000..69fb2fd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/reboot.txt @@ -0,0 +1,27 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot: + +* Apple Insider [reports][5] that [Amazon has leaked pricing and package details][6] for Adobe's Creative Suite 3 software packages. Adobe's official announcement is expected tomorrow, but the Amazon page lists the basic specs now. The only real surprise is that most apps are not universal binaries, instead you'll have to choose between Intel and PowerPC versions (according the Amazon anyway). + +[5]: http://www.appleinsider.com/article.php?id=2600 "Amazon leaks Adobe CS3 pricing, availability dates, code split" +[6]: http://www.amazon.ca/s?ie=UTF8&keywords=Adobe&rh=n%3A3234171%2Ck%3AAdobe%2Cp%5F3%3A%24100%20or%20more&page=4 "Amazon Adobe CS3" + +* Flickr has [introduced some new filter technology][7] designed to give users more options when marking images as objectionable. While many will no doubt appreciate the fine-grained control and ability to specify exactly why an image is potentially objectionable, the cynical among us might note that these filters have coincidentally popped up just before the launch of the new Chinese version of the site -- and what would a Chinese site be without some serious censorship? + +[7]: http://blog.flickr.com/flickrblog/2007/03/introducing_fil.html "Flickr Blog: Introducing Filters" + + + +* [Zimbra][1], the online web office suite, has announced [Zimbra Desktop][2], which enables offline access to Zimbra's Ajax-powered suite of office apps. Add Zimbra to the growing number of online services offering offline components -- Adobe's recent [launch of Apollo][3], [Firefox 3][4]'s purported offline support and more. + +[1]: http://www.zimbra.com/ "Zimbra" +[2]: http://www.zimbra.com/products/desktop.html "Zimbra Desktop" +[3]: http://blog.wired.com/monkeybites/2007/03/adobe_launches_.html "Adobe Launches Apollo" +[4]: http://blog.wired.com/monkeybites/2007/02/firefox_3_alpha.html "Firefox 3 Alpha 2" + + +* Just a quick note, since we did the same for Windows a while back, Saturday marked the sixth anniversary of Mac OS X. Seems like a bit longer than that, but that could probably be the amount of effort I've put in to suppressing all my memories of Mac OS 9. Shudder. + + +* And finally, Bruce Lehman, architect of the DMCA, has admitted what everyone else already knows -- [the DMCA is a failure][8]. Speaking at a conference on music and copyright reform hosted by McGill University, Lehman reported said, ""our Clinton administration policies didn't work out very well" and "our attempts at copyright control have not been successful." Kudos to Lehman for acknowledging the obvious -- now fix your mistake buddy. + +[8]: http://www.michaelgeist.ca/content/view/1826/125/ "DMCA Architect Acknowledges Need For A New Approach"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/theunarchiver.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/theunarchiver.txt new file mode 100644 index 0000000..d96ee04 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/theunarchiver.txt @@ -0,0 +1,17 @@ +If you're frustrated with OS X's built in BOMArchiveHelper.app's lack of support for your favorite file types, check out [The Unarchiver][1]. The Unarchiver is a replacement for BOMArchiveHelper.app, much like Allume's [Stuffit Expander][2], but without the proprietary code bloat and annoying upgrade enticements. + +The Unarchiver is designed to handle quite few more formats than BOMArchiveHelper. Supported file formats include Zip, Tar-GZip, Tar-BZip2, RAR, 7-zip, LhA, StuffIt and a number of other more obscure formats (see screenshot after the jump). Of particular interest for Mac users is support for RAR files which isn't present in Apple's default option. + +The Unarchiver relies on the libxad unarchiving library for the majority of its file types. Note though, that if you regularly deal with .sitx files you'll still need Allume's Stuffit Expander since The Unarchiver does not support .sitx. + +To use The Unarchiver just download it from the site and copy it into your applications folder. Double clicking the app icon will bring up a preference pane that lets you set which archive filetypes to open using The Unarchiver. + +In addition to supporting more formats than Apple's BOMArchiveHelper.app, The Unarchiver is considerably faster. In fact, all the archives I tested it on were unpacked too quickly for me to even grab a screenshot. + +The Unarchiver is free (as in beer) and open source. + +[found via [Digg][3]] + +[1]: http://wakaba.c3.cx/s/apps/unarchiver.html "The Unarchiver" +[2]: http://www.stuffit.com/mac/expander/download.html "Stuffit Expander" +[3]: http://digg.com/apple/The_Unarchiver_Open_Source_alternative_to_StuffIt_Expander_2 "The Unarchiver: Open Source alternative to StuffIt Expander"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/ubuntubeta.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/ubuntubeta.txt new file mode 100644 index 0000000..cb1f77c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/ubuntubeta.txt @@ -0,0 +1,27 @@ +There's no denying that Ubuntu is fast become *the* distro for Linux switchers and today sees the [release of the first beta for Ubuntu 7][1]. The final version of Ubuntu 7 won't be out for almost a month, but this preview release contains most of the improvements slated for the April release. + +Standout new features include a Windows migration assistant and much improved wireless networking support. + +The Windows migration assistant allows users to import bookmarks, desktop wallpapers, instant messaging contacts and more when installing the operating system alongside Windows on a dual-boot machine. + +The new plug-and-play network sharing utilizes [Avahi][2] to automatically discover and join wireless networks for music sharing, printer services and more. + +Other new features listed on the Ubuntu site include: + +* A <b>disk usage analyzer</b> that shows you where your hard drive space is being used (why doesn't every OS include this feature?). +* <b>Much improved codec support</b>: When attempting to play media files, Ubuntu's new codec wizards will try to install the necessary codecs automatically. +* New improved help center. +* One-click 3D desktop effects + +Improvements have also been made to the [Edubuntu][3] distro, a server and thin client version targeted at education customers, including a new printing architecture, dubbed Jetpipe and improved documentation with tips and best practices for educators. + +KDE fans can check out Kubuntu which swaps Ubuntu's Gnome desktop for the KDE version. The Kunubtu beta features nearly the same enhancements with the exception of the one-click 3D desktop effects, which are thus far limited to Ubuntu. + +Free DVD disc images of the new beta can be found [here for Ubuntu][5], [here for Kubuntu][4] and [here for Xubuntu][6]. + +[1]: http://www.ubuntu.com/news/Ubuntu704Beta "Ubuntu 7.04 BETA" +[2]: http://avahi.org/ "Avahi" +[3]: http://www.edubuntu.org/ "Edubuntu" +[4]: http://cdimage.ubuntu.com/kubuntu/releases/feisty/beta/ "Kubuntu 7.04 (Feisty Fawn) Beta" +[5]: http://releases.ubuntu.com/feisty/ "Ubuntu 7.04 (Feisty Fawn) Beta" +[6]: http://cdimage.ubuntu.com/xubuntu/releases/feisty/beta/ "Xubuntu 7.04 (Feisty Fawn) Beta"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/unarchiver-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/unarchiver-icon.jpg Binary files differnew file mode 100644 index 0000000..c280545 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/unarchiver-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/unarchiver.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/unarchiver.jpg Binary files differnew file mode 100644 index 0000000..f36b972 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Mon/unarchiver.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/bluetooth.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/bluetooth.jpg Binary files differnew file mode 100644 index 0000000..f4b5dbd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/bluetooth.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/bootcamp.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/bootcamp.txt new file mode 100644 index 0000000..fb91cc7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/bootcamp.txt @@ -0,0 +1,32 @@ +Dispelling rumors that Leopard, Apple's upcoming OS X upgrade, would be delayed to support dual booting with Windows Vista, Apple has [released Boot Camp 1.2][1] with support of Window's Vista. + +Boot Camp, which allows Intel Macs to boot into Windows, hasn't seen a significant update in some time, but yesterday's release adds some significant new features including explicit Vista support, updated drivers (including iSight camera drivers), and support for the Apple Remote. + +Boot Camp remains a public beta and you won't see the update in your Software Update panel, you'll have to grab the 138MB download directly from the Apple website. + +If you've previously installed Boot Camp you can upgrade without changing you existing installation, though in addition to updating the Boot Camp Assistant, you'll need to burn a new driver CD and install the items contained into your Windows system. + +I bit the bullet this morning and updated my Vista partition to check out the new drivers. Everything worked as advertised, including the iSight support which was the main thing missing from my previous installation. + +Other nice bits include a new system tray icon that will bring up a Boot Camp help center with troubleshooting tips and how-to hints for new Windows users. The keyboard driver support is now Vista compatible giving me backspace for the delete key and fn-delete for delete. + +I can't necessarily say it didn't previously work because I never tried, but I was also able to connect to my Razr via Bluetooth (which I still can't do in OS X). + +Check out the screenshots below and also see [Cult of Mac's coverage][2] for a complete list of driver upgrades and more. + +[1]: http://www.apple.com/macosx/bootcamp/ "Boot Camp 1.2" +[2]: http://blog.wired.com/cultofmac/2007/03/boot_camp_updat.html "Boot Camp Updated to Version 1.2 with Vista Compatibility" + +installing the new drivers + + +system tray icon + + +help center + + +iSight camera working (still not sure what software you use to capture video, but at least I know Vista can connect to it). + +Bluetooth successfully connected to Razr. + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/darthpost.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/darthpost.jpg Binary files differnew file mode 100644 index 0000000..9eab731 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/darthpost.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/gpl.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/gpl.txt new file mode 100644 index 0000000..0e7a490 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/gpl.txt @@ -0,0 +1,30 @@ +The Free Software Foundation has [release the third discussion draft of GPL v3][1]. The new draft incorporates from the general public as well as international discussion committees. The revised GPL v3 includes several significant changes and addresses many of the concerns that caused a fair amount of public outcry when the original draft was released. + +The changes in today's draft include the following new or changed provisions: + +* First-time violators can have their license automatically restored if they remedy the problem within thirty days. +* License compatibility terms have been simplified, with the goal of making them easier to understand and administer. +* Manufacturers who include the software in consumer products must also provide installation information for the software along with the source. This change provides more narrow focus for requirements that were proposed in previous drafts. +* New patent requirements have been added to prevent distributors from colluding with patent holders to provide discriminatory protection from patents. + +The current draft will be available for discussion for 60 days. After that there will be one more public "last call" draft before the foundation's board of directors votes to approve the final text of GPL v3. + +The FSF says that the GNU components in the GNU system will be released under GPL version 3, once it is finalized. The other major chunk of GPL licensed software, the Linux kernel, may opt to adopt the new license, but Linus Torvalds hasn't committed to it just yet. + +In an [interview with CNet][2], Torvalds says, "the current draft makes me think it's at least a possibility in theory, but whether it's practical and worth it is a totally different thing," + +For many the major sticking points in earlier drafts was the language surrounding DRM and patent concerns brought to light by the recent Microsoft-Novell partnership. + +Richard Stallman, president of the FSF and principal author of the GNU GPL, said in a press release yesterday, that one of the GPL's goals was to stop companies like Microsoft and Novell from "undermining" the user's freedoms. + +"These freedoms allow you to run the program as you see fit, study and adapt it for your own purposes, redistribute copies to help your neighbor, and release your improvements to the public," writes Stallman. + +Language in the GPL v3 preamble confirms that sentiment saying, "we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free." + +However one of the main issues for many people is how the actual legal language in the GPL handles the goals of the preamble. Originally the GPL v3 contained so very specific requirements restricting what hardware manufacturers could include in their products, but those provisions have largely been removed. + +If you'd like to comment on the current draft, [head over to the FSF's site][3] and read through the license. + +[1]: http://www.fsf.org/news/gplv3dd3-released "FSF releases third draft of GPLv3 for discussion" +[2]: http://news.com.com/2061-10795_3-6171300.html "Torvalds 'pretty pleased' about new GPL 3 draft" +[3]: http://gplv3.fsf.org/comments/gplv3-draft-3.html#all "GPL v# comments"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/head-body.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/head-body.jpg Binary files differnew file mode 100644 index 0000000..c00c8d5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/head-body.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/help.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/help.jpg Binary files differnew file mode 100644 index 0000000..ea418fa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/help.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/install.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/install.jpg Binary files differnew file mode 100644 index 0000000..99fd0a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/install.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/isightonvista.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/isightonvista.jpg Binary files differnew file mode 100644 index 0000000..020a734 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/isightonvista.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/magicmog.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/magicmog.jpg Binary files differnew file mode 100644 index 0000000..2bbfa85 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/magicmog.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/mog.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/mog.txt new file mode 100644 index 0000000..135537c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/mog.txt @@ -0,0 +1,16 @@ +The last time we [looked at MOG][1], we found the community aspects of the site saved it from being just another music site, but MOG officially ended its beta phase with a [relaunch yesterday][2] and the new version adds a number of impressive new features that change the site from an also-ran to real innovator. + +The new MOG features automatic <a href="http://mog.com/listen">music</a> recommendations, self-customizing <a href="http://mog.com/read">news feeds</a> from other users and, most impressively, a YouTube/MOG mash-up called <a href="http://mog.com/watch">MOG TV</a> that automatically programs music videos from a database of over 150,000 music videos on YouTube, creating a channel of videos that you're likely to like. + +The MOG TV mashup of YouTube and MOG user recommendations is similar to the way Pandora and others select music, but in this case the recommendations are YouTube music videos. + +And since YouTube has licensed music video content straight from the labels, the MOG TV feature is unlikely to fall victim to the copyright concerns that often swirl around similar services. + +Eliot Van Buskirk over at Listening Post sat down with MOG CEO David Hyman earlier this week and got a hands on walk through of the new site. Hyman refers to MOG TV "what MTV should have become," and having just thumbed through the service for twenty minutes I'd have to agree with that statement. + +Be sure to check out the rest of Eliot's [coverage on Listening Post][3]. + +[1]: http://blog.wired.com/monkeybites/2006/12/mog.html "MOG: Discover New Music" +[2]: http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=104&STORY=/www/story/03-29-2007/0004555742&EDATE= "MOG Comes Out of Beta" +[3]: http://blog.wired.com/music/2007/03/mog_20s_youtube.html "MOG 2.0's YouTube Mash-up: "What MTV Should Have Become"" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tray.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tray.jpg Binary files differnew file mode 100644 index 0000000..b780a6b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tray.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tweako-screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tweako-screen.jpg Binary files differnew file mode 100644 index 0000000..a10ecaf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tweako-screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tweako.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tweako.jpg Binary files differnew file mode 100644 index 0000000..e4a3ce0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tweako.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tweako.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tweako.txt new file mode 100644 index 0000000..742da03 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/tweako.txt @@ -0,0 +1,15 @@ +Tweako is a new social news aimed at programmers that just launched a couple of hours ago. Tweako bears a certain similarity to Digg, but instead of news headlines the user submitted content is geared toward tutorials, guides, resources and services. + +I wouldn't go so far as to call it a Digg clone, but even if you did, a Digg clone for tutorials and the like is a good idea. + +In addition to submitting links, registered users can post tutorials and the like directly on Tweako. All the submitted content can be tagged, commented on and voted for by other users. + +Registering at Tweako is free and creating the account lets you set up a profile that can track your voting and submission history. There are also tools for sending private messages and initiating a chats with fellow users in you "buddy" list. In addition to a site-wide feed there are also topic and user based RSS feeds. + +The site is broken into fourteen broad categories ranging from tips for Mac or Windows users to Rails tutorials. And for something that just went public there's a decent amount of content on the site. + +The layout and design of Tweako is quite slick with all the Ajax widgets we've come to expect from sites like this. At the moment there are a couple of Google text ads, but not the overwhelming onslaught of ads that many tutorial sites sites throw at you. + +Also worth noting is that Tweako was designed and created by a 19 year-old programmer, named Michael Stefanello, which is a heck of a lot more than I accomplished at that age. + +As with an social site that's just launched, Tweako is looking for content so if you have a tutorial you'd like to tell people about head on over and submit it to Tweako.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/xhtml5.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/xhtml5.txt new file mode 100644 index 0000000..6859808 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Thu/xhtml5.txt @@ -0,0 +1,26 @@ +Earlier today I ran across an [interview with Ian Hickson][1], former Opera developer, now at Google, about the future of X/HTML 5.0. Hickson is the editor the X/HTML 5 spec which is not to be confused with XHTML 2, the successor to XHTML 1.0. + +Hickson has some interesting comments and outlines some of the goals for the development of X/HTML 5. Hickson also mentions a study he worked on at Google that sampled of several billion web documents and found that more that 78 percent of them had HTML errors. + +"And those are only core syntax errors -- (the survey) didn't count misuse of HTML, like putting a p element inside an ol element," he adds. + +But in spite of that, Hickman recognizes that it was not good code that sped the growth of the web. He argues that it was browsers ability to handle errors and fail silently that makes the web both full sloppy coding and happy users. + +>Having draconian error handling -- the term we use for just not allowing errors instead of having silent error recovery like HTML does -- is not the only solution for getting consistent behavior between browsers. The approach that we have taken with HTML 5 is to define what any document means, even if it is invalid -- down to the last detail, so that every browser will handle every document in an equivalent way, whether the document is conformant or not. (It's the same technique CSS uses.) + +One of the unfortunate things happening right now is the splitting of X/HTML 5 and XHTML 2, the last thing the web needs is two totally separate specs. In fact that's one of the main things that Hickman things is wrong with the web. + +He argues that for the sake of our future generations, we should document exactly how to process today's documents, otherwise they might well have no idea how to write a browser. Strange though it may seem there is very little information out there about how HTML is supposed to be rendered. + +Most of the documentation and tutorials you'll see are how to make HTML look certain ways within different browsers. According to Hickman even the browser manufacturers often resort of reverse engineering each other code to discover how to handle certain complex situations. + +>Once I got into actually documenting HTML for the future, I came to see that the effort could also have more immediate benefits, for example today's browser vendors would be able to use one spec instead of reverse engineering each other; and we could add new features for authors. + +It'll be years before X/HTML has much impact on the average designers life, although the recently released Yahoo Pipes does use <code>canvas</code> feature of HTML 5, still X/HTML is being developed as an open project. If you'd like to learn more, check out the [Web Hypertext Application Technology WG][2] -- WHAT Work Group. + +[1]: http://xhtml.com/en/future/conversation-with-x-html-5-team/ "Conversation With X/HTML 5 Team" +[2]: http://www.whatwg.org/ "Web Hypertext Application Technology" + +[photo credit][3] + +[3]: http://www.flickr.com/photos/daniello/422213306/ "html tattoo"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/gcode.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/gcode.jpg Binary files differnew file mode 100644 index 0000000..3c6b27e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/gcode.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/gtools.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/gtools.txt new file mode 100644 index 0000000..ee4e3c7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/gtools.txt @@ -0,0 +1,22 @@ +The Google Code Blog announced the [release of four open source coding tools][1] yesterday. the announcement is part of an ongoing Google program of releasing infrastructure tools as open source software. + +All of the tools are hosted on the [Google Code project][2] and are available for download. + +For the most part these are highly geeky C++ tools meant for serious developers, I've included a complete list after the jump. + +Yesterday's release includes: + +* **[gflags][3]**: Command line flags module for C++. Gflags is intended replacement for getopt() and is implemented in both C++ and Python. + +* **[perftools][4]**: Fast, mutli-threaded malloc() and performance analysis tools. Along with TC Malloc, perftools also contains a Heap Checker, Heap Profiler, and a CPU Profiler. + +* **[sparsehash][5]**: A memory-efficient hash map implementation. The SparseHash package contains several hash-map implementations, including one implementation that optimizes for space, and another that optimizes for speed. + +* **[ctemplate][6]**: A simple but powerful template language for C++. + +[1]: http://google-code-updates.blogspot.com/2007/03/four-google-open-source-tools-on-google.html "Four Google open source tools on Google Code" +[2]: http://code.google.com/hosting/ "Google Code Hosting" +[3]: http://code.google.com/p/google-gflags/ "gflags" +[4]: http://code.google.com/p/google-perftools/ "perftools" +[5]: http://code.google.com/p/google-sparsehash/ "sparsehash" +[6]: http://code.google.com/p/google-ctemplate/ "ctemplate"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/openid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/openid.jpg Binary files differnew file mode 100644 index 0000000..4f901ea --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/openid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/openid.tct b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/openid.tct new file mode 100644 index 0000000..805ee0e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/openid.tct @@ -0,0 +1,57 @@ +I recently decided it was time to explore OpenID. For those that aren't familiar with OpenID, the sound-bite version boils down to this: OpenID is a way to identify yourself using a URL rather than username and password. + +With more and more big names, [Microsoft][5] and AOL comes to mind, supporting OpenID I figured it was about time to dive in and set up my own account. + +If you happen to have a LiveJournal, or Vox user you already have an OpenID account. For the rest of us there's a variety of options [MyOpenID][4], [Verisign][3] and [ClaimID][2] to name a few. I went with MyOpenID because it was the first one I stumbled across. The signup process was fast, free and easy. + +So far so good, but what if I don't want to remember my newly created URL? The answer is use your own domain and drop in some headtags which tell requesting sites to get the info from the other server. + +If you're using MyOpenID, the code looks like this: + + <link rel="openid.server" href="http://www.myopenid.com/server"> + <link rel="openid.delegate" href="http://myname.myopenid.com/"> + +Replace the address in the second url with your OpenID address and add these lines to the head of the page that you want to use as your OpenID address. If you're using another service I've mentioned here's a handy server url reference table [courtesy of blogger Simon Willison][6]: + +<table> + <tr> + <th>OpenID Provider</th><th>Server URL</th> + + </tr> + <tr> + <td>LiveJournal</td> + <td>http://www.livejournal.com/openid/server.bml</td> + </tr> + <tr> + <td>Vox</td> + + <td>http://www.vox.com/services/openid/server</td> + </tr> + <tr> + <td>VeriSign</td> + <td>https://pip.verisignlabs.com/server</td> + </tr> + <tr> + + <td>MyOpenID</td> + <td>http://www.myopenid.com/server</td> + </tr> +</table> + +If you'd like to see a more thorough explanation of OpenID, Simon Willison also has a great screencast that walks you through the process of initially setting up your OpenID account which I've embedded below (or try [the higher res version][7]). + +I'll admit it took me a minute to wrap my head around the why part of OpenID, but now that I have it all setup it really does make life easier. And the more people that start using OpenID the more sites that will adopt it. + +For a list of existing site that support OpenID check out the [list on MyOpenID][8]. + +<embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-7463164786703060643&hl=en" flashvars=""> </embed> + + +[1]: http://www.openidenabled.com/openid/use-your-own-url-as-an-openid +[2]: http://claimid.com/ "ClaimID" +[3]: http://pip.verisignlabs.com/ "VeriSign Personal Identity Provider" +[4]: https://www.myopenid.com/ "MyOpenID" +[5]: http://blog.wired.com/monkeybites/2007/02/microsoft_to_su.html "Microsoft To Support OpenID" +[6]: http://simonwillison.net/2006/Dec/19/openid/ "How to turn your blog in to an OpenID" +[7]: http://simonwillison.net/2006/openid-screencast/ "How to use OpenID (a screencast)" +[8]: https://www.myopenid.com/directory "MyOpenID site directory"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/photoshelter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/photoshelter.jpg Binary files differnew file mode 100644 index 0000000..97ddb8a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/photoshelter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/photoshelter.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/photoshelter.txt new file mode 100644 index 0000000..4d80422 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/photoshelter.txt @@ -0,0 +1,35 @@ +With Adobe announcing [Photoshop CS3][3] today and having written a short piece on a new breed of photographer, someone I call the "[middle class photographer][2]," I thought it might be a good time to look at [PhotoShelter][1], a photo cataloguing and sharing site. + +PhotoShelter has been around for some time, but they recently launched a new program for pro members that offers up to one terabyte of online storage. + +In addition to organizational tools like galleries, lightboxes for potential clients, and integrated sales through Paypal, PhotoShelter offers locally and geographically redundant, server space and robust search capabilities. + +All this does not of course come without a price. PhotoShelter's 500 gigabyte storage plan will run you $600 per year and the one terabyte of storage goes for $1000 a year. + +Photoshelter is not a Flickr alternative, rather the site is geared at the professional photographer looking to catalog, store and sell their images online. That said some Flickr users who are getting more serious about their images and are considering a possible career shift might want to have a look at PhotoShelter. + +The folks at PhotoShelter gave me a test account earlier this month and after testing it out for a few days, here's what I found. + +Uploading from remote machines via the web form is impractical for anyone who's just dropped as much a $1000 on a membership. There is a beta uploader that uses a Java applet to allow for drag and drop transfers. In my tests the Java applet worked beautifully, but since it is in beta you may not want to trust your important images to it. + +Thankfully PhotoShelter has a cross platform uploading tool that can be downloaded from the site and makes uploading images a breeze. + +Once your images are on the site, you can browse them through a two paned interface, on the left you'll find your upload folders and on the right the images (see screenshots below). There's good support for both EXIF and IPTC metadata. + +Your image archives are searchable, images can be tagged and flagged to make finding them easier. The organization interface also supports drag and drop operations for most tasks including moving photos around in your folder structure. + +To help you sort and present your images, Photoshelter offers the ability to create galleries and control which images and galleries are public and which private. + +In addition to the gallery metaphor, PhotoShelter also offers something it call Lightboxes, which mirror the functionality of an old real world lightbox. Essentially it's like gallery but you can then send out invites, to say a client, and get feedback on images. + +There are also a number of tools for professionals looking to sell their images. The sales end is handled by creating pricing profiles. In order to sell an image, you have to set up a pricing profile which describes how much the image costs. Once you've created a profile, you can link it to one or many images and re-price them in batches. + +There are options for both royalty free images and rights managed as well. + +PhotoShelter also has a Virtual Agency which allows a group of photographers to form their own "agency" by linking their collective PhotoShelter archives. They can market themselves together through a shared public webpage that also includes the ability to showcase galleries and provide image searching. + +While it's definitely out of the price range for the casual photographer, PhotoShelter has some nice features and offers a compelling all-in-one solution for the budding pro photographer. + +[1]: http://www.photoshelter.com/ "PhotoShelter" +[2]: http://www.wired.com/software/softwarereviews/news/2007/03/photoshopamateurside_0327 "Photoshop's New Fans Are the Darkroom Denizens of Yesteryear" +[3]: http://www.wired.com/software/softwarereviews/news/2007/03/pshop_features_side0327 "Inside Photoshop CS3: Faster, Better and Easier to Use"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/reboot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/reboot.txt new file mode 100644 index 0000000..d325cac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/reboot.txt @@ -0,0 +1,29 @@ +<img alt="Any_key_3" title="Any_key_3" src="http://blog.wired.com/photos/uncategorized/any_key_2.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Morning Reboot apologizes for any stylesheet weirdness you may experience today and rest assured the boot' has people working on it. + +* Today's the day: Adobe has announced the pricing structure and other details about the new Creative Suite 3 application packages. Be sure to check out all the Wired coverage [here][6], [here][7], [here][8], [here][9], and [here][10]. + +[6]: http://www.wired.com/software/softwarereviews/news/2007/03/pshop_cs0327 "Major Photoshop Upgrade Is Overkill for the Flickr Crowd" +[7]: http://www.wired.com/software/softwarereviews/news/2007/03/pshop_features_side0327 "Inside Photoshop CS3: Faster, Better and Easier to Use" +[8]: http://www.wired.com/software/softwarereviews/multimedia/2007/03/photoshopcs3 "Gallery: Adobe Creative Suite 3 in Pix" +[9]: http://blog.wired.com/monkeybites/2007/03/which_creative_.html "Which Creative Suite is Right For You?" +[10]: http://blog.wired.com/monkeybites/2007/03/gallery_cs3.html "Gallery: Adobe Creative Suite 3" + +* Microsoft said yesterday that it has [sold 20 million licenses of its new Windows Vista operating system][1]. That's more than double what Windows XP did in its first month. + +[1]: http://www.microsoft.com/presspass/features/2007/mar07/03-26VistaDebut.mspx "Windows Vista Debuts with Strong Global Sales" + +* Everybody's favorite satirical newspaper, The Onion, is taking the [big leap into the world of online video][2]. The new Onion News Network clips can be found on the front door. Hopefully they're as funny as The Onion reps at SXSW, who were as funny, if not funnier, in person than the writing on the site. + +[2]: http://www.theonion.com/content/ "The Onion" + +* AT&T and Napster have [partnered to give one year of free Napster access][3] to qualifying AT&T customers. According to Reuters, "new or existing AT&T wireless customers outside of the AT&T's traditional 22-state territory who agree to a two-year wireless agreement with purchase of the SYNC phone by Samsung, or the BlackJack phone" will qualify. + +[3]: http://www.reuters.com/article/technologyNews/idUSN2638030620070326 "Napster, AT&T in wireless music tie-up" + +* Someone named Ozy from AwkwardTV has [posted a video][4] (video link) showing how he managed to get an AppleTV to boot from an external USB hard drive. The process involves doing a "recovery boot" which somehow causes the AppleTV to recognize and boot from a USB drive. + +[4]: http://www.ozy.us/stuff/ExternalBootOnAppleTV.mov "Booting the Apple TV from a USB drive" + +* And finally, it's not exactly news, but the TimesOnline pretty much nails Twitter on the head with this title: [The Seinfeld of the internet][5]. + +[5]: http://business.timesonline.co.uk/tol/business/industry_sectors/technology/article1571232.ece "The Seinfeld of the internet"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/archiveviewer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/archiveviewer.jpg Binary files differnew file mode 100644 index 0000000..328ea11 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/archiveviewer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/data-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/data-1.jpg Binary files differnew file mode 100644 index 0000000..89ce783 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/data-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/dnduploader.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/dnduploader.jpg Binary files differnew file mode 100644 index 0000000..0ca4517 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/dnduploader.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/gallery.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/gallery.jpg Binary files differnew file mode 100644 index 0000000..38e86ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/gallery.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/lightbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/lightbox.jpg Binary files differnew file mode 100644 index 0000000..8ecd65f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/lightbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/metadata-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/metadata-2.jpg Binary files differnew file mode 100644 index 0000000..108fbd4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/metadata-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/photosalestool.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/photosalestool.jpg Binary files differnew file mode 100644 index 0000000..6806f6d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/photosalestool.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/uploader.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/uploader.jpg Binary files differnew file mode 100644 index 0000000..2a16ad5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/shelter/uploader.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/soul.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/soul.jpg Binary files differnew file mode 100644 index 0000000..e649523 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/soul.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/zenzui.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/zenzui.jpg Binary files differnew file mode 100644 index 0000000..5ea8840 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/zenzui.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/zenzui.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/zenzui.txt new file mode 100644 index 0000000..fde5c3f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Tue/zenzui.txt @@ -0,0 +1,26 @@ +ZenZui, a newly formed company that crawled out of the Microsoft technology research program, has [launched a new zoomable mobile web browsing interface][1]. Using what amounts to a widget platform, Zenzui aims to make web browsing through mobile devices a more user-friendly experience. + +Instead of navigating through a traditional web browsing experience, which pretty much anyone will admit sucks on a mobile phone, the ZenZui system creates pages of clickable tiles. Clicking on a tile then zooms to that page, feed or other service. + +It's somewhat difficult to explain clearly so I've embedded a demo movie of ZenZui in action (complete with an awful soundtrack) after the jump. + +However, to say that ZenZui let's you browse the web from your phone is something of an exaggeration. The truth is that ZenZui lets you browse a subset of the web. The Zenzui site is currently down, but when it comes back there's a [chart showing the ZenZui content partners][2] which is extent of ZenZui's interpretation of the web. + +The first thing most people will notice in the demo video below is that ZenZui bears more than a passing resemblance to Apple's iPhone interface, but ZenZui doesn't necessarily use a touchcreen interface, there's keypad navigation as well. + +And ZenZui isn't so much a platform as a series of widget-like elements strung together by a unifying interface -- zoomable widgets from specific service partners are not the web. + +However ZenZui is offering to split ad revenue with widget developers as a means of encouraging developers to build widgets for ZenZui. High-minded developers can also release ad-free widgets which will display promotional messages non-profits. + +Still I can't help agreeing with Techcrunch's Nick Gonzalez who [writes][3] that, while ZenZui is a step in the right direction since it removes more content control from mobile service providers, it still leaves much to be desired. "mobile phone platforms should move in the direction of open standards, which have benefited desktop computing platforms so much." + +As it is ZenZui fails to do that and remains little more than yet another advert-laden widget service for your mobile device. + + + + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/r12eUXJNbl8"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/r12eUXJNbl8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://www.zenzui.com/ "ZenZui" +[2]: http://www.zenzui.com/images/contentProductsDiagram.png "ZenZui widget chart" +[3]: http://www.techcrunch.com/2007/03/27/zenzui-on-mobile-browsing-the-microsoft-way/ "Techcrunch on ZenZui"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/appletv.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/appletv.jpg Binary files differnew file mode 100644 index 0000000..0e641ef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/appletv.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/appletvhacks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/appletvhacks.txt new file mode 100644 index 0000000..4707bd3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/appletvhacks.txt @@ -0,0 +1,16 @@ +We've pointed out a couple of cool AppleTV hacks in the past week, but the folks over at tutorial ninjas have put out a very nice [guide to hacking AppleTV][1], including a way to get Joost working with AppleTV. + +The tutorial ninja hacking guide includes tips and instruction for the following: + +* Disabling the Firewall +* Enabling SSH & VNC +* Playing xvid/divx encoded stuff +* Stopping Watchdog +* Running Applications(Firefox, Centerstage, etc) +* Installing Quartz + +Near the bottom of the post is a short note that says they successfully installed Joost on the AppleTV. There are reportedly some issues with fonts, but the basic functionality of the Joost application apparently works. Since I don't have an AppleTV I can't verify the hack, any intrepid readers out there willing to give it a try? If you do let us know how it works in the comments below. + +Naturally there is always the chance that Apple will cripple AppleTV further in the future to prevent users from doing this sort of thing, as they've done repeatedly to disable various iTunes hacks over the years. But then again they might not which would leave you with a way to play nearly any video format you like on your AppleTV including Joost's. + +[1]: http://tutorialninjas.net/2007/03/26/hacking-the-apple-tv/ "Hacking the Apple TV" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/finder.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/finder.jpg Binary files differnew file mode 100644 index 0000000..e27fc88 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/finder.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/kuler.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/kuler.txt new file mode 100644 index 0000000..6e7178f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/kuler.txt @@ -0,0 +1,20 @@ +To coincide with [yesterday's Creative Suite 3 announcement][5], Adobe has [added some features][3] to its [kuler][2] service. Kuler is a tool/social network that allows web designers to create and share color schemes. For some background on kuler [check out our previous coverage][4]. + +The new version of kuler features RSS feeds, clickable tags and the ability to see user themes by clicking the avatar or user ID. + +Apple users can also try out the new Dashboard widget and Adobe promises that something similar is in the works for Windows users. + +In addition to the new tools, Adobe says that the site has been upgraded and users can expect to see significant speed gains. And even better, In a note at the bottom of the press release the kuler team also suggests that they are working on a public API for the site. + +I'll confess that I find a social network built around a color picker a bit odd, but browsing through the site it would seem that Adobe has built a reasonably large community around kuler. And there is something strangely compelling about kuler -- I just wasted twenty minutes playing with it. + +To use kuler you'll need the Flash 9 plugin and if you'd like to participate by rating community submissions you'll need to sign in with an Adobe ID. + + +[via [Micro Persuasion][1]] + +[1]: http://www.micropersuasion.com/2007/03/adobe_launches_.html "Adobe Launches a Colorful Social Network" +[2]: http://kuler.adobe.com/ "Adobe Labs: Kuler" +[3]: http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=622&threadid=1254378&enterthread=y "Kuler Update" +[4]: http://blog.wired.com/monkeybites/2006/11/kuler_rulers.html "Kuler Rulers!" +[5]: http://www.wired.com/software/softwarereviews/multimedia/2007/03/photoshopcs3 "Gallery: Adobe Creative Suite 3 in Pix"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/newfilesfinder.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/newfilesfinder.txt new file mode 100644 index 0000000..8ace4fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/newfilesfinder.txt @@ -0,0 +1,28 @@ +One of the biggest complaints from many Mac "switchers" is the inability to create new files in Apple's Finder program. Creating a new text file in Windows Explorer is a simple right-click operation, which, if you relied on it heavily, is sorely missed in OS X. In fact even many longtime mac users like myself find this oversight inexcusable. + +Luckily there are ways around Apple's omission. Just in the last two days I've run across no less than for ways to create new files directly in the Finder. + +The first is an application called [Document Palette][5]. Document Palette runs in the background and allows you to create new documents in the current folder. With a folder active in Finder, press Control+Option+Command+N to make the palette appear, then select the document type you wish to create. + +New files aren't limited to blank documents, you can create new documents using templates with, say, basic HTML code. + +But Document Palette isn't free, a single user license will set you back $8, which while cheap, still seems unnecessary for something so basic. + +Another app you could check out is [NuFile][4] which can create a new file in the Finder with just two clicks. Call me lazy, but why two? + +The third method is for users of the popular Quicksilver app and comes courtesy of [Vacuous Virtuoso][3]. If you already have Quicksilver installed you just need to activate the "Make New" action. + +To use the "Make New" command with templates navigate to ~/Library/Application Support/Quicksilver and create a new folder named templates. Then just create whatever file type templates you'd like to have access to and save them in the templates folder. Add a hotkey combo for Quicksilver's "make new" command and you're all set. + +This morning I found an article on John Gruber's [Daring Fireball][1] that reminded me of the method I used to use for creating a new files in Finder. Gruber's method uses [Big Cat scripts][2] which can add an Applescript to the Finder's contextual menu and pretty much mimics the behavior of Window's Explorer. Gruber has a copy of an Applescript you can use to get started. + +The final option is a bit extreme, but I gave up on Apple's Finder quite a while ago. I use Cocoatech's [Path Finder][6] instead and Path Finder ships with a contextual menu item for creating new files. Admittedly Path Finder is not free ($35), but it offers an impressive set of features for the price. + +No matter what method you end up using, at least there are ways around Apple's oversight. + +[1]: http://daringfireball.net/2007/03/new_text_files_contextual_menu "Creating New Text Files From the Finder’s Contextual Menu" +[2]: http://ranchero.com/bigcat/ "Big Cat Scripts" +[3]: http://dev.lipidity.com/feature/tutorial/right-click-new-file " Right click != New File" +[4]: http://growlichat.com/NuFile.php "NuFile" +[5]: http://www.coldpizzasoftware.com/documentpalette/ "Document Palette" +[6]: http://www.cocoatech.com/pf4/ "PathFinder"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/ninja.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/ninja.jpg Binary files differnew file mode 100644 index 0000000..963aa68 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/ninja.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/sling.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/sling.jpg Binary files differnew file mode 100644 index 0000000..7f9fe11 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/sling.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/sling.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/sling.txt new file mode 100644 index 0000000..73686db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/sling.txt @@ -0,0 +1,12 @@ +Not to be outdone by the [rumored YouTube Mobile][1] site, Sling Media, makers of the [Slingbox][2], have [announced][3] the Sling Player Mobile for Palm OS. The new software makes it possible to watch your Sling media on Treos and other Palm OS smart phones. + +The software is [currently a free beta][1] with the final version shipping later this year. Once the final version becomes available Sling Player Mobile will cost $30, though Sling says there will be a free 30-day trial. There are no monthly or recurring charges for the use of the software. + +The interesting thing about Sling is that have so far avoided partnering with any of the mobile carriers. To use Sling Mobile you will of course need to have a Slingbox and some sort of wireless or 3G network, but the service is not tied to any wireless provider. + +Sling Mobile is already available for Windows Mobile devices. + +[1]: http://us.slingmedia.com/page/downloads.html "Download Sling Mobile" +[2]: http://blog.wired.com/gadgets/2005/10/review_sling_me.html "Review: Sling Media Slingbox" +[3]: http://www.slingcommunity.com/ "Sling Mobile Arrives" +[4]: http://blog.wired.com/monkeybites/2007/03/shrinking_lonel.html "YouTube To Launch Mobile Site"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/yahoo mail.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/yahoo mail.txt new file mode 100644 index 0000000..2127032 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/yahoo mail.txt @@ -0,0 +1,17 @@ +Yahoo [announced yesterday][2] that it will begin offering free unlimited storage for its web-based email service. Yahoo's unlimited email storage offer trumps the other major web-based email providers. Currently Google offers upwards of 2.8 GB and Windows Live Hotmail offers 2 GB. + +The changes in Yahoo Mail will not take effect until May, in the mean time the current storage limits for your mailboxes remains at 1 GB. + +Just to put things in perspective, When Yahoo Mail launched 10 years ago, the storage limit was 4MB. + +John Kremer, VP of Yahoo Mail, said in a press release, "we’re psyched to be breaking new ground in the digital storage frontier by giving our users the freedom to never worry about deleting old messages again." + +Kremer also notes that there are "anti-abuse" limits in place to "protect" users. While Yahoo hasn't given any details it seems reasonable to expect that this doesn't mean unlimited online storage space. While it's certainly possible to backup some of your files via Yahoo email, to the best of my knowledge there are no archiving tools like [GMail Drive][1] for Yahoo. + +Still, despite the limits, any escalation in storage is good for consumers -- more space is almost never a bad thing. Unfortunately Yahoo doesn't offer POP or IMAP access for its free accounts. While POP services are available for Yahoo Mail, you'll need to pony up for a premium account, whereas GMail gives POP access for free. + +With 250 million users, Yahoo Mail currently has the largest user base of any email provider on the web. + +[1]: http://www.viksoe.dk/code/gmail.htm "Gmail Drive" +[2]: http://yodel.yahoo.com/2007/03/27/yahoo-mail-goes-to-infinity-and-beyond "Yahoo Mail goes to infinity and beyond" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/yahoomail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/yahoomail.jpg Binary files differnew file mode 100644 index 0000000..c6c2fdd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/yahoomail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/youtubemobile.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/youtubemobile.txt new file mode 100644 index 0000000..fbdc5ae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/03.26.07/Wed/youtubemobile.txt @@ -0,0 +1,18 @@ +YouTube lovers rejoice, soon you'll be able to get advice from "[Ask A Ninja][4]" no matter where you are. + +GigaOM [reports][1] that YouTube will soon launch a mobile site offering select videos to mobile subscribers. According to GigaOM, YouTube's new mobile site will go live in the U.S. after the existing exclusive mobile deal with Verizon Wireless expires. + +European users can expect to get access to YouTube Mobile in May. + +There's a [preview site currently online][2], though access is blocked. GigaOM also lists a demo address at http://m.youtube.com/?client=ytdemo, but it didn't work on my phone. + +For the initial launch YouTube will reportedly be offering about 800 “editorial picks” of videos and eventually the company hopes to have the whole site available to mobile users. + +The question is does anyone want to see a greatly shrunken Lonelygirl15 on their phone? Even with the ever-improving screen resolution of the new crop of mobile phones, YouTube's video quality may not translate well to mobile devices. + +[As one Digg user quips][3]: "Small videos, on an even smaller screen. This can't possibly go wrong!" + +[1]: http://gigaom.com/2007/03/27/mobile-youtube/ "YouTube to launch mobile website soon" +[2]: http://m.youtube.com/blocked "YouTube Mobile Blocked" +[3]: http://digg.com/tech_news/YouTube_To_Launch_Mobile_Site "Digg: YouTube To Launch Mobile Site" +[4]: http://www.youtube.com/watch?v=H69eCYcDcuQ "YouTube: Ask A Ninja"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha.jpg Binary files differnew file mode 100644 index 0000000..d571e0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha.txt new file mode 100644 index 0000000..ec714bf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha.txt @@ -0,0 +1,23 @@ +Following in Google's [Searchmash footsteps][1], Yahoo has released a beta version of an [Ajax-based search service][2] dubbed "Alpha." Alpha integrates normal web search results with other search "modules." Alpha's default modules include searches of other Yahoo offerings like Flickr, Yahoo News and Yahoo Answers as well as YouTube and Wikipedia. + +If you login to a Yahoo account, Alpha can be customized to use any search module you'd like to create. I tried to create a Wired search module but I couldn't get it to work. However, Alpha had no trouble creating modules to search the BBC and NPR. + +All the module results are displayed in collapsable panes on the right side of the results page. By default all the panes are collapsed, but once you open one, Alpha remembers the setting and keeps it open on subsequent searches. + +Surprisingly, even sponsored results are relegated to a side pane and thus collapsed and out of view by default. It's a nice touch for users wanting to avoid ads, but seems unlikely to do much for Yahoo's revenue stream. + +While Alpha looks and functions nearly identically to Searchmash, I found the user interface to be slightly better looking, which might be the first time I've ever preferred a Yahoo UI design to one from Google. + +One small detail that Searchmash lacks which makes the Yahoo offer superior in my view, is the ability to thumb through auxiliary results without reloading the page. + +In the case of Searchmash, by default you get six image results and to see more you need to click a link that will reload the page with the image results in the main column. + +Yahoo's Alpha on the other hand provides a nice link to keep paging through the image pane without reloading the page -- Ajax the way it should be. And similar links exist for all the auxiliary search panes. + +While Searchmash is somewhat faster at returning results, Alpha is by no means slow. + +As with Searchmash there's no telling whether these features will ever make it to Yahoo's main search page, but in the mean time if you're a heavy user of Yahoo's search tools you'll definitely want to check out Alpha. + +[1]: http://blog.wired.com/monkeybites/2006/11/searchmash_a_ne.html "Searchmash: A New Google Search UI" +[2]: http://au.alpha.yahoo.com/ "Yahoo Alpha" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha1.jpg Binary files differnew file mode 100644 index 0000000..b2d2915 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha2.jpg Binary files differnew file mode 100644 index 0000000..519e840 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/alpha2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/appletv.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/appletv.jpg Binary files differnew file mode 100644 index 0000000..bd3952f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/appletv.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/appletv.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/appletv.txt new file mode 100644 index 0000000..e20ac30 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/appletv.txt @@ -0,0 +1,17 @@ +Rob Beschizza of Gadget Labs has an interesting article on Wired News today about how [hackers have transformed the AppleTV][1] from a simple media server device to a full fledged low-budget Mac OS X machine. + +The remarkable thing is that all the hacks and transformations have been found in just over two weeks -- imagine what the tinkerers will have discovered by this time next year. + +Earlier this week Apple dispelled rumors that it might shut down these hacks via backdoor access. [Engadget reports][3] that Apple says it is not using any backdoors to shutdown the Apple TV hacks. + +Rumors to that effect began to surface after a couple of hacks stopped working, however it appears that the failures would be problems with the hacks. They are after all, *hacks*." + +As someone who's been contemplating the purchase of a Mac Mini for use as a media server, I must say that Apple TV is looking increasingly like the way to go. I've decided to hold off on any purchases for at least a little while. I'm waiting to see if anyone can get AppleTV to recognize an external drive since the paltry 40 gig isn't going to work for me. + +I'm aware of the instructions for replacing the drive with a larger one, but even 160 gigs (currently the largest 2.5 drive available) isn't going to help if you're serious about serving movies via the AppleTV. And so far, while some have been able to boot from an external drive, I haven't seen a plug-and-play solution. + +Check out Rob's article for more [details on the various hacks][1] and be sure to stay tuned both here and at [Gadget Lab][2] for continuing coverage. + +[1]: http://www.wired.com/gadgets/mac/news/2007/04/appletvhacks_0406 "Hackers Dissect Apple TV to Create the Cheapest Mac Ever" +[2]: http://blog.wired.com/gadgets/ "Gadget Lab" +[3]: http://www.engadget.com/2007/04/05/apple-not-fighting-back-against-apple-tv-hacks/ "Apple's not fighting back against Apple TV hacks"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/del.icio.ustxt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/del.icio.ustxt new file mode 100644 index 0000000..5c0e1ec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/del.icio.ustxt @@ -0,0 +1,21 @@ +Social bookmarking site [del.icio.us][1][ released an update][3] to its Firefox toolbar add-on yesterday. Enhancements include integration of all your bookmarks via a new sidebar, the ability to you can sort and search your bookmarks, view tag intersections, and even modify your bookmarks all within the browser. + +The toolbar buttons remain the same as in previous versions and allow you to tag and view bookmarks, but unlike previous version you can now leave the functionality of Firefox's bookmarks intact, allowing you to use the best of both worlds. + +The updated del.icio.us add-on also boast significant speed gains and bookmark syncing is smooth and painless. Having experimented with both the official toolbar and some third party offerings in the past, I can safely say that, if you're a del.icio.us user, the new version is the complete bookmark replacement tool you've been wanting. + +The tag intersections features is particularly nice and allows you to quickly tunnel into your tags and find the bookmarks you're looking for. Tag bundles and keywords are also supported which means that the toolbar now mimics the functionality of the website. + +The search box in the new del.icio.us Firefox add-on also supports a limited set of operators, for instance to get bookmarks that are tagged with both "compiler" and "monkeybites," just use the + operator (a normal search will return results tagged with either. + +For del.icio.us power users the updated add-on is a must have and if you've never used del.icio.us before but would like to give social bookmarking a try the new features should make the transition smooth and painless. Now if only there were a [ma.gnolia][2] equivalent. + +[1]: http://del.icio.us/ "del.icio.us" +[2]: http://ma.gnolia.com "ma.gnolia.com" +[3]: http://blog.del.icio.us/blog/2007/04/making_firefox_.html "making Firefox more del.icio.us" + +The del.icio.us toolbar now offers two ways to access your info, using the drop down menu as seen above... + + +...or by using the sidebar seen here. Note the ability to sort by multiple tags. + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/del1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/del1.jpg Binary files differnew file mode 100644 index 0000000..9b2dfcd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/del1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/del2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/del2.jpg Binary files differnew file mode 100644 index 0000000..86da4b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/del2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/media1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/media1.jpg Binary files differnew file mode 100644 index 0000000..a7c0991 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/media1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/media2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/media2.jpg Binary files differnew file mode 100644 index 0000000..0c865d3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/media2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/mediamaster.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/mediamaster.jpg Binary files differnew file mode 100644 index 0000000..83688a1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/mediamaster.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/mediamaster.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/mediamaster.txt new file mode 100644 index 0000000..3b30d59 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/mediamaster.txt @@ -0,0 +1,29 @@ +[MediaMaster][2] is a new web app that lets users listen to music from any computer. MediaMaster is competing with the likes of [MP3tunes][3] and others offering online jukebox services, but MediaMaster currently has no limits on storage space. + +To set up a free account you'll just need to pick a username and password. The MediaMaster interface is very simple and intuitive making it easy to upload and listen to your tunes (see screenshots and demo video after the jump). The MediaMaster interface is built with Flash so you'll need to have the Adobe Flash Player installed. + +There are two methods for uploading your MP3s. The first is a simple select menu useful for adding a track or two, while the second is really simple drag-and-drop uploader. Just find the folder you'd like to upload on your hard drive and drag it over to the MediaMaster uploader and it will automatically parse the tracks. + +When uploading MediaMaster checks to see if the file already exists in which case it will skip it. Watch out when uploading live tracks as they may appear to be duplicates from MediaMaster's perspective. + +Once your tracks are uploaded you'll see a screen with album covers for all your music. In a very nice UI touch, when you don't have all the tracks on an album MediaMaster displays the cover art with a bite out of it. + +Creating and managing playlists is handled through drag-and-drop. Users can also rate songs and share music with embeddable widgets for blogs and popular social networking sites like Facebook. + +To skirt copyright restriction the sharing widgets do not actually give others copies of your music, instead they can stream it. There is also no way to download your files once they're uploaded, they can be deleted, but that's it, which means MediaMaster is not for those seeking backup system. + +Free accounts supposedly have an unlimited storage space but [according to Webware][1], MediaMaster plans to cap off user accounts at 4GB. + +For now only non-protected files can be uploaded which means your iTunes purchases won't work, but MediaMaster claims they are hoping to deliver iPod support and other features in the near future. + +Demo video from the founders of MediaMaster: + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/XRVCO1mti9s"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/XRVCO1mti9s" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://www.webware.com/8301-1_109-9699994-2.html "MediaMaster takes your music library online" +[2]: http://mediamaster.com/ "MediaMaster" +[3]: http://www.mp3tunes.com/ "MP3tunes" + +Main screen with default Classical Album (the Tom of MediaMaster I guess. + +Main upload screen.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/names.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/names.txt new file mode 100644 index 0000000..2f48b2c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/names.txt @@ -0,0 +1,21 @@ +Here's some fun facts for your Friday: [A list of how companies got their names][2]. The list isn't exclusively tech companies, but some of the more interesting stories are from web-tech leaders. + +Here's some highlights: + +* Apple - for the favourite fruit of co-founder Steve Jobs and/or for the time he worked at an apple orchard. Apple wanted to distance itself from the cold, unapproachable, complicated imagery created by other computer companies at the time. + +* eBay - Pierre Omidyar, who had created the Auction Web trading website, had formed a web consulting concern called Echo Bay Technology Group. "Echo Bay" didn't refer to the town in Nevada, "It just sounded cool," Omidyar reportedly said. Echo Bay Mines Limited, a gold mining company, had already taken EchoBay.com, so Omidyar registered what (at the time) he thought was the second best name: eBay.com. + +* Google - a deliberate misspelling of the word [googol][3], reflecting the company's mission to organize the immense amount of information available online. + +* Hotmail - Founder Jack Smith got the idea of accessing e-mail via the web from a computer anywhere in the world. When Sabeer Bhatia came up with the business plan for the mail service he tried all kinds of names ending in 'mail' and finally settled for Hotmail as it included the letters "HTML" — the markup language used to write web pages. It was initially referred to as HoTMaiL with selective upper casing. + +* Yahoo - a backronym for 'Y'et Another Hierarchical Officious Oracle. The word Yahoo was invented by Jonathan Swift and used in his book Gulliver's Travels. It represents a person who is repulsive in appearance and barely human. Yahoo! founders David Filo and Jerry Yang jokingly considered themselves yahoos + +* And my personal favorite and most fitting: Lycos - from *Lycosidae*, the family of wolf spiders. + +[via [Kottke][1]] + +[1]: http://www.kottke.org/remainder/07/04/13165.html "Kottke" +[2]: http://en.wikipedia.org/wiki/List_of_company_name_etymologies "Wikipedia: List of Company names" +[3]: http://en.wikipedia.org/wiki/Googol "Wikipedia: googol"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/odfagain.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/odfagain.txt new file mode 100644 index 0000000..1133d16 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/odfagain.txt @@ -0,0 +1,30 @@ +Lacking community support of its [much maligned][1] OOXML file format, Microsoft decided earlier this week to fake it. In yet another bid to fast track the OOXML format for ISO certification, Microsoft has posted an [online petition][6] positing grassroots support for OOXML, which has thus far seen [very little support][5] outside the walls of Redmond. + +Mark Taylor, the founder of the [Open Source Consortium][7], tells [ZDNet UK][8], "in the open-source world, there's clearly a massive grassroots thing." Taylor thinks that Microsoft is trying to apply the old adage if you can't make it, fake it. + +"One of the lessons Microsoft has been trying to learn from open source is that -- but they have to fake it." Taylor argues that if there were actually any grassroots support of the OOXML petition it would have been created "ages ago." + +OOXML has been [criticized][2] since its inception and with [more and more U.S. states][3] moving toward the existing OpenDocument Format over OOXML, Microsoft is facing an increasingly uphill battle with OOXML. + +An earlier attempt at posting an open letter to the open source community [backfired][4] with most critics dismissing it as whining while one former Microsoft employee went so far as to call the letter "professionally embarrassing." + +Thus far the online petition is receiving pretty much the same reaction. + +Marino Marcich of the [OpenDocument Format Alliance][9] told Compiler earlier this month that with over twenty countries objecting to the OOXML proposal, "the road ahead for OOXML will by no means be easy." + +Taylor also suggested to ZDNet that Microsoft was "in major trouble trying to get Open XML pushed through" and the petition "shows their worry." + + +[1]: http://blog.wired.com/monkeybites/2007/02/microsofts_ooxm.html "Microsoft's OOXML Format Receives More Setbacks" +[2]: http://blog.wired.com/monkeybites/2007/01/more_on_microso.html "More On Microsoft's OOXML Format" +[3]: http://blog.wired.com/monkeybites/2007/03/california_eyes.html "California Eyes Move Towards ODF, Away from OOXML" +[4]: http://blog.wired.com/monkeybites/2007/02/microsofts_open.html "Microsoft's Open Letter Whine" +[5]: http://www.wired.com/software/coolapps/news/2007/01/72403 "MS Fights to Own Your Office Docs" + +[6]: http://microsoft.co.uk/openxml/ "OOXML petition" +[7]: http://www.opensourceconsortium.org/ "Open Source Consortium" +[8]: http://news.zdnet.co.uk/software/0,1000000121,39286647,00.htm "Microsoft criticised for Open XML petition" +[9]: http://www.odfalliance.org/ "OpenDocument Format Alliance" + +Microsoft Petition A Desperate Bid to Gain OOMXL Support + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/ooxmlpic.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/ooxmlpic.jpg Binary files differnew file mode 100644 index 0000000..c7ef699 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/ooxmlpic.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/rewind.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/rewind.jpg Binary files differnew file mode 100644 index 0000000..9852255 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/rewind.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/rewinder.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/rewinder.txt new file mode 100644 index 0000000..1415df6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/rewinder.txt @@ -0,0 +1,25 @@ +The Rewinder, this week on Compiler: + +* We [mourned the death of Telnet][5]. Windows Vista is the first Microsoft OS to ship without support for the old network protocol. Next we're hoping to mourn the passing of FTP (in favor of SFTP of course). + +* Michael continued living the [Google Life][4] and found [Google Notebook][3] to be, well, noteworthy. "Google Notebook, plain and simple, is a way to extend your memory while you're surfing around the web. It's like keeping a Moleskine in your browser's back pocket." + +* Microsoft [announced][7] and then [actually released][8] a patch to fix a major security exploit in Windows. With numerous nefarious websites already exploiting the animated cursor vulnerability, its best to upgrade now -- even Vista users. + + +* Google released a [mashup tool to go with Google Maps][2], which should be easy enough that even your mom can use it to map out all the neighborhoods she doesn't want you walking home through late at night. + +* µTorrent [released a new public beta][9] adding full support for Windows Vista and a few other goodies. The fearless and brave have already upgraded. + +* Google had a big week now that I look back at it. We also took the new [Google Desktop for Mac on a test drive][6] and found it to be a worthy compliment to Apple's Spotlight. Still can't get the GMail integration to work though. + + +[1]: http://blog.wired.com/monkeybites/2007/04/new_delicious_f.html "New Del.icio.us Firefox Tool" +[2]: http://blog.wired.com/monkeybites/2007/04/googles_new_my_.html "Google Maps Adds User Mashups" +[3]: http://blog.wired.com/monkeybites/2007/04/note_to_self_go.html "Note to Self: Google Notebook is Pretty Cool" +[4]: http://blog.wired.com/monkeybites/thegooglelife/index.html "The Google Life" +[5]: http://blog.wired.com/monkeybites/2007/04/the_death_of_te.html "The Death of Telnet" +[6]: http://blog.wired.com/monkeybites/2007/04/first_look_goog.html "First Look: Google Desktop For Mac" +[7]: http://blog.wired.com/monkeybites/2007/04/microsoft_to_pa.html "Microsoft To Patch Vista Vulnerability" +[8]: http://blog.wired.com/monkeybites/2007/04/microsoft_relea.html "Microsoft Releases Windows Security Patch" +[9]: http://blog.wired.com/monkeybites/2007/04/new_torrent_bet.html "µTorrent Beta Adds Vista Support"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/thecoop.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/thecoop.txt new file mode 100644 index 0000000..889f504 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/thecoop.txt @@ -0,0 +1,45 @@ +Earlier this week Mozilla unveiled an experimental social networking add-on for Firefox called [The Coop][1]. A limited proof-of-concept add-on can be [downloaded from the Firefox Add-ons site][5] (note that the link seems to have been taken down) but currently requires a Facebook account to be useful. + +For some background on The Coop check out our [earlier coverage][3]. To get a better idea of where Mozilla plans to go with The Coop, I spoke with Chris Beard, Mozilla's Vice President of products, yesterday (transcript after the jump). + + +**Wired News**: What made Mozilla want to get involved in the social networking trend? + +**Chris Beard**: We get most of our ideas from the community. We looked at what people were doing on the web... two years ago searching was the dominate task, so with Firefox 1.0 we added the search box in the toolbar and of course made it possible to use different search engines. Looking at the web today, tons of people are working with social networks so we decided to see how the social networking experience might fit in the browser. + + +**WN**: There is obviously some overlap between [Flock][2] and The Coop, was Flock an inspiration? + +**CB**: Flock is certainly developing a browser for social networks, but this is not a reaction to Flock. + +Our project is of course open source. [Mozilla Labs] is really about being open and collaborative and encouraging wide levels of participation from the community. + +At Mozilla Labs anyone is welcome to participate. We provide forms for public feedback and discussion. + +**WN**: So The Coop is not involved with Flock? + +Flock has not contributed to this project in anyway, no. + +**WN**: Is this something that will make its way into Firefox 3? + +**CB**: AT this point there are no specific features planned for Firefox 3. There's still room for features, but nothing definite at this point. + +This is just one of the projects under the Mozilla Labs umbrella, but we don't know where this, or any of the others, are going yet. + + +**WN**: Some of our readers have expressed concern that rolling this into the browser would lead to feature bloat and sluggish performance, do you think this will end up as part of the browser itself or stay separate as an add-on? + +**CB**: We put together this initial prototype very quickly, it only took us a couple of weeks. So we really haven't even thought about where this thing goes from here. + +But we definitely want to make sure that the interface of Firefox remains clean and focused on browsing. We don't want to get in some kind of feature war -- that never helps the browser or the user. + +We want to get some debate and discussion about the possibilities and see where that leads. + + +If you'd like to contribute your opinions and ideas, head over to the [Mozilla Labs forum][4] and join in the discussion. + +[1]: http://labs.mozilla.com/2007/04/keep-track-of-your-friends-with-the-coop/ "Mozilla Labs: The Coop" +[2]: http://www.flock.com/ "Flock" +[3]: http://blog.wired.com/monkeybites/2007/04/mozilla_propose.html "Mozilla Proposes Social Networking Features For Firefox" +[4]: https://labs.mozilla.com/forum/index.php/board,8.0.html "Mozilla Labs Forum: The Coop" +[5]: https://addons.mozilla.org/en-US/firefox/addon/4746 "The Coop"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/ugoogle.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/ugoogle.jpg Binary files differnew file mode 100644 index 0000000..62c0b25 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/ugoogle.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/vistasp.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/vistasp.txt new file mode 100644 index 0000000..2b8aa17 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Fri/vistasp.txt @@ -0,0 +1,21 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/winvista_v_thumb_9.jpg" title="Winvista_v_thumb_9" alt="Winvista_v_thumb_9" style="margin: 0px 0px 5px 5px; float: right;" />Waiting for the first Vista service pack before you upgrade? You might end up feeling like a [Samuel Beckett character][3] according to Microsoft. + +The company said today it has no plans to issue a major service pack for Vista because the new OS is "[high quality right out of the gate][1]." + +While Vista's security may be debateable given the [patch rushed out earlier this week][2], the main reason we probably won't see huge Vista service packes involves changes in the updating tools. + +Vista's bundled Windows Update software makes it easy for Microsoft to incrementally issue smaller fixes as the need arrises rather than big updates. + +The service pack upgrades probably won't disappear altogether, but the ability to push out smaller updates over time means we probably won't see the massive SP2-type upgrades of Windows XP. + +"Will we continue to have service packs? Yes we will," Michael Sievert, corporate VP for Windows marketing says. "But they have a different level of importance today as people get their updates in real-time using Windows Update." + +According to Australia's [iTnews][1], Sievert's remarks are from a transcript of a conference call he held Monday with financial analysts. + +Although Sievert did say smaller service packs would likely continue with Vista he refused to give a timeline which could mean they're a long way off. + +Have you been holding off for a service pack? Let us know what you think in the comments below. + +[1]: http://www.itnews.com.au/newsstory.aspx?CIaNID=49065 "Microsoft nixes 'Big Bang' service pack for Windows Vista" +[2]: http://blog.wired.com/monkeybites/2007/04/microsoft_relea.html "Microsoft Releases Windows Security Patch" +[3]: http://en.wikipedia.org/wiki/Waiting_for_Godot "Waiting for Godot"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/emi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/emi.jpg Binary files differnew file mode 100644 index 0000000..21312c6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/emi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/emi.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/emi.txt new file mode 100644 index 0000000..7427ccb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/emi.txt @@ -0,0 +1,20 @@ +EMI Music [announced this morning][1] that it will sell DRM-free downloads of its entire digital music catalog. Apple was also on hand for the announcement as the iTunes Store will be the first online music store to sell EMI's new downloads. + +In addition to announcing the removal of DRM from its track, EMI also says that it will sell higher quality song files. The press release doesn't give a specific bit rate, saying simply, "Apple has announced that iTunes will make individual AAC format tracks available from EMI artists at twice the sound quality of existing downloads." + +Since most iTunes Store Tracks are sold at 128kbps, that would put EMI's songs at 256kbps, not quite the 320kbps that many people (including me) were hoping for, but definitely a step in the right direction. + +Naturally the improved sound quality comes at a slightly higher price -- EMI's DRM-free tracks will sell for $1.29, roughly 30 percent more than the price of standard iTunes Store downloads. + +Although iTunes has the exclusive deal for the moment, EMI says that other stores will begin offer the DRM-free downloads "within the coming weeks." And the choice of file format has apparently been left up to the retailers, which opens the door for even higher quality recordings -- could high quality FLAC files be on the way? + +If other retailers offer FLAC or other lossless format files for download, we could see the first real competition for the iTunes Store. + +Although tracks purchased from the EMI catalog will be DRM free, EMI says in the press release that subscription based services will continue to use DRM. + +But will EMI's announcement open the floodgates and bring an end to DRM as many are clamoring this morning? I'd like to think so, but somehow I doubt it. + +EMI has been flirting with limited DRM downloads for a while now (check out Eliot's [past coverage on Listening Post][2]) and none of the other major labels have followed suit. Still, it's a nice fantasy to wake up to on an otherwise dreary Monday. Be sure to let us know what you think in the comments below. + +[1]: http://www.emigroup.com/Press/2007/press18.htm "EMI Music launches DRM-free superior sound quality downloads across its entire digital repertoire" +[2]: http://blog.wired.com/music/2006/11/emi_artists_alb.html "EMI Artist's Album Presold as MP3s"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/google.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/google.txt new file mode 100644 index 0000000..c96c8ec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/google.txt @@ -0,0 +1,19 @@ +<img height="122" src="http://blog.wired.com/27bstroke6/new_new_orleans.jpg" width="207" border="0" style="float: right; margin: 0 0 5px 5px" />Prompted by public outcry over Google Earth's recent imagery update, Google has rushed out yet another image update providing new, improved, high-resolution imagery of New Orleans in its post-Katrina state. + +Over the weekend Google replaced its satellite images of New Orleans with pre-Katrina images causing some, including a U.S. senator (PDF), to cry "conspiracy" and accuse Google of trying to rewrite history. + +However, a post this morning on the Google Blog claims that the [updated images were the result of a resolution upgrade][3] and not part of some larger attempt to bury evidence of Katrina. + +John Hanke, on of the Product Directors for Google Earth, writes of the Katrina images: + +We continued to make available the Katrina imagery, and associated overlays such as damage assessments and Red Cross shelters, on a [dedicated site][1]. Our goal throughout has been to produce a global earth database of the best quality -- accounting for timeliness, resolution, cloud cover, light conditions, and color balancing. + +Hanke goes on to say that Google was surprised at the reaction to the updated images, but has, as a result, "expedited the processing of recent (2006) aerial photography for the Gulf Coast area" and released another update late Sunday evening. + +The new update restores the post Katrina imagery in higher resolution, a change the Google says it was planning on making anyway, but thanks to internet outcry you can now have your high resolution images and your Katrina damage. + +Check out 27B Stroke 6 for [more coverage on the initial image change][2]. + +[1]: earth.google.com/katrina.html "dedicated Katrina images" +[2]: http://blog.wired.com/27bstroke6/2007/04/google_rebuilds.html "Google Rebuilds New Orleans Overnight" +[3]: http://googleblog.blogspot.com/2007/04/about-new-orleans-imagery-in-google.html "About the New Orleans imagery in Google Maps and Earth"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/joost-channels.gif b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/joost-channels.gif Binary files differnew file mode 100644 index 0000000..c1d6ba3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/joost-channels.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/joost.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/joost.txt new file mode 100644 index 0000000..1951931 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/joost.txt @@ -0,0 +1,10 @@ +The folks over a Joost have [released a new beta version][1] of the client software for Windows and Mac. I can't find any specific release notes on the Joost site, but the immediately obvious elements include and interface redesign and a fair number of additional content channels. + +Additional channels of note include Comedy Central (sorry no Daily Show or Colbert Report yet), Ren and Stimpy, and, my personal favorite, "The Diddy Channel" which is apparently just pretty much P. Diddy all day and all night. + +If you're already a Joost member the updated client will ask you to choose a username and password which will be your new method of sign in both in the client app and on the website. + +They've also given all Joost user five invite tokens. Which means the first five people to comment on this entry get an invite. Have at it. + +[1]: http://www.joost.com/blog/2007/04/it-s-showtime!.html "Joost Update" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/lp.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/lp.txt new file mode 100644 index 0000000..8671925 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/lp.txt @@ -0,0 +1,16 @@ +The Lonely Planet, maker of the famed travel guides, has launched [LonelyPlanet.tv][1], an online video community built around Lonely Planet TV programming and user-created travel videos. + +LP TV has most of the features you'd expect from someone trying to compete with the likes of YouTube, including related clips, favorites, ratings, and user based-subscriptions. While you can subscribe to another user's video feed through the site, I couldn't find any actually RSS feeds for individual users. All user's have a public URL to share their clips with the world (not just logged in LP TV users), but regrettably the site doesn't offer any embed code for sharing and displaying movies offsite. + +Lonely Planet's professional video content is drawn from content aired on the Discovery Channel, SBS, Eurosport and Current TV. Navigation is divided into Channels ranging from Tripcast, a place for user video diaries, to Oh F#@*! Oh Wow! which purports to show the "remarkable" things you encounter while traveling, but unfortunately comes up a bit wanting. + +Because the site just launched, user generated content is a bit slim at the moment though that will of course improve with time. + +As for the uploading tools, Lonely Planet claims that the site makes uploading videos while traveling considerably easier. The provided upload tools are indeed simple to user -- registered users just need to fill out the simple form and point to a video file. + +However, no amount of web 2.0 wizardry is going to help you when you're logging in through a dial up in the boondocks of Laos. + +Still, in spite of the technical limitations involved in uploading video from developing nations, Lonely Planet TV is a well thought out site. And, because it comes from one of the biggest names in travel, I have no doubt Lonely Planet TV will find an audience. + + +[1]: http://lonelyplanet.tv/ "Lonely Planet TV"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/lptv.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/lptv.jpg Binary files differnew file mode 100644 index 0000000..3aa71b2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/lptv.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/ubuntu.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/ubuntu.jpg Binary files differnew file mode 100644 index 0000000..2cc1ae6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/ubuntu.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/ubuntubluray.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/ubuntubluray.txt new file mode 100644 index 0000000..efd2272 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/ubuntubluray.txt @@ -0,0 +1,22 @@ +The documentation site for the popular Linux distro, Ubuntu, has put up [instructions on how to play HD-DVD and Blu Ray discs][3] on the Linux/GNU platform. The short how-to guide walks through the software and steps necessary to get the DRM-crippled discs working with open source software. + +U.S. users should note that the process of playing HD DVD or BluRay discs with an open source player requires circumventing the DRM and is thus most likely illegal in this country as per the DMCA. + +The Ubuntu site contains the following warning: + +>Patent and copyright laws operate differently depending on which country you are in. Please obtain legal advice if you are unsure whether a particular patent or restriction applies to a media format you wish to use in your country. + +For those outside the U.S. and not bounded by draconian DRM law (yet), the process doesn't look quite as intimidating as I'd imagine. Here's the instructions from the Ubuntu site: + +* Install a UDF 2.5 filesystem driver. See [Linux UDF project][1]. + +* Acquire cryptographic keys for the disc player. [BackupHDDVD C++][2] (not the regular BackupHDDVD, which only works on Windows) can perform the decryption necessary to play HD DVD and BluRay discs (a separate player app is also needed, see below). This app uses title keys available in an XML file format distributed at various online sources. This will output .evo files containing your disc's video and audio content. Ensure these files are saved to a filesystem supporting files larger than 4.2GB (ie,. not FAT32 or older Ext2). + +* Play the decoded .EVO video and audio files. This requires a very recent SVN version of mplayer that works with the latest ffmpeg, which includes support for the VC-1 video decoder and H.264 audio. Support for E-AC3 audio format is coming soon. + +[1]: http://sourceforge.net/projects/linux-udf "Linux UDF project" +[2]: http://forum.doom9.org/showthread.php?t=121236 "Doom 9 Forum: BackupHDDVD C++" + +The Ubuntu help page doesn't provide for comments, so I thought I'd post it here and see what people think... have any Compiler readers attempted such a feat? Anyone got it working? Does the Linux community even *want* to play DRM-crippled films on open software? + +[3]: https://help.ubuntu.com/community/RestrictedFormats/BluRayAndHDDVD "HD DVD and BluRay on Ubuntu Linux"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/universcale.gif b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/universcale.gif Binary files differnew file mode 100644 index 0000000..a3409d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/universcale.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/universcale.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/universcale.txt new file mode 100644 index 0000000..fdca9c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Mon/universcale.txt @@ -0,0 +1,25 @@ +Here's the perfect cure for that case of the Monday's you came down with this morning -- [Universcale][1]. Universcale is a Flash-based web app I stumbled across this morning on Nikon's website. + +Universcale attempts to put the universe in perspective using a proportional scale that ranges from the smallest particle to the largest units of measurement in space. + +Here's a quote from [the Nikon site][2]: + +>We are able to view all entities, from the microworld to the universe, from a single perspective. By setting them up against a scale, we are able to compare and understand things which cannot be physically compared. + +>Today, using the electron microscope and astronomical telescope, we can see the objects which we have not been aware of its existence before. Are you able to fathom, or even roughly grasp, these sizes? + + + +There's no Steven Hawking overdub, just some cheesy music, but the app is still a great way to burn some time. + +Universcale starts with an extremely fast pan from the femtometer (which I had never heard of) out to the light year and then reverse direction and slowly zooms back in through galaxies, mountains, people, a flea and smaller. + + +So if the productivity is slipping this afternoon anyway, why not just dive right in and give yourself a sense of your own scale in the perspective of the universe, which, depending on which end of the spectrum you focus on, is either really really big or really really small. + + +Universcale requires Flash Player 6 or higher, JavaScript and a screen resolution: 1024x768 pixels or higher. + + +[1]: http://www.nikon.co.jp/main/eng/feelnikon/discovery/universcale/index_f.htm "Universcale" +[2]: http://www.nikon.co.jp/main/eng/feelnikon/discovery/universcale/index.htm "Universcale"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/maps1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/maps1.jpg Binary files differnew file mode 100644 index 0000000..5d9879b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/maps1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/maps2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/maps2.jpg Binary files differnew file mode 100644 index 0000000..3dcf4c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/maps2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/mymaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/mymaps.jpg Binary files differnew file mode 100644 index 0000000..28ebc10 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/mymaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/mymaps.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/mymaps.txt new file mode 100644 index 0000000..23dd945 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/mymaps.txt @@ -0,0 +1,22 @@ +Last night Google launched [My Maps][1], a new Google Map service that makes it easy for anyone to create mashups for Google Maps and Google Earth. My Maps adds the ability to create and share maps within the Google Maps interface. The new tools are under a tab on the left side of the map interface and allow even non-technical users to easily annotate and share maps. + +Google says that My Maps is aimed at providing non-technical users with the mashup capabilities that have long been available to developers via the application programming interface (API). Unlike the APIs though, My Maps is a drag and drop interface that that lets users easily create a map, add markers, notes, photos, audio and videos as well as draw lines and shapes (screenshots after the jump). + +To get started you'll need to login to a Google Account and then head to the new My Maps tab in the Google Maps interface. From there you can drag-and-drop placeholders onto your map. Each time you add a marker, Google Maps will bring up an editing interface for adding titles, notes, photos, links and more. + +Once your maps is looking the way you want, you'll have the option to make it public or private. In the case of public maps, Google will index the information and include the results in the Local Search feature. Private maps, which are tagged "unlisted," are only available to people you choose to share them with. Sharing is done via email or a generated link. + +My Maps is dead simple to use and should help Google increase the amount of data available for its mapping service. Eventually the user-generated content could give Google Maps the edge over longtime rivals like Map Quest. + +As examples of what you can do with Google Maps, Google has some featured maps on the start page which were apparently put together by Google employees. The top result when I logged in was a nice map recounting a cross-country journey on Route 66. + +I haven't been able to confirm it, but if the My Maps features can be embedded along with the rest of Google Maps on, say, a popular travel site, this would be a great way for travelers to show where they've been. + +Even if the tools can't be embedded outside of Google Maps, each map will have a unique url on the maps.google.com domain, so it would be easy to link to your map from your blog. + +In addition to My Maps, Google also announced that it has added millions of KML files to the Maps search engine, including geo-indexed web pages. Web pages are geo indexed using Keyhole Markup Language (KML) files and Google says the additional data will help users in areas that do not currently have a Local Search option. + +With over 800,000 KML files on the web, Google has added a significant chunk of new data to Google Maps. The geo-indexed results are displayed below the Yellow Pages data in Local Search and should drive developers to start taking more seriously. + +[1]: http://maps.google.com/ "Google Maps" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/utorrent.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/utorrent.txt new file mode 100644 index 0000000..6e379a6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Thu/utorrent.txt @@ -0,0 +1,13 @@ +Popular torrent client µTorrent [released a new public beta][1] earlier today. The beta is an early build of µTorrent version 1.7 and the most significant new feature is full support of Windows Vista. + +Having used the previous version µTorrent on Vista, I can vouch for its bugginess, but with the new beta most of the issues I had seem to have disappeared. In particular I the app no longer hangs and crashes on quitting. + +While the main news with the beta release is the Vista support, there are some other new features along with an extensive list of bug fixes. For a full list of beta features and bug fixes check out the µTorrent forum post. + +Among the significant new features are Auto uplink throttling, which adds traffic shaping capabilities -- µTorrent periodically checks upload speeds and automatically adjust your upload rate limit. + +Other noteworthy items include secondary column sorting in all list views, listing the number of downloaded piece in the general tab, and a fix for a bug where stopped or paused torrents would cause they auto shutdown to hang. + +This is a beta so naturally the usual warnings apply. I should also note that some users in the forum have report problems with µTorrent, Vista and Linksys routers not working properly together. + +[1]: http://forum.utorrent.com/viewtopic.php?id=21979 "µTorrent 1.7 beta 1065"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/euapple.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/euapple.txt new file mode 100644 index 0000000..24609da --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/euapple.txt @@ -0,0 +1,14 @@ +Just hours after iTunes and EMI announced DRM-free digital downloads, the European Commission has [announced that it will pursue antitrust charges against Apple][2] and the record companies Apple partners with for the iTunes Store. The EU says it has sent formal charges to the major record companies and Apple, alleging that the iTunes store restricts music sales in Europe. + +The EU's beef with iTunes is that because there is no European-wide store, rather each country has its own store, users are restricted in their choice of where to buy and what music is available at what price. + +Apple claims that it wants to create an EU version of the iTunes store, but that it is hemmed in by the record companies. In a statement released earlier today Apple claims that it tried to do a pan-European store but was, "advised by the music labels and publishers that there were certain legal limits to the rights they could grant us." + +The price of a single song download varies considerably throughout the 27 nation European Union. For instance, a song will cost you $1.56 in the U.K. but would only be $1.32 in countries using the Euro. + +One thing not included in the antitrust allegation is DRM. Norway and a number of other countries may bring their own legal actions regarding the way Apple allegedly uses DRM to create a lock-in with the iPod, but today's EU charges do not address the DRM issue. + +Macworld UK [reports][1] that the EU has dropped the DRM investigation entirely. + +[1]: http://www.macworld.co.uk/ipod-itunes/news/index.cfm?newsid=17479&pagtype=allchandate " Apple won't face EU action on iTunes-iPod tie-in" +[2]: http://www.reuters.com/article/internetNews/idUSL0252503020070403?feedType=RSS "EU charges record companies, Apple on record sales"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/facebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/facebook.txt new file mode 100644 index 0000000..dd4e18d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/facebook.txt @@ -0,0 +1,31 @@ +<img src="http://wiredblogs.typepad.com/monkeybites/facey.jpg" alt="" width="125" height="75" align="right" />Facebook has [released Thrift][1], a software package designed to generate code to create programs that communicate easily and efficiently across programming languages, as an open source framework. + +Originally developed by Facebook for use on the popular social network site, Thrift is a code generation engine to build services that work "efficiently and seamlessly" between C++, Java, Python, PHP, and Ruby. + +For interested web developers there's a [developer group][3], a [white paper][4] (.pdf) and an [introductory tutorial][5] on the Facebook site. + +To generate code using Thrift the Facebook developers recommend the following development setup: + +* A relatively POSIX-compliant *NIX system +* GNU build tools (Autoconf 2.59c+) +* boost 1.33.1+ +* g++ 4.0+ +* Java 1.5+ / Apache Ant +* Python 2.4+ +* PHP 5.0+ +* Ruby 1.8+ + +Thrift is built around fairly simple definition files. The .thrift files contain "structs," which Facebook describes as "the basic complex data structures... comprised of fields which each have an integer identifier, a type, a symbolic name, and an optional default value you'd like to use. + +The compiler then takes the .thrift file as input, and generates code in the languages you choose. + +Thrift is not the first time Facebook has released code as open source, [previous projects include phpsh][6], but Thrift is definitely the largest Facebook project to go public. + +The Thrift code is being released under the [Thrift Software License][2], which allows for copying, use, distribution and more. + +[1]: http://blog.facebook.com/blog.php?post=2261927130 "Thrift: We're Giving Away Code" +[2]: http://developers.facebook.com/thrift/LICENSE "Thrift License" +[3]: http://developers.facebook.com/group.php?gid=2248652825 "Thrift Developers Group" +[4]: http://developers.facebook.com/thrift/thrift-20070401.pdf "Thrift White paper" +[5]: http://developers.facebook.com/thrift/tutorial.thrift "Thrift tutorial" +[6]: http://developers.facebook.com/opensource.php "Facebook Open Source Projects"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/vistavirus.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/vistavirus.txt new file mode 100644 index 0000000..df21a93 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/vistavirus.txt @@ -0,0 +1,16 @@ +A particularly nasty Windows Vista security exploit in which attackers can hijack your machine via the animated cursor tools, is expected to be patched sometime today. + +The Security Response Center blog [reports][3] that attacks against the vulnerability have increased over the past weekend and the proof-of-concept code has been released to the public. + +In light of the increased attacks Microsoft says it will roll out the update a few days ahead of time -- unless the patch encounters an "issue." + +Microsoft says that "it's possible that we will find an issue that will force us to delay the release." If the release is delayed beyond today, customers will be notified via the MSRC blog. + +The update was previously scheduled for release as part of the April monthly security update on April 10, but due to the increased risks brought to light by this weekend's attacks, Microsoft has decided to rush out a patch. + +The MSRC blog says that the exploit was reported to the Windows team back in December of last year. + +Affected users should keep an eye on the [MSRC blog][2] and we'll be sure to let you know when a link is available. + +[3]: http://blogs.technet.com/msrc/archive/2007/04/01/latest-on-security-update-for-microsoft-security-advisory-935423.aspx "Latest on security update for Microsoft Security Advisory 935423" +[2]: http://blogs.technet.com/msrc/ "Microsoft Security Response Center Blog"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace-editor.gif b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace-editor.gif Binary files differnew file mode 100644 index 0000000..0b6d6d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace-editor.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace-logo.jpg Binary files differnew file mode 100644 index 0000000..7094698 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace.gif b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace.gif Binary files differnew file mode 100644 index 0000000..90a38ae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace.txt new file mode 100644 index 0000000..92c70d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Tue/workspace.txt @@ -0,0 +1,22 @@ +[Workspace], a new online development environment for programmers, stands out for its slick FTP integration and near seamless replication of desktop features. Workspace uses an Ajax interface to create a nice online IDE for building web-based applications -- no extra software required. + +Workspace has been in private beta for a while now, but over the weekend the site launched what it calls a "sandbox" version. You'll still need to submit an invite request to join and Workspace is quick to point out that bugs may pop up. + +We've looked at some online IDEs before, such as [CodeIDE][2], but Workspace boasts some impressive features -- like FTP integration -- that I haven't seen elsewhere. + +When you log in to Workspace you're presented with a screen that emulates a traditional desktop space. Drag and drop "windows" show FTP connections, file directory structures and text editor windows just like your OS desktop. Next to each file or directory is small arrow icon that acts a right-click style menu with options for that document or folder. + +The text editor portion of Workspace supports customizable syntax highlighting and one-click saving. Supported languages include PHP, JavaScript, HTML, Java, Perl, SQL and others. Some nice indicator icons show up when you have unsaved changes in your editor documents and the app even supports the ctrl-s shortcut for saving (Windows only). + +Most of Workspace's editing and organizational features are standard fair for online development environments at this point, but the FTP support sets Workspace apart. + +To grab files off your remote server just enter in your username and password and Workspace will connect and give you directory listings and file edit capabilities much like any descent desktop based editor. + +[1]: http://www.createworkspace.com/ "Workspace" +[2]: http://blog.wired.com/monkeybites/2007/02/codeide_an_onli.html "CodeIDE: An Online IDE" + +While it can be difficult to see at times, the Workspace team has provided the following demonstration video that lets you see the application in action. + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/13fLSX84Zu0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/13fLSX84Zu0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +Keep in mind that Workspace is a beta so you may not want to trust it with mission critical documents yet.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/desktopmac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/desktopmac.jpg Binary files differnew file mode 100644 index 0000000..0bd88b5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/desktopmac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/dsl.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/dsl.jpg Binary files differnew file mode 100644 index 0000000..5626d22 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/dsl.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/dsm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/dsm.txt new file mode 100644 index 0000000..a6a79c4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/dsm.txt @@ -0,0 +1,26 @@ +We've written about [portable][4] [apps][3] quite a number of times in the past, but why bother with just apps when there's a whole OS that'll fit on a 50MB USB stick? [Damn Small Linux][1], sometimes abbreviated DSL, is a 50MB mini desktop Linux distribution. + +Originally created as an experiment Damn Small Linux gradually evolved to a genuine distribution while retaining the original goal of squeezing usable desktop apps on a tiny 50 MB live CD. + +According to the website Damn Small Linux is, in spite of, and because of, its paltry size, able do the following things: + +* Boot from a business card CD as a live linux distribution (LiveCD) +* Boot from a USB pen drive +* Boot from within a host operating system (that's right, it can run *inside* Windows) +* Run very nicely from an IDE Compact Flash drive via a method we call "frugal install" +* Transform into a Debian OS with a traditional hard drive install +* Run light enough to power a 486DX with 16MB of Ram +* Run fully in RAM with as little as 128MB (you will be amazed at how fast your computer can be!) +* Modularly grow -- DSL is highly extendable without the need to customize + + +Damn Small Linux sports a "nearly complete" desktop, and many command line tools. Notable [software includes][2] XMMS for music, and FTP client, Firefox, the Ted word processor, three text editors (Beaver, Vim, and Nano), graphics viewers, chat clients and quite a bit more. + +Any readers out there ever tried Damn Small Linux? It seems like to could be a handy all in one replacement for all those portable app packages floating around. + + + +[1]: http://www.damnsmalllinux.org/ "Damn Small Linux" +[2]: http://www.damnsmalllinux.org/applications.html "Damn Small Linux: Apps" +[3]: http://blog.wired.com/monkeybites/2006/11/portable_mac_ap.html "Portable Mac Apps" +[4]: http://blog.wired.com/monkeybites/2006/11/holiday_must_ha.html "Portable Apps for the Holidays"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/flickr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/flickr.txt new file mode 100644 index 0000000..f04a3f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/flickr.txt @@ -0,0 +1,19 @@ +Yesterday Michael posted about an easy-to-use photo-sharing site [Picupine][3] and mentioned in passing "I know it's hard to believe, but Flickr and Photobucket are just too difficult for some people to use." + +It *is* hard to believe, but it's also very true, even one of my normally tech-savvy friends didn't quite grok Flickr at first glance. Which is why I thought I'd point out a very nice [Flickr guide for newbies][2] (if you know of a Photobucket equivalent leave a link in the comments). + +The folks over at Webware have put together a really helpful guide for the first time Flickr user that walks you through how to upload your photos, tag and organize images, and even dips a toe in the geotagging waters. + +Other organizational tool like set and the brand new collections feature are examined in detail, including ways to organize photos that might not be immediately obvious even for veteran Flickr users. + +The guide also explains how to share your photos and interact with the Flickr community as well as walking through the Pro account options and why you might want to look into it. + +If Flickr has ever had you banging your head against the wall, or stumps your friends (if I get another link to Kodak "Easyshare" I'm gonna scream) pass the link along. This one's for you Dave. + + + +[found [via Cybernet][2]] + +[2]: http://tech.cybernetnews.com/2007/04/03/how-to-use-flickr-a-newbies-guide/ "How to use Flickr: A Newbies Guide" +[1]: http://www.webware.com/8301-1_109-9703620-2.html?tag=blog "Newbie's Guide to Flickr" +[3]: http://blog.wired.com/monkeybites/2007/04/super_easy_phot.html "Super Easy Photo Sharing with Picupine"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk1.jpg Binary files differnew file mode 100644 index 0000000..b2e3a01 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk2.jpg Binary files differnew file mode 100644 index 0000000..8416769 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk3.jpg Binary files differnew file mode 100644 index 0000000..c030c0d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk4.jpg Binary files differnew file mode 100644 index 0000000..d657f58 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/gdesk4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/googledesktopmac.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/googledesktopmac.txt new file mode 100644 index 0000000..dd7dd1d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/googledesktopmac.txt @@ -0,0 +1,38 @@ +Google has finally [released a Mac client for the popular Google Desktop][1] search application. The search and launcher tool is designed to integrate with Apple's Spotlight, the built in search tool that ships with Mac OS X. + +With Spotlight already built in to the Mac OS, Google Desktop for Mac is not quite the must have application that it is for Windows XP users. Still, Google Desktop for Mac is not just a port of the Windows version, it integrates nicely with the Mac user interface and offers some compelling options not found in Spotlight. + +Currently Google Desktop for Mac is limited to search functionality with no toolbar or gadgets support as in the Windows version. However, Google says that such features will be added at a later date. + +Installing Google Desktop is simple, just [download the Google Desktop][2] and double click the installer. As with Spotlight, expect the Google Desktop to eat up a fair bit of system resources while it performs its initial index. + +In a particularly nice touch, the Google Desktop respects your Spotlight privacy settings and will not index the folders you've told Spotlight to ignore. + +Once installed, you can begin using Google Desktop by invoking the default hotkey -- cmd + cmd (the cmd key twice). This will bring up a bezel-type window with a search box. Customization of the Google Desktop is handled through a pane in the System Preferences application. Using the pane you can change the keyboard shortcuts, control how many documents are listed in the results and even integrate searching with your GMail account. + +By default the Google Desktop lists the last ten items in a drop down menu. To get a full search results listing, there's a link at the bottom of the drop-down list. Clicking the link will open a Google search results page in your default browser and list all the apps, documents and files that match your search criteria, paginated out like normal Google web search. + +The GMail integration appears to be limited to one account and so far I can't get it to work. Google Desktop does a nice job of indexing and integrating with Apple's Mail.app but no GMail entries have thus far showed up in my search results. + +As with most Google search tools you can use operators like <code>filetype:</code> and other selectors to narrow your search results. There are also some Google Desktop specific search operators, see the [Google Desktop site for more info][3]. + +Naturally the first thing most Mac users will want to know is how the Google Desktop compares to Spotlight. But before I get into that I should say that I'm not a heavy Spotlight user so I may be missing some Spotlight tricks in which case please educate me (and everyone else) in the comments below. + +The first thing you'll notice about Google Desktop versus Spotlight is that Spotlight's results are much better organized. Google Desktop lacks the nice separation of document types and clean layout. On the other hand Google Desktop gives slightly more useful feedback including the first bits of text in files, similar to the extra line of data in a Google search. + +Of course if you hit return in a Spotlight search you can get the same sort of preview from the spotlight window, but with the Google Desktop Search there no extra step. + +In terms of speed I found Google Desktop to be significantly faster on a Macbook for pulling up the initial search results. Desktop manages to do this without putting a heavy load on my machine is equally impressive. Once it finished indexing Google Desktop uses no CPU time in the background and grabs a mere 11 MB of RAM. + +The most significant and immediately obvious advantage of Google Desktop is that it maintains a cache of deleted documents which means you can search and find things you've deleted whereas with Spotlight, when they're gone they're gone. + +Note for the tinfoil hat brigade: Google says they aren't tracking any of this data, but fortunately if the cache feature bothers you, you can turn it off. Unfortunately there's no fine grained options for the cache -- for instance it might be nice to cache certain types of documents but skip others -- perhaps in version 2. + +As with the PC version of Google Desktop, when you head to Google's online search page you'll notice a new option -- Desktop -- has been added to usual list of Web, Images, News and Maps. The Desktop option allows you to quickly move between local and web searches without ever leaving your browser. + +Ultimately Google Desktop compliments Spotlight more than attempting to replace it. If you're a heavy user of Google services or find yourself on Google.com all the time anyway, you'll likely enjoy Google Desktop For Mac. + +[1]: http://googlemac.blogspot.com/2007/04/google-desktop-for-mac_04.html "Google Desktop for Mac" +[2]: http://desktop.google.com/mac/ "Google Desktop" + +[3]: http://desktop.google.com/features.html#advancedsearch "Desktop Advanced Search"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/mozilla-labs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/mozilla-labs.jpg Binary files differnew file mode 100644 index 0000000..2c58157 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/mozilla-labs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/stumbleupon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/stumbleupon.jpg Binary files differnew file mode 100644 index 0000000..eccb118 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/stumbleupon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/stumbleupon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/stumbleupon.txt new file mode 100644 index 0000000..2682bd9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/stumbleupon.txt @@ -0,0 +1,14 @@ +<img alt="Stumblelogo" title="Stumblelogo" src="http://blog.wired.com/photos/uncategorized/stumblelogo.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />[StumbleUpon][1], the popular social bookmarking and web exploration site, has redesigned and added some new features. The site now sports a very Digg-like front door with a stream of recently added sites trailing down the page. + +The site has also been revamped to emphasize the community aspects of StumbleUpon. A new column called "Recent Stumblers" on the right side of the main page highlights users currently online making it even easier to connect with people that share your interests. + +For those not familiar with StumbleUpon, have a look at our [review from last year][2]. While the basic functionality of the site has not changed, the redesign makes it easier to navigate and discover new content. + +While exploring the new redesign I stumbled (natch) across a feature that let's you [track what people are saying about your site][3]. I wrote about a little hack to [do the same with del.icio.us][4] a while back. Like del.icio.us method, the StumbleUpon tracker offers an RSS feed so you can receive notifications whenever someone reviews your site. + +To be honest I don't know if that is a new feature or not since I primarily rely on the Firefox toolbar rather than browsing the site itself, but either way it's nice way to get feedback from users. + +[1]: http://www.stumbleupon.com/ "StumbleUpon" +[2]: http://blog.wired.com/monkeybites/2006/10/the_social_book_3.html "The Social Bookmarking Showdown: StumbleUpon" +[3]: http://reviews.stumbleupon.com/ "Track reviews of your website using StumbleUpon." +[4]: http://blog.wired.com/monkeybites/2007/03/how_to_track_wh.html "How To Track When Del.icio.us Users Bookmark Your Site"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/thecoop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/thecoop.jpg Binary files differnew file mode 100644 index 0000000..f6d8a00 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/thecoop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/thecoop.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/thecoop.txt new file mode 100644 index 0000000..9ca43c3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/thecoop.txt @@ -0,0 +1,31 @@ +Mozilla labs has floating an interesting new project, dubbed [The Coop][1], that aims to integrate social network features directly into the Firefox browser. Of course the idea isn't new, [Flock][3], the "social" browser built on the Firefox code-base, was supposed to deliver more or less the same functionality. + +But with Flock 1.0 looking more and more like vaporware every day, The Coop may be a way for Mozilla to implement some of Flock's good ideas in a more timely fashion. If there's any doubt about the Flock connection, the [wiki entry for The Coop][4] actually uses a screenshot of the Flock browser as an example of how The Coop might look. + +Like Flock, Mozilla's proposed implementation of social networking features in the browser would add a horizontal bar with avatars for you friends as well as icons to indicate new shared content. The Coop would then allow you to subscribe to friends and add them to a sidebar and share content -- links, files, webpages etc. + +The proposed sidebar navigation is pretty slick and mimics that of the iPod -- using back and forward buttons to tunnel into shared content. Navigation could also be done by content type. + +[The Coop entry on the Mozilla Wiki][4] lists the following possibilities: + +>The idea is to use RSS subscriptions to existing web service data feeds as a transport mechanism for all the various functionality. It will be up to us to cleverly mask this, but I'm thinking: + +>* When user adds a friend, subscriptions to their Flickr photo feed, del.icio.us tag feed, MySpace status (we might use a Microsummary here, since I don't think it provides RSS), YouTube favourites list, etc, etc. +>* Indicators of new content are updated based on the content provided by those feeds (this is "pull"). +>* When a user sends something to a friend (which is "push") it is done by submitting the URI to del.icio.us with a special tag that indicates it's from The Coop and for a specific user (based on userid); when the other user checks the del.icio.us feed, items tagged with these special tags will cause the glow-effect. Or we could use the de.licio.us "send" feature. Need to think more about this. + + +There are also some alternative ideas proposed,including using an XMPP server for "passing around data chunks about the stuff that's being shared." + +Regardless of what form The Coop takes, it represents a significant change in how and for what tasks we use our web browsers. It would also be a significant departure for Firefox that would for the first time truly set it apart from IE and other browsers. + +As it stands Firefox users tend to tout the browsers security and standards compliance over alternatives, but in the end the feature set is more or less the same as competitors (leaving aside extensions). + +However projects like The Coop and the [proposed integration of microformats support][2] would give Firefox a unique feature set and could serve to drive adoption rates among those who currently see no reason to switch. + + + +[1]: http://labs.mozilla.com/2007/04/keep-track-of-your-friends-with-the-coop/ "Mozilla Labs: The Coop" +[2]: http://blog.wired.com/monkeybites/2007/01/firefox_3_to_su.html "Firefox 3 To Support Microformats" +[3]: http://www.flock.com/ "Flock" +[4]: http://wiki.mozilla.org/Labs/The_Coop#Implementation_Thoughts "Mozilla Wiki: The Coop"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/vistavirus2.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/vistavirus2.txt new file mode 100644 index 0000000..8993e1f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.02.07/Wed/vistavirus2.txt @@ -0,0 +1,6 @@ +A quick note for Windows users, the [security update][2] Microsoft promised yesterday did indeed arrive late in the evening. The patch fixes a security vulnerability involving cursor animation and is recommended upgrade for all Windows 2000, XP SP2, Server 2003 and Vista users. + +See [yesterday's coverage][1] for more details. + +[2]: http://www.microsoft.com/technet/security/Bulletin/MS07-017.mspx "Microsoft Security Bulletin MS07-017" +[1]: http://blog.wired.com/monkeybites/2007/04/microsoft_to_pa.html "Microsoft To Patch Vista Vulnerability"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikia.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikia.jpg Binary files differnew file mode 100644 index 0000000..61456dc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikia.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikia.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikia.txt new file mode 100644 index 0000000..5d64264 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikia.txt @@ -0,0 +1,23 @@ +Wikia, the for profit ventures from Wikipedia founder Jimmy Wales, as [launched four new community niche sites][5]. Wikia refers to these sites as "open source magazines" and with the four recent additions there are now twelve Wikia magazine communities in all. + +The magazine-style wikis serve ads alongside the content, but for the most part they're unobtrusive (and non-existent with a good ad-blocker installed in your browser). As with Wikipedia, Wikia magazine content is drawn entirely from users and user submissions. Submitted content is governed by the GNU Free Documentation License -- something to keep in mind when sharing grandma's super secret recipe for pumpkin pie. + +The quality of content varies considerably according to the enthusiasm and commitment of the communities around the topics. Naturally some topics lend themselves to Wikia's crowd source content better than others. I wouldn't expect to see legaladvice.wikia pop up any time soon. + +The magazines are a nice way to get past the celebrity content that seem to dominate other similar sites, particularly the Foodie magazine which is basically an amateur version of Epicurious and Restaurants which aims to be Zagat without the Zagat. + +The new open source magazines announced yesterday include: + +* [Restaurants][1] -- rate and write reviews for restaurants as well as upload menus. At launch there were some 20,000 restaurants listings covering New York, LA, San Francisco and more. +* [Foodie][2] -- all things food. Users can add recipes, create a cookbook, add to a food encyclopedia, or write food-related articles or blog entries. +* [Fitness][3] -- sections for dieting/weight loss, exercising, weight training and nutrition. +* [Mortgages][4] -- discuss mortgages and get advice, sections include tips for first time buyers, mortgage refinancing and more. Users can also rate and review mortgage lenders. + + + + +[1]: http://restaurants.wikia.com/index.php?title=Main_Page "restaurants.wikia" +[2]: http://foodie.wikia.com/index.php?title=Main_Page "foodie.wikia" +[3]: http://fitness.wikia.com/index.php?title=Main_Page "fitness.wikia" +[4]: http://mortgages.wikia.com/index.php?title=Main_Page "mortgages.wikia" +[5]: http://www.prweb.com/releases/2007/4/prweb518486.htm "Wikia Unveils Four Additional Open Source Magazine Sites"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikiafood.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikiafood.jpg Binary files differnew file mode 100644 index 0000000..02f7b7d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikiafood.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikiarest.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikiarest.jpg Binary files differnew file mode 100644 index 0000000..e101d0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Fri/wikiarest.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/appletvusb.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/appletvusb.txt new file mode 100644 index 0000000..35958b4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/appletvusb.txt @@ -0,0 +1,22 @@ +<img alt="Appletv" title="Appletv" src="http://blog.wired.com/photos/uncategorized/2007/04/06/appletv.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The AppleTV hacks keep coming. Over the weekend hackers released another plugin for AppleTV which adds [support for browsing RSS new feeds][1] via the "Backrow" navigation interface. So far there is support for RSS 1.0 and RSS 2.0 but not Atom feeds. + +The plugin developers also claim to be working on integrating video RSS feeds, noting that AppleTV supports video RSS feeds via iTunes. + +While the RSS support is mildly useful (see [Gadget Lab for more details][3]), the Holy Grail of AppleTV hacks remains support for external USB storage devices. To that end, [AppleTVHacks is offering a $1000 reward][2] to the first person/team who can make it work. + +The money will go the first team to submit a verified process and patch, with the following rules: + +>* Patch must allow a USB hard drive, plugged into the Apple TV’s USB port to act as the default and primary storage for the Apple TV. +* The Apple TV must still boot from the internal drive and cannot use a complete replacement OS (the kernel may be patched, and additional kexts added). +* Patch must allow the media to be accessed as it would be were the internal drive being used (i.e if you couldn’t see their was a USB drive attached you wouldn’t know). +* Patch must be able to be applied without opening the case. +* Patch must be able to be removed (and the Apple TV to original configuration) without opening the case. +* No commercial files can be used asides from those found on the Apple TV or Mac OS X Intel. All others must be freely and legally distributable. +* The process cannot have been previously published, or demonstrated / distributed publicly. + + +With a successful patch and $1000 you could buy the AppleTV and about 1 terabyte of external drive storage space, now who doesn't want that. For more details check out the [AppleTVHacks post][2]. + +[3]: http://blog.wired.com/gadgets/2007/04/more_apple_tv_h.html "More Apple TV Hacks: RSS, Game Emulation?" +[2]: http://www.appletvhacks.net/2007/04/08/1000-bounty-for-external-usb-drive-hack/ "$1000 Bounty for External USB Drive Hack" +[1]: http://blog.twenty08.com/2007/04/07/appletv-rss-plugin-beta-1-available/ "AppleTV RSS Plugin Beta 1 Available"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/google-china.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/google-china.jpg Binary files differnew file mode 100644 index 0000000..e6f4f40 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/google-china.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/googlecodetheft.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/googlecodetheft.txt new file mode 100644 index 0000000..e954089 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/googlecodetheft.txt @@ -0,0 +1,14 @@ +Google has [issued an apology][2] for using data lifted from a rival Chinese search company. An update to Google's Chinese search portal added a new tool called the Pinyin Input Method Editor which allows a user to input characters in Pinyin, a phonetic system for writing Chinese characters in Roman letters. + +Unfortunately for Google the initial release of its Pinyin tool used a dictionary of Chinese words and characters stolen from rival search company Sohu. The dictionary is used to offer auto-complete suggestions for Pinyin based on matching Chinese words and names to their Pinyin equivalents. + +The conflict was discovered because the Sohu engineers had added their names to Sudo dictionary for convenience and those names showed up in Google's predictive auto-complete. + +Sohu complained about the use of its dictionary last week, but Chinese users had already pointed out similarities between the two shortly after the release of the Google tool. + +Sohu then demanded that Google stop using its Pinyin IME dictionary and asked for an apology -- giving Google three days (until today) to reply. + +Although Google still hasn't said how the Sohu dictionary came to be in Google's software, they have since removed it and offered an [apology on the Chinese language Google blog][1]. + +[1]: http://googlechinablog.com/2007/04/blog-post.html "Google Apology" +[2]: http://www.mercurynews.com/news/ci_5626965 "Google apologizes to Chinese search co."
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/oreilly.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/oreilly.txt new file mode 100644 index 0000000..1c5264b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/oreilly.txt @@ -0,0 +1,9 @@ +O'Reilly Media has [launched an online tech school][1] for those wanting a more formal tech education. The new school offers certificates in fields such as web programming, Linux/Unix system administration, open source programming and more. + +The school touts what it calls "useractive learning" which means more hands on practice than you might get from simply reading a book on the subject. The site also mentions something called "learning sandboxes," online programming environments for student to practice with. + +O'Reilly has partnered with the University of Illinois to offer the Certificates of Professional Development. + +Currently the most popular course on the site in an intro to HTML and CSS, which is also the subject of the fifth most popular book published by O'Reilly entitle: Head First HTML with CSS & XHTML. + +[1]: http://www.oreillyschool.com/ "O'reilly School"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/oreillyschool.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/oreillyschool.jpg Binary files differnew file mode 100644 index 0000000..93a25b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/oreillyschool.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/pidgin-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/pidgin-icon.jpg Binary files differnew file mode 100644 index 0000000..a10221f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/pidgin-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/pidgin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/pidgin.jpg Binary files differnew file mode 100644 index 0000000..0074e2c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/pidgin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/pidgin.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/pidgin.txt new file mode 100644 index 0000000..c868fd7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/pidgin.txt @@ -0,0 +1,26 @@ +The popular, multi-protocol instant messaging client Gaim has, due to legal pressure from AOL regarding the trademarked name AIM, [changed its name to Pidgin][1]. This marks the second time the developers have changed the project name to appease AOL. + +In the early days of its development AOL threatened to sue over the name "GTK+ AOL Instant Messenger" and so the name was Changed to Gaim. Shortly thereafter AOL began referring to it's IM service as AIM and the legal threats began anew. + +In a post at the new Pidgin domain, the Pidgin, née Gaim, developers [recount the long tale][1] of legal battles, secrecy and beta releases leading up to the name change decision. + +>Each time a new Gaim developer was threatened, we had to look at new legal support, to prevent a conflict of interest. + +>This process could not go on forever. As a result we ended up forming the Instant Messaging Freedom Corporation, and making it legally responsible for Gaim. We also had our new legal support work to create a real settlement with AOL that would get this issue dismissed from our lives forever. + +>... + +>At long last, I am pleased to announce that we have a signed settlement and can release our new version. There is one catch however: we have had to change the project's name. + + +The developers also note that the new URL will be the permanent home of Pidgin though for the time being SourceForge's mirroring system will be used for new release. + +Gaim was, and the new Pidgin will be, a multi-protocol instant messaging client for Linux, BSD, OS X, and Windows. It's compatible with AIM and ICQ, MSN Messenger, Yahoo, IRC, Jabber, other popular networks. + +The name change also means that a new release is on the way. Version 2.0 of Pidgin will reportedly add an API compatibility layer for plugin authors among other changes. While website doesn't give a specific date, the developers say they hope to have the release up in the coming week. + +The screenshot below (found via [Digg][2]) is reportedly of the new version. We'll be sure to post a review once we get our hands on a copy. + +[1]: http://www.pidgin.im/index.php?id=177 "Gaim now Pidgin" +[2]: http://digg.com/linux_unix/First_Pidgin_screenshot "Pidgin on Digg" +[3]: http://www.pidgin.im/ "Pidgin"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky-logo.jpg Binary files differnew file mode 100644 index 0000000..a10d862 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky.txt new file mode 100644 index 0000000..313d2a9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky.txt @@ -0,0 +1,21 @@ +Donelleschi Software has [released Sticky Windows 2.0][1], a utility that, in the words of the site, "extends the tab browsing experience to the desktop." Sticky Windows runs as preference pane and allows document windows to sit, minimized, on the edge of your screen as tabs. + +Sticky Windows roughly mirrors the functionality of an old Classic Mac OS 8+ feature called Pop Up Windows. Pop Up Windows appeared as tabs on the bottom of the screen until clicked on, at which point they displayed their contents. + +Of course the Pop Up Windows of OS 8+ were limited to Finder windows (if I'm remembering correctly, it has been a while), whereas Sticky Windows can make any window into a tab. + +Sticky Windows tabs can be configured in two ways, automatic and manual. Setting a tab to automatic gives it rounded corners and automatically hides the window when it's no longer in front. + +Windows set to manual show and hide whenever you click on them and remain in their selected state regardless of focus. Manual windows are drawn with square corners so you can easily tell them from the automatic windows. + +If you're an old Mac hand missing your Pop Up Windows or if you just like the tab metaphor so much you'd like to extend it to the whole UI, Sticky Windows might be the ticket (though there are some other options out there). + +To celebrate the release of version 2.0 Sticky Windows is on sale for $15 down from the regular $20 price. + +For more information check out the demo video on the [Donelleschi Software site][1]. + +[1]: http://www.donelleschi.com/stickywindows/ "Sticky Windows" + +Some Sticky Windows tabs docked to the side of my screen. + +Screengrab from the demo movie on the Donelleschi site.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky1.jpg Binary files differnew file mode 100644 index 0000000..5a60557 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky2.jpg Binary files differnew file mode 100644 index 0000000..f489764 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/sticky2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/thunderbirdrc1.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/thunderbirdrc1.txt new file mode 100644 index 0000000..71f58d7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/thunderbirdrc1.txt @@ -0,0 +1,16 @@ +Earlier today Mozilla made the first release candidate for Thunderbird 2.0 available for download. While this still isn't a final release, the new version is thus far bug free, stable and considerably faster than the previous betas. + +If you've been using earlier betas you should download the new RC1 and rest assured that the issues we've mentioned in [previous][1] [reviews][2] of Thunderbird betas have been solved. + +For those that want to know more about where Mozilla is headed with Thunderbird, check out my [interview with Scott MacGregor][3], Thunderbird's lead engineer. Among the highlights from the interview: Vista support is official as of RC 1, Apple Address book integration will happen by 3.0 and there's now one-click GMail and .Mac support. + +One thing that didn't make the final cut of the Wired News story was MacGregor's comments on [Penelope][4], the Eudora replacement version of Thunderbird. MacGregor told me that the Thunderbird team is coordinating with the Penelope developers and right now the focus is on adding "Eudora's user interface features to the Thunderbird base code." + +Unfortunately, there is no release timeline to report for Penelope. + +Regardless of Penelope's progress, Thunderbird 2.0 marches on. Mozilla says that if all goes well we can expect the final version inside of a month and now that the feature set is stabilized and most bugs squashed, expect your favorite add-on developers to begin updating their plugins. + +[3]: http://www.wired.com/software/coolapps/news/2007/04/thunderbirdqa_0409 "Mozilla: Why Desktop E-Mail Crucifies the Browser" +[1]: http://blog.wired.com/monkeybites/2006/12/mozilla_has_rel.html "Thunderbird 2.0 beta 1 Reviewed" +[2]: http://blog.wired.com/monkeybites/2007/01/report_thunderb.html "Report: Thunderbird 2.0b2" +[4]: http://wiki.mozilla.org/Penelope "Mozilla Wiki: Penelope"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/vistasp1fake.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/vistasp1fake.txt new file mode 100644 index 0000000..6355fde --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Mon/vistasp1fake.txt @@ -0,0 +1,24 @@ +Microsoft may have [said no to large service packs for Vista][4], but that hasn't stopped some from compiling their own. Last week a HotFix.net blogger posted a collection of individual Windows Vista hotfixes as a supposed Windows Vista Service Pack 1, raising the ire of Microsoft who [responded with the cease-and-desist letter][2]. + +HotFix complied with the letter and the so-called service pack has now been removed. + +Ethan Allen, who runs the HotFix site and frequently blogs about Microsoft patches, claims that his so-called service pack is based on things likely to be contained in a Vista service pack, but of course his assumptions are largely based on smoke and mirrors like file naming conventions in Microsoft's Knowledge Base. + +Hardly the sort of thing you want to depend on when it comes to patching your copy of Vista, which is why I'm not linking to the Hotfix site in this post. + +A post on the [official Windows Vista blog cautions][1]: + +>Looking at the site, it seems to me the blogger compiled a list of previous mentions of SP1 (purely conjectural, and already discussed in other blogs) stitched together with another list of "hotfixes" mentioned in various KB (Knowledge Base) articles (again, already posted on our web site). You probably already know that we create and release hotfixes on a regular basis for very specific customer scenarios or for OEM-shipped machines, and that it's standard policy that all hotfixes are rolled into the next service pack release. However, a service pack is not just a compilation of hotfixes and security updates, so don't make the mistake of thinking that the set of fixes offered in this particular blogger's list represents a preview of the service pack itself. + +>It's worth mentioning that hotfixes not posted on Windows Update are not intended for individual installation unless the user is experiencing the specific symptoms mentioned in the corresponding KB article. These hotfixes represent specific fixes for specific customer scenarios and typically have not undergone full regression testing. When they are integrated into a future service pack, they will receive full regression testing and beta testing. So, installing a collection of unnecessary hotfixes may cause more problems than are fixed. + +Allen has been putting together these suspicious collections and releasing them under the service pack moniker for some time. A couple years back he release something purporting to be SP3 for windows XP which prompted Microsoft to issue a [warning on the XP mailing list][3] about installing updates from third parties. + +The problem with Allen's fake service packs is that the contain hotfixes for issues most users don't experience. While Allen is correct in arguing that all these patches can be obtained from Microsoft, the fact remains that most users will never need them and risk seriously messing up their systems by installing unneeded updates. + +Although Microsoft has confirmed the existence of Vista SP1, it has not neither set a release date. Until the official update arrives we suggest you hold off on updating anything beyond what Windows Update recommends. + +[1]: http://windowsvistablog.com/blogs/windowsvista/archive/2007/04/03/not-a-post-on-sp1.aspx "(Not) an update on SP1" +[2]: http://www.pcworld.com/article/id,130398-page,1/article.html# "Microsoft Pressures Vista SP1 Site" +[3]: http://groups.google.com/group/microsoft.public.windowsxp.general/msg/b3e9f19f5d306677?dmode=source "microsoft.public.windowsxp.general" +[4]: http://blog.wired.com/monkeybites/2007/04/microsoft_says_.html "Microsoft Says No To Large Vista Service Packs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/apple.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/apple.txt new file mode 100644 index 0000000..e66da30 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/apple.txt @@ -0,0 +1,14 @@ +Apple, taking a page from the Microsoft playbook, announced this evening the it will [delay shipping][1] its new version of OS X, Leopard, until October. In a press release Apple said that work on the iPhone had caused delays with Leopard. While the company says a beta version of Leopard will be available to developers at the upcoming Developer Conference, the final version will not ship until October. + +Rumors of a delay to Leopard surfaced last month, but frankly we dismissed them as unfounded. Looks like we were wrong. + +On the brighter side, Apple claims that the iPhone will meet its planned June ship date. + +here's the Apple press release in it's entirety: + + +>iPhone has already passed several of its required certification tests and is on schedule to ship in late June as planned. We can't wait until customers get their hands (and fingers) on it and experience what a revolutionary and magical product it is. However, iPhone contains the most sophisticated software ever shipped on a mobile device, and finishing it on time has not come without a price -- we had to borrow some key software engineering and QA resources from our Mac OS® X team, and as a result we will not be able to release Leopard at our Worldwide Developers Conference in early June as planned. While Leopard's features will be complete by then, we cannot deliver the quality release that we and our customers expect from us. We now plan to show our developers a near final version of Leopard at the conference, give them a beta copy to take home so they can do their final testing, and ship Leopard in October. We think it will be well worth the wait. Life often presents tradeoffs, and in this case we're sure we've made the right ones. + +Its good to see the Apple press team hasn't lost its gift for hyperbole. + +[1]: http://biz.yahoo.com/prnews/070412/sfth056.html?.v=87 "Apple Statement"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/appletv.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/appletv.jpg Binary files differnew file mode 100644 index 0000000..7b67e4b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/appletv.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/appletv.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/appletv.txt new file mode 100644 index 0000000..e824500 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/appletv.txt @@ -0,0 +1,9 @@ +Erica Sadun over at O'Reilly has [written a plugin for the AppleTV][1] that allows users to load video directly from web URLs. Using the plugin, if you point your AppleTV to a URL and the data can be downloaded (rather than streamed), it will playback on your AppleTV. + +The one downside is that the file much be completely downloaded before playback starts. Unfortunately the plugin doesn't seem to work with FLV encoded video which means direct links to YouTube videos are out. + +Despite the current limitations the plugin does help remove a step from the usual process of downloading and adding videos to iTunes before they show up on your AppleTV. And who knows, at the rate AppleTV hacks are going, this plugin might be a full fledged web browser by the end of the month. + +See Sadun's [post at O'Reilly][1] for more details. + +[1]: http://www.oreillynet.com/mac/blog/2007/04/update_loading_urlbased_video.html?CMP=OTC-13IV03560550&ATT=Update+Loading+URL-based+Video+onto+Apple+TV "Loading URL-based Video onto Apple TV"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/cbs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/cbs.jpg Binary files differnew file mode 100644 index 0000000..687d678 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/cbs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/cbs.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/cbs.txt new file mode 100644 index 0000000..4973c64 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/cbs.txt @@ -0,0 +1,13 @@ +CBS has [announced a new venture dubbed the CBS Interactive Audience Network][1] which will provide ad-supported television programming through partnerships with AOL, Microsoft, CNET, Comcast, Joost, Bebo, Brightcove, Netvibes, Sling Media and Veoh. + +Today's announcement does not affect CBS's existing deals Yahoo!, Apple and Amazon which will continue as they were. + +The press release listed CBS shows such as CSI, Survivor and David Letterman as well as "classic programming from the vast library of CBS Television Distribution." + +If anyone had any doubts concerning Joost's seriousness about become a big time media delivery system, this announcement, with Joost's name up there with Comcast and AOL, should put those doubts to rest. + +If nothing else, this will bring Joost some much needed content -- the sort of things that people actually want to watch rather than the existing Joost content, which often feels like after thoughts and cast-off programming. + +Hopefully Joost will kick out some more beta invites in the near future and we'll be sure to hook you up when they do. + +[1]: http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=104&STORY=/www/story/04-12-2007/0004564417&EDATE= "CBS Announces Interactive Audience Network"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/feedblitxtwiiter.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/feedblitxtwiiter.txt new file mode 100644 index 0000000..1e81bb7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/feedblitxtwiiter.txt @@ -0,0 +1,18 @@ +For Twitter fans [unfazed by the potential security vulnerabilities][1], [FeedBlitz][2] has [announced a new service][3] that allows Twitter users to get RSS updates via the popular web service. Twitter syndication from FeedBlitz posts the relevant entries to your Twitter timeline as "tweets." + +The Feedblitz service is available only to FeedBlitz premium publishers. Every premium publisher's subscription signup form now automatically allows subscribers to choose between email or Twitter notification. + +The 140 character limit of Twitter puts a severe cramp on the amount of info displayed, but FeedBlitz says that it will attempt to include the article's title, source and as much of the body text as possible. + +Perhaps the nicest touch is the inclusion of a [tinyurl][4] link to the article. + +As our friends at Epicenter [point out][5] Twitter has not only jumped the shark in terms of "Twitter-everything-in-any-way-you-can hype," but seems to be brings the boat back around for yet another go. + +Regardless Twitter junkies will no doubt enjoy adding RSS feeds to their Twitter accounts. If your favorite blog doesn't have a FeedBlitz premium account, and since Compiler doesn't this means you, have a look at some [other RSS to Twitter tools][6] we've covered in the past. + +[1]: http://blog.wired.com/monkeybites/2007/04/twitter_vulnera.html "Twitter Vulnerability: Spoof Caller ID To Take Over Any Account" +[2]: http://www.feedblitz.com/ "FeedBlitz" +[3]: http://feedblitz.blogspot.com/2007/04/new-feature-twitter.html "New Feature: Twitter!" +[4]: http://tinyurl.com/ "tiny url" +[5]: http://blog.wired.com/business/2007/04/feedblitz_marri.html "FeedBlitz Marries Blogs With Twitter" +[6]: http://blog.wired.com/monkeybites/2007/03/put_your_blog_o.html "Put Your Blog on Twitter"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/feedblitz.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/feedblitz.jpg Binary files differnew file mode 100644 index 0000000..071e5e5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/feedblitz.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/leopard.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/leopard.jpg Binary files differnew file mode 100644 index 0000000..1537ac2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/leopard.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/luddite.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/luddite.txt new file mode 100644 index 0000000..dbb0438 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/luddite.txt @@ -0,0 +1,22 @@ +Astute Compiler readers may have noticed there's one news item we've studiously avoided lately, namely the whole controversy about etiquette and behavior in the blogosphere. + +And fear not we don't aim to weight in on the matter now either, we still chose to abstain. Rather I thought I'd point out the always entertaining Luddite's [take on the subject][1]. + +For those that haven't heard Kathy Sierra a prominent blogger and tech commentary started receiving death threats and felt unsafe in her own home. The whole thing prompted industry maven Tim O'Reilly to [proposed a "code of conduct"][2] and suggest that bloggers display badges on their sites proclaiming their adherence to the code, which prompted the Luddite to respond: + +>Who's kidding who here? + +>Before you can expect a bunch of utterly spoiled, self-indulgent bloggers (i.e. the kind who indulge in their online mudslinging) to practice civility, you might try restoring a bit of it to what passes for civilization these days. + +Never one to rest with a simple round of dismissal, the Luddite continues: + +>And in a culture where idolatry of the crass and vulgar encourages the mantra of instant gratification and me-so-important, what the hell do you expect? + +>... + +>Unfortunately, you can't just pass a bunch of rules to make incivility go away. Someone who has been getting his way since he was 2 and has grown up into a self-involved, bombastic narcissist isn't going to have a come-to-Jesus moment just because he's offended somebody's sense of etiquette. You can put earrings on a hog but it's still a hog, y'know? + +Too true my friends, too true. For more of Tony's thoughts be sure to [read the whole column][1]. + +[1]: http://www.wired.com/culture/lifestyle/commentary/theluddite/2007/04/luddite_0412 "The Blogosphere, Where a Tawdry Culture Goes to Die" +[2]: http://radar.oreilly.com/archives/2007/03/call_for_a_blog_1.html "Call for a Blogger's Code of Conduct"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/sitemaps.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/sitemaps.txt new file mode 100644 index 0000000..73561bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/sitemaps.txt @@ -0,0 +1,24 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/sample_xml.png" title="Sample_xml" alt="Sample_xml" style="margin: 0px 0px 5px 5px; float: right;" />In a moment of rare cooperation, search rivals Google, Yahoo and Microsoft have, gasp, worked together to [improve the sitemaps protocol][1] which now features [auto-discovery][4] via a robots.txt file. In addition to new features, the big three announced that Ask.com and IBM will now also support the protocol. + +Back in November we [covered the initial launch of the sitemaps protocol][2], which was originally developed by Google, but was quickly adopted by Yahoo and Microsoft as well. + +Sitemaps are a tool for webmaster to control what pages on their site are indexed and how frequently the search engine spiders should update a page index. + +Since then the Sitemaps team has [launched a website][3] and today announced the first big step in widespread adoption of the indexing tool: auto discovery. + +Previously if you wanted to add your site's sitemaps to search engine indexes you needed to create an account on each of the three search sites and then tell it where to find your sitemap. Not only was the process rather technical the additional complication of creating accounts, many felt sitemaps were more of a pain than they were worth. + +But today's announcement means that webmasters can add a sitemap to all four search engines by adding one line of code to a site's robots.txt file. The actual code looks like this: + + Sitemap: http://www.mysite.com/sitemap.xml + + + +A Google Blog post on the subject [notes][1] that "we still think it's useful to submit your Sitemap through Webmaster tools so you can make sure that the Sitemap was processed without any issues." + +Many of the search engines also provide some statistical analysis if you create an account which is a bonus for those that want more tools for watching site traffic. But at least now you don't *have* to do that just to create a sitemap. + +[1]: http://googlewebmastercentral.blogspot.com/2007/04/whats-new-with-sitemapsorg.html "What's new with Sitemaps.org?" +[2]: http://blog.wired.com/monkeybites/2006/11/the_411_on_site.html "The 411 on Sitemaps" +[3]: http://www.sitemaps.org/ "sitemaps.org" +[4]: http://www.ysearchblog.com/archives/000437.html "Webmasters Can Now Auto-Discover With Sitemaps"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/skype-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/skype-logo.jpg Binary files differnew file mode 100644 index 0000000..2837cbe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/skype-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/skype.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/skype.jpg Binary files differnew file mode 100644 index 0000000..881c7e4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/skype.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/skype.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/skype.txt new file mode 100644 index 0000000..55d9e4a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/skype.txt @@ -0,0 +1,24 @@ +Skype has [announced a new beta version][1] of its software for Mac, which includes some new Mac-only features like call transfer, however, the Mac version of the Skype client continues to lag behind the Windows version. + +The Skype for Mac 2.6 beta adds call transfer functionality and features numerous bug fixes, but unfortunately giving the red-headed stepchild a new suit doesn't change the fact that he's still the red headed stepchild (no offense to red-headed stepchildren). + +The call transfer feature enables Skype users to transfer ongoing calls to other Skype users in their contact list. Unfortunately, the feature is only available if all callers are using the Skype 2.6 Mac client which, for the time being, makes it of limited usefulness. + +However, once the Windows client is similarly updated, call transfer should be a welcome feature. + +While it's nice to see Skype adding a feature to the Mac client before the Windows client, it's still not as good as simultaneous updates and full cross-platform compatibility. + +The Mac client still does not support Skype Prime or the business directory, SkypeFind. + +On the plus side, Skype claims to have worked hard on bug fixes and call quality improvements. In the announcement release on the Skype blog the Mac team writes, "Mac users have been asking for better quality and Skype has taken action. By ironing out the little bugs that users have pointed out, Skype for Mac 2.6 Beta boasts increased quality and stability." + +A few other previously Windows-only features have made their way to Mac client: + +* Mac users can now join public chats +* a small "typing" indicator icon now shows when others are writing a message +* Mac users can now access any Skype Prime premium services provider and pay with Skype credit +* The Mac client now features automatic updates without having visit Skype's website + +Skype 2.6 for Mac is beta, but in terms of stability I find it better than the existing official client and would recommend that all Mac users consider upgrading. + +[1]: http://share.skype.com/sites/mac/2007/04/skype_26_for_mac_beta.html "Skype 2.6 Beta is here"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/ubuntugibbon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/ubuntugibbon.txt new file mode 100644 index 0000000..fff5127 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Thur/ubuntugibbon.txt @@ -0,0 +1,15 @@ +The Ubuntu Linux project has [released a roadmap][1] for the next version of the popular Linux distribution and also announced plans to [build an "ultra free" version][3]. The free version will not contain any proprietary drivers, firmware, imagery, sounds, applications, or other content without full source materials. + +The next version of Ubuntu continues the cheeky naming convention with the moniker Gutsy Gibbon (the upcoming final release of Feisty Fawn will be available later this month). Gutsy Gibbon will not reach the final release stage until October of this year. So far there are no available details on features slated for the next version of Ubuntu. + +However, some details of the free version of Ubuntu are available. The new distro will be created in conjunction with the team behind [Gnewsense][2], the Free Software Foundation's Gnu/Linux distribution. + +The free version would serve, according to Ubuntu founder Mark Suttleworth, to appease those who take "an ultra-orthodox view of licensing...those who demand a super-strict interpretation of the 'free' in free software." + +Proprietary components in Linux distros remain a contentious subject and the Ubuntu developer team has already said that, despite user requests for it, proprietary software would not be enabled by default in the upcoming Feisty release. + +However, with a dedicated free distribution in the works, it's possible that the Ubuntu team will change that stance for the Gutsy Gibbon release. + +[1]: https://wiki.ubuntu.com/GutsyReleaseSchedule "Ubuntu Gutsy Gibbon Release Schedule" +[3]: http://www.tectonic.co.za/view.php?id=1447 "Techtonic on Ubuntu Ultra Free Version" +[2]: http://www.gnewsense.org/ "Gnewsense""
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur-img.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur-img.jpg Binary files differnew file mode 100644 index 0000000..e09babf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur-img.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur1.jpg Binary files differnew file mode 100644 index 0000000..d39d82c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur2.jpg Binary files differnew file mode 100644 index 0000000..c254274 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur3.jpg Binary files differnew file mode 100644 index 0000000..9e807ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/darfur3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/debian.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/debian.jpg Binary files differnew file mode 100644 index 0000000..adf118e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/debian.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/debian.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/debian.txt new file mode 100644 index 0000000..22591b1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/debian.txt @@ -0,0 +1,17 @@ +The Debian Project recently [announced the official release][2] of its new distribution, codenamed Etch. The new release brings the popular Linux distro to version 4.0 and adds a fully integrated installation process with a graphical front-end and an improved package management system. + +Debian is a GNU/Linux system supporting eleven different processor architectures and includes the KDE, Gnome and Xfce desktop environments. + +The new graphical installer should help open up what was once possibly the most difficult distro to install to a wider range of users. With the popularity of Ubuntu Linux largely attributable to its easy of installation (Mark Pilgrim [once quipped ][1]that Ubuntu is "an ancient African word meaning "can’t install Debian'"), other distros, like Debian, are clearly making an effort to ease to complexity of installation. + +Etch also includes a much improved update mechanism with numerous security enhancements. Etch includes Secure APT, which allows users to easily verify the integrity of packages, to ensure they haven't been corrupted or tampered with, before downloading and installing them. + +As part of its improved security, Etch also ships with out-of-the-box support for encrypted partitions. + +Notable software in the new Debian release includes updated packages like KDE 3.5.5a, GNOME 2.14, OpenOffice.org 2, GIMP 2.2.13, Iceweasel (an unbranded version of Firefox 2) and Icedove (an unbranded version of Thunderbird 1.5). + +Etch can be downloaded via bittorrent (the recommended way), jigdo or HTTP. See the Debian website for more [detailed upgrade/installation instructions][3]. + +[1]: http://diveintomark.org/archives/2006/06/26/essentials-2006 "Essentials, 2006 edition" +[2]: http://www.debian.org/News/2007/20070408 "Debian GNU/Linux 4.0 released" +[3]: http://www.debian.org/releases/stable/ "Debian Etch Release Information"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/dolphin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/dolphin.jpg Binary files differnew file mode 100644 index 0000000..6036420 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/dolphin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/dolphin.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/dolphin.txt new file mode 100644 index 0000000..98e785d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/dolphin.txt @@ -0,0 +1,18 @@ +<img alt="Dolphin" title="Dolphin" src="http://blog.wired.com/photos/uncategorized/2007/04/10/dolphin.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />KDE 4, the next release of the popular Linux Desktop environment will, among other changes, no longer use the longtime file manager Konqueror by default, opting instead for the improved usability and enhanced browsing features of the [Dolphin file manager][2]. + +Before long time Konqueror power users freak out, keep in mind that Konqueror is not going anywhere, it will still be part of the KDE package, but by default Dolphin will be the file manager that gets launched from panel buttons and by apps requesting to open a file manager window. + +Naturally you will be able to customize KDE 4 to change that behavior. Aaron Seigo one of the Dolphin developers [writes on his blog][1]: + +>Konqueror is a power user's application that can not be fully replaced by something like dolphin (and vice versa). They have different use cases and different target audiences. Both are valid concepts and both will be sharing the vast majority of their code, sort of like how kwrite is little more than a shell around katepart. + +That said, even longtime Konqueror users might want to investigate Dolphin since it looks to have some very nice enhancements not found in Konqueror. + +Although a number of further improvements are planned for the KDE 4 version of Dolphin, the current KDE 3 version includes a very slick, Windows Vista-like navigation bar that allows for quickly jumping around in the path (each part of the URL path is clickable) as well as allowing for directly typing file paths in the url bar. + +Other noteworthy features in Dolphin include split pane windows (also a feature in Konqueror) and sidebars which can be hidden, tiled and moved to any position. + +Both Dolphin and KDE 4 have a ways to go before they're ready for the general public, but as kind of preview the Dolphin team released the screenshot below showing some of the new features slated for the next release. + +[1]: http://aseigo.blogspot.com/2007/02/konqueror-not-vanishing-news-at-11.html "konqueror not vanishing. news at 11." +[2]: http://enzosworld.gmxhome.de/index.html "Dolphin File manager"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/dolphin4_oxygen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/dolphin4_oxygen.jpg Binary files differnew file mode 100644 index 0000000..57a6220 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/dolphin4_oxygen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/effvid.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/effvid.txt new file mode 100644 index 0000000..612f071 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/effvid.txt @@ -0,0 +1,16 @@ +The Electronic Frontier Foundation (EFF) has posted a video from the recent ETech conference in which [Marc Cuban][1] debates the EFF's [Fred von Lohmann][2] about YouTube and the future of copyright (video after the jump -- via YouTube of course). + +The debate over YouTube and copyright infringement continues with lawsuits rolling in from Viacom and others and Cuban contends that Google is willfully infringing on copyright by failing to filter YouTube. + +The crux of Cuban's argument revolves around the fact that because YouTube does more than just host the videos (i.e. it converts them from a variety of formats into the Flash videos on the site) it does not qualify for the DMCA's safe harbor protections. + +While the exact interpretations of the DMCA's safe harbor provisions are something that the courts are still debating, Cuban does make a compelling argument from a strictly legal point of view. + +However, when he drifts off into sweeping generalizations, as Cuban is prone to do, he makes decidedly less sense. For instance, at one point Cuban seems to say YouTube would basically disappear were not for the infringing content it (perhaps) unwittingly hosts, which is I think a dead horse that's been beaten long enough. All one needs to do is check the most viewed videos on the site to realize that simply isn't true -- the vast majority of the most viewed videos are user created. + +But as with all things involving the outspoken Cuban, the video is at least entertaining. + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/hflanQiFSSw"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/hflanQiFSSw" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://en.wikipedia.org/wiki/Marc_Cuban "Wikipedia: Marc Cuban" +[2]: http://en.wikipedia.org/wiki/Fred_von_Lohmann "Fred von Lohmann"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/haulocaust.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/haulocaust.txt new file mode 100644 index 0000000..c564d2e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/haulocaust.txt @@ -0,0 +1,25 @@ +Google has unveiled an online mapping initiative aimed at [raising awareness of the crisis in the Darfur region of Sudan][1]. Crisis in Darfur, which is in partnership with the [U.S. Holocaust Memorial Museum][3], enables Google Earth users visualize and better understand the genocide currently unfolding in Darfur. + +Crisis in Darfur is the first project in the Museum's Genocide Prevention Mapping Initiative which will over time include information as layers in Google Earth. The goal of the project is to allowing citizens, governments and institutions to access information on atrocities and potential genocide. + +The Museum is presumably trying to leverage some aspect of the wisdom of the crowds so that while CNN may be covered with headlines about the latest celebrity death, the blogosphere and growingly influential citizen media projects can use the Google Earth tools to research and draw attention to stories that matter. + +Museum Director Sara J. Bloomfield, Director of the Holocaust Museum, said in press conference earlier today that Google Earth can serve as a means to raise awareness about atrocities both past and present. + +"When it comes to responding to genocide, the world’s record is terrible." Bloomfield said. "We hope this important initiative with Google will make it that much harder for the world to ignore those who need us the most" + +To access the new content open up Google Earth and fly over to African. The Crisis in Darfur layers are in the Global Awareness directory. + +The joint press release from Google and the Holocaust Museum says that Crisis in Darfur allows user to zoom and see firsthand "1,600 damaged and destroyed villages, providing visual, compelling evidence of the scope of destruction." Also visible are the remnants of more than 100,000 homes, schools, mosques and other structures destroyed by the janjaweed militia and Sudanese forces. + +Clicking the various icons will reveal more information including links to download files from the genocide museum as well as a "[how you can help][2]" section. + +The high resolution images are drawn from sources like the U.S. State Department, non-governmental organizations, the United Nations, individual photographers, and the Museum. The additional content comes from a wide range of sources including the museum and humanitarian groups in the area. + +The imagery is haunting, it's a very strange and disturbing experience to sit in the comfort of the your living room and zoom in on graphic images of destroyed villages on the other side of the globe. But that the same time that's the goal of this project, to use Google Earth to bring the realities of world directly into your living room. + +Once upon a time it was easy for governments to deny atrocities were happening, to hide evidence behind cordoned off, restricted access areas but thanks to projects like the Crisis in Darfur layers for Google Earth it's becoming increasingly difficult for the perpetuators of such crimes to hide their deeds. + +[1]: http://www.google.com/intl/en/press/pressrel/darfur_mapping.html "U.S. Holocaust Memorial Museum and Google Join in Online Darfur Mapping Initiative" +[2]: http://www.ushmm.org/conscience/alert/darfur/what/ "What Can I Do" +[3]: http://www.ushmm.org/ "U.S. Holocaust Memorial Museum"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/krugle.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/krugle.jpg Binary files differnew file mode 100644 index 0000000..090c6b7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/krugle.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/krugle.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/krugle.txt new file mode 100644 index 0000000..d3ac5e8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/krugle.txt @@ -0,0 +1,16 @@ +SourceForge, one of the largest open source code hosts on the web, has [partnered with the code search engine Krugle][6] to provide [improved search features for SourceForge.net][1]. The deal will let Krugle index and return results for the roughly 145,000 open source projects hosted at SourceForge.net. + +As anyone who's used SourceForge's existing search functionality can tell you, this is a tremendous boon for developers. Krugle's search will integrated into the SourceForge site and make it possible to search within the project code, something not previously possible on SourceForge. + +Krugle will also the data to its [main search page][5]. + +We've looked at Krugle a [couple of times][3] in the past and come away very impressed. Krugle already powers code searches on Yahoo's Developer Network and by adding SourceForge results, Krugle is well on its way to becoming the [Google of code searching][4]. + +[found via [Mashable][2]] + +[1]: http://sourceforge.krugle.com/ "SourceForge Krugle Code Search" +[2]: http://mashable.com/2007/04/10/sourceforge-krugle/ "SourceForge, Krugle Team Up for Open Source Code Search" +[3]: http://blog.wired.com/monkeybites/2007/02/yahoo_developer.html "Yahoo Developer Network Adds Krugle Code Search" +[4]: http://www.wired.com/news/technology/0,70219-0.html "Here Comes a Google for Coders" +[5]: http://www.krugle.com/ "Krugle" +[6]: http://blog.krugle.com/?p=237 "Krugle partnering with SourceForge"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/palm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/palm.jpg Binary files differnew file mode 100644 index 0000000..94e940b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/palm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/palm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/palm.txt new file mode 100644 index 0000000..947e85e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/palm.txt @@ -0,0 +1,21 @@ +Because the Linux news doesn't stop today: Palm [announced this morning][2] that the company plans to deliver a new Linux and open source based mobile platform later this year. Rumors to this effect have been swirling for some time and in fact Palm has previously used parts of the Linux kernel in its OS. + +Details are few at this point, but Colligan did say during a Palm Analyst Day speech, that the reason for the switch was improving the user experience (better WiFi etc) and adding greater hardware flexibility, an issue that has plagued the Palm OS in recent years. + +Colligan also said that the new platform has been under construction "in house" for a number of years. Interestingly Palm will not license the new OS to outside hardware companies. Perhaps Palm is trying to take a page from the Apple playbook? + +Not only is the lack of licensing unusual for a handset OS, but the switch to Linux-based OS resembles in some ways Apple's move to the BSD platform for OS X. + +But Palm isn't the only mobile OS moving to Linux. Symbian has already announced it plans to support tools that will make it easier to port applications from Unix to the Symbian OS. + +Tech News World ran a story last week about the [growing use of Linux][1] in the mobile world positing that as handset prices decline, many manufacturers are focusing on the cost of the software elements as a means of raising profit margins. + +Because Linux-based systems don't have the licensing fees of Windows Mobile and other proprietary solutions, the manufacturers are increasingly turning to Linux. + +Tech News World cites a recent ABI report that suggests Linux will make up 14 percent of the mobile OS market by 2012. + +A full audio recording of Hooligan's talk can be [found on the Palm site][3]. + +[1]: http://www.technewsworld.com/story/wireless/56732.html "The Steady Migration of Smartphones to Linux" +[2]: http://www.palminfocenter.com/news/9351/palm-announces-new-linux-based-mobile-platform/ "Palm Announces New Linux Based Mobile Platform" +[3]: http://investor.palm.com/eventdetail.cfm?EventID=28423 "Palm Investor Day Speech"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugar1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugar1.jpg Binary files differnew file mode 100644 index 0000000..ad1afe3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugar1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugar2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugar2.jpg Binary files differnew file mode 100644 index 0000000..a52fcf4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugar2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugar3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugar3.jpg Binary files differnew file mode 100644 index 0000000..9593601 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugar3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugaros.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugaros.jpg Binary files differnew file mode 100644 index 0000000..88238de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugaros.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugaros.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugaros.txt new file mode 100644 index 0000000..77d1dad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Tue/sugaros.txt @@ -0,0 +1,21 @@ +Since I seem to have unintentionally started a Linux theme day here on Compiler we'll just keep rolling with it. According to a post I ran across on [Digg][8], the Linux-based Sugar OS which was designed for the [One Laptop Per Child project][6] (OLPC), is now [available as a live CD][1]. + +Bear in mind that the Sugar OS ISO in its current incarnation is alpha, i.e. not guaranteed to work on your machine. + +I managed to track down some screenshots on [Linux Questions][2] which show the Sugar OS in action. Keep in mind that not only is this distro in the alpha release stage, but the OS is designed to be used by children (screenshots after the jump). + +According to a blog post I found from [one of the Sugar developers][3] the current ISO image linked above weighs in at only 291Megs, which puts it down in a league similar to Damn Small Linux which we [mentioned last week][7]. Although Damn Small is on 50MB and thus more compact, Sugar is still giving it a run for it's money. + +If you interested in working with and contributing to the Sugar OS project have a look at some of the [articles][4] that Red Hat Magazine has been running. There are a couple tutorials for those that would like to get started with building apps for Sugar. + +For more general info on Sugar be sure to [check out the wiki][5] (which as of this writing is down, probably due to the Digg effect). + + +[1]: http://olpc.download.redhat.com/olpc/streams/sdk/build1/livecd/ "Sugar OS LiveCD" +[2]: http://shots.linuxquestions.org/?linux_distribution_sm=OLPC "Sugar OS screenshots" +[3]: http://www.j5live.com/?p=349# "Experimental Sugar SDK LiveCD" +[4]: http://www.redhatmagazine.com/2007/02/23/building-the-xo-introducing-sugar/ "building the XO: Introducing Sugar" +[5]: http://wiki.laptop.org/go/Sugar "OPLC Wiki Sugar OS" +[6]: http://blog.wired.com/monkeybites/2007/03/hkons_olpc.html "OLPC video" +[7]: http://blog.wired.com/monkeybites/2007/04/weve_written_ab.html "Damn Small Linux The Portable Desktop" +[8]: http://digg.com/linux_unix/OLPC_one_laptop_per_child_Linux_based_OS_ready_for_download "OLPC (one laptop per child) Linux based OS ready for download"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/facebook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/facebook.jpg Binary files differnew file mode 100644 index 0000000..9c0abde --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/facebook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/facebookredsigns.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/facebookredsigns.txt new file mode 100644 index 0000000..36f18fd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/facebookredsigns.txt @@ -0,0 +1,17 @@ +Facebook [unveiled a subtle makeover][1] and some new features this morning, including a new, more streamlined interface designed to make the site even easier to use. + +Having been bitten by [tremendous negative user feedback][2] the last time the site added features, Facebook has been privately testing the new features for some time with over 200,000 users participating in beta tests. + +Perhaps the most immediately noticeable change in the design is the logo change -- the mysterious "Facebook guy" has been replace with a simplified logo. + +New features in addition to the redesign include changes to way users navigate profiles and keep tabs on friends. New "portal" pages let user's see a bird's eye view of their groups as well as groups they could join. The navigation changes also make it easier to view profiles with fewer clicks to get from one page to another. + +The changes reflect Facebook's attempt to transition from a user base made up mainly of college students one that embraces that broader social networking spectrum. + +With MySpace having decided to [block Photobucket videos][3], Facebook's relaunch couldn't have come at a better time. Facebook currently boasts more than 19 million registered users, and founder Mark Zuckerberg tells Reuters that over half of those are not students. + +Traffic tracking firm comScore Networks recently reported a huge surge in Facebook site traffic, claiming that visits to Facebook have jumped 75 percent in the last six months. By contrast MySpace's traffic grew just 26 percent in the same period. + +[1]: http://www.reuters.com/article/internetNews/idUSKIM12533220070411?feedType=RSS&pageNumber=2 "Facebook unveils new site design" +[2]: http://blog.wired.com/monkeybites/2006/09/facebook_faces_.html?entry_id=1551871 "Facebook Faces Backlash" +[3]: http://blog.wired.com/monkeybites/2007/04/myspace_is_bloc.html "MySpace Is Blocking Photobucket Videos"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/msupdate.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/msupdate.txt new file mode 100644 index 0000000..1a2f74d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/msupdate.txt @@ -0,0 +1,15 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/winvista_v_thumb_9.jpg" title="Winvista_v_thumb_9" alt="Winvista_v_thumb_9" style="margin: 0px 0px 5px 5px; float: right;" />Earlier this month Microsoft issued an [emergency patch][3] for the animated cursor vulnerability in Windows Vista and XP. Yesterday saw the release of the [official monthly patches for Windows][1], which includes the cursor vulnerability fix as well as four other patches to fix critical flaws. + +For Vista users, the important patch is the cursor vulnerability. If you didn't update last week, Microsoft encourages you to do so now. Windows Update should find and install the patches, though you can always [download them][1] from Microsoft's security site. + +The April security release is the first such critical bugfix for Vista. Curiously, Microsoft never issued a monthly patch in March, despite having been informed of the cursor vulnerability back in December. + +Some have speculated that the absence of a March update could have been a result of Microsoft's reluctance to admit Vista's vulnerabilities so close to its release. + +Normally I'd dismiss such conspiracy-oriented musings, but given the way executives have been touting Vista as "secure out of the box," even while the company knew about the cursor exploit, well, it doesn't look good. + +Perhaps [Vienna][2] will fare better. + +[2]: http://en.wikipedia.org/wiki/Windows_%22Vienna%22 "Microsoft Vienna" +[3]: http://blog.wired.com/monkeybites/2007/04/microsoft_to_pa.html "Microsoft To Patch Vista Vulnerability" +[1]: https://www.microsoft.com/technet/security/bulletin/ms07-apr.mspx "Microsoft Security Bulletin Summary for April 2007"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/myspacephotobucket.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/myspacephotobucket.txt new file mode 100644 index 0000000..494dfb6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/myspacephotobucket.txt @@ -0,0 +1,22 @@ +MySpace has decided to [block Photobucket videos][2] and remixes from the popular social networking site. The decision affects any video hosted through Photobucket whether it's in a user's profile, blog or comments section on MySpace. + +This isn't the first time MySpace has flipped the switch on Photobucket content. Back in January of this year Photobucket users were similarly blocked, though MySpace later claimed it was just trying to filter for security issues and restored the videos. + +Today's outage affects millions of videos, though it would seem that Photobucket hosted images and slideshows are not part of the ban. And videos from Photobucket competitors like YouTube have not been blocked. + +Photobucket has gone on the offensive this time, attempting to rally users and encouraging them to email MySpace. A posting on the Photobucket blog says: + +>We believe that by limiting your ability to personalize your pages with content from any source, MySpace is contradicting the very belief of personal and social media. MySpace became successful because of the creativity of you, its users, and because it offered a forum for self-expression. By severely restricting this freedom, MySpace is showing that it considers you as a commodity which it can treat as it sees fit. + + +Although MySpace has yet to respond formally, today's move is becoming a familiar one for MySpace, which often responds to public pressure and restores certain features -- usually claiming bugs or security problems were behind the blackouts. And given the notoriously buggy, security-flawed nature of MySpace these explanations are generally believable. + +On the other hand MySpace has permanently blocked Revver and other video and widget sites in the past -- could they be doing to same to Photobucket? + +As Michael Arrington of Techcrunch [points out][2], "today's shutdown of Photobucket comes suspiciously close to news that Photobucket is up for sale." Could MySpace be trying to drive the price of Photobucket down? + +Perhaps the most interesting question is whether users will feel greater loyalty to MySpace or Photobucket? Will users jump the MySpace ship for Facebook and the like, or will they abandon Photobucket in favor or YouTube and other video hosts that haven't yet been blocked by MySpace? + +[1]: http://blog.photobucket.com/blog/2007/04/breaking_news_p.html "Breaking news: Posting from Photobucket to MySpace" + +[2]: http://www.techcrunch.com/2007/04/10/photobucket-videos-blocked-on-myspace/ "PhotoBucket Videos Blocked on MySpace"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/netqos.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/netqos.jpg Binary files differnew file mode 100644 index 0000000..6a4e07b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/netqos.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/networktron.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/networktron.txt new file mode 100644 index 0000000..37c54ba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/networktron.txt @@ -0,0 +1,17 @@ +We at Compiler do love us some truly useless nerd games/tools/programs, so I was very excited to run across the following video of [NetQos's][5] network traffic monitoring system, [Netcosm][4]. NetQoS has transformed their network monitoring interface into a Tron-style arcade game of epic proportions. + +Unfortunately the system is not available to the general public, for the time being it only runs on their servers but there's an [FAQ][3] that gives some more details about how it works. + +If you're interested in similar network traffic toys see our coverage of [Sound of Traffic][1] which converts network traffic packets into sounds, complete with virtual instruments and mixing tools. + +And check out the NetQoS video after the jump. + +[via [Techcrunch][2]] + +[1]: http://blog.wired.com/monkeybites/2007/02/sound_of_traffi.html "Compiler: Sound of Traffic" +[2]: http://www.techcrunch.com/2007/04/10/watch-your-network-play-space-invaders/ "Watch Your Network Play Space Invaders" +[3]: http://www.netperformance.com/content.aspx?id=2690&cb_name=1 "Frequently Asked Questions About Netcosm" +[4]: http://www.netqos.com/network%2Dmonitoring/network-monitoring-labs.html "Netcosm" +[5]: http://www.netqos.com/ "NetQoS" + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/dtC6ZM0_m8U"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/dtC6ZM0_m8U" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/opera1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/opera1.jpg Binary files differnew file mode 100644 index 0000000..b52599b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/opera1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/opera2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/opera2.jpg Binary files differnew file mode 100644 index 0000000..a489944 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/opera2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/opera92.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/opera92.txt new file mode 100644 index 0000000..9845091 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/opera92.txt @@ -0,0 +1,27 @@ +<img border="0" alt="Opera2" title="Opera2" src="http://blog.wired.com/photos/uncategorized/opera2.jpg" style="margin: 0px 5px 5px 0px; float: left; width: 81px; height: 81px;" />Opera recently [released version 9.2][1] of its desktop browser with a number of [new features][4] including "[Speed Dial][2]," a quick way to access sites you frequently visit, and a new set of developer tools for web designers and programmers. + +Speed Dial takes its cue from the fact that most people have a few sites they visit quite regularly. To make it easier to get to the these sites quickly, Speed Dial adds visual bookmarks that show links to your nine sites. Each time you open a new blank tab, Speed Dial presents a thumbnail preview of your nine sites (screenshots after the jump). + +Speed Dial is also accessible through keyboard shortcuts (ctrl 0-9 on Windows, Apple-key 0-9 on the Mac). + +But perhaps the most interesting way to access speed dial is by directly typing the number of the site in the address bar. For instance, if GMail is set at number one in the your speed dial just open a new tab, type "1" and you're there -- very nice of keyboard junkies. + +The other big feature in Opera 9.2 is the inclusion of [developer tools][3] for web programmers. The developer console features new tools including a DOM inspector, JavaScript inspector, CSS editor and HTTP header inspector. + +While both the developer tools and Speed Dial have been available for a while in beta versions of Opera, today's announcement adds features to the official release version of the browser. + +Other new features for version 9.2 include: + +* Thumbnails on hover in the Windows panel +* Support for address bar searches -- a la Firefox. +* Support for animated GIF images in Opera themes. +* YouTube movies viewed in Fullscreen mode now work properly +* Start bar is now disabled by default + + +With so many versions of Opera popping up (Opera Mini, Opera Mobile, Opera for the Wii, etc) it's nice to know the Opera developers haven't forgotten the desktop browser. And, as with previous releases, Opera 9.2 is one of the fastest browsers around -- especially on older machines where its relatively light memory footprint gives it the edge over RAM hogs like Firefox 2. + +[1]: http://www.opera.com/products/desktop/ "Opera 9.2 Features" +[2]: http://www.opera.com/pressreleases/en/2007/03/28b/ "What's on your Speed Dial?" +[3]: http://dev.opera.com/tools/ "Opera Developer tools" +[4]: http://www.opera.com/docs/changelogs/ "Opera Changelogs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/pbucket.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/pbucket.jpg Binary files differnew file mode 100644 index 0000000..df700ab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/pbucket.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/twitterhack.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/twitterhack.txt new file mode 100644 index 0000000..c2e5526 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.09.07/Wed/twitterhack.txt @@ -0,0 +1,26 @@ +<img border="0" alt="Twitter" title="Twitter" src="http://blog.wired.com/photos/uncategorized/2007/03/16/twitter.png" style="margin: 0px 0px 5px 5px; float: right;" />Got friends on [Twitter][3]? Know their phone number? That's all you need to take over their account and start posting messages in their name. + +A similar exploit affects Jott, another service revolving around phone-based updates. + +The vulnerability stems from the fact that both services use caller ID to authenticate users, but unfortunately caller ID is notoriously easy to spoof. In fact there's a website designed to do just that -- [fakemytext.com][2] + +By spoofing your caller ID, an attacker could post Twitter messages in your name. + +Nitesh Dhanjani over at O'Reilly [details the hacks][1] and claims to have successfully exploited the vulnerabilities on both services. + + +>I tested the Twitter vulnerability by doing the following: + +>1. I registered at fakemytext.com, a SMS spoofing service. +2. Since the fakemytext.com service is based in the UK, I went through the Twitter FAQ and noted their UK based SMS number: +44-7781-488126. +3. I sent the following SMS via fakemytext.com to +44-7781-488126 with the "From" number set to my phone number: "Testing via http://www.fakemytext.com/ . This better not work!" +4. I checked my Twitter page, and sure enough, it was updated with the above SMS message. This means that anyone who knows a Twitter user's cell phone number can update that persons Twitter page. + + +Dhanjani has contacted both services to alert them to the vulnerability and even proposes a solution -- "make the user register and remember a PIN that must precede every SMS." Of course as he points out that comes at the expense of usability. + +Regrettably this sort of hack affects not just Twitter and Jott, but any service that uses caller ID as a means of authentication. Dhanjani claims that many cell phone companies, credit card companies, and even banks rely on caller ID information to authenticate users. + +[2]: http://www.fakemytext.com/ "Fake My Text" +[1]: http://www.oreillynet.com/onlamp/blog/2007/04/twitter_and_jott_vulnerable_to.html "Twitter and Jott Vulnerable to SMS and Caller ID Spoofing" +[3]: http://blog.wired.com/monkeybites/2007/03/8_cool_twitter_.html "Cool Twitter Tools"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/applesec.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/applesec.jpg Binary files differnew file mode 100644 index 0000000..4bf3157 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/applesec.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/applesecpatch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/applesecpatch.txt new file mode 100644 index 0000000..aadd5f6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/applesecpatch.txt @@ -0,0 +1,15 @@ +Apple has [released an extensive security update for Mac OS X][1] including patches for flaws discovered by the Month of Apple Bugs project. Security Update 2007-004 can be downloaded and installed via Software Update or direct from Apple downloads. + +Security Update 2007-004, which is the fourth such release this year, fixes flaws in the Installer and Help Viewer programs to prevent format string exploits, a vulnerability [discovered][3] during the Month of Apple Bugs project. + +Other fixes include improvements to the UFS file system validation to prevent an exploit involving malicious disk image files and improved error reporting in Libinfo to prevent malicious webpages executing arbitrary code. + +The update also includes a patch that changes the AirPortDriver module to prevent a local user from execute arbitrary code with elevated privileges. For the average OS X user this probably isn't a huge problem, but in corporate or other large IT infrastructures the flaw could be a serious vulnerability. + +Along with the Airport patch there are two fixes to prevent a user from bypassing the login and screen saver authentication dialogs. + +The update is recommended for all Mac OS X users and can be downloaded by selecting the Software Update preference pane in System Preferences. + +[1]: http://docs.info.apple.com/article.html?artnum=305391 "About Security Update 2007-004" +[2]: http://projects.info-pull.com/moab/ "Month of Apple Bugs" +[3]: http://projects.info-pull.com/moab/MOAB-30-01-2007.html "Multiple Apple Software Format String Vulnerabilities"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/dash.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/dash.jpg Binary files differnew file mode 100644 index 0000000..5d767df --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/dash.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/digg.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/digg.jpg Binary files differnew file mode 100644 index 0000000..fc3311e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/digg.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/diggapi.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/diggapi.txt new file mode 100644 index 0000000..eca3080 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/diggapi.txt @@ -0,0 +1,25 @@ +Nothing screams web 2.0 success like a good application programming interface (API) and Digg has just [announced a new API][1] that will allow enterprising developers to pull in Digg data and remix, mash and repurpose it on their own sites. + +Along with [the API][3], Digg has also announced a new [Flash application toolkit][4] and a contest to reward the best applications built with the new API and Flash toolkit. The top ten finalists in the contest will all receive prizes, but the grand prize winner will walk away with a Falcon Northwest gaming PC, the full catalog of EA PC games, and the Adobe CS3 Master Collection. + +Every time I get excited about an API some of my less nerdy Wired colleagues starting rolling their eyes. And while agree that relatively few users will ever use an API, those that do will build tools for those that don't. + +More than any other aspect of a site, the success of an API almost guarantees the success the site in the long run. And the opposite is equally true, which is one of the main reasons I see Facebook outlasting MySpace. + +From a company's perspective an API is way to gain free publicity, which is exactly why web 2.0 sites like Flickr and now Digg have embraced the API. Flickr may not be the biggest photo sharing site on the net, but it is one of the most visible because Flickr offers a great API which allows users to pull photos into their own webpages. + +And now users can develop similar tools to pull in data from Digg. + +Nearly all the data on Digg has been exposed in the API, including story categories, comments, user detail and more. The new Digg API accepts REST requests and returns responses in either XML, JSON, Javascript, or serialized PHP. + +There is even a [PEAR module][2] available for PHP developers. + +The main downside to Digg's API is that now landing a site on the front door of Digg will be even more valuable and could result in more attempts to game the system. + +Full Disclosure: Wired Digital owns both Wired News and Reddit, a Digg competitor. + +[1]: http://blog.digg.com/?p=72 "Digg API, Flash Application Toolkit, and Contest Announced!" +[2]: http://apidoc.digg.com/ToolkitsServicesDigg "PEAR: Digg" +[3]: http://apidoc.digg.com/ "Digg API" +[4]: http://apidoc.digg.com/Toolkits "Flash Development Kit" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/mailplane.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/mailplane.jpg Binary files differnew file mode 100644 index 0000000..a94d27b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/mailplane.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/mailplane.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/mailplane.txt new file mode 100644 index 0000000..450f55a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/mailplane.txt @@ -0,0 +1,25 @@ +The debate between web-based e-mail services and desktop clients came up again recently with the launch of Thunderbird 2.0. An article on Thunderbird earlier this week generated a fair bit of discussion about the pros and cons of both, but yesterday I stumbled across a curious hybrid application that might be the best of both worlds. + +[Mailplane][1] is a Mac OS X application that provides desktop and OS integration integration for your GMail experience. Mailplane is, in a nutshell, a dedicated browser for GMail, but before you dismiss it as *just* that consider a few things. + +Those that would argue that Mailplane has nothing on Mail should consider that when you move and file messages in Mail.app, those changes aren't reflected in your GMail account. Using Mailplane, you get the integration of Mail (iPhoto, Address Book, etc) and the filing and filtering power of GMail. + +Others might wonder why anyone would want to use GMail outside of the browser. I'll admit that's a pretty good question, but if you miss the iLife integration that comes with Apple's Mail.app, then Mailplane can bridge that gap. + +Some standout features of Mailplane include: + +* Drag-and-drop attachments +* Send images direct from iPhoto +* Store Passwords in Keychain +* Growl support +* OS X-style keyboard shortcuts + + +Now most of those features can be had in your browser, but they require tracking down extensions, only work in certain browsers and, so far as I know, there's no way to integrate GMail with the iLife suite. + +The one thing missing from Mailplane, which I should note is still a private beta, that would really give it the edge over even the most extension rich Firefox setup, is offline support. Obviously the developer is probably aware that offline support would be a killer feature, but so far there's no roadmap available. + +Right now Mailplane is in private beta, but you can join by [signing up][2] and waiting your turn in the invite queue. While the beta versions will be free, eventually Mailplane will be released as a shareware app with an as yet undetermined price tag. + +[1]: http://mailplaneapp.com/index.html "Mailplane" +[2]: http://mailplaneapp.com/beta/index.html "Sign up for Mailplane beta"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/mswidget.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/mswidget.jpg Binary files differnew file mode 100644 index 0000000..c2e826e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/mswidget.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/plane.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/plane.jpg Binary files differnew file mode 100644 index 0000000..98a059e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/plane.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumble.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumble.jpg Binary files differnew file mode 100644 index 0000000..a8a319d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumble.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumbletool.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumbletool.jpg Binary files differnew file mode 100644 index 0000000..739e4df --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumbletool.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumbleup.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumbleup.jpg Binary files differnew file mode 100644 index 0000000..b755590 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumbleup.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumbleupon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumbleupon.txt new file mode 100644 index 0000000..0dbfa93 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/stumbleupon.txt @@ -0,0 +1,22 @@ +Despite [rumors of an acquisition by Ebay][2] and even as [Google starts muscling in on its territory][3], StumbleUpon continues to deliver impressive new features. Today the social bookmarking and random browsing leader released a new feature dubbed [StumbleThru][1], which allows for site specific "stumbling," letting users to randomly browse Flickr, MySpace, YouTube and other popular sites. + +Given yesterday's announcement from Google, who is now offering similar accidental search capabilities, StumbleUpon is likely looking to steal a bit of Google's thunder. And StumbleThru will probably do just that. The new domain-specific options give users another reason to stick with the original stumbling service. + +So far StumbleUpon has not made any major announcement regarding the new service, however, the release notes for the latest version of the StumbleUpon toolbar tout the new features. + +To get started with StumbleThru you'll need to have the StumbleUpon toolbar installed and login to your account. + +From there head to the StumbleThru page and select a domain to begin stumbling in. Clicking any of the featured domains will add the site icon next to the "Stumble!" button on the toolbar. + +In my brief testing the new features worked without any glitches and I expect this will be popular with users, especially the Flickr and Wikipedia options since both of those sites lend themselves to random, accidental discoveries. + +In fact, browsing through Flickr via StumbleUpon is better than most of the navigation tools that Flickr offers. + + +[via [Mashable][4]] + +[1]: http://www.stumbleupon.com/stumblethru.php "StumbleThru" +[2]: http://blog.wired.com/business/2007/04/stumbleupon_mee.html "StumbleUpon Meets Its Maker?" +[3]: http://blog.wired.com/monkeybites/2007/04/google_introduc.html "Google Introduces StumbleUpon-Style Search Options" +[4]: http://mashable.com/2007/04/19/stumblethru/ "Breaking: StumbleUpon Launches StumbleThru - Stumble on Flickr, MySpace, YouTube" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/sudan.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/sudan.jpg Binary files differnew file mode 100644 index 0000000..e858ecc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/sudan.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/sudan.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/sudan.txt new file mode 100644 index 0000000..8d42ee7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/sudan.txt @@ -0,0 +1,13 @@ +Earlier this week I posted a short piece asking for readers to help investigate the mysterious [blocking of Google Earth downloads within Sudan][2]. The rumor was that the Sudanese government might have been blocking downloads, but as it turns out that wasn't the case. + +It turns out Google was/is blocking the downloads, but they were only doing so in compliance with United States export laws. One of the unintended consequences of the U.S. sanctions on Sudan is that it is illegal to download Google Earth within Sudan. + +While Google is doing the right thing in accordance with the law, it is of course highly ironic that a project designed to help raise awareness of the genocide in Sudan can't be downloaded within its borders. + +Fortunately software like [Tor][1] exists for exactly these situations. Using Tor's proxy servers, aide workers in Sudan and the Sudanese themselves can download Google Earth by tricking the Google Earth server with fake proxies. Is it legal? No. But, in the spirit of Henry David Thoreau, I think it's the right thing to do. + +For some more background and an in depth look at the specificities of the legal codes involved, be sure to check out the [coverage on Ogle Earth][3]. + +[1]: http://tor.eff.org/ "Tor" +[2]: http://blog.wired.com/monkeybites/2007/04/rumor_sudan_blo.html "Rumor: Sudan Blocking Downloads Of Google Earth" +[3]: http://www.ogleearth.com/2007/04/oh_the_irony_go.html "Oh the irony: Google Earth ban in Sudan is due to US export restrictions"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/upcoming.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/upcoming.jpg Binary files differnew file mode 100644 index 0000000..f952a10 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/upcoming.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/upcoming.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/upcoming.txt new file mode 100644 index 0000000..2331533 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Fri/upcoming.txt @@ -0,0 +1,18 @@ +Yahoo seems to have learned a few things from its [bungled transition of Flickr][4] and has applied those lessons to Upcoming.org, namely, if you [bride users with free t-shirts][3] they don't seem to mind changes. + +Upcoming, the popular calendar and scheduling service, [now lives as a subdomain of the Yahoo empire][1] and users were recently forced to transition from their old Upcoming IDs to Yahoo IDs. However to ease the pain of the changes, Upcoming has undergone and mild redesign and is giving away t-shirts to placate old school members. + +As Pete Cashmore of Mashable [quipped][2] "yes, you lose your identity, but you'll be fully clothed." + +In an additional move that was suggested, but never implemented in the Flickr transition, old school Upcoming members will get to display badges touting the fact that they were hip enough to have joined prior to when Upcoming was swallowed by the behemoth. + +The amazing part is that Upcoming users seem to buying all of this, proving once again that for the hipster crowd, free t-shirts will always trump vague suspicions about selling out to "the man." + +And there is perhaps no greater selling out than transitioning from a .org domain to the Yahoo domain. + +On the brighter side, the redesigned Upcoming has few new features, including a listing of popular local events, a "community picks" section and -- surprise -- tighter integration with other Yahoo properties like Flickr and Yahoo Local. + +[1]: http://upcoming.yahoo.com/news/archives/2007/04/19/the_new_/ "The New Upcoming" +[2]: http://mashable.com/2007/04/19/upcoming/ "Upcoming.org Absorbed By Faceless Corporation, Free T-Shirts for All" +[3]: http://upcoming.yahoo.com/getit/tees/ "Upcoming t-shirt offer" +[4]: http://blog.wired.com/monkeybites/2007/01/as_i_mentioned_.html "Flickr Imposes New Limits"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Mon/adobemediaplayer.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Mon/adobemediaplayer.txt new file mode 100644 index 0000000..1f96164 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Mon/adobemediaplayer.txt @@ -0,0 +1,22 @@ +<img alt="Flashicon" title="Flashicon" src="http://blog.wired.com/photos/uncategorized/flashicon.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The National Association of Broadcasters Show in Las Vegas is in full swing this week and Adobe has kicked things off by [announcing a new media player][2] for Windows and Mac desktops. The Adobe Media Player is a standalone desktop version of Adobe's ubiquitous Flash Player browser plug-in. + +Adobe Media Player is built on the recently released [Apollo platform][1] and is expected to launch in a beta test phase later this year with the final version (which will also support Linux) arriving by the end of 2007. + +With Adobe's Flash Player 8 sitting at roughly 94 percent market penetration and the latest version, Flash Player 9, climbing about 20 percent a month, there's no doubt that Flash video is a dominate force on the web. Adobe is hoping to translate its browser success into desktop success. + +Adobe Media Player will be going up against Windows Media Player and incorporates similar DRM-based content locks as Microsoft's media player. Adobe's press release mentions "content publishers" no less than five times in eight paragraphs and the company is clearly trying to position the DRM "features" as a positive move. + +Adobe Media Player does boast some impressive built-in features like RSS subscriptions, on and offline playback, on-demand streaming, live streaming, progressive download, and protected download-and-play. But it's that last one that might leave consumers flinching. + +The Adobe Media Player has two elements that will appeal to content producers, but might leave consumers with some doubts. The first is a mechanism that will allow advertising to be embedded in downloaded clips in such a way that it can't be separated from the content. + +The second element is a "security" model (DRM) that will tie downloaded content to specific machines or users. + +While both options are solely at the discretion of the content producer, a lack of DRM features in the Flash browser plugin is arguably one of the reasons for its success and by adding DRM to the desktop client Adobe may well be shooting itself in the foot. + +On the brighter side Adobe has also announced improved video fidelity for the Flash video format, though details are few at the moment. + +With Microsoft announcing Silverlight (a Flash competitor -- more on that in a minute) nearly simultaneously, Adobe and Microsoft are set to go head to head over on/offline video. + +[1]: http://blog.wired.com/monkeybites/2007/03/adobe_launches_.html "Adobe Launches Apollo" +[2]: http://www.adobe.com/aboutadobe/pressroom/pressreleases/200704/041607AMP.html "Adobe Media Player"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Mon/silverlight.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Mon/silverlight.jpg Binary files differnew file mode 100644 index 0000000..d7d6b3b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Mon/silverlight.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Mon/silverlight.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Mon/silverlight.txt new file mode 100644 index 0000000..64fcee9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Mon/silverlight.txt @@ -0,0 +1,23 @@ +Not to be outdone by Adobe's [announcement of a desktop media player][2], Microsoft has unveiled its long rumored Flash competitor, [Silverlight][1]. Silverlight is new browser plug-in (formerly known by the awkward name, Windows Presentation Foundation/Everywhere) and will be release as a public beta at the upcoming Mix07 conference later this month. + +Silverlight is a media player that can run web applications on both Windows and the Mac in IE, Firefox and Safari (Opera users are apparently out of luck). + +As with Adobe's Flash, Silverlight will also have development tools for designers and developers to create embedded content. + +Though Silverlight will reportedly be a paltry 2MB download, with a majority of users already able to access web media, like YouTube videos, via Flash, Microsoft may have an uphill battle ahead of them. + +Microsoft claims Silverlight is a better way to embed the Windows Media Video format in the browser. + +Silverlight will also feature tight integration with Microsoft's .NET platform enabling developers to apply their existing .NET knowledge to web video. + +The other advantage Microsoft is touting for Silverlight over Adobe's Flash player is the use of vector graphics which allows for better video resolution during full screen playback. + +With Adobe moving onto the desktop and Microsoft taking Windows Media into the browser there's no doubt that a showdown is in the works. The success of either will likely depend on which platform can transition more users in the respective directions. + +Given the failure of past browser plug-ins and the existing dominance of Flash video Adobe seems to have the easier task, but it's still to early to say who will come out on top in this one. + +We'll be sure to give the lowdown on Silverlight as soon as the beta is available. + + +[1]: http://www.microsoft.com/silverlight/default_01.aspx "Microsoft Unveils Silverlight" +[2]: http://blog.wired.com/monkeybites/2007/04/adobe_unveils_d.html "Adobe Unveils Desktop Media Player"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/Froogle.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/Froogle.txt new file mode 100644 index 0000000..d183875 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/Froogle.txt @@ -0,0 +1,10 @@ +In addition to the [new search features][1], Google also announcement this morning, Froogle has been [renamed Google Product Search][2] -- presumably because puns just don't have the longevity they once enjoyed. Google says the old name "caused confusion for some because it doesn't clearly describe what the product does." + +The new Google Product Search also sports a slightly refined interface and the Google homepage link now read "products." + +The Froogle renaming also comes shortly after Google announced it will be expanding its Paypal competitor, Google Checkout. The new Products search results page now has a link at the top of each page to limit search results to retailers who offer Google Checkout payment services. + +Froogle was never quite as successful as other Google properties, and presumably Google is hoping that the rebranding will change that. However, we at Compiler will also refer to it exclusively as The Google Service Former Known As Froogle. + +[1]: http://blog.wired.com/monkeybites/2007/04/google_introduc.html "Google Introduces StumbleUpon-Style Search Options" +[2]: http://googleblog.blogspot.com/2007/04/back-to-basics.html "Back to basics"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/googleapi.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/googleapi.txt new file mode 100644 index 0000000..9bb8169 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/googleapi.txt @@ -0,0 +1,28 @@ +Earlier this week Google [rolled out a new API][2] designed to let Javascript developers mash up RSS feeds using simple Ajax code. + +As with other Google APIs, you'll need to [sign up][3] for a domain-based API key and from there you can cut and paste code from some of the sample applications (see iTunes feed after the jump). + +Alternately, if your Javascript-fu is up to it, you can start mashing your own collection of feeds. + +Google's Feed API is handy because it lets developers work around Javascript's same-origin policy, which is a security mechanism designed to prevent scripts loaded from one domain from getting or setting properties of a document from a different domain. + +It's possible to manually get around the same-origin issues, but it involves somewhat complex server-side proxies and isn't practical for the casual blogger who just wants to drop a customized RSS widget into their page. + +The Google Feed API allows you to do exactly that by using FeedFetcher, the same feed caching and sharing mechanism found in Google Reader. + +However because you're essentially pulling data from Google Reader, that means that the feed may not be completely "fresh." FeedFetcher retrieves feeds from most sites less than once every hour. + +Some more technical details: + +* Data can be passed using either JSON or XML + +* The AJAX Feed API only provides access to publicly accessible feeds + +* Just about every RSS format is supported, including Atom feeds. + +If you've used other Google Ajax APIs you'll recognize some familiar patterns and it should be too difficult to get up to speed. Newcomers and others looking to take the plunge, should check out the reasonably [thorough documentation][1]. + +[1]: http://code.google.com/apis/ajaxfeeds/documentation/ "Google AJAX Feed API Developer Guide" +[2]: http://googleajaxsearchapi.blogspot.com/2007/04/announcing-google-ajax-feed-api.html " Announcing the Google AJAX Feed API" +[3]: http://code.google.com/apis/ajaxfeeds/signup.html "Sign up for the Google AJAX Feed API" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/googlebone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/googlebone.jpg Binary files differnew file mode 100644 index 0000000..a4c5994 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/googlebone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/googlestumble.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/googlestumble.txt new file mode 100644 index 0000000..d13bdbf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/googlestumble.txt @@ -0,0 +1,20 @@ +Users of Google's toolbar and/or personalized search features have [a new way to browse the web][2]. The new features dubbed, uh, well, certainly not StumbleUpon since that's taken, are available to anyone using the Search History tools available through the Google Toolbar. + +The Google Blog post on the new features says "today we're releasing two features that reduce the need for you to type in specific queries to get the information you want." Or to paraphrase [GigaOm][1] and stick the words in Google's mouth: today we're pissed we missed out on acquiring Stumbleupon so we're copping some of its features. + +The chief difference between the two services is that where StumbleUpon relies on a user community of submitted sites, Google's new features suggest sites based on your preferences and search history. + +A difference somewhat akin to the difference between cuddling up with a new puppy versus your shiny new Sony [AIBO][4]. + +In truth though I don't think this is a StumbleUpon competitor, or at least it isn't a very good one. Part of the fun of StumbleUpon is that it can be entirely random and it can lead you to pages outside your normal web surfing bubble. + +Google's offering on the other hand is more what I always thought the "I'm feeling lucky" option should have been. In other words Google knows your search history, so, based on that, it can pull up some sites that are very similar to what you might be looking for, however, it's anything but random. + +The most interesting part of the new search tool is that Google will tell you why it chose the recommendations it did, and even offers more links to things you've searched for previously. + +Almost like [radical transparency][3] from a search engine. + +[1]: http://gigaom.com/2007/04/18/google-releases-stumbleupon-competitor/ "Google releases StumbleUpon competitor" +[2]: http://googleblog.blogspot.com/2007/04/searching-without-query.html "Searching without a query" +[3]: http://www.longtail.com/the_long_tail/2006/12/what_would_radi_1.html "What would radical transparency mean for Wired?" +[4]: http://en.wikipedia.org/wiki/AIBO "Wikipedia: AIBO"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/gproduct.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/gproduct.jpg Binary files differnew file mode 100644 index 0000000..06de1c3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/gproduct.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/imslp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/imslp.jpg Binary files differnew file mode 100644 index 0000000..da34847 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/imslp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/musicsite.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/musicsite.txt new file mode 100644 index 0000000..e6b8909 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/musicsite.txt @@ -0,0 +1,18 @@ +Last month Listening Post reported on the [demise of the Online Guitar Archive][1] a sheet music/tablature repository for musicians. And while the [International Music Score Library Project][2] (IMSLP) won't help rock guitars learn the nuances of Frank Zappa's solos, it does boast an impressive collection of classical sheet music, including public domain scores as well as scores donated by composers willing give away their music charts. + +Although I just found it today, the IMSLP has actually been around for over a year and in that time the site has managed to build up an impressive archive of PDF-format sheet music. + +The IMSLP website appears to be running mediawiki software, or in any case it's set up like a wiki which means if you've got some public domain sheet music, or are willing to give away you're own compositions, you can scan and upload them to the site. + +Be sure to check the [current events][3] page before uploading anything, that way you'll avoid duplicating the efforts of other members and you can of course add your own listing of scanning projects to let others know your plans. + +Okay so the IMSLP doesn't really take the sting out of losing the Online Guitar Archive, but at least it shows that there some publishers and artists out there that love music more than they love profit and that's always encouraging. + +And for all the budding young Django Reinhardts, there are still some guitar tab sites located outside the U.S. that offer plenty of downloads, but you'll have to find them on your own. + +If anyone knows of something similar to the International Music Score Library Project, but for other genres (say Jazz) let us know. + + +[1]: http://blog.wired.com/music/2007/03/music_publisher.html "Music Publishers Crack Down on Guitar Tabs" +[2]: http://imslp.org/wiki/Main_Page "International Music Score Library Project (IMSLP)" +[3]: http://imslp.org/wiki/Current_events "International Music Score Library Project: Current Events"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans-icon.jpg Binary files differnew file mode 100644 index 0000000..368df4d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans1.jpg Binary files differnew file mode 100644 index 0000000..dfd62c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans2.jpg Binary files differnew file mode 100644 index 0000000..d4b4308 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans3.jpg Binary files differnew file mode 100644 index 0000000..0b7735b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/trans3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/transmission.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/transmission.txt new file mode 100644 index 0000000..69e244a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/transmission.txt @@ -0,0 +1,19 @@ +After almost a year of inactivity, the developers of Transmission, an open source, lightweight bittorrent client for Mac and Linux have [released a new version][1]. The new release features bug fixes for all the known issues with the previous version as well as some nice new features. + +For Mac users the new version, Transmission .70 requires OS X 10.4 or greater, though previous versions of Transmission are still available for those not using the latest version of OS X. + +I've never had any problems with the previous version of Transmission so I can't comment on the bug fixes, but some of the additional features are quite nice. + +I especially like the ability to limit bandwidth by torrent and, while I don't know what I'd use it for, there's also the ability to schedule bandwidth limits -- could be handy for people whose bandwidth is being throttled by Comcast. + +There's also a new minimized list view which shows just the progress bar for those that have dozens of torrent files running at once. + +The torrent inspector window features a number of new stats and info including a list of connected IPs and percentage stats by peer. + +The new icon is nice and when switching apps with Cmd+Tab Transmission will show your upload and download speeds in the icon (see screenshot below). + +While the majority of the new features, particularly the interface changes and additions are limited to OS X version, Transmission can also be compiled on Linux, heck there's even a version for BeOS. + +For a complete list of changes and to download the new version head over to the [Transmission site][1]. + +[1]: http://transmission.m0k.org/ "Transmission"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/ubuntu.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/ubuntu.txt new file mode 100644 index 0000000..cfb8ae3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/ubuntu.txt @@ -0,0 +1,24 @@ +With a turnaround time that must make Cupertino and Redmond green with envy, Canonical has officially [launched the new version][6] of its popular [Ubuntu Linux][5]. + +Seems like just the other day we told you about the last version of Ubuntu, but amazingly enough yet another new version has arrived. Feisty Fawn, as the latest Ubuntu is know, is now out of beta and [available for download][2]. + +The main Ubuntu page still hasn't been updated for the release, but if you head directly to the download page you'll find the various disc images are ready to download. + +Along with Ubuntu there's typically a release of Kubuntu and and Edubuntu, which use the same code base but, in case of Kubuntu use KDE and Edubuntu, focus on education. Downloads for both [Kubuntu][1] and [Edubuntu][3] can be found on their respective download pages. + +Feisty Fawn brings a number of notable enhancements to the Linux desktop including a new Windows desktop migration tool. When installing Ubuntu next to Windows in a dual boot, the migration tool can detect that and import bookmarks, files and more, making it easier to migrate from Windows. + +The latest version of Ubuntu also features easy-to-install multimedia codecs. To get around legal restrictions in various countries the Feisty team has implemented some guided install wizards for those wanting to add codecs. + +The other noteworthy feature of the new release is a revamped wireless tool by the name of Avahi. When joining a wireless network, Avahi automatically discovers publicly available machines on that network making it easy to access printers, music and more. + +If you're an Ubuntu user, head over and grab an image of Feisty Fawn and for those who've been thinking about switching to Linux, there's no time like the present and Ubuntu remains a great easy-to-use distro for those looking to dip a toe in the Linux waters. + +For more information on future development, including a roadmap for the next release of Ubuntu, be sure to [check out our earlier coverage][4]. + +[1]: http://releases.ubuntu.com/kubuntu/7.04/ "Kubuntu 7.04" +[2]: http://releases.ubuntu.com/7.04/ "Ubuntu 7.04" +[3]: http://releases.ubuntu.com/edubuntu/feisty/ "Edubuntu 7.04" +[4]: http://blog.wired.com/monkeybites/2007/04/ubuntu_unveils_.html "Ubuntu Unveils Roadmap For Version 7.10" +[5]: http://www.ubuntu.com/ "Ubuntu homepage" +[6]: http://www.ubuntu.com/news/ubuntudesktop704 "Canonical Launches Latest Ubuntu Desktop 7.04"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/ubuntutorrent.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/ubuntutorrent.txt new file mode 100644 index 0000000..7f54833 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Thu/ubuntutorrent.txt @@ -0,0 +1,9 @@ +A Compiler Reader by the name of Azor informs us that the Ubuntu server is currently almost crippled. When I checked a few minutes ago the front page was just a list of mirrors. While that's a great testament to the popularity of Ubuntu and user's eagerness to upgrade to today's release, it makes downloading something of a pain. + +But don't worry, we have alternatives. Using The Google earlier today, I stumbled across the [Ubuntu torrent files][1]. In addition to today's release, there's torrents for just about every version of Ubuntu, Kubuntu and Edubuntu. So, in the interest of giving the Ubuntu site a rest, why not grab a torrent and use your favorite torrent client to download something wholesome and legal for once? + +All these files have an info hash included so you can verify that what you downloaded is actually Ubuntu. And be sure to scroll down to the new version (7.04). There's also links to torrents for the server version as well as Xubuntu. + +The torrent page loads in almost no time at all and my Kubuntu download currently has around 50 peers and is currently downloading at 65 KB/s -- much better than the web option. + +[1]: http://torrent.ubuntu.com:6969/ "Ubuntu torrents"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/Pandora.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/Pandora.txt new file mode 100644 index 0000000..1824037 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/Pandora.txt @@ -0,0 +1,31 @@ +The U.S. Copyright Royalty Board has upheld a rate increase for internet broadcasters, which many webcasters, including the popular [Pandora music service][2], will force them to close up shop. + +In yesterday's hearing the CRB reaffirmed last month's decision to force webcasters to pay an annual fee plus 12 percent of their profits to SoundExchange, the industry's royalty collection agency. + +The new rates are four times higher than what satellite radio pays and traditional broadcast radio doesn't pay the fees at all. + +National Public Radio, which led the appeal on behalf of smaller broadcasters, has called the CRB's decision an "abuse of discretion." + +For more coverage be sure to check out Eliot's [write up on Listening Post][4]. + +With the CRB avenue essentially exhausted, it would seem that the death of Pandora and others in imminent. But in light of the CRB's decision, a number of internet broadcasters have banded together and are trying to petition congress to step in. + +In an email to subscribers over the weekend Pandora founder Tim Westergren writes of the Save Internet Radio campaign: + +>Hi, it's Tim from Pandora, + +>I'm writing today to ask for your help. The survival of Pandora and all of Internet radio is in jeopardy because of a recent decision by the Copyright Royalty Board in Washington, DC to almost triple the licensing fees for Internet radio sites like Pandora. + +>In response to these new and unfair fees, we have formed the SaveNetRadio Coalition, a group that includes listeners, artists, labels and webcasters. I hope that you will consider joining us. + +>Please sign our petition urging your Congressional representative to act to save Internet radio: [http://capwiz.com/saveinternetradio/issues/alert/?alertid=9631541][3] + + +>Understand that we are fully supportive of paying royalties to the artists whose music we play, and have done so since our inception. As a former touring musician myself, I'm no stranger to the challenges facing working musicians. The issue we have with the recent ruling is that it puts the cost of streaming far out of the range of ANY webcaster's business potential. + +If you're a fan of internet radio and think that the DRB's decision is unfair for web broadcasters, head over to the Save Internet Radio site and [sign the petition][3]. To contact your representatives directly, you can look up their [contact info on the site][1]. + +[1]: http://capwiz.com/saveinternetradio/dbq/officials/ "Contact Your Representatives" +[2]: http://www.pandora.com/ "Pandora" +[3]: http://capwiz.com/saveinternetradio/issues/alert/?alertid=9631541 "Sign Save internet Radio Petition" +[4]: http://blog.wired.com/music/2007/04/copyright_royal.html "Copyright Royalty Board Upholds 'Disastrous' Royalty Rates"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/Windowsmedia.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/Windowsmedia.jpg Binary files differnew file mode 100644 index 0000000..82b3d22 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/Windowsmedia.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/bash.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/bash.txt new file mode 100644 index 0000000..8d418d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/bash.txt @@ -0,0 +1,19 @@ +I've long been confused as to whether I should put environment variable in my ~/.bash_profile or ~/.bashrc file. As it turns out I'm not the only one who can't keep these straight. Luckily for you and I, a blogger by the name of Josh Staiger is not so lazy he can't be bothered to type man bash. + +Staiger's post is almost two years old and I don't remember how I stumbled across it, but as with most things *nix there haven't been any major changes lately. + +Here's Staiger's explanation of the difference between the two files: + +>According to the bash man page, .bash_profile is executed for login shells, while .bashrc is executed for interactive non-login shells. + +>What I take this to mean is that when I login when using a console, either physically at the machine or using ssh, .bash_profile is executed. + +>However, if I launch a terminal within a windowing system such as KDE, launch the Emacs *shell* mode, or execute /bin/bash from within another terminal then .bashrc is executed. + +If keeping the two straight is just too much effort, Staiger points out that most people tend edit the files so one calls the other. That way you can keep all your variables in one place without having to keep track of which file is used by which shell type. To enact this sort of trickery you'll need to open .bash_profile and uncomment the following lines: + + if [ -f ~/.bashrc ]; then + source ~/.bashrc + fi + +Those lines may not be there on some flavors of *nix, for instance they we're there on my OS X machine, but adding them in seems to work. Let me know if you have problems.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/ferrell.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/ferrell.txt new file mode 100644 index 0000000..702bc31 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/ferrell.txt @@ -0,0 +1,16 @@ +Comedian Will Ferrell is trying his hand at the internet. Will Ferrell and Adam McKay's production company Gary Sanchez Productions has launched a comedy video site named [FunnyOrDie.com][1]. + +FunnyOrDie is more or less like HotOrNot for comedy clips, after watching a clip users can either vote for or against it. Popular clips move up in the rankings and the rest go off to "die." + +Some the clips features big names in comedy including [this hilarious clip of Will Ferrell][4] dealing with an angry landlord, and other pieces are user generated. Unfortunately the site doesn't seem to understand the notion of embeddable clips. + +Ferrell and McKay are using their alter ego, [Gary Sanchez][2], as a mouth piece for the site. Sanchez says that videos starring Hollywood heavyweights will appear regularly in the featured section of FunnyOrDie, but "the meat and cabbage of the site will be the real peoples." + +If nothing else FunnyOrDie's new investment from Sequoia Capital -- the same venture capital firm behind YouTube -- will hopefully lead to more Will Ferrell content making its way to the web and that's never a bad thing. + +via [The Hollywood Reporter][3] + +[1]: http://sjl.funnyordie.com/v1/index.php "Funny Or Die" +[2]: http://defamer.com/hollywood/paramount/the-mystery-of-gary-sanchez-183754.php "The Mystery Of Gary Sanchez" +[3]: http://www.hollywoodreporter.com/hr/content_display/television/news/e3i2108d7f83a3df2b4f49fe6fe66ea68d7 "" +[4]: http://sjl.funnyordie.com/v1/view_video.php?viewkey=3efbc24c7d2583be6925 "The Landlord"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/firefoxplugin.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/firefoxplugin.txt new file mode 100644 index 0000000..3ca2fcf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/firefoxplugin.txt @@ -0,0 +1,21 @@ +Microsoft has released a new [Windows Media plugin for Firefox][1] which allows you to use Windows Media Player inside the Firefox browser. The new plugin supports Windows XP SP2 and Vista including the 64 bit versions of both OSes. + +Port25, a Microsoft website devoted to interoperability with Linux, is hosting the download. If you visit the [plug-in site][2] at Mozilla, you will be automatically redirected to Port25 to [download and install the plug-in][1]. (screenshots after the jump) + +Some Firefox users have complained that Microsoft is not using the XPI format for extensions, but in fact the .xpi extensions are for add-ons not plugins. As with the Flash plugin for Firefox, the Windows Media Plugin in a .exe file. + +The new plugin addresses the known issues that plagued the previous version and adds Vista support. + +There is however one known issue with the new plugin as noted on the Port25 site: + +>There is a known issue if you are using Firefox version 2.0.0.3 on Windows Vista with the installer failing with error code -203. To work around this simply restart Firefox (you will get a notification that Windows Vista will be changing the Firefox compatibility settings) and then install again - the second time should succeed. + +I did not experience this issue in my testing, but if you do let us know is the workaround helps. + +Also note that the plugin is compatible with the 64 bit versions of XP and Vista, but not with the 64 bit version of Firefox. + +Regrettably there is still no plugin for Windows Media 11 on Mac or Linux. + +[1]: http://port25.technet.com/pages/windows-media-player-firefox-plugin-download.aspx "download Windows Media Player for Firefox" +[2]: https://addons.mozilla.org/en-US/firefox/browse/type:7 "Mozilla plugin site" +[3]: http://port25.technet.com/default.aspx "Port25"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/funny.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/funny.jpg Binary files differnew file mode 100644 index 0000000..049a5ab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/funny.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/funnyordie.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/funnyordie.jpg Binary files differnew file mode 100644 index 0000000..9be6d70 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/funnyordie.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/internetradio.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/internetradio.jpg Binary files differnew file mode 100644 index 0000000..f2880a1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/internetradio.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/outlook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/outlook.jpg Binary files differnew file mode 100644 index 0000000..d6e37e0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/outlook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/outlook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/outlook.txt new file mode 100644 index 0000000..dbe5027 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/outlook.txt @@ -0,0 +1,20 @@ +Microsoft has finally released an [update][1] which addresses performance issues with the company's popular email client, Outlook 2007. However the patch is primarily intended for users working with Exchange Server, unfortunately there doesn't seem to be a more general fix. + +Many Outlook users who upgraded to 2007 have complained about significant drops in performance. An earlier support center document [addresses issues][2] with Outlook 2007 responding slowly when composing messages, moving messages to folders, deleting items and global searches. + +If you're experiencing any of these issues Microsoft recommends you update Outlook and either delete some mail (?!), split your archives into smaller .pst files, use a filter to the items that you synchronize from Exchange to your .ost file and use online mode profile instead of a cached mode profile. + +But even with the update and following the above tips, Microsoft says the issue may not disappear entirely. + +The problems seem to stem from changes to Outlook 2007 which added new features like an RSS news reader and live search message indexing. Unfortunately the new features seem to have come at the cost of performance, at least in some cases. + +Jessica Arnold, Program Manager for Outlook [tells Computer World][3] that the performance issues stem from the new features. For instance, because RSS feeds are now downloaded and stored in local databases as .pst files, that data, along with email and calendar data, can quickly swell to several gigabytes in size. + +So basically, as long as you don't have much mail, don't read many RSS feeds and rarely use your calendar, you should not have any performance problems using Outlook 2007. + +Those with thousands of messages, RSS feeds and busy schedules might want to hold off on upgrading to Outlook 2007. If it's too late for that, perhaps try the patch and let us know if it helps. I'd also perhaps recommend at least investigating web-based solutions like GMail. + + +[1]: http://www.microsoft.com/downloads/details.aspx?familyid=C262BCFD-1E09-49B6-9003-C4C47539DF66&displaylang=en "Update for Outlook 2007 (KB933493)" +[2]: http://support.microsoft.com/?kbid=932086 "You may experience performance problems when you are working with items in a large .pst file or in a large .ost file in Outlook 2007" +[3]: http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9016638&source=rss_news10 "Microsoft addresses speed issues in Outlook update"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tell1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tell1.jpg Binary files differnew file mode 100644 index 0000000..6a08241 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tell1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tell2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tell2.jpg Binary files differnew file mode 100644 index 0000000..cbbcf7c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tell2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tell3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tell3.jpg Binary files differnew file mode 100644 index 0000000..2b21f72 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tell3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tellme.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tellme.jpg Binary files differnew file mode 100644 index 0000000..aeeba0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tellme.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tellme.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tellme.txt new file mode 100644 index 0000000..af1c7df --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/tellme.txt @@ -0,0 +1,20 @@ +If the telecom giants aren't already, the explosion of growth in free 411 services should have them lobbying congress for protective legislation in the near future. Earlier today I ran across yet another free 411 service, [Tellme][2], that joins the growing ranks of free 411 options like those from [Google][4] and [Free411][1]. + +Tellme is a little different than the other two since in addition to traditional dialing services and text queries, Tellme also offers a downloadable app for your mobile device. + +To use Tellme voice, simply call 1.800.555.TELL and to text for info send a message to 83556. + +If you'd like to use the new Tellme mobile application you'll need to be with one of the two supported service providers, AT&T or Sprint. You'll also need to make sure your phone is supported, though most reasonably new models are. + +Tellme offers text message replies, links to maps and is of course free. However, usage charges from your provider will apply and in case of the web application these could be hefty depending on your plan. + +[via [Techcrunch][3]] + +Screenshots from the demo video on the Tellme site: + + + +[1]: http://blog.wired.com/monkeybites/2006/10/make_free_411_c.html "Make Free 411 Calls" +[2]: http://www.tellme.com/ "Tellme" +[3]: http://www.techcrunch.com/2007/04/16/tellme-launches-free-411-business-search-service/ "Tellme Launches Free 411 Business Search Service" +[4]: http://labs.google.com/goog411/index.html "Google Voice Local search"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/term.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/term.jpg Binary files differnew file mode 100644 index 0000000..5a45fe4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/term.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/wmp2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/wmp2.jpg Binary files differnew file mode 100644 index 0000000..de2e4e1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/wmp2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/wmp3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/wmp3.jpg Binary files differnew file mode 100644 index 0000000..ec25979 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/wmp3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/zombie.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/zombie.jpg Binary files differnew file mode 100644 index 0000000..8138b7b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/zombie.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/zombies.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/zombies.txt new file mode 100644 index 0000000..2602e0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Tue/zombies.txt @@ -0,0 +1,23 @@ +I'll confess I was skeptical of Twitter, in fact I don't even have an account, why would people want to know the minutia of my life? But all that was because I failed to see the storytelling potential of the medium. Now that I've discovered the Twitter [zombieattack feed][1], I've come full circle: Twitter rocks. + +Zombie Attack is Twitter stream in which someone is documenting life on the run in a world taken over by zombies. + +Here's a few snips from the stream: + +>The trail lead to a cellar, in it was a family of three all dead, near them lays a stack of a newspapers, it seems to be in Japanese..... + +>Woke up this morning, and my infected arm has spread expontentially. I don't think I can hide this from Matt much longer. + +>They say to keep the wound clean, and keep drinking liquor so it wont spread. They are so good to us, i think we might have found a new home + +>My arm has kept me up so i went outside to look at the sky, it is full of stars, is this a sign that things are going to get better? + + +As of posting this the feed has 830 friends, which makes me wonder if the book and movie deals will start rolling in for clever Twitter users... Either way it beats the heck out of whatever my friends are doing in their boring zombie-free lives. + +via [Digg][2] +[[photo credit][3]] + +[1]: http://twitter.com/zombieattack "Zombie Attack" +[2]: http://digg.com/tech_news/Zombie_Attack_on_Twitter "Digg: Zombie Attack" +[3]: http://www.flickr.com/photos/tyreseus/219592860/ "Flickr: Zombie Mob"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/bgmail1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/bgmail1.jpg Binary files differnew file mode 100644 index 0000000..cd01ed6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/bgmail1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/bgmail2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/bgmail2.jpg Binary files differnew file mode 100644 index 0000000..45487c0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/bgmail2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/bgmail3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/bgmail3.jpg Binary files differnew file mode 100644 index 0000000..444a02e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/bgmail3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/darfur.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/darfur.txt new file mode 100644 index 0000000..57ed462 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/darfur.txt @@ -0,0 +1,19 @@ +Last week I wrote about the Google and Holocaust Museum [partnering on the Darfur project][3], a Google Earth add-on/layer about the genocide in Sudan. Since then I've been working on a longer story for Wired News. + +In the course of researching the story I've come across reports that the Sudanese government may be blocking access to Google Earth from within the country. I'm interested in seeing if any Compiler readers can help me verify these reports. + +The Google Earth team tells me they have been contacted about the issue, but couldn't give any details beyond that. My suspicion is that my contacts in Darfur are trying to download the Pro version of Google Earth rather than the regular free version, which might cause problems. + +The specific error message they received reportedly read: + +>This product is not available in your country. Thanks for your interest, but the product that you're trying to download is not available in your country. (c)2006 Google + +It certainly wouldn't surprise me if Sudan blocked Google Earth since the government continues to deny the atrocities despite high resolution photography freely available to anyone. But to see the error page above it seems like it would require Google to be involved in the blocking of the download and my sources at Google have assured me that they are not. + +If there are any compiler readers in Sudan, particularly the Darfur region, or if anyone knows someone in that area please try to verify this for Wired. Is this direct link blocked: [http://dl.google.com/earth/client/branded/GoogleEarthWin_EARV.exe][1]. Or for mac: [http://dl.google.com/earth/client/current/GoogleEarthMac.dmg][2]? + +I'll be update this post when I have more information. + +[1]: http://dl.google.com/earth/client/branded/GoogleEarthWin_EARV.exe "Google Earth PC" +[2]: http://dl.google.com/earth/client/current/GoogleEarthMac.dmg "Google Earth Mac" +[3]: http://blog.wired.com/monkeybites/2007/04/using_google_ea.html "Using Google Earth To Stop Genocide"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gReader.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gReader.jpg Binary files differnew file mode 100644 index 0000000..cb3cadd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gReader.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gmail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gmail.jpg Binary files differnew file mode 100644 index 0000000..eb14e94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gmail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gmail.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gmail.txt new file mode 100644 index 0000000..e2331ea --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gmail.txt @@ -0,0 +1,17 @@ +For those that haven't seen it yet, my Compiler cohort has written up his experiences with the Google Life project -- [using only Google services for one month][1]. It's a fascinating read for those who've considered making the switch from desktop to web-based apps and to go along with it, I thought I'd post some Google app tricks, tips, and tweeks today. + +The nerds among you are no doubt familiar with the Firefox extension [Greasemonkey][2], which allows custom Javascript to manipulate webpages. There's some great Greasemonkey scripts out there for GMail, but finding them all can be a pain. + +To make it a little easier to add GMail Greasemonkey scripts to Firefox, Gina Trapani over at Lifehacker has collected the best of the bunch and make a cool Firefox plugin called [Better GMail][3]. + +Better GMail includes 14 different Greasemonkey scripts designed to make Gmail more useable. Standouts include conversation previews -- right click a conversation and get a preview of all the messages without leaving the current page -- and saved searches which uses a browser cookie to create a list of saved searches. + +There's a whole bunch of good stuff in Better Gmail and if you're a heavy GMail user you'll appreciate the added workflow tools. + +Note that you don't need to have Greasemonkey installed for this to work and if you do you may want to disable any overlapping scripts. I didn't have any problems in my testing, but just to be on the safe side I'd recommend getting rid of the standalone scripts if you already have them. + +Also note that this extension doesn't seem to work with optimized builds of Firefox, but I've filed a bug on that so hopefully the problem will be fixed. + +[1]: http://www.wired.com/software/softwarereviews/news/2007/04/lavidagoogle "Livin' la Vida Google: A Month-Long Dive Into Web-Based Apps" +[2]: https://addons.mozilla.org/en-US/firefox/addon/748 "Firefox Add-ons: Greasemonkey" +[3]: http://lifehacker.com/software/gmail/lifehacker-code-better-gmail-firefox-extension-251923.php "Better Gmail Firefox extension"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/googleremove.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/googleremove.txt new file mode 100644 index 0000000..1ea3c90 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/googleremove.txt @@ -0,0 +1,34 @@ +Google has [released some new tools][1] to help those looking to remove their content from the search giant's indexes. The new tools are mix of options for site owners to quickly remove pages and cached copies of pages, as well as more [general options][2] to request the removal of any pages. + +Of course the best way to keep Google from indexing your content is still the robots.txt files that should live in your server's root directory. However if you change your mind about Google indexing a page, in the past it has taken some time to get it removed. The new tools aim to speed up that process. + + +The new site owner tools can be found within [Google Webmaster Central][3]. Login to your account and choose the "Diagnostics" tab. You'll then see a new link named "URL Removals" which gives you four options, allowing you to remove individual URLs, whole directories, an entire site, or cached copies. + +Because Google caches can hang around unchanged for months, that last option is a welcome addition. If Google has cached a page with content that you've moved for instance, it's now easy to update the cache without changing how Google indexes the rest of your site. + +After submitting a request to remove content you can track the progress using the "Current Requests" tab on the the URL Removals page. Google says requests should be processed in within 3 to 5 days. + +So what about content on sites your don't control -- say your Facebook account for instance? + +Google has added some third party content removal options, but the options are somewhat limited given the nature of the task. + +If there's a page somewhere that your don't like (damnit why did I post that picture of the tutu party on Flickr?) and you (or the site owner) deletes the page but it still shows up in Google's cache, you can log in to your Google Account and request the cache be cleared. + +So long as the live page no longer exists, Google will clear the cached page. + +And there's no need to panic, if you're a site owner no one is going to be able to delete your pages from Google. Google will only remove the cache if the live page no longer exists. + +However, you might want to freak out a little bit about another tool that lets third parties delete cached pages. + +Say there's a *portion* of a page you don't like, and the site owner doesn't want to remove the whole page (which eliminates the aforementioned technique) but does remove the part you don't like. You can then submit the URL, tell Google what words have been removed and if Google confirms that, it will delete the cached page. + +The problem is that this is potentially open to abuse. Google says abuse is not an issue and in fact the tool has been around for a while, but with the new publicity drive, I say that significantly ups the abuse potential. + +The other big tool in today's announcement is one for removing pages that contain personal information. Say someone decides to post your social security number, credit card info or creates a fake profile somewhere using your name and puts explicit images in it; using a Google account you can now make sure that those pages aren't listed in Google's index. + +Despite the fact that there is some potential for abuse in at least one of these tools, today's announcement should be welcome news for webmasters. Particularly the cache removal tools as the only real option prior to today was to wait a few months until Google updated its cache. + +[1]: http://googlewebmastercentral.blogspot.com/2007/04/requesting-removal-of-content-from-our.html "Requesting removal of content from our index" +[2]: http://www.Google.com/support/webmasters/bin/answer.py?answer=35301&topic=8459 "How can I prevent content from being indexed or remove content from Google's index? " +[3]: http://www.google.com/webmasters/tools "Google Webmaster Tools"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/greadertheme.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/greadertheme.jpg Binary files differnew file mode 100644 index 0000000..952aafc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/greadertheme.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/greadertheme.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/greadertheme.txt new file mode 100644 index 0000000..747784f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/greadertheme.txt @@ -0,0 +1,14 @@ +In keeping with the tips and tricks for web apps theme I promised today, here's a stylesheet to [make Google Reader more Mac-like][1]. The design comes from creative maven Jon Hicks who has previously made a similar theme for Bloglines. + +Even if you don't use a Mac or in fact don't like the Mac design principles I think you'll agree that this skin makes Google reader, not only easier on the eyes, but also easier to use. + +Unfortunately if you're using the [Better GMail extension][2] we linked to this morning to use Google Reader within GMail, the stylesheet wont work. Or at least I couldn't get it to work. + +Even if it did there would likely be some namespace collision between the two pages. + +What would be really slick is a GMail theme to make the interface resemble Apple Mail or perhaps Thunderbird. Anyone know of such a thing? + +The Google Reader theme supports Firefox, Camino, Omniweb Safari and Opera, though additional plugins are required for Firefox and Safari. Full installation instructions and the download link can be found at [Hicks Design][1]. + +[1]: http://www.hicksdesign.co.uk/journal/google-reader-theme "Hicks Design: Google Reader Theme" +[2]: http://blog.wired.com/monkeybites/2007/04/firefox_plugin_.html "Firefox Plug-in To Supercharge GMail"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gremove1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gremove1.jpg Binary files differnew file mode 100644 index 0000000..a845c17 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gremove1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gremove2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gremove2.jpg Binary files differnew file mode 100644 index 0000000..33cace8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gremove2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gremove3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gremove3.jpg Binary files differnew file mode 100644 index 0000000..7f7d941 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/gremove3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/phone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/phone.txt new file mode 100644 index 0000000..eadebb6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/phone.txt @@ -0,0 +1,17 @@ +The folks over at younevercall.com have put together a handy guide for Linux users looking to [create their own ringtones][1]. With cellphone companies charging as much as $3 for a twenty second ringtone, the guide should help Linux users save a little cash. + +As an added bonus all the software tools involved in the process, [Audacity][2], [LAME][3] and [BitPim][4], are free and open source. + +The process isn't too difficult, just download the apps, pick a song you'd like as your ringtone and slice out the section you want using Audacity. Then encode your edit as an MP3 using the LAME encoder and send it to your phone with BitPim. + +If you'd like to skip a few steps, there's also a number of file conversion sites online that will output ringtones in various formats and even let you edit file down to ringtone size snippets. Check out [Media Convert][5], which makes it easy to upload and edit your file. + +And of course if your phone has Bluetooth you should be able to send the file that way. Or alternately you could post it to a URL and use your phone's browser to download the file. + +Finally, for the truly lazy, there's [Ringtone Soup][5] where you can browse user submitted ringtones and then send a download link to your phone. Of course any bandwidth charges from your provider will apply and the site is of dubious legality, don't say we didn't warn you. + +[1]: http://www.younevercall.com/Ubuntu-Ringtones.htm "3 Steps to Creating Ringtones with Ubuntu" +[2]: http://audacity.sourceforge.net/ "Audacity" +[3]: http://lame.sourceforge.net/index.php "LAME MP3 Project" +[4]: http://www.bitpim.org/ "BitPim" +[5]: http://www.ringtonesoup.com/ "Ringtone Soup"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/ringtone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/ringtone.jpg Binary files differnew file mode 100644 index 0000000..2cc620e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/ringtone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/sabayon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/sabayon.jpg Binary files differnew file mode 100644 index 0000000..896c031 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/sabayon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/sabayon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/sabayon.txt new file mode 100644 index 0000000..64b5dfa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/sabayon.txt @@ -0,0 +1,18 @@ +If you think whiz-bang graphical effects are limited to Windows Vista or Mac OS X, think again. The Linux distro [Sabayon][1] features some impressive desktop animations complete with whirling, rotating 3D cubes and rippling, bendable window elements that put both Windows Vista and OS X to shame. + +Of course there's more to a good OS than eye candy and since I haven't used Sabayon I can't vouch for anything like performance or ease-of-use, but I think, if nothing else, it stands as an excellent example of the level of sophistication in interface design on the Linux platform. + +Many people still seem to believe that Linux somehow lags behind other OSes when it comes to interface polish, but as the video embedded after the jump demonstrates, that simply isn't true. + +In fact the Linux community in general has been making great strides in UI design. Even if this sort of over-the-top animation isn't your cup of tea, distros like Ubuntu and others are focusing more and more on the user interface as a way to win converts. + +While some may disagree, I think that improving the desktop UI is one of the main factors that is leading to an increased interest among users who previously wouldn't have consider Linux a viable option. + +As for Sabayon, it definitely has a "wow" factor that far exceeds a certain other system, but I'm curious what users think... if you've used Sabayon, let us know your experiences in the comments below. + +And for those wondering about the name, according to Wikipedia: "Sabayon is an Italian dessert made with egg yolks, sugar, a sweet liquor (usually Marsala wine), and sometimes cream or whole eggs." + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/fJ8IIyikhkc"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/fJ8IIyikhkc" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + + +[1]: http://www.sabayonlinux.org/ "Sabayon Linux"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/thunderbird.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/thunderbird.txt new file mode 100644 index 0000000..fc649bd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/thunderbird.txt @@ -0,0 +1,16 @@ +Mozilla has yet to officially announce the final version of Thunderbird 2.0 and the [Thunderbird 2.0 page][4] still points to RC1, but the final version is available on the Mozilla servers. + +Thunderbird 2.0 is a major leap forward for the Mozilla email client and boosts much improved performance as well as some great new features like support for message tagging, a customizable folder pane and one click integration with popular webmail services like GMail and .Mac. + +While many people have moved to web-based email services such as GMail, Thunderbird still comes in handy for making sure you have a local backup of your mail. With the new GMail integration features all you need to provide is a username and password, Thunderbird will take care of the server and port information for you making backups a snap. + +In addition to seamless integration, Thunderbird brings another popular webmail-based tool to the desktop e-mail experience -- message tags. Tags in the new Thunderbird can be used in much the same way as labels in GMail. When combined with filters, tags make an easy way to auto-classify and file mail. + +But the big news for many Thunderbird users will be full Vista support in version 2.0. While previous versions can be made to run on Vista, 2.0 eliminates the bugs and intermittent crashes that many have experienced on Vista. Given the number of problems many users report with Outlook 2007, Thunderbird could prove a viable alternative. + +If you'd like to grab the final version of Thunderbird now, here's your links: [Windows][1], [Mac][2], [Linux][3]. Note that all those links lead to directory listings, just click on the language of your choice and then click the Thunderbird file and your download should start. + +[1]: http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.0/win32/ "Win 32 Thunderbird 2.0" +[3]: http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.0/linux-i686/ "Linux Thunderbird 2.0" +[2]: http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.0/mac/ "Mac: Thunderbird 2.0" +[4]: http://www.mozilla.com/en-US/thunderbird/2.0.0.0/releasenotes/ "Thunderbird 2.0 release notes"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/thunderbird1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/thunderbird1.jpg Binary files differnew file mode 100644 index 0000000..53683f2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/thunderbird1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/thunderbird2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/thunderbird2.jpg Binary files differnew file mode 100644 index 0000000..33cab4d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.16.07/Wed/thunderbird2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/buyfriends.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/buyfriends.jpg Binary files differnew file mode 100644 index 0000000..abfd1b3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/buyfriends.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/eyeclosed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/eyeclosed.jpg Binary files differnew file mode 100644 index 0000000..a939163 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/eyeclosed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/flickrblockers.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/flickrblockers.txt new file mode 100644 index 0000000..33a9a38 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/flickrblockers.txt @@ -0,0 +1,11 @@ +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/b3Qin7EJYbk"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/b3Qin7EJYbk" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +Is web 2.0 is cramping your social life? Tired of having your awkward drunken slips of judgment splashed across Flickr or Facebook? Take back your privacy with Flickrblockers. + +Using Flickrblockers you can be the life of the party without worrying about the plague of incriminating evidence showing up on Flickr the following morning. + +Self respect not included. + +[via [Valleywag][2]] + +[2]: http://valleywag.com/tech/online-privacy/flickrblockers-255612.php "Flickrblockers" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/foxtorrent.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/foxtorrent.jpg Binary files differnew file mode 100644 index 0000000..cfb7046 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/foxtorrent.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/foxtorrent.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/foxtorrent.txt new file mode 100644 index 0000000..aa95247 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Fri/foxtorrent.txt @@ -0,0 +1,18 @@ +[Foxtorrent][1], a new Firefox add-on brings bittorrent support to the ever-extendable browser. Released yesterday by Red Swoosh, the new Firefox add-on allows users to download bittorrent files from within the browser. Foxtorrent is cross platform with versions for Mac, Linux and Windows. + +Fox torrent has enormous potential, it can eliminate some of the headaches of torrent downloading since it auto-configs for NATS, firewalls, and uPNP. Foxtorrent is unobtrusive and all downloading happens in the background. Foxtorrent can even continue downloading torrents even after Firefox is closed. + +Unfortunately, in its current state, Foxtorrent feels like a beta rushed out the door. Testing on Windows revealed a serious memory leak that quickly swallowed my RAM and froze the browser. Strangely I didn't have the same issue on the Mac, but it was serious enough for me to uninstall the plugin. The memory leak issue is [noted on the Foxtorrent site][2]. + +The other main problem with Foxtorrent is that it doesn't recognize downloads from many torrent sites. + +In Foxtorrent, torrent files are downloaded using the Red Swoosh server, but the server can't handle SSL-secured torrent trackers, which severely limits the number of available torrents. For instance, Foxtorrent users can't download anything from Bittorrent.com. + +I also had problems with Foxtorrent recognizing certain files as torrents. Many torrent links I tested just downloaded as regular files and were never intercepted by Foxtorrent. + +Given the number of issue I experience in a couple hours of testing I can't recommend Foxtorrent just yet, however, Foxtorrent has great potential. + +Foxtorrent is open source (MIT license) and as such I expect that improvements will be forthcoming, however, for the time being, I recommend holding off on Foxtorrent. + +[1]: http://www.foxtorrent.com/ "Foxtorrent" +[2]: http://code.google.com/p/foxtorrent/issues/detail?id=3&can=2&q= "Memory Leak"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/Shiira.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/Shiira.txt new file mode 100644 index 0000000..def4697 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/Shiira.txt @@ -0,0 +1,32 @@ +[Shiira][1], the Mac web browser based on WebKit, has just hit version 2.0. The 2.0 release offers a number of welcome new features and, weighing in at a paltry 14.4 MB, Shiira remains a lightweight alternative to those [unhappy with Firefox bloat][1] but who want more features than Safari offers. + +Shiira uses the same internal engine that also powers Safari and some other Mac web browsers, but adds a number of features not found in Safari. + +Version 2.0 sees Shiira with a completely redesigned interface that seems to take much of its inspiration of iTunes 7. The new bookmark and history panel in particular look like they could fit directly into iTunes. + +Perhaps most notable in the new release is that Shiira 2.0 dispenses with the drawer feature for organizing bookmarks, history and downloads, which was one of those love it or hate features. + +If the drawer was the main reason you loved Shiira, fear not, the functionality is still available via Aperture-style bezels that float above or off to the side of the main browsing window, though I couldn't find a way to combine all three into one window. + +Bookmark management in Shiira 2.0 is now handled very similarly to Safari, but there is an option to view your bookmarks via the bezel for easy browsing. A similar bezel exists for history as well. + + + +Tabbed Expose, which isn't new to 2.0 but has been inproved, was inspired by Apple's Exposé feature but in this case th concept is applied to tabs in an open window. Using either a keyboard shortcut (F8 by default) or a button on the status bar, Shiira will minimize all tabs the fit in the front window. Moving the mouse over a shrunken tab shows bezel-based details like page title and URL information. + +Shiira was the first browser to introduce a "tabbed Exposé" feature a while back and the feature proved so popular with users that even Firefox got in on the act via an add-on by the name of [FoXpose][2]. + +Shiira has two key features which should really be a part of every app. The first is total customization of keyboard shortcuts. The "key bindings" pane in Shiira's preferences allows users to change almost any menu shortcut and even add shortcuts to items that don't have them. + +The other should-be-universal feature for browsers are draggable tabs. Shiira allows you to reorder your tabs with a simple drag of the mouse. + +Shiira has also added a popular Omniweb feature -- tab thumbnails. Tabbed thumbnails are an alternative to traditional tabs and users can toggle between the two in the Shiira preferences. + +Tabbed thumbnails live in the bottom of your window and give a preview-based means of jumping between tabs. + +Other new features include a FullScreen browsing mode and a plug-in architecture, though by default there is only one plug-in installed. Still, if Firefox has taught us anything, it's that extensibility is almost never a bad thing. + +For Mac users looking to escape the bloat of Firefox or the limited feature set of Safari, Shiira offers a compelling alternative. The browser is sleek and fast with a very small memory footprint and version 2.0 adds some powerful new features. + +[1]: http://shiira.jp/en.php "Shiira 2.0" +[2]: https://addons.mozilla.org/en-US/firefox/addon/1457 "FoXpose"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock.jpg Binary files differnew file mode 100644 index 0000000..25470a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock.txt new file mode 100644 index 0000000..d88baf1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock.txt @@ -0,0 +1,20 @@ +As I write this I'm sitting in my new house, which, thus far, has nearly bare walls, so I was excited to notice that a new community site [ArtFlock][1] -- devoted to buying and selling art online -- just launched. Actually, after a bit of reading on the [site's blog][3], I discovered that ArtFlock is the new name for Artists Online which has been around for a while. + +The new site (on a new domain) is designed to help both artist looking to sell their work and bare-walled consumers like myself by connecting the two and something the transaction process. + +Using ArtFlock, artists can display and sell their art, and visitors can browse through collections and artists, as well as search for specific artists or types of art. Since ArtFlock is not just a marketplace but also a gallery of sorts there's a handy button at the top of the page that can limit results to show only works that are for sale. + +ArtFlock has most of the interactions you'd expect from a social networking site in this day and age including user ratings, tag browsing, favorites (called My Gallery) and more. Interestingly the site doesn't have a "similar artists" features, something the site's blog says is a deliberate choice. + +Though at first a lack of find similar artist feature might seem an oversight, I rather like the absence if for no other reason than I'm a bit tired of always being pointed to similar items. Perhaps ArtFlock should [take a tip from LibraryThing][2] and build a "find dissimilar" feature. + +I haven't yet bought anything off ArtFlock, but there were a couple of artists that caught my eye and thanks to the My Gallery feature they're bookmarked and saved for future reference. Regrettably none of the artwork I liked was actually for sale, but that's not ArtFlock's fault. + +(Note to the ArtFlock team, there's some kind of bug in the zoom image feature that causes the image to disappear shortly after it's loaded in Safari). + +[via [Mashable][4]] + +[1]: http://www.artflock.com/ "ArtFlock" +[2]: http://blog.wired.com/monkeybites/2006/11/librarythings_u.html "LibraryThing's UnSuggest: Discover Your Dislikes" +[3]: http://blog.artflock.com/ "ArtFlock Blog" +[4]: http://mashable.com/2007/04/22/artflock/ "Mashable: ArtFlock"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock1.jpg Binary files differnew file mode 100644 index 0000000..a7c5dd3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock2.jpg Binary files differnew file mode 100644 index 0000000..3e99100 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/artflock2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda-logo.jpg Binary files differnew file mode 100644 index 0000000..78a3e60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda.txt new file mode 100644 index 0000000..cf94f95 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda.txt @@ -0,0 +1,29 @@ +As most web developers can tell you there's three basic things you need to build a site, a good text editor, an FTP client and a terminal window for SSH. Typically developers jump between two or three programs to handle these disparate tasks, but [Coda, a new application from Panic Software][1], makers of the popular Transmit FTP client, combines all three in one window and adds some extras to boot. + +Coda features a single window working space divided up into tabs that separate out each task. By default the tabs include FTP bookmarks, and editor, a preview pane, a CSS editor, a terminal interface and "books" which offers some handy reference materials. + +As with most apps from Panic the interface is slick and well thought out without resorting the unnecessary gimmicks (the same goes of the slick Javascript on Panic's website). + +The first thing most developers will want to know is, how good is the text editor? And actually it's pretty good for a 1.0 release. The editor supports customizable syntax highlighting, entab/detab, regular expressions, collaborative editing, auto complete and more. + +Coda's editor even supports drag-and-drop regular expression building for beginners (old hands cans still write expressions manually). The collaborative editing features are similar to those in the SubEthaEdit program, however I haven't tested them. + +While some of the functionality of a mature text editor is there, Coda's editor is no BBEdit or TextMate. How much that matters to you probably depends on your work habits. + +The rest of Coda provides excellent replacements for both FTP (essentially Transmit running inside another application) and Terminal. + +Perhaps the nicest feature is the ability to split panes between Coda tabs which allows you, for instance, to simultaneously edit a remote file in the text editor and then run the file via the command line in the lower portion of the window. Coda can also split windows vertically for those working on widescreen displays. + +In fact the Coda windows can be split as many times as you'd like, so if you have the screen real estate you could conceivably have all aspects of the app open in one window. + +The CSS editor is handy for those that aren't familiar with the syntax for every obscure CSS property, those old hands will likely find it faster to edit CSS directly. + +The live preview pane leverages WebKit to provide previews of live files, which save you from having to jump between browser and editor. However since the advent of WebKit most text editors already offer this type of functionality, but none that I know of offer the javascript debugging found in Coda. + +I've only been using Coda for about an hour, but I'm already hooked, at least partly. I don't think I'll abandon BBEdit just yet, but the ability to have my web preview and terminal interface together in one app is quite nice. + +If there were some way to use BBEdit as an external editor I might be willing to pony up the $80 for a copy of Coda. + +Owners of Transmit can purchase Coda for the slightly discounted price of $70. Normal price for Coda will be $100. + +[1]: http://www.panic.com/coda/ "Coda"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda1.jpg Binary files differnew file mode 100644 index 0000000..be74415 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda4.jpg Binary files differnew file mode 100644 index 0000000..57301dc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/coda4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/code2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/code2.jpg Binary files differnew file mode 100644 index 0000000..68a7a8f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/code2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/facebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/facebook.txt new file mode 100644 index 0000000..60d43ae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/facebook.txt @@ -0,0 +1,11 @@ +Facebook [released][1] a new improved feature over the weekend which mimics the services of Twitter. Status Updates, as the new features is called, have been available to Facebook users for nearly a year, but the recent update makes them available via SMS, much like Twitter. + +Status Updates can be changed from your profile page or, with the new features, it's now possible to updated your status through SMS messages -- just like Twitter. Users can also set a daily limit for notifications using the "Edit Preferences" link on the mobile page. + +Once you've linked your mobile number to your account, you can send SMS messages to FBOOK (32665) and the updates will appear on your account. Update messages must have the prefix '@'. + +In addition to posting through a mobile device, users can now subscribe to a friend's updates via SMS. Other ways to consume your friend's Status Updates include a new page listing all your friends and updates in one spot and new RSS feeds for Status Updates. + +The new features have led many to suggest the Facebook is gunning for Twitter, but somehow I don't think that's the case. Rather it seems that the engineers at Facebook realized they already had a Twitter-like features, they just hadn't enabled it. I doubt anyone is going to abandon Twitter in favor of Facebook. On the flip side, unfortunately for Twitter, I also doubt anyone is going to abandon Facebook for Twitter. + +[1]: http://blog.facebook.com/blog.php?post=2334332130 "What's everyone up to?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/fbook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/fbook.jpg Binary files differnew file mode 100644 index 0000000..d493e2f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/fbook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/fbookmob.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/fbookmob.jpg Binary files differnew file mode 100644 index 0000000..20fc8a5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/fbookmob.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/firefoxfeedback.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/firefoxfeedback.txt new file mode 100644 index 0000000..a6a51e7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/firefoxfeedback.txt @@ -0,0 +1,14 @@ +Mac users are a notoriously picky bunch and the developers of Firefox know this, which is why they've put out a [call for input on the Firefox Mac experience][1]. The developers would like to hear what you hate about Firefox on a Mac, what you'd like to see and good ideas from other browsers that Firefox should emulate. + +I can tell you from various interviews with Firefox developers that version 3 is not set in stone at all and they really do listen to user feedback. So if you're a Mac user and there's something you'd like to see in Firefox, head on over and let them know. + +Personally, while many people complain about performance issues, memory leaks and bloat, I don't experience any of those problems myself. What I would like to see is not just native form widgets (slated for FF3), but a true Aqua interface -- make Firefox for Mac, *look* like it's for Mac. + +Actually probably the better angle would be to take Camino and make it compatible with Firefox extensions since, in the end, I have no particular loyalty to Firefox, it's the extensions that make it my browser of choice. + +Let the Firefox team know all of your gripes and brilliant idea and who knows maybe they'll incorporate your pet suggestions. + +[via [Cult of Mac][2]] + +[2]: http://cultofmac.com/?p=578 "What Do You Think Sucks About Firefox on Mac?" +[1]: http://iamthewalr.us/blog/2007/04/20/firefox-on-the-mac/ "Firefox on the Mac"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/firefoxkeywords.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/firefoxkeywords.txt new file mode 100644 index 0000000..f7c7c19 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/firefoxkeywords.txt @@ -0,0 +1,14 @@ +This morning I posted about [OpenDNS's new URL bar shortcuts][2] option and Compiler reader Ron pointed out that I had overlooked the fact that Firefox offers that feature by default. While it doesn't provide for network-wide shortcuts, Firefox (and IE as well) offers named bookmark shortcuts. + +Possibly I'm the only ignoramus unaware of this feature, but on the off chance I'm not, here's how it's done: open up the bookmark manager in Firefox, select a bookmark and either right click and select "properties" or click the properties in the toolbar. + +The third option down in the properties list lets you type in a keyword. Enter your keyword and then you'll be able to access that URL by typing the keyword in the URL bar. + +Handy, and, as the post Ron [originally directed me to says][1], often overlooked. + +On the downside the keyword shortcuts do not generally work for Javascript bookmarklets since typing in the URL bar overwrites the active address and most Javascript bookmarks often need that URL to function. + +If anyone knows of a way to create keyword or keyboard shortcuts for Firefox bookmarks, post it in the comments and I will offer copious thanks. + +[1]: http://www.xyzcomputing.com/index.php?option=content&task=view&id=1002 "Firefox's Most Underutilized Feature" +[2]: http://blog.wired.com/monkeybites/2007/04/opendns_offers_.html "OpenDNS Offers Keyword Browsing Shortcuts"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/frucall.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/frucall.jpg Binary files differnew file mode 100644 index 0000000..e3e9801 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/frucall.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/frucall.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/frucall.txt new file mode 100644 index 0000000..31cc7b2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/frucall.txt @@ -0,0 +1,20 @@ +If you're like me you avoid brick and mortar stores simply because crowds make your feet itch and the same items are almost always available for less online. Still, for those that actually enjoy shopping, but don't want to get ripped off, [Frucall][2] has introduced a handy new [SMS price comparison service][1]. + +The Frucall SMS service compliments and already quite handy 800 number that offers similar features, but uses your precious minutes. Now you can get the same info by texting in a product's UPC or ISBN number. + +For the time being the messages must be prefixed "FRU" and sent to a short number 32075, but Frucall says they will be offering a dedicated number and dropping the prefix once the service moves out of beta. + +In addition to sending back online prices Frucall can bookmark items, save your inquire history and quite a bit more though you'll have to register for a free account to do so. + +The service worked without a hitch in my testing and even looked up a long out of print book. + +Similar services are available via Google's SMS setup which returns results from the recently renamed [Google Product Search][4]. + +Which ever service you prefer SMS delivery of online pricing is going to come in handy the next time a salesperson assure you there's no better prices to be found... oh, really, let me just check that... + +[via [The Consumerist][3]] + +[1]: http://www.frucall.com/jsp/frucall-text.jsp "Frucall" +[2]: http://www.frucall.com "Frucall" +[3]: http://www.google.com/intl/en_us/mobile/sms/ "Google SMS" +[4]: http://blog.wired.com/monkeybites/2007/04/the_google_serv.html "The Google Service Formerly Known As Froogle"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/hackapple.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/hackapple.txt new file mode 100644 index 0000000..038b73b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/hackapple.txt @@ -0,0 +1,20 @@ +The net was abuzz over the weekend with news that a [zero day flaw had been found in Apple's Safari web browser][4]. The flaw was discovered as part of the [CanSecWest conference][2] whose organizers offered a simple challenge: successfully hack a Macbook and win it as a prize. + +However, one thing that seems to have been overlooked in most of the coverage is that the organizers had to change the contest rules in order for the Macbook to be successfully hacked. + +The original rules said that the attack must required no action on the part of the user. After security firm Tipping Point offered to throw in a $10,000 bounty, the rules were changed so that exploits could include malicious websites and other user-initiated actions. + +While the zero-day flaw in Safari is certainly serious and embarrassing for Apple given that they just [pushed out a massive security update][3], the fact remains that no one was able to exploit OS X in a meaningful way. + +While it will likely mean comments on this post degenerate into flame wars, I'll say it anyway, yes, Macs are more secure than Windows. And you can rationalize that by arguing about market share or any other number of bogus theories, none of which change the initial premise. + +At the risk of coming off like an Apple apologist, I find it remarkable that the contest rules had to be altered before the Mac could be hacked. I also think it's worth pointing out that Microsoft is one of the chief sponsors of the CanSecWest conference. + +As a commenter on the Cult of Mac post says, a far more interesting contest would be to set up Mac, Windows and Linux machines on the same network and seeing which one gets hacked first. + +And for those that would like to have a go at hacking a Mac via Apache, a brave user has [posted an IP address][1] in the CNet forums. + +[1]: http://news.com.com/5208-1002_3-0.html?forumID=1&threadID=26809&messageID=259596&start=0 "then why hasn't OSX been exploited?" +[2]: http://cansecwest.com/index.html "CanSecWest" +[4]: http://blog.wired.com/cultofmac/2007/04/safari_zeroday_.html "Safari Zero-Day Exploit -- Links Worth Checking" +[3]: http://blog.wired.com/monkeybites/2007/04/apple_update_pa.html "Apple Update Patches Serious Flaws"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/hackmac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/hackmac.jpg Binary files differnew file mode 100644 index 0000000..0ab2e77 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/hackmac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/openDNS.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/openDNS.txt new file mode 100644 index 0000000..fa8d6c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/openDNS.txt @@ -0,0 +1,15 @@ +[OpenDNS][2], the service that makes it easy to set up an alternative DNS server, has announced a new service that allows users to browse the web by using keyword shortcuts. The new service allows people to create keywords that point to their favorite web sites. + +For instance, Compiler lovers could create a shortcut that allows them to simple type "compiler" in the URL bar and the browser would be directed to this page. OpenDNS sees the service as a ways to make the browser's url bar more usable. + +Of course there are already Firefox plug-ins that can do the same thing and Opera comes with such features built in, but OpenDNS allows the shortcuts to be totally independent of browser choice. + +In addition, because the shortcuts are actually on the OpenDNS server its possible to for administrators to easily create network wide shortcuts. For example, if you administer a large network you could use OpenDNS to create a shortcut "mail" which would lead to your company's mail servers. And that shortcut would be usable by everyone on the network. + +To create shortcuts you can either login in to your OpenDNS account and use the system tools to create new shortcuts, or by using a Javascript bookmarklet. Shortcuts can also take parameters which means a shortcut can take the form <code>g Compiler</a> where "g" is a shortcut to Google search and Compiler is the search term. + +OpenDNS, which we [profiled when it launched last year][1], also offers phishing protection, caching services and quite a bit of advanced options of the network savvy to tweak to their liking. + +[1]: http://www.wired.com/science/discoveries/news/2006/07/71345 "Site-Lookup Service Foils Fraud" +[2]: http://www.opendns.com/ "OpenDNS" +[3]: http://www.opendns.com/start/features/shortcuts/ "OpenDNS Shortcuts"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/opendns.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/opendns.jpg Binary files differnew file mode 100644 index 0000000..7b0a646 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/opendns.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira.jpg Binary files differnew file mode 100644 index 0000000..2ff9acb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira1.jpg Binary files differnew file mode 100644 index 0000000..7f82dcc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira2.jpg Binary files differnew file mode 100644 index 0000000..14af3ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira3.jpg Binary files differnew file mode 100644 index 0000000..3197c60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Mon/shiira3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/VirtualBox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/VirtualBox.txt new file mode 100644 index 0000000..6555248 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/VirtualBox.txt @@ -0,0 +1,15 @@ +Mac OS X users have yet another virtualization option now that Innotek has announced a [Mac version of its VirtualBox software][1]. VirtualBox was previously available to Windows and Linux users and supports a variety of x86 compatible guest operating systems, including Windows Vista and Gentoo Linux. + +The OS X version of the software is currently in a [beta test phase][2] and offers support for Windows Vista and Gentoo Linux. + +VirtualBox offers one interesting feature not found in other virtualization software we've tested -- support for the Remote Desktop Protocol. Using VirtualBox users can connect to a virtual machine via Remote desktop which would allow the hosted system to act as an RDP server. The remote desktop server feature opens up the possibility of running the virtual machine remotely on a thin client. + +VirtualBox is free for personal and educational use, though the [main license is not open source][3]. There is a VirtualBox Open Source Edition, uses the GPL but lacks a number of features found in the main package. + +If you've used Virtual Box for Mac OS X be sure to let us know your experiences in the comments below. + +Here's a screenshot from the [VirtualBox wiki][2]: + +[1]: http://www.virtualbox.org/ "VirtualBox" +[2]: http://www.virtualbox.org/wiki/Downloads "Download VirtualBox" +[3]: http://www.virtualbox.org/wiki/Editions "VirtualBox Licensing"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/activethreats.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/activethreats.jpg Binary files differnew file mode 100644 index 0000000..c0d20ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/activethreats.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/flex.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/flex.txt new file mode 100644 index 0000000..5cb6eaa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/flex.txt @@ -0,0 +1,20 @@ +Adobe has [announced][1] it will release the [Flex software development kit][2] (SDK) as an open source project governed by the Mozilla public license. The move continues an Adobe trend of moving toward an open development platform that started with last year's [donation of the Tamarin rendering engine][3] to the Mozilla foundation. + +Flex is Adobe's Flash development framework which allows developers to build user interfaces using an XML-based language rather than the Flash IDE. Flex is a framework bundle that comes with various components designed to make it easy to build internet apps using web services, remote objects, drag and drop, built in animation effects, and other interface elements. + +The open source portions of today's Flex announcement include a compiler, debugger, an automated testing framework and number of component libraries designed to speed up development. + +Adobe will continue to sell Flex Builder, the Eclipse-based development tool as well as the Flex server tools. + +The open sourcing of Flex won't happen all at once. Adobe plans to start with the upcoming release of Flex 3 by providing daily builds shortly after the initial release. The fully open source licensing of the SDK won't happen until December at which time the project will be open to community contributions. + +For developers that don't want to use the open source licensing scheme Adobe will also continue to license Flex under its existing commercial license. + +Open source is almost never a bad thing from a developers point of view and Adobe seems to be seriously committed to the idea. With Microsoft recently releasing a Flash competitor, Adobe's announcement is clearly intended to appeal to those who reject proprietary systems. + +The only real loser in today's announcement may be [OpenLazlo][4] which began life as an open source alternative to Adobe's (then) closed Flex framework. However, OpenLazlo has since broadened its approach somewhat, moving beyond Flash, and will hopefully continue to enjoy community support. + +[1]: http://labs.adobe.com/wiki/index.php/Flex:Open_Source "Adobe to Open Source Flex" +[2]: http://www.adobe.com/products/flex/sdk/ "Flex 2 SDK" +[3]: http://blog.wired.com/monkeybites/2006/11/adobe_releases_.html "Adobe Releases Tamarin" +[4]: http://www.openlaszlo.org/ "Open Lazlo 4"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/flexicon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/flexicon.jpg Binary files differnew file mode 100644 index 0000000..460dd46 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/flexicon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/googleads.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/googleads.txt new file mode 100644 index 0000000..238f8f8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/googleads.txt @@ -0,0 +1,18 @@ +Gaming Google isn't just for [Google bombs][3] anymore. Virus and malware creators were [recently discovered][1] gaming Google's "sponsored links," the adverts shown alongside search results. + +By taking advantage of fact that hovering your mouse over a sponsored link doesn't show the URL, the bad guys were able to create fake ads that appeared to point to legitimate sites, but in fact redirected users to an intermediary site. + +The intermediary site then took advantage of an old flaw in IE to install malware for stealing passwords and other sensitive data. + +Although Microsoft issued a fix for the hole these sites exploited nearly a year ago, many people have not updated their browsers to apply the patch. + +Exploit Prevention Labs, which first reported the sponsored links exploit, said that most of the malware ads showed up on common consumer searches for terms such as "Better Business Bureau" or Cars.com. + +According to Exploit Prevention Labs, Google has removed the sponsored links in question and indeed searching for any of the terms listed does not currently bring up any malware sites. + +For the curious EPL has [posted a screenshot][2] of the offending ads from a week ago. + + +[1]: http://explabs.blogspot.com/2007/04/google-sponsored-links-not-safe.html "Google sponsored links not safe?" +[2]: http://www.explabs.com/CaseStudies/bbb/result.jpg "Google sponsored link screenshot" +[3]: http://blog.wired.com/monkeybites/2007/01/earlier_today_m.html "http://blog.wired.com/monkeybites/2007/01/earlier_today_m.html"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/googlems.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/googlems.txt new file mode 100644 index 0000000..31cc22b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/googlems.txt @@ -0,0 +1,16 @@ +Google has surpassed Microsoft in total internet traffic making Google the most visited site on the internet [according to new figures released by comScore][1], an internet traffic tracking firm. + +ComScore reports that Google had 528 million unique visitors in March compared to the number two site, Microsoft which had 527 million visitors during the same time. + +Interestingly, according to comScore, Google users spend less than half the amount of time on the page that Microsoft visitors do -- 4.6 minutes compared to 12.8. + +While many take the amount of time spent on a page as an indication of brand loyalty, that approach fails to consider that ease-of-use and the speed at which users can find what they are looking for and move on might be bigger motivations for return visitors, particularly in the case of internet searches. + +And it's worth noting that comScore's traffic numbers are continually called into question. Last year the company's president posted an article [defending the various statical methods][2] comScore uses, but many remain unconvinced. + +This latest round of data was compiled with some curious criteria. For instance, the comScore doesn't count anyone under fifteen and doesn't take into account users browsing from internet cafes or schools. + +Given that much of the world uses internet cafes as their primary means of connecting to the net, comScore's numbers may not mean much in the end. + +[1]: http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2007/04/25/GOOGLE.TMP&feed=rss.news "Google surpasses Microsoft as world's most-visited site" +[2]: http://www.adrants.com/2006/09/comscore-sets-metrics-record-straight.php "comScore Sets Metrics Record Straight"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/longhorn.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/longhorn.txt new file mode 100644 index 0000000..43d7bd4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/longhorn.txt @@ -0,0 +1,12 @@ +Yesterday Microsoft [released the first public beta][2] of its next generation server software, currently code-named Longhorn. Release dates for the final version haven't been set yet and may not happen until next year, but the new beta is a feature complete release and [available now for testing purposes][2]. + +The new Windows Server shares a common code base with Vista, but adds additional server related features. + +Microsoft says Beta 3 (betas 1 and 2 were private releases) features improved security over previous shipping version of Windows Server. Among improvements are a new compartmentalized approach which allows companies to only install the elements they need -- reducing the available options for attackers to exploit. + +Other new features include Network Access Protection, which makes sure that client machines comply with security policies and other requirements before they are allowed on a network. + +Microsoft is hoping for widespread testing efforts to begin with yesterday's release and says it will use tester feedback to fix bugs and make improvements. + +[1]: http://www.microsoft.com/windowsserver/longhorn/audsel.mspx "Longhorn Download" +[2]: http://www.microsoft.com/windowsserver/longhorn/default.mspx "Longhorn beta 3"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote.jpg Binary files differnew file mode 100644 index 0000000..30b5771 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote1.jpg Binary files differnew file mode 100644 index 0000000..d127117 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote2.jpg Binary files differnew file mode 100644 index 0000000..17dd462 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote3.jpg Binary files differnew file mode 100644 index 0000000..1bd2119 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote4.jpg Binary files differnew file mode 100644 index 0000000..6776b79 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote5.jpg Binary files differnew file mode 100644 index 0000000..ba689db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remote5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remotebuddy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remotebuddy.txt new file mode 100644 index 0000000..240a4e7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/remotebuddy.txt @@ -0,0 +1,25 @@ +If Apple's Front row application leaves you wanting more, [Remote Buddy][1] offers a compelling alternative. Remote Buddy recently released RC 2 and offers a sixty day trial period for testing purposes. + +Actually, saying that Remote Buddy is an alternative to Front Row is somewhat akin to saying a '68 Shelby Cobra is an alternative to Matchbox cars. + +Let's face it Front Row is primitive and limited. If you want to do anything beyond listen to music or play a movie, you're pretty much out of luck. + +Remote Buddy on the other hand can enable your Apple remote to do pretty much anything your mouse can do, and, since nearly all aspects of the program are customizable, you can set everything up just the way you want it. + +Browse the web, thumb through Lightroom photos, check your news feeds in NetNewsWire, watch Joost, even check out Google Earth. + +Rather than try to capture every possible thing you can do with Remote Buddy, which would lead to massive post, check out the rather long [demo movie][1] on the site which shows off the basics. + +Remote Buddy works by creating specialized plug-ins known as behaviors. Remote buddy [ships with behaviors][3] for iTunes, iPhoto, Keynote 3, PowerPoint, Photo Booth, QuickTime Player, EyeTV 2, DVD Player, VLC Media Player, Real Player, Adobe Reader, Acrobat Pro, CoverFlow, Quinn, GarageBand, NetNewsWire, MPlayer OSX, Safari, Firefox, Camino and many more. + +And because the behaviors are plug-ins, it isn't hard to add your own. You will however need to crack open XCode and use the provided Remote Buddy SDK. There's another demo video on the site if you'd like to [see how it's done][2]. The less ambitious can always write an Applescript which Remote Buddy will happily execute. + +I've been planning to wired a Mac Mini into an HDTV and use that as a centralized media server for my home. My original thought was to pick up a bluetooth mouse for controlling the mini, but Remote Buddy has proved more than capable of handling the job. + +What's more remote Buddy supports a number of third party remotes which offer more buttons and control options than Apple's supplied remote. There's even limited support for a number of mobile phones. + +Remote Buddy isn't free, but they are offer a limited time discount price of 10 Euro. Regular price is 20 Euro. + +[1]: http://www.iospirit.com/index.php?mode=view&obj_type=infogroup&obj_id=24&sid=3584343G9cee967beb96dbed&o_infogroup_objcode=infogroup-23 "Remote Buddy" +[2]: http://www.iospirit.com/index.php?mode=view&obj_type=html&obj_id=123&sid=3584343G9cee967beb96dbed&sid=3584343G9cee967beb96dbed#video "Building Remote Buddy plug-ins" +[3]: http://www.iospirit.com/index.php?mode=view&obj_type=infogroup&obj_id=23&o_infogroup_objcode=html-109&sid=3584343G9cee967beb96dbed "Behavior Options"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/vb.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/vb.jpg Binary files differnew file mode 100644 index 0000000..4488e0e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/vb.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/virtualbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/virtualbox.jpg Binary files differnew file mode 100644 index 0000000..3a1e2aa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/virtualbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/wslonghorn.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/wslonghorn.jpg Binary files differnew file mode 100644 index 0000000..94c38e4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Thu/wslonghorn.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/Firefoxbloat.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/Firefoxbloat.txt new file mode 100644 index 0000000..3af6648 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/Firefoxbloat.txt @@ -0,0 +1,31 @@ +<img width="133" height="133" border="0" alt="Firefoxlogo_3" title="Firefoxlogo_3" src="http://blog.wired.com/photos/uncategorized/firefoxlogo_3.png" style="margin: 0px 0px 5px 5px; float: right;" />After today Mozilla will [no longer be maintaining Firefox 1.5][1] -- Firefox 2.0 has arrived. But even as Firefox continues to move forward some users are starting to worry about the future of the popular web browser. + +Yesterday we told you about the Firefox team's [request for feedback from Mac users][3] and judging by comments on that post and a similar one on the [Cult of Mac blog][4], Mac users clearly have some issues with Firefox. + +But the complaints are not just from Mac users, Windows and Linux users also report a number of issues with Firefox. + +Chief among the complaints leveled at Firefox is the charge that the app has become bloated. Given the fact that Firefox arose at least partly as a reaction to the bloat of Mozilla's previous browser/email/contact manager, all-in-one, good-at-none app, the bloat charge has to sting. And yet it has some truth. + +For the sake of figures: Firefox 1.5 was a 41.5MB application, while Firefox 2.0 is 49.5. Compare that to Safari's paltry 16.8 MBs and Opera 9's 24.5. + +Yet curiously, my browser of choice, Bon Echo, a build of Firefox [optimized for an Intel Mac][2] is only 30.5 MBs. + +Neil Lee, the developer who puts together the various Mac-optimized builds attributes the slimmer file size to the fact that the generic universal binary of Firefox contains all the necessary CPU-specific code that enables Firefox to work on various machines from a single build. + +"The universal binaries basically have double the *binary* (actual application) code," Lee says. Although my experience has been that Lee's builds are faster, he cautions that there is no real empirical evidence to support that. Lee also feels his builds are faster, but while they may feel faster, as he points out, "it could very well be a group hallucination." + + +Another complaint from Firefox users is that the application is a RAM hog, which unquestionably it is. Leave Firefox open for a couple days with enough tabs and it'll gobble RAM and bring your system to a grinding halt. Michael says he has to restart his entire machine at least once a day, just quitting Firefox isn't enough. + +Of course some of the RAM hogging nature of Firefox is due to third party add-ons, still at least some of it seems to come from memory leaks. + +There are no doubt slimmer web browsers, both Opera and Safari use noticeably less RAM on my machine, and Shiira, which I tested and review yesterday uses the least amount of RAM of any browser I've used. But of course the trade off is they don't offer the functionality of Firefox decked your favorite add-ons. + +Firefox seems almost a necessity for the web power user. The question is, is Firefox in danger of moving from necessity, to necessary evil? Will bloat ruin the once lean, mean machine? Are there compelling lighter weight alternatives that don't sacrifice features? + +Let us know what you think in the comments below. + +[1]: http://www.mozilla.org/news.html#p425 "Firefox 1.5.0.x will be maintained with security and stability updates until April 24, 2007." +[2]: http://www.beatnikpad.com/archives/2006/10/26/firefox-20 "Optimized Firefox 2.0 for G4, G5, and Intel Macs" +[3]: http://blog.wired.com/monkeybites/2007/04/mac_users_give_.html "Mac Users: Give Firefox Developers A Piece Of Your Mind" +[4]: http://cultofmac.com/?p=578 "What Do You Think Sucks About Firefox on Mac?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/dojo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/dojo.jpg Binary files differnew file mode 100644 index 0000000..36c671b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/dojo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/dojo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/dojo.txt new file mode 100644 index 0000000..1d8555c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/dojo.txt @@ -0,0 +1,17 @@ +The holy grail of web app productivity apps remains offline functionality. Developers unwilling to wait for Firefox 3's rumored support for offline apps might want to take a look at the new [Dojo Offline Toolkit][2]. The team behind the popular Dojo Javascript Toolkit have released a new package that aims to bring offline capabilities to web apps. + +The Dojo Offline toolkit is designed to make it easy for web app builders to add offline capabilities to their apps. The description of the package on the Dojo site says there are to parts to the new toolkit, "a JavaScript library bundled with your web page and a small (~300K) cross-platform, cross-browser download that helps to cache your web application's user-interface for use offline." + +If I'm understanding that correctly, that means users will have to download the small package to cache site files, but that still seems like a small price to pay for offline access to something like GMail. + +Naturally I don't see Google rolling out an offline-capable GMail in the near future, but there's no reason that an enterprising Greasemonkey script couldn't use the Dojo kit to pull off at least partial offline support of GMail. + +The Dojo Offline Toolkit is no magic bullet and it isn't going to work for every app, but it does seem to be one of the best options for small web developers who'd like to add offline functionality to their apps. + +If you're interested in exploring the toolkit you can download it from the Dojo site. Also be sure to check out [Moxie][1] the sample application from the Dojo team. + +[found via [O'Reilly][3]] + +[1]: http://codinginparadise.org/projects/dojo_offline/working/demos/offline/moxie/editor.html "Moxie" +[2]: http://www.dojotoolkit.org/offline "Dojo: offline toolkit" +[3]: http://radar.oreilly.com/archives/2007/04/dojo_offline_to.html "Dojo Offline Toolkit Released"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/eff.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/eff.jpg Binary files differnew file mode 100644 index 0000000..d9852d9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/eff.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/ge.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/ge.jpg Binary files differnew file mode 100644 index 0000000..1453023 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/ge.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/ge1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/ge1.jpg Binary files differnew file mode 100644 index 0000000..b9f429a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/ge1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/gearchitecture.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/gearchitecture.txt new file mode 100644 index 0000000..f84cd73 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/gearchitecture.txt @@ -0,0 +1,17 @@ +Google Earth has [added some new layers featuring American architecture][1]. The layers were created in partnership with the The American Institute of Architects (AIA) and the 150 buildings, bridges and other structures are the results of a nationwide poll to determine American's favorite architectural landmarks. + +The new layers highlight and zoom to newly created 3-D models of the buildings, bridges, memorials and other structures. + +Also included in the AIA layers is the Blueprint for America layer. The Blueprint project is a community service effort by the AIA in which members donating time and expertise to "enhance the quality of life in their communities." + +The blueprint layers will allow users to track the progress of those projects on Google Earth. + +The new layers are fun and informative, but let's face it, a nice 3-D layer of World architecture would be much cooler. + +In related news, if all these Google Earth layers have got you thinking perhaps you'd like to try your hand at making your own, the [Google Code has added three new tutorials][2] on the Maps API/KML. + +One in particular, the <cite>[Adding Metadata to Your KML Files][3]</cite> tutorial should be useful for those just getting started building Google Earth layers. + +[1]: http://googleblog.blogspot.com/2007/04/new-3-d-layers-from-aia-on-google-earth.html "New 3-D layers from AIA on Google Earth" +[2]: http://googlemapsapi.blogspot.com/2007/04/introducing-3-maps-apikml-tutorials-in.html "Introducing 3 Maps API/KML Tutorials in Google Code's Knowledge Base" +[3]: http://code.google.com/support/bin/answer.py?answer=65628 "Adding Metadata to Your KML Files"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/photobucket.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/photobucket.txt new file mode 100644 index 0000000..9bd0cc7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/photobucket.txt @@ -0,0 +1,12 @@ +<img alt="Pbucket" title="Pbucket" src="http://blog.wired.com/photos/uncategorized/2007/04/11/pbucket.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Photobucket seems to have [settled their dispute with MySpace][1] and embedded Photobucket content is once again working on MySpace. A brief post on the PhotoBucket blog reads: "Both our companies are committed to putting our users first." + +This isn't the first time Photobucket has been blocked by MySpace, nor is it the first time blocked services have been restored, but given that Photobucket was [rather vocally unhappy about the initial outage][2], calling on users to protest, it does seem odd that no further explanation of the blockage or the reinstatement has been given. + +The Photobucket note to users attempts to alleviate user fears about possible future outages by saying: + +>Moving forward, we've established open lines of communication and procedures with MySpace to prevent a sudden block of Photobucket content in future. We want our users to be able to share their content and understand it must be within the framework of MySpace's Terms of Service for it to appear on the site. + +Which just goes to show, even one of the largest photo sharing site on the web has to occasionally bow to the power of MySpace. + +[2]: http://blog.wired.com/monkeybites/2007/04/myspace_is_bloc.html "MySpace Is Blocking Photobucket Videos" +[1]: http://press.photobucket.com/blog/2007/04/photobucket_vid.html "Videos working on MySpace again!"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/viacom.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/viacom.txt new file mode 100644 index 0000000..4ea1553 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/viacom.txt @@ -0,0 +1,14 @@ +The EFF has [dismissed its lawsuit against Viacom][1]. The suit was originally filed last month on behalf of MoveOn and Brave New Films after Viacom sent a massive number of DMCA takedown notices to YouTube which resulted in the removal of content that was in no way related to Viacom, + +In a [note on the EFF site][2] yesterday the foundation writes that it has dropped the suit because "Viacom acknowledged their mistake, told us about the policies it has put in place to protect fair use on YouTube, and agreed to introduce improvements to those policies." + +Representatives from the EFF say they were "impressed by Viacom's willingness to give plenty of breathing room to the noncommercial, transformative creativity that has flowered on video sharing sites like YouTube." + +The cornerstone of Viacom's new policy to appease the EFF is that a human being must actually review each clip before any action is taken. Additionally the media giant has agreed to avoid sending notices in cases where clear fair use arguments would apply. + +According to the EFF Viacom has also set up an email and website hotline to handle potential takedown notice mistakes. Users who's content is removed following a Viacom action can now request a review and, pending a change of heart by Viacom, get their videos restored inside of a day. + +Given the current climate of takedown notices hitting YouTube, Viacom's willingness to admit it made an error is somewhat remarkable, and one likes to hope that other media companies might follow suit before all the kids start wearing t-shirts that read: YouTube is not a crime. + +[1]: http://www.eff.org/news/archives/2007_04.php#005212 "Viacom Admits Error -- Takes Steps to Protect Fair Use on YouTube" +[2]: http://www.eff.org/deeplinks/archives/005213.php "Viacom Gives Fair Use a Wide Berth on YouTube"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/yapta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/yapta.jpg Binary files differnew file mode 100644 index 0000000..fb5a21b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/yapta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/yapta.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/yapta.txt new file mode 100644 index 0000000..ba98338 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Tue/yapta.txt @@ -0,0 +1,23 @@ +The airline industry has perhaps the most cryptic pricing structure known to man and deciphering it to get the best deal is never easy. [Yapta][3] (short for Your Amazing Personal Travel Assistant), a new startup set to launch by the middle of next month, aims to help save you the trouble of figuring out the best price by offering refunds even *after* you've already purchased a ticket. + +We at Compiler generally avoid writing about startup sites we haven't personally used, however Yapta is compelling enough, and has potential enough, that it warrants a look. + +The site is currently in closed beta but according to startup watch site, [TheNext][4], hopes to go public by May 15. However early reports suggest that the site will not be the focus, instead Yapta will offer a toolbar bookmarklet that allows you to bookmark and track airfares. It sounds remarkably similar to [MPire][5], but dedicated to airline tickets. + +The really intriguing part is Yapta's claim to offer refunds after the fact. It turns out that there is an obscure rule in the airline industry called the "guaranteed airfare rule," which says that if you buy a ticket directly from an airline and the price drops afterward, you're eligible for a refund. + +Yapta is leveraging that voluntary policy as a means of protecting its customer's purchases. According the TheNext the 275 beta testers currently using Yapta "have already racked up nearly $30,000 in savings." + +So what are the airlines going to think of Yapta? The CEO of Yapta seems to recognize that that at least some are going to be less than thrilled. In an interview with TheNext he says: + +>We recognize we are throwing a hand grenade into a big industry. There are airlines who get it and airlines who don’t in terms of building longterm relationships. Airlines looking to maximize short term profits are not going to like us. + +We'll be sure to keep you posted when Yapta goes public. In the mean time I may have to hold off on buying those summer vacation tickets for a little while. + +[As a footnote, for those interested in understanding how airline ticket prices work, travel author [Edward Hasbrouck][2]'s book, <cite>The Practical Nomad: How To Travel Around The World</cite>, has the clearest explanation I've come across. He also has some [good tips][1] on how to save money on plane tickets.] + +[1]: http://hasbrouck.org/excerpts/index_1_7.html#Section_1.7 "Key advice about air transportation" +[2]: http://hasbrouck.org/ "Edward Hasbrouck" +[3]: http://www.yapta.com/ "Yapta" +[4]: http://blogs.business2.com/business2blog/2007/04/startup_watch_y.html "Yapta" +[5]: http://blog.wired.com/monkeybites/2006/11/online_shopping.html "Mpire Announces New Firefox Plugin"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/blinkx.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/blinkx.txt new file mode 100644 index 0000000..1af4d46 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/blinkx.txt @@ -0,0 +1,12 @@ +Blinkx, the popular video search engine has [announced a new partnership with National Geographic][1] that will add hundreds of hours of the National Geographic content to Blinkx's search results. + +Blinkx users can now search for National Geographic shows like Explorer, The Dog Whisperer and Naked Science. + +Blinkx searches rely on speech recognition technology to index content which the company claims delivers better search results than metadata-based searches. In order to take advantage of the supposedly more accurate search techniques Blinkx has partnered with around 150 companies to index their content. + +National Geographic also partners with [Joost][2] to provide content through the streaming internet service. + +Today's Blinkx deal gives National Geographic fans yet another way to find, watch and link to their favorite show. + +[1]: http://blinkx.com/news?type=&id=257 "Blinkx partners with National Geographic" +[2]: http://blog.wired.com/monkeybites/2007/02/joost_mac_clien.html "Compiler on Joost"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/gMySQL.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/gMySQL.txt new file mode 100644 index 0000000..5ee59c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/gMySQL.txt @@ -0,0 +1,16 @@ +Google has [released improvements and enhancements][3] for the popular open source relational database, [MySQL][2]. Google's code has not yet been incorporated into the official release, though the company would like to see it added, but developers can download the source (GPL licensed) from Google. + +While the announcement on the Google Code blog makes no mention of it, the [MySQL conference][1] in Santa Clara California is in full swing this week and the additional code should be welcome news to MySQL developers. + +Google's patches of MySQL are designed to enhance both the manageability and reliability of the database software. Particularly interesting is a patch that allows administrators to track database usage via new SQL statements for "monitoring resource usage by table and account." + +Other enhancements include support for semi-synchronous replication, mirroring the binlog from a master to a slave, quickly promoting a slave to a master during failover, and keeping InnoDB and replication state on a slave consistent during crash recovery. + +The patches are currently available for MySQL 4, but Google says similar patches for the most resent stable version of MySQL, version 5, will be available soon. + +To use the new patches you'll need to [download them from Google][4] and compile or re-compile MySQL from the source. + +[1]: http://www.mysqlconf.com/ "MySQL Conference" +[2]: http://www.mysql.com/ "MySQL" +[3]: http://google-code-updates.blogspot.com/2007/04/google-releases-patches-that-enhance.html "Google releases patches that enhance the manageability and reliability of MySQL" +[4]: http://code.google.com/p/google-mysql-tools/wiki/Mysql4Patches "MySQL 4 patches"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/ibm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/ibm.jpg Binary files differnew file mode 100644 index 0000000..fbb5b03 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/ibm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/ibm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/ibm.txt new file mode 100644 index 0000000..a2fd57a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/ibm.txt @@ -0,0 +1,14 @@ +IBM has [released a new beta software program][1] that allows Linux based x86 apps to run on the company's PowerPC Unix servers. The new software, called IBM System p Application Virtual Environment, uses the same technology that powered Apple's Rosetta software during the OS X migration to Intel chips. + +Transitive, the company that provided the core technology of Apple's Rosetta virtualization software is also providing the core of IBM's new beta package. QuickTransit, as the underlying technology is known, allows software written for one hardware platform to be run on a different platform without being rewritten. + +IBM says the new beta virtualization software came about because of customer demand for Linux apps on IBM's proprietary PowerPC System p Unix servers. + +The new software should be available to the general sometime around the end of the summer. IBM reports that about 25 customers tested the software as a private beta before today's general release. + +As anyone who used large, processor-intensive apps like Photoshop under Apple's Rosetta virtualization technology can attest, Transitive's core, while impressive for its seamless integration, is best suited to lightweight apps. On the server side that means database applications are probably better off when running natively. + +[via [Information Week][2]] + +[1]: http://www-03.ibm.com/systems/p/linux/systempave.html?ca=p5&met=systempave&me=W&P_Site=p5hero "IBM System p Application Virtual Environment for x86 Linux" +[2]: http://www.informationweek.com/industries/showArticle.jhtml?articleID=199200608 "IBM Introduces x86 Linux Virtualization On System P Servers"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/logobigger.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/logobigger.jpg Binary files differnew file mode 100644 index 0000000..f52989c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/logobigger.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/logobigger.txxt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/logobigger.txxt new file mode 100644 index 0000000..d248e05 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/logobigger.txxt @@ -0,0 +1,8 @@ +Our friend Dave just pointed us to a [hilarious song][1] that all the graphic designers out there will appreciate. A bit of research reveals that the comes from a (seemingly) joke band by the name of [Burnback][2] which is part of [I Have An Idea's Portfolio night][2]. + +Anyway, for all those annoying clients that want to rearrange your beautiful designs, we give you "[Make The Logo Bigger][1]." + +And doesn't that Wired logo really shine when it's been supersized? + +[1]: http://www.underconsideration.com/MaketheLogoBigger.mp3 "Make the Logo Bigger" +[2]: http://www.portfolionight.com/main.php "Portfolio Night"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/machack.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/machack.txt new file mode 100644 index 0000000..6a5058f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/machack.txt @@ -0,0 +1,16 @@ +What started off as a Mac-based hack in the [hack-a-Mac contest at the recent CanSecWest conference][3] has turned into a cross-platform vulnerability that affects not just OS X, but [reportedly Windows as well][2]. + +The OS X vulnerability exploited by hackers is not a flaw in OS X after all. Instead Quicktime is the blame for the vulnerability and the exploit is made possible by a flaw in way Quicktime interacts with Java. + +Because Quicktime and Java are also found on many Windows machines, the vulnerability most likely affects Windows users as well -- though that has yet to be officially confirmed. + +Apple has not address the issue publicly yet beyond the usual PR-speak. An Apple rep [told CNet][4] earlier in the week that, "Apple takes security very seriously and has a great track record of addressing potential vulnerabilities before they can affect users." + +Unfortunately in this case Apple hasn't addressed the issue before it can affect users. Sencunia, a security analyst firm, has [rated the flaw as highly critical][1] and suggests that users disable Java support until Apple issues a patch. + +While many OS X users have taken the revised information as proof that Mac OS X is more secure, in fact, just because the hackers at the conference were unable to find a true flaw in OS X within the timeframe of the contest, does not mean there aren't flaws to be found. + +[1]: http://secunia.com/advisories/25011/ "Apple QuickTime Java Handling Unspecified Code Execution" +[2]: http://www.matasano.com/log/812/breaking-macbook-vuln-in-quicktime-affects-win32-apple-code/ "MacBook Vuln In Quicktime, Affects Win32 Apple Code" +[3]: http://blog.wired.com/monkeybites/2007/04/mac_hack_challe.html "Mac Hack Challenge Requires Rule Change To Find Winner" +[4]: http://news.com.com/MacBook+hacked+in+contest+at+security+event/2100-7349_3-6178131.html "MacBook hacked in contest at security event" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/masc3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/masc3.jpg Binary files differnew file mode 100644 index 0000000..3008a84 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/masc3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/mrsmith.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/mrsmith.txt new file mode 100644 index 0000000..f5ed712 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/mrsmith.txt @@ -0,0 +1,15 @@ +What's far scarier than any [zero-day flaw in software][2]? MySpace as a tool to select presidential candidates. + +Yes it's true, MySpace is expected to announce later today that it will partner with Mark Burnett, the man behind such gems as <cite>Surviver</cite> and <cite>The Apprentice</cite>, to create a new reality TV/internet series designed to select a political hopeful to represent America. + +The show, expected to launch in early 2008, will, [according Chris DeWolfe][1], chief executive of News Corp.'s MySpace unit, mark "a giant leap in the re-democratization of American politics." + +Or possibly remind us that successful use of a video camera tripod does not a great leader make. + +Anyone wishing to emulate Mr. Smith in a bid for Washington glory can submit a video through MySpace video where the 100 million users of the site can discuss, vote, attack and flame presidential hopefuls. + +Burnett and other backers of the program see it as a way to get young people engaged in the political process. + + +[1]: http://www.reuters.com/article/internetNews/idUSN2423326720070425?feedType=RSS&pageNumber=2 "MySpace, Burnett to launch political reality show" +[2]: http://blog.wired.com/monkeybites/2007/04/mac_hack_affect.html "Mac Hack Affects Windows As Well"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/mysql.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/mysql.jpg Binary files differnew file mode 100644 index 0000000..621db02 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/mysql.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/ng.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/ng.jpg Binary files differnew file mode 100644 index 0000000..12e533b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/ng.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/quicktime.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/quicktime.jpg Binary files differnew file mode 100644 index 0000000..cd0e0d3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/quicktime.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/vistaupgrade.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/vistaupgrade.txt new file mode 100644 index 0000000..a72f82f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/vistaupgrade.txt @@ -0,0 +1,16 @@ +Microsoft has [posted a reminder][1] for those brave souls that are still using Windows Vista Beta 2, RC1, and RC2 -- it's time to upgrade to the final version. On May 31 pre-release versions of Windows Vista will expire. After that time the pre-release versions will reboot every two hours. + +If you're still using one of the early version Microsoft will send notifications reminding you to upgrade starting May 18. + +The upgrade process is a bit convoluted but a [handy table on the Microsoft bulletin][1] breaks down your options. + +Users of Beta 2 will need to do a clean install regardless of the final release version they decide to use. + +Those with Windows RC1 have the option to upgrade in place provided they upgrade to Vista Ultimate. + +Curiously, users of RC2 must also do a clean install. Microsoft doesn't appear offer any comment on why the upgrade in place option is available to RC1 users and not RC2. + +Pricing for Windows Vista Upgrades [range from $100 - $260][2] depending on the version you choose. + +[1]: http://www.microsoft.com/windows/products/windowsvista/preview.mspx "Windows Vista: Beta 2, RC1, and RC2 Set to Expire" +[2]: http://www.windowsmarketplace.com/content.aspx?ctId=390 "Buy and Download Windows Vista Upgrades"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/worstmascots.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/worstmascots.txt new file mode 100644 index 0000000..c95d71d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.23.07/Wed/worstmascots.txt @@ -0,0 +1,9 @@ +David Becker, who occasionally contributes tasty tidbits here at Compiler, has a fantastic [gallery of the lamest technology mascots][1] ever over on the main Wired site today. There's fifteen in all and they aren't really supposed to be in order, but I think it is fitting that it opens with [Clippy][3]. + +Personally I find the new Adobe clown pretty creepy as well. + +Also be sure to check out the online poll where you can cast your [vote for the lamest mascot][2] ever and add your own suggestions. + +[1]: http://www.wired.com/culture/design/multimedia/2007/04/gallery_mascots "Gallery: Lamest Technology Mascots Ever" +[2]: http://blog.wired.com/articlecomment/2007/04/gallery_lamest_.html +[3]: http://blog.wired.com/monkeybites/2007/01/in_memoriam_cli.html "In Memoriam: Clippy"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/applepatent.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/applepatent.txt new file mode 100644 index 0000000..fe5e81c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/applepatent.txt @@ -0,0 +1,11 @@ +A recently [revealed][1] Apple patent shows that Dashboard may gain a 3D interface in the near future. With the Worldwide Developers conference just over a month away so are already speculating that the interface may find its way into the upcoming Leopard OS. + +The patent application seems to describe a system of "virtual" Dashboards, which would operate much like "Spaces" the virtual desktop setup in Leopard. + +The rotating cube interface that the Apple design team seems semi-obsessed with is one possible implementation of the virtual Dashboard model. + +Other types of organization schemes in the patent include a very Rolodex-looking graphic to flip through multiple dashboards -- i.e. the Window switcher in Vista. As well as a rotating carousel-looking object. + +There's no telling which, if any, of these designs will end up in Leopard, but I really hope this isn't one the "additional features" Jobs' is always hinting at -- eye candy is not a feature. + +[1]: http://www.macnn.com/blogs/?p=290 "Apple patent reveals Leopard’s Multiple Dashboard feature, more"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/crap.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/crap.jpg Binary files differnew file mode 100644 index 0000000..71f2742 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/crap.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/crapvista.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/crapvista.jpg Binary files differnew file mode 100644 index 0000000..df23665 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/crapvista.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/dash.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/dash.jpg Binary files differnew file mode 100644 index 0000000..9c96b4c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/dash.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/decrapifier.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/decrapifier.txt new file mode 100644 index 0000000..7f95f56 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/decrapifier.txt @@ -0,0 +1,16 @@ +If you purchase a new computer from nearly any retailer these days, chances are you've got a whole bunch of crappy, useless software and free trials lurking around your hard drive, eating up space and popping up annoying install messages. + +The aptly named Decrapifier, eliminates that unwanted junk in one pass. Just download the program, unzip and run the application. Decrapifier looks for common "junkware" applications like free internet service apps, search "assistants," demoware and more. + +Exercise the usual cautions when selecting what to delete since once it's gone, it's gone. + +Yes, you could use Windows Explorer uninstall dialogue to delete all this stuff by hand, but Decrapifier makes it much easier. + +The PC Decrapifier is free for personal use. + +As you can see in the screenshot below, if you happen to be running a simple retail copy of Vista, Decrapifier is largely unnecessary -- for everyone else, get rid of that junk. + +[via [Google Operating System][2]] + +[1]: http://www.pcdecrapifier.com/ "Decrapifier" +[2]: http://googlesystem.blogspot.com/2007/04/remove-software-preinstalled-with-new.html "Remove Software Preinstalled with New PCs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/decrapifyer.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/decrapifyer.txt new file mode 100644 index 0000000..4e9becc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/decrapifyer.txt @@ -0,0 +1,9 @@ + + +So, you're the proud owner of a new PC. You anxiously open the box, dumping out the contents, casting the instructions aside. You feverishly push your old PC off the desk and get the new one set up. On the floor lies a pile of plastic wrap and twist ties. Your brand spanking new PC boots up only to greet you with a plethora of pop up advertisements pestering you to pay for anti-virus software or sign up for a music service. Your desktop is littered with website links for 'special offers.' The system tray is already full of programs that continuously use your internet connection to make sure that you're 'up to date.' + +"When did I ask for this?" you ask. Well, you didn't and that's where the PC Decrapifier comes in. The PC Decrapifier attempts to remove all of the crap on your PC that you never asked for or wanted. To manually remove all of this stuff by hand can take at least an hour (depending on the severity of the infestation.) The PC Decrapifier will detect the 'crap' on your system, you choose what to uninstall, then sit back and let the PC Decrapifier work its magic. + +All of this stuff is placed on your new PC because the big companies like Dell, HP and others sell advertising space on your PC to put more money in their pockets at the expense of your time and frustration. + +The PC Decrapifier is a program free for personal use to help the average computer user combat this problem. It is also available for PC technicians at a small fee to use as a tool in their everyday business to save a tremendous amount of time.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/flickr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/flickr.txt new file mode 100644 index 0000000..7f23afa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/flickr.txt @@ -0,0 +1,17 @@ +Yahoo has announced it will shut down [Yahoo Photos][2] in favor of [Flickr][3] which recently completed its own [transition to Yahoo property][4]. Current Yahoo Photos users will have the opportunity to move their pictures over to Flickr, though no details about how that transition will work are available yet. + +In a somewhat surprising move, [CNet reports][1] that Yahoo Photos users will also have the option to move their photos to Shutterfly or the Kodak Gallery. The additional options are Yahoo's way of dealing with the radical differences between Yahoo Photos and Flickr. + +Yahoo believes that some Photos users may not like Flickr's very different approach, a more open, sharing-oriented approach, which eschews traditional storage metaphors like "albums" in favor of more flexible, but arguably less intuitive, "sets" and "collections." + +That said, I don't think Flickr is all that much of a stretch and as much as I've given Flickr a hard time for how it handled the transition to Yahoo, it remains my favorite photo sharing site. If you're a Yahoo Photos user, I would recommend checking out Flickr, its a little different, but once you wrap your head around it, I think you'll enjoy it. + +For some handy tips on how to use and get the most out of Flickr, check out the [tutorial we wrote about a while back][5]. + +Yahoo Photos Users will have three months to migrate to whatever alternative service they choose. + +[1]: http://news.com.com/8301-10784_3-9715882-7.html?part=rss&subj=news&tag=2547-1_3-0-20 "Yahoo Photos shutting down. Flickr is the new hotness." +[2]: http://photos.yahoo.com/ "Yahoo Photos" +[3]: http://flickr.com/ "Flickr" +[4]: http://blog.wired.com/monkeybites/2007/01/as_i_mentioned_.html "Flickr Imposes New Limits" +[5]: http://blog.wired.com/monkeybites/2007/04/a_newbies_guide.html "A Newbies Guide To Flickr"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/merger.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/merger.txt new file mode 100644 index 0000000..57526dc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/merger.txt @@ -0,0 +1,10 @@ +Microsoft and Yahoo have reportedly headed back the negotiation table to reconsider a merger. <a href="http://www.nypost.com/seven/05042007/business/bills_hard_drive_business_peter_lauria_and_zachery_kouwe.htm">The New York Post</a> and <a href="http://online.wsj.com/article/SB117827827757492168.html?mod=googlenews_wsj">The Wall Street Journal</a> are both reporting that the two giants are reconsidering a deal that could see Microsoft laying down a cool $50 billion for Yahoo. + +The merger talks come in wake of Google's increased market dominance that has threatened both Microsoft and Yahoo, including the recent DoubleClick acquisition. + +Currently the news wires are buzzing and no doubt if it were to happen it would be the biggest financial news since Google went public. For the business angle, be sure to check out the [coverage on our always excellent Epicenter blog][1]. + +I wonder what this would mean for Yahoo's extensive, and rather cool, collection of web services? Should I be rethinking my [endorsement of Flickr][2]? Hopefully not. + +[1]: http://blog.wired.com/business/2007/05/microsoft_looki.html "Microsoft Looking To Acquire Yahoo In $50 Billion Deal" +[2]: http://blog.wired.com/monkeybites/2007/05/yahoo_shutters_.html "Yahoo Shutters Photos In Favor Of Flickr"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/microsoft.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/microsoft.txt new file mode 100644 index 0000000..b976604 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/microsoft.txt @@ -0,0 +1,12 @@ +Next Tuesday Microsoft [will release][2] its latest monthly batch of security bulletins. This month will see no less than seven bulletins, one of which will include a fix for a zero-day flaw in Windows that is already being used in the wild. + +Other bulletins will address flaws in Windows, Office, Exchange and BizTalk, all four of which contain at least one patch rated as critical, meaning that an attacker can execute remote code to hijack a user's system. + +The zero-day flaw that will reportedly be patched stems from a vulnerability in the Windows DNS system which affects Windows 2000 Server and Windows Server 2003. + +Other than listing which updates require a restart, Microsoft has not released any further information on specific vulnerabilities the updates will address. + +Users should detect the updates sometime on Tuesday using Microsoft's Baseline Security Analyzer. + + +[2]: http://www.microsoft.com/technet/security/bulletin/advance.mspx "Microsoft Security Bulletin Advance Notification"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin.jpg Binary files differnew file mode 100644 index 0000000..3ab8ade --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin.txt new file mode 100644 index 0000000..0451b65 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin.txt @@ -0,0 +1,26 @@ +[Pidgin][4], [formerly known as Gaim][1], has just release version 2.0 of the widely popular open-source instant messaging client. Pidgin 2.0 offers multi-protocol chat support and a robust plug-in architecture for third party developers. + +Though many may be confused by the name change, Pidgin is retains all of the features present in its former incarnation as Gaim, however, version 2.0 represents a significant interface overhaul. + +Part of Pidgin's appeal lies in the simplified interface. + +Much like the excellent Mac IM client [Adium][5], Pidgin divides the interface into two primary windows -- a buddy list and a tabbed chat window. + +Buddies can be divided into groups and status icons indicate connectivity, though one thing I missed from Adium were differentiated icons for different services. In Adium it's easy to tell at a glance who's on what network, but Pidgin uses a single icon for the whole list regardless of the network. + +Speaking networks, perhaps the best reason for Pidgin's name change (aside from outstanding legal issues) is that it now supports all the common IM networks including, AIM, Gadu-Gadu, Groupwise, ICQ, IRC, Jabber, MSN, QQ, SIMPLE, Yahoo, and Zephyr. + +In this day and age I still don't understand why IM users bother with proprietary clients that run on individual networks. Some might argue that the growth of in-browser Ajax IM clients renders Pidgin obsolete, but for those that like keeping IM tasks in a separate application, Pidgin is hard to beat. + +Anil Dash [recently called][2] Pidgin the "Firefox of IM," and the latest release certain has Pidgin heading in that direction. Pidgin is free, open source and has a recently re-written, plug-in architecture which allows outside developers to create customized features. + +The only remaining question is whether Pidgin will catch on with users the way Firefox did. + +The official Pidgin site seems to be suffering from the Digg effect, but you can grab a copy of the [latest version][3] from Sourceforge. + + +[1]: http://blog.wired.com/monkeybites/2007/04/aol_forces_gaim.html "AOL Forces Gaim Name Change" +[2]: http://www.dashes.com/anil/2007/04/26/is_pidgin_the_f "Is Pidgin the Firefox of IM?" +[3]: http://sourceforge.net/project/showfiles.php?group_id=235&package_id=230234&release_id=505814 "Sourceforge: Pidgin" +[4]: http://www.pidgin.im/ "Pidgin" +[5]: http://www.adiumx.com/ "Adium X"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin1.jpg Binary files differnew file mode 100644 index 0000000..7a146c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin2.jpg Binary files differnew file mode 100644 index 0000000..5ed0546 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin3.jpg Binary files differnew file mode 100644 index 0000000..aa14b35 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin4.jpg Binary files differnew file mode 100644 index 0000000..867dc62 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/pidgin4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/shark.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/shark.jpg Binary files differnew file mode 100644 index 0000000..1391aaa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/shark.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/vista.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/vista.txt new file mode 100644 index 0000000..318f0d8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Fri/vista.txt @@ -0,0 +1,19 @@ +Windows Vista required many to purchase new hardware to run the sophisticated graphics interface known as Aero Glass, but for laptop users complaining about poor battery performance in Vista, Aero may be the culprit. + +The best battery saving tip for notebook users would of course be to disable Aero, but in that case why spend the money upgrading at all? + +CNet [reports][1] this morning that some hardware manufacturers, like HP, are altering the default power management setting in Vista in an effort to overcome Vista's power hungry Aero Glass interface. + +Of course with any system upgrade, such as the move from Windows XP to Vista, one expects a certain level of increase in power consumption. + +But unfortunately for Microsoft, in the time between the two systems the laptop has overtaken the desktop in popularity and the problem is no longer just a few extra bucks on your electric bill. + +In my own experience, running Vista on a Macbook via Boot Camp, I get dramatically less time out of a full battery charge when booted into Vista versus Mac OS X. + +I generally have about five apps open on either platform, including Firefox, Thunderbird, Notepad (BBEdit in OS X), NewsGator or NetNewsWire and occasionally Photoshop CS3. In OS X that gets me about four to four and half hours of work time, in Vista it's more like three. + +I had been assuming that perhaps the Boot Camp software or Mac specific drivers were dragging down my battery life, but after reading about others with similar problems, I'm not so sure. + +I'm curious if Compiler readers have had problems with battery life after switching to Vista. Let us know your experiences in the comments below. + +[1]: http://news.com.com/2100-1044_3-6181366.html?part=rss&tag=2547-1_3-0-20&subj=news "Vista draining laptop batteries, patience"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/FF3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/FF3.jpg Binary files differnew file mode 100644 index 0000000..bf02e93 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/FF3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/apple-battery.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/apple-battery.txt new file mode 100644 index 0000000..1d5da11 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/apple-battery.txt @@ -0,0 +1,24 @@ +Apple recently [released a software update][3] designed to address performance issues with Macbook and Macbook Pro batteries. The battery update can be found by running Software Update or can be [downloaded directly from the Apple site][1]. + +Apple says the update should be run on all MacBook and MacBook Pros purchased between February 2006 and April 2007, but claims that the performance issues do not present a safety risk. "You may continue to use your current battery," says the Apple update page. + +However, the page also lists some symptoms, which might necessitate the replacement of your battery. The qualifying symptoms of an affected battery are: + +* Battery is not recognized causing an "X" to appear in the battery icon in the Finder menu bar. +* Battery will not charge when computer is plugged into AC power. +* Battery exhibits low charge capacity/runtime when using a fully charged battery with a battery cycle count (as shown in System Profiler) of less than 300. +* Battery pack is visibly deformed. + +If you experience any of the above, it's time to head to an Apple store or authorized Apple repair center, where you can new battery, free of charge, even if your MacBook or MacBook Pro is out of warranty. + +While it's nice to see Apple finally address a widespread issue, I ran across [a thread in the Apple forums][2] where some users have reported problems with the update. Given that my Macbook is my main work machine, I haven't applied the update yet. But I also haven't had any problems with the battery and I'm a firm believer in the old adage "if it ain't broke..." -- YMMV. + +And there's certainly no hurry, the new battery program extends repair coverage to up to two years from the date of purchase. + + + + +[2]: http://discussions.apple.com/thread.jspa?threadID=943961&tstart=0 "Macbook Pro Battery Update 1.2 Issues" +[1]: http://www.apple.com/support/downloads/batteryupdate12.html "Macbook/Macbook Pro Battery update" +[3]: http://www.apple.com/support/macbook_macbookpro/batteryupdate/ "MacBook and MacBook Pro Battery Update" +[4]: http://www.flickr.com/photos/peem/199164333/ "Flickr: swollen macbook pro battery"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/batterybulge.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/batterybulge.jpg Binary files differnew file mode 100644 index 0000000..21d3208 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/batterybulge.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff2-old.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff2-old.jpg Binary files differnew file mode 100644 index 0000000..db40dc0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff2-old.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-1.jpg Binary files differnew file mode 100644 index 0000000..1ab7519 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-2.jpg Binary files differnew file mode 100644 index 0000000..fc4711d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-3.jpg Binary files differnew file mode 100644 index 0000000..c3f536d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-cocoa-widgets.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-cocoa-widgets.jpg Binary files differnew file mode 100644 index 0000000..71915aa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3-cocoa-widgets.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3alpha b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3alpha new file mode 100644 index 0000000..d716571 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ff3alpha @@ -0,0 +1,31 @@ +Mozilla has reached another milestone in the development of Firefox 3, releasing another alpha build over the weekend. As with the previous alpha releases, Gran Paradiso Alpha 4 is intended primarily for the developer community and is not yet ready for prime-time. + +Alpha 4 brings a number of new enhancements to Firefox 3, which we [outlined yesterday][1]. While most of the new feautres are behind-the-scenes improvments which are not immediately obvious to the casual user, there is one exception -- speed. + +Alpha 4 is the fastest version of Firefox yet, though how much of that is a result of running the browser with no extensions, versus actual speed increase is open to debate. + +Behind the scenes the new Gecko 1.9 rendering engine does bring speed boosts in page load time and disabling the extensions in Firefox 2 still didn't match the speed of Gran Paradiso. In my testing (done using a Macbook 2 GHz, 1 G RAM, running OS X and Windows with cable internet connection) pages snapped up with almost no lag at all. + +Mac users will probably see the biggest speed gains in the coming Firefox 3 since all the interface elements in next version will use Cocoa widgets. However, there seems to be some confusion as to what this means. + +For the record, "native Cocoa widgets" refers to things like scrollbars, buttons in the various panels, and other browser UI elements. It **does not mean** that form elements on the page will use OS X-style buttons and lists. + +In fact the newly native Cocoa widgets look no different than the Carbon widgets (see screenshots below) used in Firefox 2; the difference is they render faster, providing Mac users with a much needed speed boost. + +Other than speed gains, the most noticeable new feature is a completely redesigned Page Info panel. The Page Info panel has been condensed and re-organized, as well as adding some new features like the ability to set cookie and security permissions on a per page basis (which is possible in Firefox 2, but only via add-ons). + +Previous the Get Info panel was subdivided into "forms," "links," and "media" tabs, but those three have now been condensed into one tab, "media" which allows quick and easy access to all the image assets on a page. + +Interestingly, external stylesheets, Javascript and other files previously listed in the "links" tab appear to no longer be available. + +Alpha 4 also introduces a new crash reporting mechanism named Breakpad that should help Firefox developers get better feedback. On the Mac side, it's also worth noting that Breakpad can peacefully co-exist with OS X' built in crash reporter. + +Two new features we were really looking forward to, didn't end up making the final build of Alpha 4. Growl notifications were disabled at the last minute since they still have too many bugs, and Places, a new History and Bookmarks manager, is only partially included. + +For the daring, the Mozilla wiki has instructions on how to [create a build of Alpha 4 with Places fully enabled][2]. + +As with any alpha build there are still [a number of known issues][3] and Gran Paradiso is not recommended for daily use. Still, the new milestone shows Firefox 3 is making steady progress toward a final release. + +[1]: http://blog.wired.com/monkeybites/2007/04/firefox_3_alpha.html "Firefox 3 Alpha 4 Arrives, New Roadmap Details Emerge" +[2]: http://wiki.mozilla.org/Places#Builds "Places Builds" +[3]: http://www.mozilla.org/projects/firefox/3.0a4/releasenotes/#issues "Alpha 4 Known Issues"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/photoshopflaws.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/photoshopflaws.txt new file mode 100644 index 0000000..f47a075 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/photoshopflaws.txt @@ -0,0 +1,14 @@ +Photoshop isn't high on most people's list of ways to hijack a computer, but that doesn't mean it's immune to security risks. Two new flaws have recently been found in venerable photo editing program, including one that allows the execution of arbitrary code. + +The latest vulnerability, according to Secunia, a security research firm, is caused by a [boundary error in the PNG Photoshop Format Plugin][1]. The flaw has been confirmed in CS2 and is believed to affect the new CS3 as well. + +That news comes on heals of an announcement last week that a flaw in the way Adobe Photoshop handles Bitmap files leaves it open to [exploitation via malicious BMP files][2]. + + +Technically these exploits are not limited to Photoshop, but affect any Adobe product using the plug-ins. Secunia reports that that the BMP exploit has been tested in the wild, but the PNG remains thus far only theoretical. + +Still, since Adobe has not released any patches yet, Secunia recommends that users not open untrusted .bmp or .png files. + + +[1]: http://secunia.com/advisories/25044/ "PNG File Handling Buffer Overflow" +[2]: http://secunia.com/advisories/25023/ "Adobe Photoshop Bitmap File Handling Buffer Overflow Vulnerability "
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ps3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ps3.jpg Binary files differnew file mode 100644 index 0000000..79044d1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Mon/ps3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/macpc.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/macpc.txt new file mode 100644 index 0000000..cc173e9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/macpc.txt @@ -0,0 +1,10 @@ +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/Id_kGL3M5Cg"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Id_kGL3M5Cg" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +There's nothing quite as tedious and wholly unnecessary as the long running Mac vs PC debate, but when you add South Park to the mix, it gets a little more entertaining. + +The video is a fan project from a multimedia production class at California State University Northridge, who seem to have recognized the fundamental truth of the debate -- all OSes suck. + + +[via [Digg][1]] + +[1]: http://digg.com/apple/Mac_vs_PC_South_Park_style "Mac vs. PC: South Park style" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/openBSD.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/openBSD.jpg Binary files differnew file mode 100644 index 0000000..2b6fe23 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/openBSD.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/openBSD.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/openBSD.txt new file mode 100644 index 0000000..5b847c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/openBSD.txt @@ -0,0 +1,12 @@ +The Open BSD project has released a new update, bringing the seminal OS to version 4.1. Although not perhaps as well known as FreeBSD, which is the core component underlying Mac OS X, Open BSD is a popular OS in its own right. + +Version 4.1 brings a number of changes including increased hardware compatibility options which is one of the core focuses of Open BSD. Among the guiding principles of the project is this mantra: + +>No matter how nice an operating system is, it remains useless and unusable without solid support for a wide percentage of the hardware that is available on the market. It is therefore rather unsurprising that more than half of our efforts focus on various aspects relating to device support. + +However the new version isn't all about hardware there's also some significant improvements to the software as well. Open BSD 4.1 features an all new BSD-licensed <code>pkg-config</code> tool, which is a complete rewrite of the GNU tool of the same name. + +But let's face it, who's in it for the OS? The really great part about a new release of Open BSD is it means there's another of those patently cheesy songs to accompany it. Check out <em>[Puffy Baba and the 40 Vendors][2]</em>, nerdiness at its high or low point, depending on how you look at it. + +[1]: http://openbsd.org/41.html "The OpenBSD 4.1 Release" +[2]: http://openbsd.org/lyrics.html#41 "4.1: "Puffy Baba and the 40 Vendors""
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/openoffice.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/openoffice.txt new file mode 100644 index 0000000..0595919 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/openoffice.txt @@ -0,0 +1,16 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/2007/04/20/ooo.gif" title="Ooo" alt="Ooo" style="margin: 0px 0px 5px 5px; float: right;" />Great news for Mac users, Sun Microsystems has announced it will be helping port [OpenOffice][3] to the Mac platform. While there are currently versions of OpenOffice that run under the X11 environment, there is no native version of OpenOffice for Mac. + +Sun had previously said that it would not actively contribute to the Mac OpenOffice project but in the [blog post announcing Sun's support][1], Philipp Lohmann, a developer at Sun writes that the increasing market share and community support of the Mac platform helped bring about the change of heart. + +>Why is Sun joining the Mac porting project? If you look around at conferences and airport lounges, you will notice that more and more people are using Apple notebooks these days. Apple has a significant market share in the desktop space. We are supporting this port because of the interest and activity of the community wanting this port. + +Native OpenOffice support will be a boon to Mac users given that there is currently no compelling alternative to Microsoft Office for Mac. + +We've looked at other MS Office alternative in the past, [including NeoOffice][2], but almost all of them have come up wanting. While OpenOffice is far from perfect, it is the most compelling alternative to MS Office on any platform. + +With Sun now behind the project, hopefully the somewhat stalled [Mac OpenOffice][4] port will get off the ground and deliver Mac users an alternative to the Microsoft bondage. + +[1]: http://blogs.sun.com/GullFOSS/entry/sun_microsystems_engineering_joins_porting "Sun Microsystems joins porting effort for OpenOffice.org for Mac" +[2]: http://blog.wired.com/monkeybites/2007/01/mac_month_neoof.html "Mac Month: NeoOffice The Aqua Friendly MS Office Alternative" +[3]: http://www.openoffice.org/ "OpenOffice" +[4]: http://porting.openoffice.org/mac/download/index.html "Mac OpenOffice project"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/pidgin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/pidgin.jpg Binary files differnew file mode 100644 index 0000000..3ab8ade --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/pidgin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/pipes.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/pipes.txt new file mode 100644 index 0000000..d3ac02a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/pipes.txt @@ -0,0 +1,19 @@ +Yahoo continues its drive into the realm of geo location data, adding [improved geo support][2] to the recently launched [Yahoo Pipes service][5]. The new features include the addition of interactive Yahoo Maps to the main page of any Pipe containing geodata. + +In addition to the new maps Yahoo has added an output renderer which allows Pipes containing GeoData to be exported as a KML file. That means, using the KML data, Yahoo Pipes can now be viewed as a layer in Google Earth. + +If your favorite Pipe has geo data in it, there is a new link to near the bottom of the Pipe's page, in the "Tools" section, to download the KML file. + +Obviously the geo data is really only useful for Pipes that are location oriented. The Yahoo announcement points to the [Apartment Near Something Pipe][3], which tracks apartment listings and shows surrounding businesses and other notable landmarks. + +Other cool examples include the [Photos Near Napa Wineries][4] (pictured above), a Pipe that annotates Yahoo Local results for Napa Wineries and includes images from Flickr that were taken nearby. + +In addition to our enhanced geolocation support, Yahoo add a couple other nice touches to Pipes, including inline editing for the "Title" and "Description" text of your Pipes and some improved date filtering options for sorting Pipes. + +[via [O'Reilly][1]] + +[1]: http://radar.oreilly.com/archives/2007/05/yahoo_pipes_add.html "Yahoo Pipes Adds Geo Data Support" +[2]: http://blog.pipes.yahoo.com/2007/05/02/pipes-adds-interactive-yahoo-maps-kml-support-and-more/ "Pipes Adds Interactive Yahoo! Maps, KML Support (and More)" +[3]: http://pipes.yahoo.com/pipes/pipe.info?location=94109&what=parks&mindist=2&_id=1mrlkB232xGjJDdwXqIxGw&_run=1&=Run+Pipe "Apartment Near Something" +[4]: http://pipes.yahoo.com/pipes/pipe.info?_id=bMPFtO342xGrr53VyzUFzw "Photos Near Napa Wineries" +[5]: http://blog.wired.com/monkeybites/2007/02/yahoo_launches_.html "Yahoo Launches Pipes"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/quicktimepatch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/quicktimepatch.txt new file mode 100644 index 0000000..570af9f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/quicktimepatch.txt @@ -0,0 +1,20 @@ +<img alt="Quicktime" title="Quicktime" src="http://blog.wired.com/photos/uncategorized/2007/04/25/quicktime.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Just days after its discovery during a [hacking contest at the CanSecWest conference][4], Apple has released Quicktime update that patches a serious zero day flaw. The Quicktime update is recommended for both Windows and Mac users and can be [downloaded from the Apple site][1]. + +The Apple [security note][2] credits Dino Dai Zovi, the hacker who recently discovered the flaw, as well as TippingPoint and the Zero Day Initiative for the discovery of the flaw. + +It would seem that everybody wins in this scenario, Zovi took home the $10,000 prize and Apple patched the flaw giving Quicktime users a more secure platform, but security analysts Gartner industries is still unhappy. + +A [note on the Gartner site][3] reads: + +>Public vulnerability research and "hacking contests" are risky endeavors, and can run contrary to responsible disclosure practices, whereby vendors are given an opportunity to develop patches or remediation before any public announcements. Vulnerability research is an extremely valuable endeavor for ensuring more secure IT. However, conducting vulnerability research in a public venue is risky and could potentially lead to mishandling or treating too lightly these vulnerabilities -- which can turn a well-intentioned action into a more ambiguous one, or inadvertently provide assistance to attackers. + +While there is some merit to what Gartner is saying, the fact is the flaws exist, and security through secrecy is nearly always a flawed approach. To argue that vender notification trumps user notification means that Gartner believes users are better off left in dark while the vender attempts to fix the problem. + +In fact, notifying users that a problem exists alerts them to potential vulnerabilities. In this case once users were aware that the flaw existed they could exercise greater caution in downloading untrusted Quicktime Media. + +It's also worth noting that Gartner has a vested interest in maintaining insider knowledge of attacks, something they lose in public hacking contests. + +[1]: http://www.apple.com/support/downloads/quicktime716formac.html "QuickTime 7.1.6 for Mac" +[2]: http://docs.info.apple.com/article.html?artnum=305446 "About the security content of QuickTime 7.1.6" +[3]: http://www.gartner.com/DisplayDocument?doc_cd=148455 "QuickTime Vulnerability Exposed by Contest Poses Wide Risk" +[4]: http://blog.wired.com/monkeybites/2007/04/mac_hack_affect.html "Mac Hack Affects Windows As Well"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/skype.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/skype.jpg Binary files differnew file mode 100644 index 0000000..ccef4b9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/skype.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/skype.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/skype.txt new file mode 100644 index 0000000..fe71257 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/skype.txt @@ -0,0 +1,40 @@ +While Skype for Mac and Windows have been available for some time, Linux users have been largely left out until now. Yesterday Skype [released an alpha preview][1] for the upcoming Skype for Linux. + +Version 1.4 of Skype for Linux brings the software closer to a usable product and represents a major re-write from previous versions. + +Unfortunately Skype's Linux client still lags behind its Windows and Mac counterparts. Video and SMS functionality remain missing, though Skype says that the audio quality is now on par with that of Mac and Windows. + +As you would expect from an alpha release, there are a number of [known issues][1] and Skype recommends that only advanced users download the test version. + +In fact, the list of known issues is far to large to reprint here. + +But if the known issues don't put you off and you're itching to take the plunge, here's the requirements breakdown from the Skype site: + +<blockquote> +<ul> +<li>Hardware + +<ul> +<li>ALSA-supported sound device.</li> +<li>Software</li> +<li>glibc 2.4</li> +</ul></li> +<li>Software (for static release) +<ul> +<li>sigc++ 2.0</li> +</ul></li> +<li>Software (for dynamic release) +<ul> +<li>Qt 4.2.x +<ul> + +<li>Qt 4.2.3 contains a bug that if [http://www.trolltech.com/developer/task-tracker/index_html?method=entry&id=153635 unpatched] will cause expanded contact details to be displayed incorrectly.</li> +<li>Qt 4.3.0-beta is considered not yet release worthy, and may cause unpredictable side-effects with the Skype 1.4 client.</li> +</ul></li> +<li>sigc++ 2.0</li> +</ul></li> +</ul> +</blockquote> + +[1]: http://share.skype.com/sites/garage/2007/05/skype_for_linux_14_alpha_relea.html "Skype for Linux 1.4 Alpha release" +[2]: http://share.skype.com/sites/linux/2007/05/linux_14_panacea.html "Linux 1.4: Panacea"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/toshiba.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/toshiba.txt new file mode 100644 index 0000000..a4c0990 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/toshiba.txt @@ -0,0 +1,10 @@ +Hot on the heals of Dell's recent decision to [offer Ubuntu Linux on consumer laptops][2], DesktopLinux.com [reports][1] that Toshiba is considering a similar move. Initially such a move might be limited to the Italian market. + +According to DesktopLinux, Luigi Cattaneo, a manager in the company's Italy Computer Systems Division, says that with Acer and HP already controlling more than 50 percent of the Italian Windows laptop market, Toshiba may look to Linux as a way to boost sales. + +Although Toshiba has yet to formally announce anything, the Linux option would reportedly be available preloaded on the Tecra, Satellite, Portege, and Qosmio notebook lines. + +Thus far the U.S. division of Toshiba remains mum about possible Linux options. + +[1]: http://www.desktoplinux.com/news/NS9644921792.html "Toshiba Italy mulls pre-loaded Linux notebooks" +[2]: http://blog.wired.com/monkeybites/2007/05/ubuntu_fiesty_f.html "Ubuntu Fiesty Fawn Coming to Dell Laptops"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/ubunt.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/ubunt.jpg Binary files differnew file mode 100644 index 0000000..30650ab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/ubunt.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/yahoomess.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/yahoomess.jpg Binary files differnew file mode 100644 index 0000000..5591746 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/yahoomess.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/yahoomessenger.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/yahoomessenger.txt new file mode 100644 index 0000000..25f6a0f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/yahoomessenger.txt @@ -0,0 +1,16 @@ +Yahoo is now offering its Yahoo Messenger IM service as a [web-based service][2], eliminating the need to run a separate client application. The new service is limited to the Yahoo Messenger and Windows Live Messenger platforms, but should prove handy in cases where the user doesn't have permission to install client software of their computer. + +The interface is for the web version of Yahoo Messenger is written entirely in Flash, making it cross-platform and cross-browser capable. + +The messenger window supports tabs so you can run multiple conversations in one window. There are also searchable archives of past conversations and the ability to import contacts from Windows Live Messenger accounts. + +Live Messenger works in Firefox, Internet Explorer, Safari, and Opera. + +For a nice overview of the new service check out the [Yahoo demo video][1]. + +I had no problems using the new service, but the lack of support for other chat protocols (for some reason everyone I know is on AIM) is a bit of a deal breaker. + +Still, if most of your contacts happen to be on Yahoo Messenger, the new web-based version will eliminate the need for a separate chat client. + +[1]: http://us.i1.yimg.com/us.yimg.com/i/us/msg/promo/webm/messenger.swf "Web Messenger Demo Video" +[2]: http://webmessenger.yahoo.com/ "Web Messenger"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/yahoopipes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/yahoopipes.jpg Binary files differnew file mode 100644 index 0000000..20fe92d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Thu/yahoopipes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/24flickr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/24flickr.txt new file mode 100644 index 0000000..2ea114b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/24flickr.txt @@ -0,0 +1,12 @@ +Since the [demise of Life magazine][3], fans of the "Day in the Life" series have been left hanging, but fear not, the internet will pick up the slack. Grab your SLRs photo-hounds because Flickr has announced a "[24 hours of Flickr][1]" event to document life on the planet as seen through the eyes of Flickr users. + +The event will take place May 5th beginning at 6AM Pacific time, though you will be able to submit photos until the 21st, which should give you plenty of time to post process and clean up your images. + +And it might be a good idea to put some effort into those images since, in addition to posting your photos on the site, your pictures could end up in print. Flickr plans to release a companion "24 Hours of Flickr" book, pulling select photos from the group -- just like the old Life series, more or less. + +To participate you need to be a Flickr member and join the "[24flickr][2]" group. + + +[1]: http://blog.flickr.com/flickrblog/2007/04/its_coming_24_h.html "24 hours of Flickr" +[2]: http://www.flickr.com/groups/24flickr/ "24flickr" +[3]: http://blog.wired.com/monkeybites/2007/03/time_retires_li.html "Time Retires Life Magazine And Puts 10 Million Images Online"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/AIMkml.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/AIMkml.jpg Binary files differnew file mode 100644 index 0000000..be5bb75 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/AIMkml.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/aimge.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/aimge.txt new file mode 100644 index 0000000..0553098 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/aimge.txt @@ -0,0 +1,8 @@ +If you love the idea of Twittervision, but don't really like [Twitter][1], the developer's behind the AIM protocol have released a similar tool for Google Earth that you might enjoy. The new KML layers allow you to overlay nearly real-time [AIM conversation data in Google Earth][2]. + +Using IP to City geocoding, the AIM visualization displays all the conversations that have started in the last minute, in real time. When you're pulled back to the world view only the newest conversations are shown, when you start to zoom in past conversations become visible. + +To add the layers, just download them from the AIM site and open Google Earth. Head to File>>open and select the downloaded layers. Then check for the new layers in your "Places" panel. + +[1]: http://blog.wired.com/monkeybites/2007/03/8_cool_twitter_.html "8 Cool Twitter Tools" +[2]: http://x.aim.com/ge/ "AIM Google Earth Visualizations"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/drmcrack.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/drmcrack.jpg Binary files differnew file mode 100644 index 0000000..2757637 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/drmcrack.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/flickrday.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/flickrday.jpg Binary files differnew file mode 100644 index 0000000..48b0de9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/flickrday.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/flickrhack.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/flickrhack.txt new file mode 100644 index 0000000..7499b17 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/flickrhack.txt @@ -0,0 +1,11 @@ +A while back we [told you that HD-DVD had been cracked][4] to bypass the DRM. Well, proving once again that one man's technical feat is another's mashup art project, a Flickr user by the name of [Kastner][1] has created a collage page that [spells out the DRM bypass key using Flickr images][2]. + +The impressive little photo mashup consists of PHP and Javascript which the author has made available to others. Naturally, by changing a few lines of code, you could spell out whatever you like. + +[via [Make][3]] + + +[1]: http://flickr.com/photos/kastner/ "Flickr: Kastner" +[2]: http://metaatem.net/words/09%20F9%2011%2002%209D%2074%20E3%205B%20D8%2041%2056%20C5%2063%2056%2088%20C0 "Flickr Mashup" +[3]: http://www.makezine.com/blog/archive/2007/05/artwork_titled_09_f9_11_0.html?CMP=OTC-0D6B48984890 "Make" +[4]: http://blog.wired.com/monkeybites/2006/12/the_morning_reb_18.html "The Morning Reboot: Friday December 29"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/pap-icon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/pap-icon.jpg Binary files differnew file mode 100644 index 0000000..fd5c279 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/pap-icon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/pap1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/pap1.jpg Binary files differnew file mode 100644 index 0000000..b193bd9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/pap1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/pap2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/pap2.jpg Binary files differnew file mode 100644 index 0000000..04ab0bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/pap2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/paparazzi b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/paparazzi new file mode 100644 index 0000000..442a110 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/paparazzi @@ -0,0 +1,13 @@ +Paparazzi is a free Mac OX X screen capture application allows you to grab an entire webpage in a single image -- regardless of length. Unlike Apple's Grab and other screen capture application's we've reviewed, Paparazzi doesn't provide an interactive interface. + +Rather than dragging to select a portion of the screen, you must enter a URL and then define your image dimensions. The final output is an elongated image that shows the entire page in one view. + +In a particularly nice touch, Paparazzi will import bookmarks from both Safari and Camino, perfect for those that frequently need to grab a bookmarked URL. + +There are options that allow you to constrain the portions of the capture image, for instance the example image below was set to capture an area 800 pixels wide. + +If the page you'd like to capture has some animation and you'd like ensure that a particular frame of the animation shows up, Paparazzi can be set to capture on a timed delay. + +Once captured, Paparazzi displays a tiny preview image and offers the ability to save your screenshot in .jpg, .png, .pdf or .tiff format. There's also an option to simultaneously create a thumbnail image. + +Paparazzi probably won't fall in the daily use category for most people, but when you do need to grab a whole webpage, it sure beats piecing it together in Photoshop. And the results are great -- sharp, if somewhat large, full page images.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/papscreen-full.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/papscreen-full.jpg Binary files differnew file mode 100644 index 0000000..a1e8adb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/papscreen-full.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/papscreen-thumb.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/papscreen-thumb.jpg Binary files differnew file mode 100644 index 0000000..41d7d69 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/papscreen-thumb.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/silverlight.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/silverlight.txt new file mode 100644 index 0000000..3842c5e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/silverlight.txt @@ -0,0 +1,19 @@ +<img alt="Silverlight" title="Silverlight" src="http://blog.wired.com/photos/uncategorized/2007/04/16/silverlight.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Microsoft has unveiled a number of new details about [Silverlight][4] the company's new Flash competitor. In series of announcements at the ongoing Mix 07 conference, Microsoft revealed that portions of the new development platform would be open source. + +The Dynamic Language Runtime (DLR) component of Silverlight will be open source. The DLR allows developers to write in dynamic languages like Ruby or Python but then compiles them into .NET code. + +Open Sourcing the DLR code seems to be aimed at drawing in outside developers and given that Adobe recently release large portions of Flash as open source projects, Microsoft's move seems almost inevitable. + +At the same time the DLR aspects of .NET has been around for a while and so far it hasn't drawn in many outsiders. As such the announcement feels more like a PR move to combat Adobe's announcement, than a real directional shift. + +Other highlights from the Silverlight announcements at Mix include news that Silverlight include a mini-CLR (Common Language Runtime) meaning a subset of the .NET framework is now cross-platform and can run in the browser. + +By all account Silverlight is fast, very fast. Some of the better coverage, for those wanting to know more details, can be found at [TechCrunch][3] and [ZDNet][2]. + +The CLR aspect of Silverlight is big news, for the first time .NET apps will have cross-platform support and in bringing .NET to the browser (almost all browsers) Microsoft has significantly changed its IE-only strategy. + +Unfortunately for Silverlight Adobe is way ahead in this territory. Flash is nearly ubiquitous on the web and Silverlight is going to have some serious catching up to do. + +[2]: http://blogs.zdnet.com/Stewart/?p=356 "The scoop on Silverlight for developers" +[3]: http://www.techcrunch.com/2007/04/30/silverlight-the-web-just-got-richer/ "Silverlight: The Web Just Got Richer" +[4]: http://blog.wired.com/monkeybites/2007/04/silverlight_mic.html "Silverlight: Microsoft Launches Flash Competitor"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/webcamslinux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/webcamslinux.txt new file mode 100644 index 0000000..4c421c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/webcamslinux.txt @@ -0,0 +1,18 @@ +Open source projects pride themselves on the wisdom and effort of the crowd, but in the case of web cam drivers, one man has done what many could not. A lone French programmer by the name of Michel Xhaard is single handedly responsible for making [235 USB webcams available][1] to Linux users. + +It seems remarkable in this day and age that no company has some along to support Xhaard's efforts, especially given the massive popularity of video conferencing tools. + +The Inquirer, a British tech site, discovered Xhaard's efforts recently and has a nice [interview on the site][2]. + +When asked why no one has stepped in to support the project, Xhaard says, "my work is not 'Linux Kernel centred' my goal is to provided video input support for Linux users, and I am not sure that these big companies are interested in the end user." + +While that skepticism is not unfounded, I also suspect that many companies that might be interested in sponsoring Xhaard's work are simply unaware that it exists. So for those seeking webcam drivers, and also perhaps for companies looking to foot the bill for some hosting costs, we at Compiler offer this salute. + +While Steve Balmer may see Conrad's proverbial heart of darkness in open source, Xhaard remains a shiny example of why the movement works -- people want to make technology better. + + +[via [Slashdot][3]] + +[1]: http://mxhaard.free.fr/spca5xx.html "Webcam Drivers for Linux" +[2]: http://www.theinquirer.net/default.aspx?article=39291 "One man writes Linux drivers for 235 USB webcams" +[3]: http://linux.slashdot.org/article.pl?sid=07/04/30/209201&from=rss "Lone Programmer Writes 352 Webcam Drivers For Linux"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/xhaard.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/xhaard.jpg Binary files differnew file mode 100644 index 0000000..280d3ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/04.30.07/Tue/xhaard.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/gemaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/gemaps.jpg Binary files differnew file mode 100644 index 0000000..9cebe85 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/gemaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/gestart.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/gestart.jpg Binary files differnew file mode 100644 index 0000000..3b6b8e2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/gestart.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/getips.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/getips.jpg Binary files differnew file mode 100644 index 0000000..fd112d8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/getips.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/googleearth.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/googleearth.txt new file mode 100644 index 0000000..0e5bcc3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/googleearth.txt @@ -0,0 +1,23 @@ +Google has quietly released an update to Google Earth beta 4.1. The new download features unspecified bug fixes and a number of new features including a "homepage," integration with Google Maps and support of the popular Space Navigator in the Mac OS X version of [Google Earth][1],. + +Perhaps the best reason to upgrade is the new Google Maps integration. Google Earth users can now open a location in Google Maps directly from Google Earth, making it easy to share and send links over the web. The Google Maps integration is a long time coming, but welcome nevertheless. + +A new maps tool icon at the top of the application bar enables the new "View in Google Maps" option. Clicking the icon opens your default browser and shows the same view in Google Maps. + +Other additions include a "Starting Location" pin which acts much like a web browser homepage. The pin location appears to be determined by the localization you download. Mine defaulted to the United States. As far as I can tell this isn't customizable, unless I missed something. + +Speaking of localization, Google Earth now has language support for Portuguese, Dutch, Russian, Polish, Korean, Arabic, and Czech. + +Another nice new feature is a new startup "tips" window with hints and suggestions for using the app. Naturally power users can disable the feature if they don't want it. + +For Mac users there is now support for the "Space Navigator" a device designed specifically for navigation in 3d environments. I'll confess I'd never heard of the Space Navigator, but after watching the demo video below, I simply must have one. The [Space Navigator][3] is $60 (U.S.) + +Google Earth continues to progress and I would recommend the [update][1] for all users for the Google Maps integration alone. + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/TQGes21MRUE"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/TQGes21MRUE" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[via the [GEarthBlog][2]] + +[1]: http://earth.google.com/download-earth.html "Google Earth download" +[2]: http://www.gearthblog.com/ "GEarth Blog" +[3]: http://www.3dconnexion.com/products/3a1d.php "Space Navigator"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/googlesound.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/googlesound.txt new file mode 100644 index 0000000..ec1c38d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/googlesound.txt @@ -0,0 +1,23 @@ +A new project from a company named Wild Sanctuary will bring sound to Google Earth. Bernie Krause, head of Wild Sanctuary, has been recording sounds from all over the world for the last forty years and a new piece of software will allow those sounds to be embedded into Google Earth. + +The Wild Sanctuary sounds would available when zooming in on specific areas in Google Earth. "Our objective is to bring the world alive," Krause [told the New Scientist][1]. "We have all the continents of the world, high mountains and low deserts." + +With over 3500 hours of sounds, ranging from bird calls to the cacophony of melting glaciers, the Wild Sanctuary collection is, according to Krause, the largest library of natural sounds in the world. + +Krause hopes his project will make Google Earth users more aware of the impact of human activity on the environment in the years since he began making and collecting the recordings. + +Although it won't be available for the initial launch at the Where 2.0 conference later this month, Krause hopes to eventually take advantage of the history of sound be offer options to hear sounds over time. For instance hear the sound of the jungle in the 1970s and then hear sounds from the same location today. + +Although Google is not officially involved yet, Krause is reportedly talking with them about including the sounds in the default Google Earth Download. + +The Wild Sanctuary software and sounds will be available for download from the Wild Sanctuary site following the Where 2.0 conference on May 29th. + +The impatient can get a taste of the sounds by heading over to the [Wild Sanctuary website][2]. + +[2]: http://www.wildsanctuary.com/ "Wild Sanctuary" + +[1]: http://www.newscientisttech.com/article/mg19426035.500-audio-collection-to-enhance-google-earth.html "Audio collection to enhance Google Earth" + +[photo [credit][3]] + +[3]: http://www.flickr.com/photos/7305041@N05/432733536/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/lion.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/lion.jpg Binary files differnew file mode 100644 index 0000000..2848783 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/lion.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/opera.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/opera.txt new file mode 100644 index 0000000..a260b10 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/opera.txt @@ -0,0 +1,12 @@ +Opera is getting ready to release a new beta version of its Opera Mini browser for mobile devices and has invited users to sign up for the release. Head over the Opera Mini site and leave your name and email to [receive an invite for the beta test][1]. + +So far Opera remains mum about what to expect from the new version of Opera Mini, code named Dimension. Opera says that "enhanced navigation is the next step in the evolution of mobile Web browsing -- that's exactly what Opera's developers are exploring for the next version of Opera Mini." + +Opera Watch, a blog devoted to tracking Opera developments, has been testing the new version for some time and offers the following [tantalizing glimpse][2]: + +>So what’s new in the browser? I can’t say too much now, but there’s a totally new way of navigating webpages with Dimension – really cool. As I’ve said before, I’ve been testing it for some time already, and have been truly impressed. Seeing what the tiny browser can do on my phone has blown me away. + +We'll be sure to give it a whirl whenever the next beta is released -- stay tuned. + +[1]: http://www.operamini.com/beta/ "Sign Up for Opera Mini beta" +[2]: http://operawatch.com/news/2007/05/sign-up-for-beta-testing-of-the-new-opera-mini.html "Sign up for beta testing of the new Opera Mini"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/operamini.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/operamini.jpg Binary files differnew file mode 100644 index 0000000..3d4ea5c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/operamini.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/redhat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/redhat.jpg Binary files differnew file mode 100644 index 0000000..389f9de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/redhat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/redhat.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/redhat.txt new file mode 100644 index 0000000..42bb2d3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/redhat.txt @@ -0,0 +1,16 @@ +Earlier this week Red Hat announced the availability of a new desktop Linux distribution, dubbed Red Hat Global Desktop. The new system signals a change from [Red Hat][1] as it moves from its previous concentration on the server market to the Linux desktop. + +Red Hat Global Desktop seems geared to compete with SUSE Linux Enterprise 10 Desktop and with the increasingly popular Ubuntu Desktop. + +The Global Desktop distro is, [according to DesktopLinux.com][2], a result of Red Hat's involvement with the One Laptop per Child (OLPC) project. Like many Linux vendors, Red Hat sees the future of Linux in emerging markets. + +Global Desktop will be a stripped down version of Red Hat's existing Enterprise Linux Desktop which features some 1,500 applications. Gerry Riveros, head of Red Hat client solutions marketing, said at a press conference at Red Hat's ongoing Red Hat Summit in San Diego, "we stripped this down to about 700 [applications] by getting rid of a lot of things like developer tools and compilers, which helped reduce the hardware requirements for the system." + +Global Desktop also see perhaps the most explicit partnership to date between Red Hat and Intel. In fact, Global Desktop will not be a download and install system, rather the OS will be pre-installed on inexpensive PCs. + +Although the primary market is small businesses and governments in emerging countries, at least some manufacturers will likely release machines for the U.S. market as well. + +Expect Red Hat Global Desktop to begin shipping in June 2007. + +[1]: http://www.redhat.com/ "Red Hat" +[2]: http://www.desktoplinux.com/news/NS4676444460.html "Red Hat shows its Global Desktop cards"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/wildsanct.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/wildsanct.jpg Binary files differnew file mode 100644 index 0000000..604482c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Fri/wildsanct.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/24hrsflickr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/24hrsflickr.txt new file mode 100644 index 0000000..dbeb5a1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/24hrsflickr.txt @@ -0,0 +1,16 @@ +Saturday May 5th was the 24 hours of Flickr event in which Flickr members all over the world recorded their lives for 24 hours. The results, ranging from the mundane to the sublime, are starting to trickle in to the 24 hours of Flickr group. + +There are currently just over 4200 photos in the pool, but that number will grow in the next few says since Flickr members who participated still have time left to post their images. + +There's an RSS feed for the [24 hours of Flickr][5] group so you get the images delivered to your favorite reader. + +It's a good way to kill some times on a slow monday morning, should you be so lucky as to have such a thing. + +Photo Credits from left to right: [oskarak][1], [iku~][3], [maliavale][2], and [l'enfer][4] + +[1]: http://www.flickr.com/photos/oskarak/485364499/in/pool-24flickr/ +[2]: http://www.flickr.com/photos/maliavale/485837698/in/pool-24flickr/ +[3]: http://www.flickr.com/photos/iku/485119551/ +[4]: http://www.flickr.com/photos/lanphere/484697740/ +[5]: http://www.flickr.com/groups/24flickr/ "24 hours of Flickr" +[6]: http://blog.wired.com/monkeybites/2007/05/grab_your_camer.html "Grab Your Camera, Flickr Event Could Make You A Star"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/Scholar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/Scholar.jpg Binary files differnew file mode 100644 index 0000000..5b4fc63 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/Scholar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/flickr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/flickr.jpg Binary files differnew file mode 100644 index 0000000..a3c13de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/flickr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/googlescholar.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/googlescholar.txt new file mode 100644 index 0000000..a509f50 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/googlescholar.txt @@ -0,0 +1,11 @@ +Google has bumped Google Scholar up to front page status. There's now a link to Google Scholar available under the "more" option on the Google search homepage. According to my neighbor, a PhD candidate who lives for Google Scholar, this option has long been available on the front page to those using a university network. + +For those that have never used it, [Google Scholar][2] is an index of scientific and scholarly publications, many of which are not included in Google's main search index. + +Google Scholar indexes peer-reviewed papers, theses, books, abstracts, and more from all broad areas of research. If you're looking for something more authoritative than the Post, Google Scholar is your friend. + +[via [Google Operating System][1]] + + +[1]: http://googlesystem.blogspot.com/2007/05/google-scholar-added-to-googles.html "Google Scholar Added to Google's Homepage" +[2]: http://scholar.google.com/ "Google Scholar"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/historyofthebutton.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/historyofthebutton.txt new file mode 100644 index 0000000..766c16d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/historyofthebutton.txt @@ -0,0 +1,18 @@ +You click it everyday. It's on your phone, your PDA and in your software. The "OK" button is nearly ubiquitous, but where did it come from? According to the UI design blog, [History of the Button][1], the "OK" button made its debut in Apple's Lisa software. + +The interface designers were apparently testing some interaction dialogues in Lisa and noticed that the dialogue box with "Cancel" and "Do It" caused problems for many users. According the [folklore.org][2] one user in particular was frustrated by the "Do It" button: + +>It turns out he wasn't noticing the space between the 'o' and the 'I' in 'Do It'; in the sans-serif system font we were using, a capital 'I' looked very much like a lower case 'l', so he was reading 'Do It' as 'Dolt' and was therefore kind of offended. + +The designers decided to switch to "OK" instead. + +The interesting thing about that switch is that it has implication well beyond just readability in san serif fonts. As Bill DeRouchey writes on History of the Button, "OK" represents a complete change in semantic approach to machines. + +>Interesting. "Do it!" is the same as previous versions of Enter or Execute. It's commanding the machine to do something. OK is acquiescing to the machine, forming a partnership. In the end, the simple OK button may have contributed to the success of the Macintosh. It changed the relationship between person and computer, away from the master and slave mentality toward a friendlier world where the computer is a partner. + +[via [neatorama][3]] + +[1]: http://www.historyofthebutton.com/about/ "History of the Button" +[2]: http://folklore.org/StoryView.py?&story=Do_It.txt "Folklore history of the Macintosh" +[3]: http://www.neatorama.com/2007/05/05/the-history-of-the-ok-button/ "The History of the OK Button." + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/hotmail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/hotmail.jpg Binary files differnew file mode 100644 index 0000000..9a4e240 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/hotmail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/hotmail.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/hotmail.txt new file mode 100644 index 0000000..8c80d4e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/hotmail.txt @@ -0,0 +1,18 @@ +Microsoft has announced the worldwide availability of Windows Live Hotmail, the successor to MSN Hotmail. The [revamped Hotmail][2] now features Ajax navigation, drag and drop message filing and tighter integration with Outlook. + +The [update][1] brings Hotmail up to speed with its competitors like GMail and Yahoo mail which have offered Ajax-style auto-refreshing and better message sorting option for ages. + +Other nice additional features include auto-complete addressing, preview pane customization and an integrated Windows Live Messenger for initiating chat conversations. + +If the new Hotmail is not your cup of tea, there is still the option to use the old look of MSN Hotmail. There's also an option to customize the color theme. Unfortunately there doesn't seem to be a way to avoid losing roughly on third of your vertical screen real estate to the massive banner ads on the page. + +Hotmail users can now take advantage of 2 GB of storage space, but outside access is still limited to Outlook or Outlook Express. + +Microsoft says that in the coming months they will offer a new free email client, dubbed Windows Live Mail, which is intended to be a successor to Outlook Express and Windows Mail, that integrates with the new Hotmail. + +Windows Live Mail will initially be released as a beta, with the final version arriving at some as yet unknown point in the future. + +The new Hotmail features will certainly be welcome for existing users, but with all of these features and more already available via GMail, it's hard to see why anyone would feel compelled to start using Hotmail now. + +[1]: http://mail.live.com/ "Windows Live Hotmail" +[2]: http://www.microsoft.com/presspass/press/2007/may07/05-06WLHotmailLaunchPR.mspx "Microsoft Launches Windows Live Hotmail Worldwide"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/india.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/india.txt new file mode 100644 index 0000000..d45abf8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/india.txt @@ -0,0 +1,13 @@ +The Education Ministry of India aims to out do the OLPC project by producing a laptop for under $10. + +Although India rejected an offer from the OLPC project last year citing concerns about children's health and computers, the government announced recently that it will undertake a new project with the goal of building a $10 laptop. + +Like most things that sound too good to be true, the $10 laptop ma be a figment of the government's imagination. + +So far, the Indian ministry of education is two design submissions, but neither has hit the $10 mark. After factoring in labor charges the cheaper of the two reportedly costs about $47. + +But even the OPLC's goal of the $100 laptop proved impossible, the final bill for the OPLC machines is about $176. However it's possible that the Indian plan will use recycled components, which could lower the costs somewhat. + +Still, while the techno-optimists in us want to believe, $10 just may not be realistic. + +[1]: http://timesofindia.indiatimes.com/Business/HRD_hopes_to_make_10_laptops_a_reality/articleshow/1999828.cms "HRD hopes to make $10 laptops a reality"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/livemail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/livemail.jpg Binary files differnew file mode 100644 index 0000000..352833f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/livemail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/ok.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/ok.jpg Binary files differnew file mode 100644 index 0000000..c246c08 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/ok.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/olpc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/olpc.jpg Binary files differnew file mode 100644 index 0000000..367aa14 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/olpc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/scholarbeta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/scholarbeta.jpg Binary files differnew file mode 100644 index 0000000..cc387de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/scholarbeta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/spinaltab.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/spinaltab.txt new file mode 100644 index 0000000..e9a4886 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/spinaltab.txt @@ -0,0 +1,10 @@ +Spinal Tap is back with a new documentary that's available only via the web. The video is part of an effort to raise money for [Live Earth][1]. Spinal Tap will reunite for a performance at Wembley Stadium in London as part of the Live Earth Worldwide concerts on July 7. + +Until then you can get your dose of Spinal Tap in an exclusive web video from Marty DeBergi. + +Since their last breakup, the members of Spinal Tap have apparently been raising miniature horses, producing hip hop albums and languishing in internet rehab. + +You can find the hilarity on the [Live Earth MSN site][2]. + +[1]: http://www.liveearth.org/ "Live Earth" +[2]: http://www.liveearth.msn.com./spinaltap "Spinal Tap"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/spinaltap.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/spinaltap.jpg Binary files differnew file mode 100644 index 0000000..82ed8bf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/spinaltap.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/tweako.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/tweako.txt new file mode 100644 index 0000000..1a3aaca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/tweako.txt @@ -0,0 +1,13 @@ +Tweako, the Digg-style tutorials site has built up an impressive backlog of Ubuntu tutorials. Tweako's tutorials are good place to start researching Ubuntu if you're thinking of picking up a [new Dell laptop][4]. + +Ubuntu seems to have established itself as the "switcher" Linux of choice and for good reason. It's one of the easiest Linux distros to install and it comes preloaded with all the applications most people will need. + +The [Ubuntu tutorials][2] on [Tweako][3] cover everything from customizing keyboard shortcuts to more general speed optimization tips. If you've been considering making the switch to Ubuntu, but don't want to jump blind, the Tweako list is good place to start. + +Also be sure to check out our [rundown on Ubuntu][1] from last year, but keep in mind that some the issues reported are out of date now that the new [Feisty Fawn edition][5] of Ubuntu is available. + +[1]: http://www.wired.com/software/coolapps/news/2006/08/71660 "Is Ubuntu Linux for You, Too?" +[2]: http://tweako.com/section/ubuntu "Tweako section: Ubuntu" +[3]: http://blog.wired.com/monkeybites/2007/03/tweako_a_social.html "Tweako A Social News Site For Tutorials" +[4]: http://blog.wired.com/monkeybites/2007/05/ubuntu_fiesty_f.html "Ubuntu Fiesty Fawn Coming to Dell Laptops" +[5]: http://blog.wired.com/monkeybites/2007/04/ubuntu_fiesty_f.html "Ubuntu Feisty Fawn Arrives"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/wikiglobe.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/wikiglobe.jpg Binary files differnew file mode 100644 index 0000000..1ede8fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/wikiglobe.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/wikipediaFS.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/wikipediaFS.txt new file mode 100644 index 0000000..a3aed77 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Mon/wikipediaFS.txt @@ -0,0 +1,15 @@ +Thanks to WikipediaFS, Wikipedia fiends tired of reloading pages in the browser can now, provided they're using Linux, mount the site as a virtual filesystem. + +[WikipediaFS][1] is a mountable Linux virtual file system that enables you to view and edit Wikipedia (or any Mediawiki-based site) articles as if they were real files. + +That means you can view and edit articles within your favorite text editor, which is much better equipped for such tasks than a browser window. + +I stumbled across WikipediaFS this morning via the [Hackszine blog][2] and while I haven't actually tried to use WikipediaFS, I do have a couple warning for you. First off the project page on Sourceforge lists WikipediaFS as pre-alpha, which means that there will most likely be some issues. + +The other warning to temper your enthusiasm is simply that the project doesn't seem to be very active. The last update in the version control system is a couple months old and the project seems a bit stalled. + +However, given that the idea is a great one, perhaps some Compiler readers with a few [cycles to spare][3], might like to lend a hand. + +[1]: http://wikipediafs.sourceforge.net/ "WikipediaFS" +[2]: http://www.hackszine.com/blog/archive/2007/05/wikipediafs_a_linux_mediawiki.html?CMP=OTC-7G2N43923558 "Hackszine" +[3]: http://www.longtail.com/the_long_tail/2007/05/the_awesome_pow.html "The Awesome Power of Spare Cycles"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/FSF.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/FSF.txt new file mode 100644 index 0000000..16f6cc2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/FSF.txt @@ -0,0 +1,12 @@ +The Executive Director of the Free Software Foundation says the organization wants to make the General Public License (GPL) compatible with the Apache License. A while back we [took a look][2] at the oft-maligned GPL v3 draft proposal, but based on the FSF's desire to include Apache license compatibility, that draft may see some changes before it becomes official. + +However, the FSF's definition of compatible isn't isn't the two way exchange you might imagine. If the proposal is accepted, code licensed with the Apache license could be rolled into GPL licensed projects and released under the GPL, however the reverse scenario would still not be possible. + +The relationship between the two would effectively be partial compatibility, giving the GPL community access to Apache licensed code without returning the favor. + +In essence the Apache license would have the same relationship to the GPL that the BSD license has now. The BSD license is compatible with the GPL but the GPL is not compatible with the BSD license. + +If all this license talk makes you're head spin you're not alone, and in fact licenses may not be as big of a concern as the FSF would like to believe. Ian Murdock, Sun's chief operating systems officer, [tells CNet][2] that since many open source projects are largely separate, "I don't think software licenses matter as much as they used to." + +[1]: http://blog.wired.com/monkeybites/2007/03/the_free_softwa.html "Free Software Foundation Releases GPL v3 Draft" +[2]: http://news.com.com/2100-7344_3-6182680.html?part=rss&tag=2547-1_3-0-20&subj=news "GPL likely to regain Apache compatibility"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart.jpg Binary files differnew file mode 100644 index 0000000..2693544 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart.txt new file mode 100644 index 0000000..d1386b3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart.txt @@ -0,0 +1,17 @@ +Perhaps the best thing about Firefox is the Ad Block Plus add-on. Face it, the web looks better without ads. But what if, instead of just collapsing the page space where the ads were, you filled that space with art? + +That's the idea behind [AddArt, a new Firefox extension][1] that wants to bring contemporary art to the masses. Currently the AddArt extension is just a prototype and frankly doesn't work that well, but the concept is promising. + +At the moment, if you install AddArt, the only image that will be filled in is a rather tacky American flag and eagle image -- not really a good way to attract international support -- but imagine that replaced with contemporary art images and you'll see the genius of AddArt. + +The website details the projects aims: + +>The project will be supported by an small website providing information on the current artists and curator, along with a schedule of past and upcoming AddArt shows. Each 2 weeks will include 5-8 artists selected by emerging and established curators. Images will have to be cropped to standard banner sizes or can be custom made for the project. Artists can target sites (such as every ad on FoxNews.com) and/or default to any page on the internet with ads. One artist will be shown per page. The curatorial duty will be passed among curators through recommendations, word of mouth, and solicitations to the AddArt site. + +It sounds like a great way of artists to get their work noticed by a wider audience and to do something with otherwise dead space in your browser. + +Of course many will argue that blocking ads deprives sites of a revenue stream, which is true, but, I would argue, not the users problem. When a revenue stream dries up, it's up the content producer to find a new one. + +AddArt is far from complete, I got a number of errors using it (note that if you're using Ad Block Plus, you'll need to disable it to use AddArt since the two conflict) and it doesn't block many ads, but if the project gets enough support, I could see it catching on with users. + +[1]: http://www.addart.eyebeam.org/ "AddArt: Firefox Browser Extension"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart1.jpg Binary files differnew file mode 100644 index 0000000..5ce571b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart2.jpg Binary files differnew file mode 100644 index 0000000..371512b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/addart2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/auctions.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/auctions.jpg Binary files differnew file mode 100644 index 0000000..67d4fe5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/auctions.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/geolatlong.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/geolatlong.txt new file mode 100644 index 0000000..3c180cd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/geolatlong.txt @@ -0,0 +1,17 @@ +Google has filled a whole in its blog catalgue, adding a new Geo blog to keep users abreast of developments and changes to Google Earth, Maps, Local and the APIs available for Google's mapping services. + +The new blog is called [Google Lat Long][3] and Google Earth and Maps Director John Hanke has [kicked off the blog][4] with post highlighting some recent developments in what he terms the "Geoweb." + +Interestingly, the blog's tagline refers the "News and Notes from the Google Earth and Maps Team." The singular "team" seems to indicate the Google is bringing the previously separate parts of its geo services under a single umbrella, which, one like to hope, could lead to greater compatibility and overlap between the services. + + +As Henke writes in the blog's inaugural post, the Geoweb, for lack of a better term, is just about ready for prime time, "the tools are becoming more powerful, more accessible, and more interrelated." + +Also note that Google Earth was recently updated with new beta build of version 4.1. + +[via [Ogle Earth][1]] + +[1]: http://www.ogleearth.com/2007/05/google_latlong.html "Google LatLong — new official Google "geo" blog" +[2]: http://earth.google.com/index.html "Google Earth beta 4.1" +[3]: http://google-latlong.blogspot.com/ "Google Lat Long blog" +[4]: http://google-latlong.blogspot.com/2007/05/new-world-unfolding.html "A new world unfolding"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/latlong.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/latlong.jpg Binary files differnew file mode 100644 index 0000000..39756c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/latlong.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/noctrune.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/noctrune.txt new file mode 100644 index 0000000..bf12dd2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/noctrune.txt @@ -0,0 +1,24 @@ +Blacktree, makers of the popular Mac app Quicksilver, have released a new piece of software, Nocturne, designed to invert your display. The result is somewhat akin to seeing a photo negative of your screen (images after the jump). + +Mac users may be aware that there is already a similar option in the Universal Access preference pane to invert the screen (try hitting ctrl-opt-cmd-8), but Nocturne has a few additional nice touches, including the ability to to change tints and turn off shadows. + + + +The ability to kill shadows is particularly welcome since, when the light and dark tones are reversed, the "shadows" become annoying bright white halos. + +Other improvements over the default Mac OS options include: + +>* Proper color correction in monochrome modes - you don't lose all your blues or reds when you tint the screen. + +>* Window shadow toggling - if glowing windows aren't your thing. + +>* Background removal - hide the desktop picture so you don't see a inverted version. + +Hardly a ground breaking app, but still a very nice option. Using Nocturne to create a "night vision" mode can make a nice change for those whose eyes are tired after staring at the screen for too long. + +Also, as the [43 Folders blog][1] notes, Nocturne is great for working in full sunlight -- very handy for those of us pioneering the poolside telecommute. + +As with the rest of Blacktree's apps, Nocturne is free and can be [downloaded from the site][2]. + +[1]: http://www.43folders.com/2007/05/09/nocturne/ "Nocturne: Free “night vision” app from the maker of Quicksilver" +[2]: http://docs.blacktree.com/nocturne/nocturne "Blacktree: Nocturne"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/nocturne.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/nocturne.jpg Binary files differnew file mode 100644 index 0000000..0b62b4b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/nocturne.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/pdf.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/pdf.jpg Binary files differnew file mode 100644 index 0000000..a30002c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/pdf.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/pdflinux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/pdflinux.txt new file mode 100644 index 0000000..ac5b2b5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/pdflinux.txt @@ -0,0 +1,12 @@ +Adobe has some expensive software tools for creating PDF files, but open source fans need not despair, there's an easy was to create PDF files using the tools that ship with most version of Linux. Linux.com recently posted a [great little tutorial][1] to walk you through the process of setting up a virtual printer to handle your PDF needs. + +All you need is a Linux machine with the Common UNIX Printing System (CUPS) installed. Unfortunately most CUPS installs don't seem to ship with CUPS-PDF so you'll need to grab that with app-get. + +Once you have that installed you can add a fake printer that will turn your print jobs into PDF files. + +Mac OS X users will be familiar with that idea since all the Mac "Save" dialogues have a "Save As PDF" option which is very similar to what you'll end up with following Linux.com's tutorial. + +Of course in this day and age more and more Linux apps ship with the ability to save files as PDFs without the virtual printer set-up, but for those that want a universal solution or for those with Windows machines on the same network, CUPS is the way to go. + + +[1]: http://www.linux.com/article.pl?sid=07/05/03/1421232 "Turn your Linux box into a PDF-making machine"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/yahooauctions.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/yahooauctions.txt new file mode 100644 index 0000000..a65c46b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Thu/yahooauctions.txt @@ -0,0 +1,14 @@ +Yahoo is sending yet another service out to pasture. Later this year Yahoo plans to retire its auction site, Yahoo Auctions. [Auctions][3] is the second service to be closed this week, following on the heals of an announcement that Yahoo Photos would be discontinued. + +However, unlike the [closing of Yahoo Photos][2], which is attempting to migrate moving users to Yahoo's other photo site, Flickr, there is no alternative for Yahoo Auction users. + +As with the demise of Yahoo Photos, there was initially [no explicit announcement][2] on the Yahoo site, rather the information was quietly released to the media. There is now an announcement on the Yahoo Auctions site informing users that the last day to list your items is June 3 and the last day to bid/buy is June 16. + +Given that Yahoo Auctions held only .2 percent of the online auction market (according to traffic measures from comScore) the closing isn't really a surprise. As with Google's decision to [shut down Google Answers][4] last year, Yahoo knows defeat when it sees it. + +For those currently relying on Yahoo Auctions, might we suggest a little site called EBay which currently accounts for more the 94 percent of all online auctions traffic. Sell your stuff were the people are, that's a logic even Yahoo can't dispute. + +[1]: http://blog.wired.com/monkeybites/2007/05/yahoo_shutters_.html "Yahoo Shutters Photos In Favor Of Flickr" +[2]: http://blog.wired.com/monkeybites/2007/05/hey_yahoo_whats.html "Hey, Yahoo -- What's Gonna Happen To My Photos?" +[3]: http://auctions.yahoo.com/ "Yahoo Auctions closing" +[4]: http://blog.wired.com/monkeybites/2006/11/google_answers_.html "Google Answers Rides into the Sunset"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/flickr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/flickr.jpg Binary files differnew file mode 100644 index 0000000..4fe9449 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/flickr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/flickslideshow.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/flickslideshow.txt new file mode 100644 index 0000000..b7e4255 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/flickslideshow.txt @@ -0,0 +1,21 @@ +Flickr has rolled out a bigger and better slideshow feature. The new Flickr slideshows have larger photos and overlay text for titles and descriptions. The also run against a somewhat classier black background. + +The new slideshows are already live and the links can be found next to sets, groups and pools of photographs when you're browsing the site. + +The Flickr blog [humorously summarizes][1] the new features thusly: + +>Old Version -- sucks +New Version -- rules! + +The new version does offer a couple nice changes. There are now speed settings, slow, medium and fast that control how long each images is viewed. Hovering over an image displays an info icon and clicking the icon will show the title and description of each image. + +There's also a couple new quick links to jump to the users main page or that photo's main page. + +Unfortunately neither of those links worked in Firefox when I tested the new slideshows. + +The best change is the larger images. I'll confess that I rarely used the old slideshow features because they defaulted to such small images. The new version uses an image size that seems slightly larger than the standard "medium" size images. + +To see the new slideshow features in action, check out the [24 hours of Flickr][2] slideshow. + +[1]: http://blog.flickr.com/flickrblog/2007/05/announcing_slid.html "New Slideshow Features" +[2]: http://www.flickr.com/groups/24flickr/pool/show/ "24 hours of Flickr Slideshow"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/photobucket.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/photobucket.txt new file mode 100644 index 0000000..6111c53 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/photobucket.txt @@ -0,0 +1,22 @@ +MySpace has announced it will acquire Photobucket for $250 million, officially bringing the photo sharing site into the MySpace fold. Photobucket has been looking for a buyer for several months and after a dispute last month which led to [MySpace blocking Photobucket images and video][3], the two companies apparently hashed out a deal. + +For more coverage of the business angles, check out Epicenter which [covered the rumors][1] that surfaced yesterday regarding the buyout. + +At the risk of being alarmist, Photobucket as a MySpace property doesn't bode well for users who aren't fans of Rubert Murdoch's underage playground. + +Techcrunch [reports][4] that roughly 1.8 million of Photobucket’s visitors don't currently visit MySpace, and for them the deal could ruin sharing on non-MySpace properties. While no plans have yet been announced, it seems likely that Photobucket could morph into a MySpace-only property. + +For those Photobucket users thinking it might be time to do more with your photos, have a look at our [Flickr coverage of late][2]. + +While Photobucket is primarily about hosting your images, Flickr offers a number of options that go far beyond image hosting, enabling you to share your images with the internet at large. + + + + + + + +[1]: http://blog.wired.com/business/2007/05/rumor_control_m.html "Rumor Control: MySpace Takes Photobucket?" +[2]: http://blog.wired.com/monkeybites/2007/05/yahoo_photos_us.html "Here Are 4 Reasons You'll Love Flickr" +[3]: http://blog.wired.com/monkeybites/2007/04/myspace_is_bloc.html "MySpace Is Blocking Photobucket Videos" +[4]: http://www.techcrunch.com/2007/05/07/myspacephotobucket-user-overlap-is-nearly-100/ "MySpace/Photobucket: User Overlap Is Nearly 100%"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/piratebay.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/piratebay.txt new file mode 100644 index 0000000..5dfd692 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/piratebay.txt @@ -0,0 +1,14 @@ +Is the Pirate Bay a front for right wing extremists in Sweden? Yesterday our [Epicenter blog][1], linked to an interesting YouTube video in which Tobias Andersson of The Pirate Bay if asked to defend the site against charges that Carl Lundstrom, former CEO of Rix Telecom and "well-known right-wing extremist in Sweden," funded the early development of the site. [video after the jump] + +Interesting, it turns out that Pirate Bay did take money for bandwidth and servers from Lundstrom, who, as Epicenter says, is probably going to end up being an MPAA/RIAA target at some point. + +Since the Pirate Bay recently launched a music download site, [playble.com][2], it seems fairly obvious what Lundstrom's interests are -- the Pirate Bay as a viable business. + +But given the amount of credibility the Pirate Bay has among many internet users for its supposedly "anarchist" and populist leanings, will this mean that users and supporters start to question their loyalty to the site? + +What's more, why take money from a known right wing extremist in the first place? Andersson never does answer that question in the video. If you're Pirate Bay user, how do you feel about these revelations? + +Let us know in the comments below. + +[1]: http://blog.wired.com/business/2007/05/swedish_journal.html "Swedish Journalist Exposes Pirate Bay Big Business Links" +[2]: http://playble.com/ "Playble.com"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/sunopenid.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/sunopenid.txt new file mode 100644 index 0000000..4d78495 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/sunopenid.txt @@ -0,0 +1,25 @@ +Sun has announced it will start supporting OpenID, but with a unique twist. Sun won't be offering a consumer solution, rather it's starting with its own employees. + +With Microsoft, Yahoo, AOl and others embracing openID one might wonder why Sun's rather limited foray warrants attention, but the difference is in [how Sun is using OpenID][4]. Tim Bray [writes][5] on his blog: + +>Unfortunately, at the moment, it isn't good for much, because the OpenID might be pointing at a server that's evil or silly. It's good enough for blog comments and that's about it. + +>What's more interesting is that we're rolling out an OpenID provider, but with a twist: You can't get an OpenID there unless you're a Sun employee, and if someone offers an OpenID whose URI is there, and it authenticates, you can be really sure that they're a Sun employee. It doesn't tell you their name or address or anything else; that's up to the individual to provide (or not). The authentication relies on our Access Manager product, and it's pretty strong; employees here have to use those crypto-magic SecureCard token generators for serious authentication, passwords aren't good enough. + + +Sun is the first company to use OpenID as an employee tool. Others, like [Microsoft's OpenId support in Vista][3], are consumer tools used primarily by the bleeding edge of the techno elite. And as Bray points out, most consumer tools are problematic in an enterprise system. + +But what Sun is doing could well move OpenID from handy tool for those in know, to something with real world practicality for companies concerned about security, yet wanting to keep the process of verifying identity simple and easy-to-use. + +With more companies eyeing online enterprise apps as a viable solution, something like Sun's OpenID project is fast becoming a necessity. + +And Sun has long history of pioneering moves in the digital identity realm. From the [Liberty Alliance project][1] to today's OpenID announcement, Sun has long led the way for companies and others looking to establish secure and effective ways of managing identity. + +[via [O'Reilly Radar][2]] + + +[1]: http://en.wikipedia.org/wiki/Liberty_alliance "Liberty Alliance" +[2]: http://radar.oreilly.com/archives/2007/05/sun_supports_op.html "Sun Supports OpenID: Steps Towards Enterprise?" +[3]: http://blog.wired.com/monkeybites/2007/02/microsoft_to_su.html "Microsoft To Support OpenID" +[4]: http://developers.sun.com/identity/ "Identity Management - Sun Java System Access Manager" +[5]: http://www.tbray.org/ongoing/When/200x/2007/05/07/OpenID-at-Sun "OpenID at Sun"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/torrent-widget.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/torrent-widget.jpg Binary files differnew file mode 100644 index 0000000..cf24ff2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/torrent-widget.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/ubuntumobile.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/ubuntumobile.txt new file mode 100644 index 0000000..c2afe10 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/ubuntumobile.txt @@ -0,0 +1,14 @@ +Ubuntu Linux is coming to a mobile device near you. Earlier this week CTO Matt Zimmerman announced plans to build a mobile version of the popular Ubuntu Linux distribution. In the announcement, Zimmerman specifically mentions the new low-power processor from Intel, code-named Silverthorn, which will allow full internet use on mobile devices. + +Ubuntu's [announcement][1] comes just a month after the GNOME foundation, which makes the desktop environment used by Ubuntu, announced a similar mobile platform proposal. Like the the [GNOME Mobile and Embedded Initiative][2], the Ubuntu plan will see developers working closely with Intel and other hardware manufacturers. + +With [Dell now shipping Ubuntu pre-installed][3] on a number of its laptop computers and the new drive into mobile computing, Ubuntu seems poised to become the first mainstream success for the Linux community. + +But the mobile platform presents some new challenges for Ubuntu developers, including the need for an intuitive and easy-to-se graphical interface, something critics frequently cite as a shortcoming of Linux systems. + +The mobile edition of Ubuntu is scheduled for release in October, alongside a new version the regular Ubuntu distribution. + + +[1]: https://lists.ubuntu.com/archives/ubuntu-devel-announce/2007-May/000289.html "Ubuntu Mobile and Embedded Edition" +[2]: http://gnomedesktop.org/node/3056 "The GNOME Mobile & Embedded Initative" +[3]: http://blog.wired.com/monkeybites/2007/05/ubuntu_fiesty_f.html "Ubuntu Fiesty Fawn Coming to Dell Laptops"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/utorrent.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/utorrent.txt new file mode 100644 index 0000000..a80ac2d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Tue/utorrent.txt @@ -0,0 +1,15 @@ +µTorrent users have another way to manage their downloads thanks to a new Window Vista gadget. The µTorrent gadget for Windows Vista's sidebar works in combination with the µTorrent WebUI, which can be [downloaded from the µTorrent forums][1]. + +The gadget gives a quick glimpse of your current upload and download speed in Vista's sidebar. Clicking for the extended view will show all the torrents currently downloading, including detailed info like seed and peer numbers, D/U ratio, D/U limits, and more. + +Installing the WebUI component of µTorrent is a little tricky. The RAR file that you can grab from the forums will contain a zip file which you will need to drop into your µTorrent settings folder. + +Then when you launch µTorrent head to preferences >> advanced and click to reveal the additional options. + +You should then see a WebUI option. Set the user and password for WebUI access and then [download the Vista gadget][2]. Fill in the appropriate info and it should work. + +Discovered via [TorrentFreak][3]. + +[1]: http://forum.utorrent.com/viewtopic.php?id=14565 "WebUI v0.310 Public beta 2" +[2]: http://gadget.flagcreator.org/gadgets/utorrent.gadget "µTorrent Vista gadget" +[3]: http://torrentfreak.com/utorrents-vista-sidebar-gadget/ "uTorrent’s Vista Sidebar Gadget"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/analytics.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/analytics.txt new file mode 100644 index 0000000..c4fab3f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/analytics.txt @@ -0,0 +1,19 @@ +<img alt="Googleanalytics" title="Googleanalytics" src="http://wiredblogs.typepad.com/monkeybites/intro_small.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Google has announced some new features and a major interface overhaul for Google Analytics, the popular website traffic analyzer. The changes are aimed at making Google Analytics data easier to sort and understand. + +New features include a redesigned the reporting interface, customized reports with options for email delivery, and a clearer, plain language approach to data. + +Perhaps the most welcome change, for those not SEO savvy, is that the new version will present data more clearly and in context, making it easier to understand your site's traffic patterns. + +The Google Analytics blog, breaks down the additional changes: + +* Email and export reports: Schedule or send ad-hoc personalized report emails and export reports in PDF format. +* Custom Dashboard: No more digging through reports. Put all the information you need on a custom dashboard that you can email to others. +* Trend and Over-time Graph: Compare time periods and select date ranges without losing sight of long term trends. +* Contextual help tips: Context sensitive Help and Conversion University tips are available from every report. + +The revamped Analytics interface will be rolled out over the next month. Analytics users will receive an email notifying them when their account has been moved to the new system. For the first month, both the old and the new versions will be available to ease the transition. + +If you'd like to preview the changes, have a look at the [demo video][2]. + +[1]: http://analytics.blogspot.com/2007/05/new-version-of-google-analytics.html "New Version of Google Analytics" +[2]: http://services.google.com/analytics/tour/index_en-US.html "demo movie"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/ipodvista.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/ipodvista.txt new file mode 100644 index 0000000..e6018ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/ipodvista.txt @@ -0,0 +1,12 @@ +Vista iPod users rejoice, Microsoft has finally released a fix for the "Eject" problems that have plagued the iPod-Vista experience. Despite a patch from Apple and update to iTunes some Vista users still experienced problems ejecting their iPods. + +A bug in Vista would cause the Windows Explorer "Eject" command to corrupt song and other data on iPods even when using the latest version of iTunes. + +Microsoft [previously released][2] a patch that was supposed to fix the problem, but did not in all cases. Today's patch replaces the older version. + +Microsoft's new update should solve the problem and is recommended update for all Vista/iPod users. You can grab the update through Windows Update on Vista or [download it directly from the Microsoft site][1]. + + + +[1]: http://support.microsoft.com/kb/936824/en-us "iPod-Vista Patch" +[2]: http://blog.wired.com/monkeybites/2007/03/microsoft_vista.html "Windows Vista Update Solves IPod Issues"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/microsoft.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/microsoft.txt new file mode 100644 index 0000000..6328624 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/microsoft.txt @@ -0,0 +1,10 @@ +Microsoft has official released their May security bulletin with fixes for some serious flaws including a zero-day flaw in Windows that is already being exploited in the wild. + +The zero-day flaw stems from a vulnerability in the Windows DNS system which affects Windows 2000 Server and Windows Server 2003. The patches are now available through the [Microsoft Security Advisory][2] site. + +As we [mentioned last week][1], other bulletins address flaws in Windows, Office, Exchange and BizTalk, all four of which contain at least one patch rated as critical, meaning that an attacker can execute remote code to hijack a user's system. + +The updates are recommended for all users. + +[2]: http://www.microsoft.com/technet/security/bulletin/ms07-may.mspx "Microsoft Security Bulletin Summary for May 2007" +[1]: http://blog.wired.com/monkeybites/2007/05/microsoft_addre.html "Microsoft Addresses Critical Flaws"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/opensource.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/opensource.jpg Binary files differnew file mode 100644 index 0000000..d5dcc23 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/opensource.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/opensource.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/opensource.txt new file mode 100644 index 0000000..555a30c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/opensource.txt @@ -0,0 +1,29 @@ +Wired Magazine editor Chris Anderson recently published an article on his blog, The Long Tail, suggesting that much like spare CPU cycles can drive projects like SETI, human "spare cycle" are [powering the open source movement][1] and Web 2.0. It's a really nice metaphor, the problem is, for large open source projects anyway, it isn't true. + +While Anderson's theory may explain smaller open source projects and web 2.0 sites like Flickr, big open source projects, like the Linux kernal, are built not by the mythical open source volunteer, but by paid programmers working for large corporations. + +Jonathan Corbet of LWN.net [released a study][2] a couple of months ago that pegged corporate contributions to the Linux kernal at 65 percent. The breakdown of corporations involved included Red Hat with far and away the most contributions, along with IBM, Novell, the Linux Foundation (which employs Torvalds), Intel, and Oracle. + +More recently OpenSUSE released a [survey of users][3] that found that very few of them actually work on the distribution. 84.7 percent are simply users of the distribution. Only 1.9 percent actually create new programs, and just 0.9 percent work on patches. + +The salient point isn't that open source is somehow tainted by corporate involvement, but rather that open source is ultimately a capitalist venture like any other software. + +I'll confess the Anderson's notion of volunteers creating software in their spare time has more appeal, though like the [blogger at Neosmart][4], I disagree that it's out of boredom. + +Which brings me to the best part of the open source community. Open source's brilliance is not that it's created by volunteers, but that it *could* be created by volunteers. + +Unlike proprietary software, with closed teams of programmers, open source projects are open to any contribution. + +Just because the majority of the Linux kernel comes from corporate employees doesn't mean that those contributions are the most significant. + +It could well be that the corporate contributions were largely meaningless for the average user, but the work of one person fixed the glitch that had bothered thousands. + +And for many the appeal of open source is not contributing downtime to development, but using tools that can incorporate the collective wisdom of the community. + +[Photo [credit][5]] + +[1]: http://www.longtail.com/the_long_tail/2007/05/the_awesome_pow.html "The Awesome Power of Spare Cycles" +[2]: http://lwn.net/Articles/222773/ "Who wrote 2.6.20?" +[3]: http://www.desktoplinux.com/news/NS9755856281.html "Who are the Linux desktop users?" +[4]: http://neosmart.net/blog/2007/spare-cycles-and-open-source/ "Spare Cycles or Selfless Souls?" +[5]: http://www.flickr.com/photos/cote/277624154/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/portman.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/portman.jpg Binary files differnew file mode 100644 index 0000000..8eb1835 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/portman.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/portman.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/portman.txt new file mode 100644 index 0000000..6c4f792 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/portman.txt @@ -0,0 +1,14 @@ +Valleyway reports that actress Natalie Portman is shopping a new project that would create a "continuous video feed of her work and personal life," to Silicon Valley investors. From [Valleywag's description][2] the project sounds uncannily similar to [Justin.tv][1] the current king of life streaming projects. + +Of course Natalie Portman has a distinct advantage over Justin.tv because, well, she's Natalie Portman. Sorry Justin. + +And what better timing? The days of the Hollywood fame machine are done, and clearly the only people unaware of that are in Hollywood. The internet has created a realm of celebrity that does not require vast production companies as folks like [Ze Frank][3] and [Amanda Congdon][4] have demonstrated. + +It's only natural that some in Hollywood are starting to wake up to the internet celebrity machine, but part of what made Frank and Congdon compelling were the communities that sprang up around The Show and Rocketboom, the question is whether Portman will able to create such a community, or whether this is simply a way to cash in on her existing celebrity status. + +I imagine, should Portman.tv ever become a reality, that it will start a brief, and likely very tedious, explosion of copycat tell-all video streams. The only real surprise is that the concept is coming from Portman and not say, Paris Hilton. + +[1]: http://blog.wired.com/monkeybites/2007/03/justintv_in_the.html "Justin.tv In The House" +[2]: http://valleywag.com/tech/exclusive/natalie-portmans-lifecast-258610.php "Natalie Portman's lifecast" +[3]: http://www.zefrank.com/theshow/ "Ze Frank: The Show" +[4]: http://www.amandacongdon.com/blog/ "Amanda Congdon"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/terapixel.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/terapixel.jpg Binary files differnew file mode 100644 index 0000000..6c1c6bd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/terapixel.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/terapixel.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/terapixel.txt new file mode 100644 index 0000000..d5ee1a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.07.07/Wed/terapixel.txt @@ -0,0 +1,11 @@ +A post on our sister site Gadget Lab caught my eye this morning -- [Resist the Megapixel Myth!][1] While I whole heartedly agree with that advice, it's hard to downplay the megapixel myth when the first one trillion pixel image has just been released. + +Aperio, specialists in medical imaging, have rewritten the TIFF format slightly to circumvent the 4GB files size limit of TIFF images. The resulting format, [dubbed BigTiff][3], has been released to the public domain. + +To showcase their breakthrough, the Aperio team has created [the world's first Terapixel image][2]. The image displays 255 pathology slides of breast tissue and can be seen on the Aperio site (the site appears to be bogged down at the moment, I couldn't get the image to load). + +A one trillion pixel image is definitely impressive (and kudos to Aperio for releasing the new image format), but I still side with Gadget Lab -- even if you could have a terapixel camera, you don't need it. + +[1]: http://blog.wired.com/gadgets/2007/05/resist_the_mega.html "Resist the Megapixel Myth!" +[2]: http://images2.aperio.com/BigTIFF/BreastCancer225.tif/view.apml "Terapixel Image" +[3]: http://www.aperio.com/newsevents/BigTiffPR0507.asp "Aperio Implements BigTIFF, Donates Enhancements to Public Domain"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearch b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearch new file mode 100644 index 0000000..1c1b37f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearch @@ -0,0 +1,21 @@ +As part of Google's recent search improvements, [Google Book Search][1] is now offering results from books that haven't yet been digitized. The new content means that in addition to the millions of digitized, searchable books in the index, bookworms now have access to millions more. + +The new results show up inline with the old digitized results and clicking thorough to the "About This Book" page will list, if available, a summary, links to reviews of the book and, most notably, links to find the book via your local library. + +The libraries portion of the results will hand you off to WorldCat, a library catalogue search engine. WorldCat will show nearby libraries that stock the book you're after, though, since not all libraries participate in WorldCat, you results may vary somewhat depending on your location. + +WorldCat does a pretty good job of guessing your location (presumably based on IP address), but you can always enter a different address. + +Google Book Search also provides links to purchase books through Amazon and other online retailers. + +Not all the books will have review links or references, but where possible the new features allow you to get a pretty good idea of whether or not a book is relevant to what you're after. + +Here's a couple of samples searches: [<cite>Austerlitz</cite> by W.G. Sebald][2] which shows the summary features and [Frank Stanford's <cite>The Battlefield Where The Moon Says I Love You</cite>][3], which is slightly more obscure and hence shows a less informative results page. + +One curious thing in these results, Sebald, the author of <cite>Austerlitz</cite>, died in car accident in 2001 yet Google Book Search lists him as still being alive -- nothing is perfect I suppose. + +In addition to the new non-digitized content, Google Book Search has also announced that it has signed on its first French-language library for its book search project. The Cantonal and University Library of Lausanne, Switzerland, will open its stacks to Google and make much of its extensive catalogue available -- including books by prominent French authors like Victor Hugo and Honoré de Balzac. + +[1]: http://books.google.com/ "Google Book Search" +[2]: http://books.google.com/books?id=cMt4AAAACAAJ&dq=Austerlitz "Austerlitz By Sebald, Winfried Georg" +[3]: http://books.google.com/books?id=oPIIAAAACAAJ&dq=The+Battlefield+Where+The+Moon+Says+I+Love+You "The Battlefield Where the Moon Says I Love You By Frank Stanford"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearch.jpg Binary files differnew file mode 100644 index 0000000..fdef335 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearch2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearch2.jpg Binary files differnew file mode 100644 index 0000000..2d2f0d1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearch2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearchi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearchi.jpg Binary files differnew file mode 100644 index 0000000..d89f103 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearchi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearchworldcat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearchworldcat.jpg Binary files differnew file mode 100644 index 0000000..a6ea48c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/booksearchworldcat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/demdstore.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/demdstore.jpg Binary files differnew file mode 100644 index 0000000..8e19d60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/demdstore.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/demgen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/demgen.jpg Binary files differnew file mode 100644 index 0000000..2d58700 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/demgen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/democracy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/democracy.txt new file mode 100644 index 0000000..1677778 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/democracy.txt @@ -0,0 +1,16 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/democracy_logo.png" title="Democracy_logo" alt="Democracy_logo" style="margin: 0px 0px 5px 5px; float: right;" />Democracy, the open source, web-enabled video player, is set to release a new version and would like the public's help [testing the first final release candidate][2]. + +The new Democracy Player 0.9.6-rc0 includes some nice new features like the ability to watch any folder on your computer for new videos, resume playback functionality, more keyboard shortcuts and better Windows Vista compatibility. + +The watched folder features is particularly nice for those that frequently download movies from sources Democracy doesn't track. Just set your movie to download to a folder and then tell Democracy to watch that folder and whenever it finds new videos they'll show up in the Democracy Player. + +I don't know that it qualifies as a bug exactly, but I did have one small quibble with the new watched folder feature. On Mac OS X the watched folder believes that .DS_Store files are new movies, when in fact they're just hidden system files that live in every folder. + +For the time being you can tell Democracy to skip these files and they won't be listed in your new movies section, but it would be nice to see the Player handle hidden files a little better from the get go. + +If you've never used Democracy, have a look at [our review from last year][1]. Democracy's standout features is still the integrated search tool for querying YouTube, Google Video, BlogDigger and Yahoo Video all at once. + +As for the stability I didn't have any problems, but keep in mind that this is pre-release software so exercise the usual cautions. + +[1]: http://blog.wired.com/monkeybites/2006/10/democracy_gets_.html "Democracy Gets My Vote" +[2]: http://www.getdemocracy.com/news/2007/05/help-test-democracy-player-096-release-candidate/ "Help Test Democracy Player 0.9.6 Release Candidate"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/demwatched.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/demwatched.jpg Binary files differnew file mode 100644 index 0000000..438a219 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/demwatched.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/gjs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/gjs.jpg Binary files differnew file mode 100644 index 0000000..4672f68 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/gjs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/gnojs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/gnojs.jpg Binary files differnew file mode 100644 index 0000000..4c2d8a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/gnojs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/googlescript.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/googlescript.txt new file mode 100644 index 0000000..9962b41 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/googlescript.txt @@ -0,0 +1,14 @@ +The recently redesigned Google Search page violates the companies own design suggestions by failing to gracefully degrade for users without Javascript-enabled browsers. The new links at the top left of the page are an entirely Javascript-driven interface element, turn off Javascript and they disappear completely. + +As the [Google Operating System blog][2] points out, this violate Google's own suggestion for webmasters which read: + +>Use a text browser such as Lynx to examine your site, because most search engine spiders see your site much as Lynx would. If fancy features such as JavaScript, cookies, session IDs, frames, DHTML, or Flash keep you from seeing all of your site in a text browser, then search engine spiders may have trouble crawling your site. + +Obviously google isn't trying to optimize the homepage for its own spiders, but the lack of a graceful downgraded solution for browsers without Javascript (5-10% of web users depend on what stats you want to believe) is surprising especially since they're really just links. + +Even the drop-down menu for the "More" option could easy be handled with CSS in those cases where Javascript was not available. Given that fact that almost all Google services (even GMail) offer some sort of stripped down HTML-only option, it's downright embracing that the primary search page can't do the same. + +Hopefully the Javascript only navigation is simply and oversight and Google will offer an alternative solution in the near future. + +[1]: http://blog.wired.com/monkeybites/2007/05/google_to_add_e.html "Google To Add Embedded Videos to Default Search Results" +[2]: http://googlesystem.blogspot.com/2007/05/no-javascript-no-google-navigation.html "No JavaScript, No Google Navigation"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/ironpython.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/ironpython.txt new file mode 100644 index 0000000..d6eb447 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/ironpython.txt @@ -0,0 +1,21 @@ +When Microsoft announced it was [releasing the Dynamic Language Runtime behind .Net][1] as part of its Silverlight platform, the team behind Mono, an open source implementation of .NET vowed to release an experimental Linux-based Silverlight browser plug-in by the end of the year. Today the team announced that it has Microsoft's IronPython with the DLR working on Mono. + +IronPython is an implementation of the Python programming language, targeting .NET developers which allows them to use Python to manipulate .NET framework objects. + +The announcement, which comes just sixteen days after the DLR was released, represents an important milestone for the Mono developers. + +As the [Vista Small Talk blog points out][3], today's announcement means that IronPython can now run: + +>* in the Silverlight browser plugin +* natively on Windows Vista +* on Windows XP with WinFx +* on Linux, BSD, and OSX with Mono + +Other DLR-based languages like IronRuby, VBx, and more should theoretically be portable as well which is good news both for developers and Microsoft, who is looking to build an active developer community around its new Silverlight platform. + + +[via [O'Reilly Radar][2]] + +[1]: http://blog.wired.com/monkeybites/2007/05/microsofts_silv.html "Microsoft's Silverlight Gunning For Flash" +[2]: http://radar.oreilly.com/archives/2007/05/mono_now_suppor.html "Mono Now Supports IronPython" +[3]: http://vistasmalltalk.wordpress.com/2007/05/16/ironpython-running-on-mono/ "IronPython Running on Mono"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/mono.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/mono.jpg Binary files differnew file mode 100644 index 0000000..12e994b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/mono.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/picasa.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/picasa.jpg Binary files differnew file mode 100644 index 0000000..a2115d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/picasa.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/picasa.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/picasa.txt new file mode 100644 index 0000000..c7cdad9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Fri/picasa.txt @@ -0,0 +1,13 @@ +Picasa Web Albums, the photo sharing site from Google, has released a new Flash-based slideshow feature. The slideshows can be embedded in nearly any page, making it easy to share them with friends. + +Unfortunately [the new slideshows][1] are lackluster at best -- small and a bit ugly. A giant Picasa logo in the lower right corner will obscure a good sized portion of your image and make the entire thing seem more like a viral ad campaign than a feature. + +There's no impressive new features or functionality compared to competing offerings and frankly at least half a dozen other web services already offer similar services that look considerably better. + +Of course if you're a Picasa user the new slideshows, while far from perfect are pretty much the online easy option. + +If you happen to know a bit of Javascript though, you'd probably be better off creating one of the nice Ajax based slideshows courtesy of the [Google Ajax Feed API][2]. There's even a nice [hello world example][3] to get you started. + +[1]: http://googleblog.blogspot.com/2007/05/oh-places-youll-go.html "Oh, the places you'll go...." +[2]: http://www.google.com/uds/solutions/slideshow/index.html "AJAX Slide Show" +[3]: http://www.google.com/uds/solutions/slideshow/reference.html#hello-world "Slideshow Hello World"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/kde4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/kde4.jpg Binary files differnew file mode 100644 index 0000000..9f1ba27 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/kde4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/kde4.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/kde4.txt new file mode 100644 index 0000000..3905d0f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/kde4.txt @@ -0,0 +1,21 @@ +The KDE Community has released the first alpha of KDE 4.0 which will gives the popular Linux desktop manager a completely redesigned interface. The initial alpha sees the incorporation of the [Oxygen theme][4], a KDE visual makeover that draws its inspiration from Apple's Mac OS X's Aqua desktop interface, and frankly, looks fantastic. + +But cosmetic changes aside, the real development of [KDE 4][5] is the incorporation of the Qt 4.3 GUI framework, which includes improved OpenGL support, "vastly" improved hardware and multimedia integration and the new Dolphin file manager. + +The KDE announcement says: + +>KDE 4.0 Alpha 1 marks the end of the addition of large features to the KDE base libraries and shifts the focus onto integrating those new technologies into applications and the basic desktop. The next few months will be spent on bringing the desktop into shape after two years of frenzied development leaving very little untouched. + +The KDE roadmap calls for a feature freeze by the beginning of June, at which point the initial betas will be available for testing a debugging. The final release of KDE 4.0 is expected in late October 2007. + +KDE 4.0 is an alpha release and as such it may be unstable and is recommended for testing purposes only. For those that would like to give it a shot, there's a [Kubuntu version][1] available for testing, as well as [Gentoo][2] and a live CD based on [OpenSUSE][3]. + +[Screenshot from DesktopLinux.com][7]: + +[1]: http://kubuntu.org/announcements/kde4-alpha1.php "KDE 4 Alpha 1" +[2]: http://overlays.gentoo.org/proj/kde "KDE 4 Alpha 1" +[3]: http://home.kde.org/~binner/kde-four-live/ "KDE Four Live CD" +[4]: http://www.oxygen-icons.org/ "Oxygen" +[5]: http://www.kde.org/announcements/announce-4.0-alpha1.php "KDE 4.0-alpha1 Release Announcement" +[6]: http://blog.wired.com/monkeybites/2007/04/exploring_dolph.html "Exploring Dolphin, The KDE 4 File Manager" +[7]: http://www.desktoplinux.com/files/misc/kde4-desktop.jpg "KDE 4 Screenshot"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/linuxfud.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/linuxfud.jpg Binary files differnew file mode 100644 index 0000000..bc0199b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/linuxfud.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/mspatents.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/mspatents.txt new file mode 100644 index 0000000..e15e1a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/mspatents.txt @@ -0,0 +1,22 @@ +The internet was abuzz this weekend about a Fortune article in which Microsoft General Counsel Brad Smith claims that Linux violates 235 patents. Unfortunately for Fortune Microsoft's patent claims are hardly news, this sort of saber rattling has been going on for years and contrary to what the [article states][2], this isn't the first time Microsoft has revealed a specific number. + +As far back as 2004, Microsoft has claimed that Linux violated as many as 228 patents, or as the [BBC reported][3] at the time "at least 228 patents." Fortune's only revelation is that Microsoft claims seven more patent violations in the last five. + +The Fortune story is really just the latest salvo in a long and ongoing battle in which Microsoft seems to recognize that publicly suing Linux over the patents would probably backfire. + +Instead the company has resorted to a campaign of sowing fear uncertainty and doubt in the corporate community in hopes of stemming the relentless growth of open source software in the corporate market. + +But don't look for Microsoft to actually *do* anything about the alleged patent violations, as the drawn out and ultimately unsuccessful SCO suit highlighted, going after Linux is not a business building proposition. + +So why is Microsoft using Fortune to rattle the Linux patent saber? Probably because Novell is thus far the only high profile company Microsoft has bullied into a patent agreement. + +The Free Software Foundation has already made good on its promise to close up the loophole exploited by the Microsoft-Novell deal with version 3 of the GPL, which should take effect in July. + +The FSF argues that because the Microsoft Novell deal has Microsoft selling "coupons" for Novell Linux, the company is in effect a Linux distributor, which means it is bound by the GPL. + +To top off all the rhetoric and FUD, keep in mind that the U.S. Supreme Court has still never really ruled on whether or not software is even patentable, but were Microsoft to pursue Linux with the patent claims, it's possible that the Court might finally have its say in the matter. + +But, when asked by Fortune whether Microsoft is headed for an RIAA-style, sue your users campaign, he responded only, "that's not a bridge we've crossed, and not a bridge I want to cross today on the phone with you." + +[2]: http://money.cnn.com/magazines/fortune/fortune_archive/2007/05/28/100033867/index.htm "Microsoft takes on the free world" +[3]: http://news.bbc.co.uk/2/hi/business/4021775.stm "Microsoft warns of Linux claims"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/myspacetakedown.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/myspacetakedown.txt new file mode 100644 index 0000000..4eb2f5e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/myspacetakedown.txt @@ -0,0 +1,16 @@ +MySpace announced Friday that is has rolled out a new technology to fight copyright infringement on the site. The new copyright protection system, aptly titled "[Take Down Stay Down][2]," uses technology from [Audible Magic][1] to ensure that content which has already been pulled from MySpace profiles is not re-posted. + +The Audible Magic technology utilized a "digital fingerprint" of the video content and if a user tries to upload a file that has already been banned, MySpace claims the copyright filters will block the upload. + +MySpace hopes the technology will head of a spat of lawsuits that could otherwise threaten the site. YouTube, another video site repeatedly targeted by copyright suits has promised similar filtering mechanisms, but so far has not released anything similar. + +The MySpace system has been in a testing phase since late last year, but friday's announcement is the first site wide attempt at automating a copyright takedown system. And while many content producers are not doubt thrilled, not everyone is happy. + +Because the system lacks a human oversight, the Electronic Frontier Foundation worries that some perfectly legal content may end up blocked as well. + +Corynne McSherry, an Electronic Frontier Foundation attorney [tells CNet][3], "with every form of digital rights management that we've ever seen, it always gets hacked eventually, so I think it's likely that eventually this too will be hacked." + + +[1]: http://www.audiblemagic.com/index.asp "Audible Magic" +[2]: http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20070511005160&newsLang=en "MySpace Launches Take Down Stay Down Copyright Protection" +[3]: http://news.com.com/New+MySpace+copyright+tech+turns+heads%2C+raises+brows/2100-1030_3-6183162.html?part=rss&tag=2547-1_3-0-20&subj=news "New MySpace copyright tech turns heads, raises brows"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/olpc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/olpc.jpg Binary files differnew file mode 100644 index 0000000..3f6659f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/olpc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/olpc.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/olpc.txt new file mode 100644 index 0000000..dcd1028 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/olpc.txt @@ -0,0 +1,9 @@ +The One Laptop per Child project has delivered its first laptops to children Villa Cardal, Uruguay. The normally sleepy town of roughly 2000 people was inundated with national authorities and press to mark the first public deliver of OPLC machines. + +Villa Cardal is a small community with only one school of 150 children so all of the schoolchildren received laptops. For some inside photos of the event, have a look that the [gallery][1] posted by Uruguayan blogger [Pablo Flores][2] who was on hand for the delivery. (the photograph above is from Flores gallery). + +For more information about the OLPC project, check out our [prior coverage][3]. + +[1]: http://picasaweb.google.es/pflores2/EntregaDeLaptopsEnVillaCardal +[2]: http://olpc-ceibal.blogspot.com/2007/05/villa-cardal-uruguay-world-center-of.html +[3]: http://blog.wired.com/monkeybites/olpc/index.html "Compiler: Topic OLPC"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/pentax.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/pentax.jpg Binary files differnew file mode 100644 index 0000000..872c756 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/pentax.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/rawvista.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/rawvista.txt new file mode 100644 index 0000000..398cd38 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/rawvista.txt @@ -0,0 +1,16 @@ +Pro photographers will be happy to know that RAW support in Vista continues to improve. The Microsoft Photoblog has [announced][2] new Camera RAW support for Pentax cameras, but unfortunately the new codecs are only available for the 32 bit version of Vista. + +Camera RAW continues to be something of a mess on all platforms and still lacks a true industry standard, despite Adobe's attempt at one with the DNG format. + +As it stands Adobe and Apple both resort to writing their own codecs, but Microsoft opted to partner with camera manufacturers directly to include the manufacturers' own codecs with Vista. + +The downside to that partnership is that Microsoft has been slow in delivering the codecs for Vista users. Neither Microsoft nor [Pentax][3] offer any information on when components for the 64 bit version of Vista might arrive. + +Given the potential speed boasts for processor hungry image editing programs running on 64 bit Vista, Microsoft's inability to deliver RAW codecs is surprising. + +As it stands, Camera RAW options in Vista [still lag][1] and have numerous [bugs][4], leaving no real reason for photo pros to upgrade. + +[1]: http://blog.wired.com/monkeybites/2007/02/vista_issues_fo.html "Vista Issues For Pro Photographers" +[2]: http://blogs.msdn.com/pix/archive/2007/04/27/pentax-raw-codec-released.aspx "Pentax RAW codec released" +[3]: http://www.pentax.co.jp/english/support/digital/rawcodec_vista.html "PENTAX RAW codec software (for Windows Vista 32 bit)" +[4]: http://blogs.msdn.com/pix/archive/2007/02/12/nikon-raw-codec.aspx "Nikon RAW Codec"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/yahootravel.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/yahootravel.txt new file mode 100644 index 0000000..0af1e8a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/yahootravel.txt @@ -0,0 +1,24 @@ +There's nothing like a bright sunny Monday in May to get cubicle jockeys dreaming of a summer vacation. Yahoo has has channeled that impetus to redesign its [Yahoo Travel][1] portal adding some nice new features of those looking to plan a getaway. + +The new Yahoo Travel combines Yahoo FareChase, a low-priced air fares search, with Yahoo Trip Planner, a social network for travelers which helps plan trips and create maps as well as offering options for online journals and photos. + +Most of the new features revolve around user input, such as the new personalized recommendations which are drawn from search history and an browsing activity. + +Yahoo has also added Yahoo Maps integration which features even more recommendations based on both professional and user reviews of local sights, dining and more. + + +The most immediately obvious new features is a "Top Picks" selection in the middle of the homepage which highlights popular destinations in your area. Each of the the suggested destinations get an enticing photo and mousing over the photo will reveal tabs that offer quick links to deals, tips, travel guides and currently weather information all without leaving the page you're on. + +Other nice Yahoo service integration for the travel portal include images from Flickr and Q & A data from Yahoo Answers which pulls in common questions related to the destination you're exploring. + +I'll confess I never used to old version of Yahoo travel, so I'm not really in a position to compare the two, but the new Yahoo Travel is a fantastic resource for anyone looking for one-stop-shop information site. + +My only criticism would be that there's so much information at your fingertips that it can be a little bit overwhelming. Fortunately, because the site tracks your browsing history, its pretty easy to get lost in a destination and still be able to pull back and start over without fear of losing the information you've found useful. + +The new Yahoo Travel homepage + +Yahoo Travel destination guide + +A Slideshow of Flickr photos (from a link on the destination guide) + +[1]: http://travel.yahoo.com/ "Yahoo Travel"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ytdestinationguide.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ytdestinationguide.jpg Binary files differnew file mode 100644 index 0000000..bad895f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ytdestinationguide.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ytflickrslideshow.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ytflickrslideshow.jpg Binary files differnew file mode 100644 index 0000000..ba47db8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ytflickrslideshow.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ythomepage.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ythomepage.jpg Binary files differnew file mode 100644 index 0000000..5e733e8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ythomepage.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ytravel.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ytravel.jpg Binary files differnew file mode 100644 index 0000000..c9a681e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Mon/ytravel.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/GoogleExperimental1.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/GoogleExperimental1.txt new file mode 100644 index 0000000..98831a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/GoogleExperimental1.txt @@ -0,0 +1,26 @@ +As part of Google's recent and significant [search overhaul][1], there's a new Google Labs project that allows curious users to try out experimental Google Search features before they're rolled out on the main search page. [Google Experimental][2], as the new section is called, currently features four handy new ways to use the search engine. + +The first feature we'll explore is the new Timeline and Maps views. Timeline allows you see results on a timeline. Google extracts key dates for your search and displays them chronologically (screenshots after the jump). + +Maps view does the same thing but plots significant places on Google maps. + +Obviously both timeline and map views work best for searches related to things with either historical or location contexts such as people, companies, events and places. + +If you find yourself using either of these features on a regular basis there's some new search operators that allow you go directly to either view, just append <code>view:timeline</code> or <code>view:map</code> to the end of your search parameters. + +Of the two I think the maps visualization will end up being the most interesting, especially as geodata continues to infiltrate the metadata structure of the web. For instance, this search maps results for the phrase [Wired Magazine][3]. + +At the moment the results range from San Francisco (our home office) to 2005's Wired NextFest in Chicago, neither of which are particularly astounding. + +But imagine if Wired were to add some metadata in our posts that allowed Google to index the location each article was filed from -- the results would be a global map index of Wired stories, which would be an interesting visual way to explore the site (or any other site with similar data). + +Taking this idea a bit further you can combine the <code>view:map</code> operator with the <code>site:</code> operator to get a visual representation of all Wired stories that [mention a specific location][4]. In that link I've searched for all stories that mention a location and contain the search term "Firefox." + +Note that this also highlights some flaws in Google's technology since a mention of the the fact that Firefox was once called Phoenix causes Google to associate that result with the city in Arizona. Clearly the Maps view has some kinks to work out. + +Google hasn't announced any formal plans for the new experimental search visualizations, but some kind of standardized geo format information in the sitemaps protocol strikes me a logical way to tell Google about location data relevant to each page of a site. + +[1]: http://blog.wired.com/monkeybites/2007/05/google_to_add_e.html "Google To Add Embedded Videos to Default Search Results" +[2]: http://www.google.com/experimental/ "Google Experimental" +[3]: http://www.google.com/views?q=wired+magazine+view%3Amap&btnGm=Search "Google Maps Search: Wired Magazine" +[4]: http://www.google.com/views?q=Firefox+site%3Ahttp%3A%2F%2Fwired.com+view%3Amap&btnGm=Search
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gleft-hand.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gleft-hand.jpg Binary files differnew file mode 100644 index 0000000..6197d14 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gleft-hand.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gleft-handi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gleft-handi.jpg Binary files differnew file mode 100644 index 0000000..b12b6e4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gleft-handi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gmapsview1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gmapsview1.jpg Binary files differnew file mode 100644 index 0000000..83fed24 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gmapsview1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gmapsview2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gmapsview2.jpg Binary files differnew file mode 100644 index 0000000..093f4f6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gmapsview2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gmapsviewi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gmapsviewi.jpg Binary files differnew file mode 100644 index 0000000..0c3d719 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gmapsviewi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gnav.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gnav.txt new file mode 100644 index 0000000..0a5eb27 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gnav.txt @@ -0,0 +1,15 @@ +The last of the beta features in Google's new [Experimental][3] section is a slight interface tweak that adds some hand links to the left or right hand side of the search results page. None of the additional information is anything you can't access by some other means, but the simplified navigation makes it easier to do so. + +The left-hand search navigation bumps the traditional search results column over to make room for links to various related searches as well as context sensitive alternative searches like Images, Blogs and more. + +The right-hand search navigation is a slightly less feature rich version of the left-hand navigation, but, obviously, on the right hand side of the page. + +The main difference between the two is that the right-hand version lacks a "more" option and displays fewer "related" search options. + +Neither of these interface tweaks are radical, but if you frequently find yourself doing related searches or moving between the various Google search categories, these links will make that task a bit quicker. + +Be sure to see our previous coverage of the new [Maps and Timeline searches][2] and the [keyboard navigation][1] options. + +[1]: http://blog.wired.com/monkeybites/2007/05/google_experime_1.html "Google Experimental: Keyboard Navigation For Search Results" +[2]: http://blog.wired.com/monkeybites/2007/05/google_experime.html "Google Experimental: Maps View Adds Geo Context To Searches" +[3]: http://www.google.com/experimental/ "Google Experimental" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gright-hand.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gright-hand.jpg Binary files differnew file mode 100644 index 0000000..19c3b36 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gright-hand.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gshortcuts.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gshortcuts.jpg Binary files differnew file mode 100644 index 0000000..124ffca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gshortcuts.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gshortcuts.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gshortcuts.txt new file mode 100644 index 0000000..c2fc227 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gshortcuts.txt @@ -0,0 +1,35 @@ +Next up in our continuing look at the new features available via [Google Experimental][2] is the keyboard navigation experiment. The beta version of [keyboard navigation][1] adds GMail-like keyboard shortcuts to the Google Search results page. + +When using the new shortcuts page you'll see an arrow icon to left of the active result and you can scroll up and down through the results, as well as jump in and out of the search box and open links all without leaving the keyboard (screenshots after the jump). + +The keyboard shortcut navigation options are summarized in the table below. + +<table style="text-align:left; padding: 5px;" border="0"> +<thead> +<th>Key</th><th>Action</th> +</thead> +<tbody> +<tr><td><code>J</code> </td><td> Selects the next result.</td></tr> +<tr><td><code>K</code> </td><td> Selects the previous result.</td></tr> +<tr><td><code>O</code> </td><td> Opens the selected result.</td></tr> +<tr><td><code>Enter</code> </td><td> Opens the selected result.</td></tr> +<tr><td><code>/</code> </td><td> Puts the cursor in the search box.</td></tr> +<tr><td><code>Esc</code> </td><td> Removes the cursor from the search box.</td></tr> +</tbody> +</table> + +Unfortunately this feature isn't as easy to get to as the [Timeline and Maps tools][3] with their operator shortcuts. In order to land on the keyboard beta page you'll have to go through the Google Experimental page or append the param <code>&esrch=BetaShortcuts</code> to the end of your search URL. + +So far I haven't been able to locate one, but this seems like the perfect place for a new Google Search plugin for Firefox. + +All that's necessary is to take the existing Firefox Google Search tool and modify it so that it appends the above param to the URL. If you run across such a thing be sure to let us know. + +The biggest downfall to the new shortcuts is that they don't seem to follow the preference setting to open results in a new window. A quick glance at the code shows that the links carry a <code>target=nw</code> which means at least some of the page is aware of the new window setting. Unless someone can explain otherwise I would call that a bug. + +Still, for keyboard junkies like myself, the new options are a godsend. Hopefully Google will sort out a way for the open command to respect the new window setting in the near future. + +Be sure to check out the previous Google Experimental coverage of [Maps and Timelines][3]. + +[1]: http://www.google.com/webhp?esrch=BetaShortcuts&hl=en&newwindow=1&btnG=Search "keyboard Shortcuts" +[2]: http://www.google.com/experimental/ "Google Experimental" +[3]: http://blog.wired.com/monkeybites/2007/05/google_experime.html "Google Experimental: Maps View Adds Geo Context To Searches"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gshortcutsi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gshortcutsi.jpg Binary files differnew file mode 100644 index 0000000..067c0a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/gshortcutsi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/timeline.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/timeline.jpg Binary files differnew file mode 100644 index 0000000..5fe83d7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/timeline.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/tombstone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/tombstone.jpg Binary files differnew file mode 100644 index 0000000..d08d1f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Thu/tombstone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/flickrvision.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/flickrvision.txt new file mode 100644 index 0000000..c412bda --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/flickrvision.txt @@ -0,0 +1,15 @@ +Flickrvision: Realtime Image Mapping + +Like its older sibling site Twittervision, the new Flickrvision shows realtime geolocation information, but instead on inane comments via Twitter, Flickrvision overlays images uploaded to Flickr. + +[Flickrvision][1] is the brainchild of David Troy, the developer who created the original [Twittervision][2]. The new site seems to hint that Troy is moving toward a more generic visualization platform, which means other "visions" may be forthcoming. + +Flickrvision pulls in all geocoded images uploaded to Flickr and overlays then on a Google Map, updating in realtime. Of course the realtime component refers to uploading the images, not actually taking them. + +Several people in the [Metafilter thread where I ran across Flickrvision, have suggested that using only geocoded mobile phone submissions would give Flickrvision a more "what's happening right now" feel, but it would also be severely limited and probably not as much fun. + +As it is Flickrvision is certainly hypnotic and addictive, the reason to be late to work. + +[1]: http://flickrvision.com/ "Flickrvision" +[2]: http://twittervision.com/ "Twittervision" +[3]: http://www.metafilter.com/61141/Flickrvision
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/flickrvision1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/flickrvision1.jpg Binary files differnew file mode 100644 index 0000000..6b18a20 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/flickrvision1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/flickrvision2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/flickrvision2.jpg Binary files differnew file mode 100644 index 0000000..5e51bbf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/flickrvision2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/fooplot.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/fooplot.jpg Binary files differnew file mode 100644 index 0000000..c14a45a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/fooplot.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/fooplot.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/fooplot.txt new file mode 100644 index 0000000..e567d75 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/fooplot.txt @@ -0,0 +1,21 @@ +Graphing calculators have a sexiness only true nerds can understand, but should that be you, check out FooPlot a sleek online graphing calculator that's fast and easy to use. + +The [FooPlot graphing calculator][2] can plot up to five functions at the time, scrolls up and down the axis, and allows you save images. As an added bonus, FooPlot can even take its input straight from the url, for instance [this link][1] will take you to a graph that plots five equations listed in the URL. + +In addition to plotting your equations online, FooPlot has an experimental feature which allows to export your graphs in a variety of image formats including, .eps, .svg, .pdf, .png. + +FooPlot also has features that let you determine intersections and roots for your equations, though the [FAQ][3] adds some caveats to that functionality: + +>FooPlot uses Newton's method for finding roots and intersections, which has some limitations. For example, it will not be able to find the root of sqrt(x), non-differentiable functions, or functions that exhibit fractal behavior. In addition, if two functions are too close to each other, beyond the precision of the variables used in the underlying code, bogus roots or intersections may be found. Thus, it is highly recommended that you use your analytical skills to ensure that the results you see make sense. + +FooPlot may not be a necessity for everyone, but it's certainly the best graphing calculator implementation we've seen. + +FooPlot supports most major browsers, though Safari users are out of luck for the time being. + + +[via [Digg][4]] + +[1]: http://fooplot.com/index.php?q0=sin(x),cos(x),tan(x),x,x%5e2 "FooPlot With Params" +[2]: http://fooplot.com/index.php "FooPlot" +[3]: http://fooplot.com/faq.php? "FooPlot FAQ" +[4]: http://digg.com/software/Awesome_online_graphing_calculator_http_fooplot_com_sin_x
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/fooplot1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/fooplot1.jpg Binary files differnew file mode 100644 index 0000000..7870254 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/fooplot1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/netnewswire.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/netnewswire.jpg Binary files differnew file mode 100644 index 0000000..cf09823 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/netnewswire.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/netnewswire.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/netnewswire.txt new file mode 100644 index 0000000..74c4b87 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/netnewswire.txt @@ -0,0 +1,35 @@ +NetNewsWire, the popular RSS reader for Mac has release an alpha preview of its upcoming version 3.0. The new alpha features numerous enhancements, bug fixes and some nice new features including Twitterrific integration and support for microformats (screenshots after the jump). + +Since the [current release][1] is an alpha, there are a number of known bugs and it's meant for developer testing only. That said, I've been using it all morning with no issues. + +There's too many changes to go through in detail, but the most immediately obvious things are speed improvements. The auto-sync performed with your NewsGator account at startup is much much faster. + +When opening pages in tabs they now load much faster and the tab bar has been moved off to the side, à la Omniweb, and provides nice thumbnail previews. The option to open feed links in your default browser is still available as well. + +The Twitter support requires [Twitterrific][2] and adds a link in the "News" to post the current news item to your Twitter account. + +The interface has seen a subtle makeover, folder icons are slightly different and the default colors for unread/read items have changed, but nothing too major. + +[Microformats][5] support has been added to the NetNewsWire alpha, which is nice, though as even the developer admits, possibly useless. + +I've never personally run across microformats data in an RSS feed, however sites like Upcoming.org (now [owned by Yahoo][6]) uses microformats for event listings so this could become useful in the future. + +NetNewsWire 3 will support the [hCard][3] and [hCalendar][4] microformats. + +Here's a few more highlights from the [release notes][1]: + +>* Combined View: clicking link now marks as followed: A long-standing bug, now fixed. It will make the Attention Report accurate, but it will take a little time for that to happen (it’s not instantaneous, because it can’t know about links you clicked in the past, because the whole bug is that it didn’t know about links you clicked). + +>* Feed limit now 1000: Increased the limit for the feed parser from 500 items to 1000. (There does have to be a limit, because sometimes there are runaway feeds — created by runaway scripts — that have many thousands of items in them. Erroneously. It amounts to a denial of service attack on your aggregator.) + +>* Now ignoring YouTube enclosures: It will start ignoring YouTube enclosures (for new items) — since they’re just an empty player. (You can still follow the link to open the video, of course.) + +As mentioned this is alpha software so you can expect bugs to pop up, but if you're interested in testing the new version, head over to the Ranchero site and [grab a copy][7]. Be sure to backup your NetNewsWire preferences and data before running the alpha. + +[1]: http://ranchero.com/netnewswire/changenotes/netnewswire3.0a8.php "NetNewsWire 3.0a8 Change Notes" +[2]: http://iconfactory.com/software/twitterrific "Twitterrific" +[3]: http://microformats.org/wiki/hcard "hCard" +[4]: http://microformats.org/wiki/hcalendar "hCalendar" +[5]: http://blog.wired.com/monkeybites/2007/01/tutorial_o_the__2.html "Compiler on Microformats" +[6]: http://blog.wired.com/monkeybites/2007/04/yahoo_placates_.html "Upcoming placates users with free t-shirts" +[7]: http://ranchero.com/netnewswire/beta.php "NetNewsWire 3.0a8: Alpha Release"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nielsen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nielsen.jpg Binary files differnew file mode 100644 index 0000000..6109ffe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nielsen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nnwnew1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nnwnew1.jpg Binary files differnew file mode 100644 index 0000000..76c1547 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nnwnew1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nnwnew2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nnwnew2.jpg Binary files differnew file mode 100644 index 0000000..193bdff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nnwnew2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nnwnew3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nnwnew3.jpg Binary files differnew file mode 100644 index 0000000..329b03f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/nnwnew3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/opensea.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/opensea.jpg Binary files differnew file mode 100644 index 0000000..22a7f9f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/opensea.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/opensea.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/opensea.txt new file mode 100644 index 0000000..d835862 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/opensea.txt @@ -0,0 +1,19 @@ +OpenSEA Alliance Wants To Be "The Firefox" Of LAN Security + +OpenSEA is a new open source consortium that hopes to support the development of a robust open-source 802.1X supplicant. 802.1X is port authentication scheme in local networks that creates a secure "digital handshake" when you connect to that network. + +802.1 is perhaps best known as part of WPA, a secure wireless encryption protocol. + +But 802.1X is not just for wireless networks. Although it has never really caught on, it can be used to authenticate machines in wired LANs as well. + +[The OpenSEA Alliance][1] came about because [industry analysts were worried][3] that issues with standards implementation in proprietary schemes might confine the protocol to obscurity. Currently the 3 largest providers of commercial 802.1X supplicants are Cisco, Juniper and Microsoft. + +OpenSEA hopes to change that. From the newly launched OpenSEA website: + +>The OpenSEA Alliance believes that it can act as an industry change agent to help overcome these early problems while advancing the technology. The OpenSEA Alliance can help stabilize 802.1X by developing and promoting a robust and widely available open source client. The OpenSEA Alliance also intends to champion 802.1X by becoming a champion for technology advancement and user education. + +For more information, head over to the OpenSEA site and have a read through the [FAQs][2]. + +[1]: http://www.openseaalliance.org/ "OpenSEA Alliance" +[2]: http://www.openseaalliance.org/index.php?option=com_easyfaq&task=cat&catid=17&Itemid=34 "OpenSEA FAQs" +[3]: http://news.com.com/8301-10784_3-9718830-7.html?part=rss&subj=news&tag=2547-1_3-0-20 "Introducing OpenSEA Alliance"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/piratebayhacked.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/piratebayhacked.txt new file mode 100644 index 0000000..8ed773a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/piratebayhacked.txt @@ -0,0 +1,18 @@ +The popular torrent tracking site Pirate Bay was recently hacked and the attackers made off with a copy of The Pirate Bay's 1.6 million usernames and passwords. Luckily for The Pirate Bay and its users, the database was encrypted. + +[According to Pirate Bay][1] co-founder, Peter Sunde, the attackers "got a copy of all the user names and the encrypted passwords but they couldn't crack it." + +Sunde [spoke the Register][2] by phone, saying: + +>"There was a stupid coding error and they found a hole in the blog software which they exploited through a SQL injection" +... + +>"As soon as they put it onto the net, I rang them up and let them know we knew who'd done it. They told us they got a copy of all the user names and the encrypted passwords but they couldn't crack it." +... + +>"They realized they had done something stupid and disposed of all the data." + +The Pirate Bay has since patched the flaw in their software. Still, it wouldn't be a bad idea to change your password if you have an account with The Pirate Bay. + +[1]: http://thepiratebay.org/blog/68 "User data stolen but not unsecured" +[2]: http://www.theinquirer.net/default.aspx?article=39604 "Pirate Bay says stolen database safe"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/usabilityweb20.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/usabilityweb20.txt new file mode 100644 index 0000000..bc0653b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Tue/usabilityweb20.txt @@ -0,0 +1,29 @@ +Usability guru Jakob Nielsen believes that web 2.0 is in danger of becoming "glossy but useless." Nielsen, whose usability guidelines have, for many designers, long been the bible of web interface development, believes that in the rush to embrace new technologies like Ajax, designers have abandoned the well worn principles of usable sites. + +Nielsen [tells the BBC][1] that, "most people just want to get in, get it and get out... for them the web is not a goal in itself. It is a tool." + +And Nielsen believes that many web 2.0 sites have abandoned the design principles that allow average, non-tech-savvy users to easily do what they want. + +Although Nielsen doesn't give the BBC any specific examples, it seems reasonable to assume that he's opposed to Ajax heavy sites that often break the back button, something that has long been Nielsen's chief critique of non-HTML technologies. + +While some the Nielsen's critiques are probably valid, I can't help wondering if perhaps as the web has matured over the years, users are perhaps more sophisticated than Nielsen thinks. + +In an [interview last year with Sitepoint][2], Nielsen says, "it's important to remember that most web sites are not used repeatedly. Usually, users will visit a given page only once." + +But isn't web 2.0 about community sites that receive repeat traffic from users who are active members? + +Even taking into account the 80/20 rule (80% of the community are typically lurkers, 20% contribute) that's still a significant portion of the audience that are going to value features over usability. + +Take, for instance, Digg. The vast majority of Digg users are like myself, headline scanners that interact mainly through an RSS reader and rarely even visit the site. + +But if Digg were to optimize for usability and stop rolling out new features (like the [recent API for instance][3]) the site would inevitably alienate the hard core users who contribute the content. + +If those users move on, then there's little reason for the lurkers to remain and pretty soon what Kevin Rose would be left with is a really well designed, highly usable site that no cares about. + +I don't disagree with Nielsen that usability is important, but with web 2.0 community site in particular I think Nielsen is clinging to set of rigid standards that aren't taking into account the changes in how users interact with the web. + +Of course in an ideal world, users would get both -- new features that adhered to sound usability principles, but while web 2.0 is many things, ideal it is not. + +[1]: http://news.bbc.co.uk/2/hi/technology/6653119.stm "Web 2.0 'neglecting good design'" +[2]: http://www.sitepoint.com/article/interview-jakob-nielsen "Interview with Jakob Nielsen" +[3]: http://blog.wired.com/monkeybites/2007/04/new_digg_api_me.html "New Digg API Means More Mashups"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/2colgoogle.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/2colgoogle.jpg Binary files differnew file mode 100644 index 0000000..912adbb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/2colgoogle.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/2colgooglefull.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/2colgooglefull.jpg Binary files differnew file mode 100644 index 0000000..cc02413 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/2colgooglefull.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/Ror.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/Ror.txt new file mode 100644 index 0000000..1e9953a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/Ror.txt @@ -0,0 +1,9 @@ +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/PQbuyKUaKFo"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/PQbuyKUaKFo" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +The folks behind [Rails Envy][1], a Ruby on Rails blog, have made a great parody of the Mac vs PC commercials. If you aren't yet thoroughly sick of parodies of the iconic Apple ads, this is one of the better spin-offs I've seen. + +In this case Ruby on Rails meets Java and talks about out-of-the-box functionality. + +Rails Envy promises one ad a day everyday leading up to this weekend's RailsConf in Portland Oregon so be sure to check back at Rail Envy for more ads. Hopefully at some point RoR will meet python. + +[1]: http://www.railsenvy.com/2007/5/14/ruby-on-rails-commercial "Rails Envy"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/amazon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/amazon.jpg Binary files differnew file mode 100644 index 0000000..a4ddab1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/amazon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/amazonDRMfree.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/amazonDRMfree.txt new file mode 100644 index 0000000..5d8641f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/amazonDRMfree.txt @@ -0,0 +1,13 @@ +Amazon has announced it will sell DRM-free digital downloads through a new online music store. In an announcement released early today [Amazon says][1] it has licenses to sell music from 12,000 record labels, including, naturally, EMI's digital catalogue, which is already available DRM-free via the iTunes Store. + +Amazon CEO Jeff Bezos said in a statement that the company's "MP3-only strategy means all the music that customers buy on Amazon is always DRM-free and plays on any device." + +So far EMI is the only major record label embracing unencumbered downloads. + +EMI repeatedly emphasized that the announcement of DRM free files on iTunes earlier this year was not an exclusive deal and the company was seeking other deals. Today's Amazon announcement is the first such deal to come to fruition and trumps Apple's current offering by making the whole store DRM free to avoid consumer confusion. + +Amazon tells the BBC that the new store will launch later this year, but so far has not released a specific date. + +Whenever it arrives, Amazon's entry into the world of DRM-free digital downloads may well help convince the reluctant record companies that DRM-free is the way to be. + +[1]: http://phx.corporate-ir.net/phoenix.zhtml?c=176060&p=irol-newsArticle&ID=1003003&highlight= "Amazon to sell unprotected music"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight.jpg Binary files differnew file mode 100644 index 0000000..313548b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight.txt new file mode 100644 index 0000000..e04811d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight.txt @@ -0,0 +1,24 @@ +Maplight Reveals Democracy For Sale Within U.S. Congress + + +Maplight.org, the nonpartisan political watchdog site, will announce later this morning that it has launched a new U.S Congress database. The new database combines information like bill texts and legislative voting records, supporting and opposing interests for each bill and campaign contribution data for each member of Congress. + +[Maplight][1], which Michael [wrote about previously][2], started life as a California watchdog, focused on state political issues and interest groups, but with today's announcement the site has moved to the national level. + +Thanks to dead simple navigation it's easy to stumble your way through some otherwise very complex data. You can tunnel in based on specific representatives, interest groups or congressional bills and from there discover handy facts such as the fact that the authors of most bills have the corresponding interest group in their top ten contributors. + +Of course the connection between money and politics isn't news, but somehow seeing it so bald-faced and obvious makes it shocking. And depressing. + +But perhaps part of the reason such close ties between the authors of legislation and the beneficiaries of it exist is because previously such data was not available to the average citizen. + +The growing [citizen journalism][6] movement and sites like Maplight, and others such as [Opensecrets.org][3] and [Follow the Money][4], along with wiki-based political reporting resources like [Congresspedia][5], are changing that. + +Will government official be able to continue with their dubiously motivated legislation when the whole world is watching? That remains to be seen, but one thing is for sure, like it or not, [radical transparency][7] is being thrust upon congress like never before. + +[1]: http://www.maplight.org/ "Maplight.org" +[2]: http://www.wired.com/politics/law/news/2007/04/maplight "Web Mashups Turn Citizens Into Washington's Newest Watchdogs" +[3]: http://opensecrets.org/ "Opensecrets.org" +[4]: http://www.followthemoney.org/ "Follow The Money" +[5]: http://www.sourcewatch.org/index.php?title=Congresspedia "Congresspedia" +[6]: http://en.wikipedia.org/wiki/Citizen_journalism "Wikipedia: Citizen Journalism" +[7]: http://www.longtail.com/the_long_tail/2006/11/in_praise_of_ra.html "In Praise of Radical Transparency"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight1.jpg Binary files differnew file mode 100644 index 0000000..ffd39ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight2.jpg Binary files differnew file mode 100644 index 0000000..4b042b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/maplight2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/mccarthy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/mccarthy.jpg Binary files differnew file mode 100644 index 0000000..49a900d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/mccarthy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/mspatentthreat.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/mspatentthreat.txt new file mode 100644 index 0000000..bbdd399 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/mspatentthreat.txt @@ -0,0 +1,24 @@ +You can only rattle a saber for so long before it turns into a thin, hollow tinkle. Microsoft's [latest round of Linux patent PR FUD][4] has been met with some scathing retorts from the Linux community, perhaps best summarized as a simple call to put up or shut up. + +Linus Torvalds weighed in on the issue in an [interview with Information Weekly][1] about Microsoft's claim saying, "Don't you think that if Microsoft actually had some really foolproof patent, they'd just tell us and go, 'nyaah, nyaah, nyaah!'" + +Linus goes on to say that "It's certainly a lot more likely that Microsoft violates patents than Linux does." He claims that if the source code for Windows received the same critical review that Linux has, Microsoft would likely find itself in violation of patents as well. + +Torvalds isn't the only one with some sharp words for Microsoft. Jonathan Schwartz, CEO and President of Sun Microsystems, [writes on his blog][2] that Microsoft ought to try innovating rather than litigating and would be wise to avoid suing its customers. + +>no amount of fear can stop the rise of free media, or free software (they are the same, after all). The community is vastly more innovative and powerful than a single company. And you will never turn back the clock on elementary school students and developing economies and aid agencies and fledgling universities - or the Fortune 500 - that have found value in the wisdom of the open source community. Open standards and open source software are literally changing the face of the planet - creating opportunity wherever the network can reach. + +>That's not a genie any litigator I know can put back in a bottle. + +Tim O'Reilly, publisher and open source advocate, writes that Microsoft's latest FUD blitz smacks of McCarthyism. In a recent post on [O'Reilly Radar][3] he writes, "does Microsoft's claim that Free and Open Source Software infringes on 235 Microsoft patents remind anyone of Joseph McCarthy's famous claim about communists at the State Department?" + +O'Reilly goes on to say that "Frankly, this flawed PR ploy smacks of desperation to me." + +It would certainly seem that the Linux patent threat no longer worries most in the open source community (also be sure to check out the [great video Michael posted yesterday][5]) and if anything Microsoft's latest move has merely [rallied the forces aligned against it][6]. + +[1]: http://www.informationweek.com/news/showArticle.jhtml?articleID=199600443 "Linus Torvalds Responds To Microsoft Patent Claims" +[2]: http://blogs.sun.com/jonathan/entry/what_we_did "Free Advice for the Litigious..." +[3]: http://radar.oreilly.com/archives/2007/05/i_have_in_my_ha.html "I have in my hand a list of 206 known communists at the State Department" +[4]: http://blog.wired.com/monkeybites/2007/05/microsoft_rehas.html "Microsoft Rehashes Linux Patent FUD" +[5]: http://blog.wired.com/monkeybites/2007/05/the_be_very_afr.html "The 'Be Very Afraid' Tour: Microsoft's Patent Strategy Explained" +[6]: http://blog.wired.com/monkeybites/2007/05/opensource_pate.html "Open-Source Patent-Holders Ready to Fight Fire With Fire"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/odf.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/odf.jpg Binary files differnew file mode 100644 index 0000000..80fd7f5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/odf.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/odf.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/odf.txt new file mode 100644 index 0000000..125f0c8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/odf.txt @@ -0,0 +1,17 @@ +Anyone wondering why Microsoft is on the [open source warpath][3] need look no further than Norway's recent decision to mandatory government use of the Open Document Format (ODF) for an explanation. + +While not directly related to the patent issues, Norway's move is an example of yet another country moving toward rejecting a proprietary Microsoft format in favor of the open source alternative. + +[Norway's proposal][1] is somewhat more lenient than other proposals in that it doesn't explicitly disallow OOXML (Microsoft's competing format) so long as any document available in the MS format is also available in ODF. + +Additionally, according to the press release, Norway would like to see the convergence of ODF and OOXML in order to avoid having "two standards covering the same usage." + +Other recent adopters of ODF include Japan, which, on July 1, will become the first Asian nation to declare a formal policy giving priority to technology based on open standards. + +In other ODF news, Poland has just approved the [National IT Agenda][2] (link in Polish) as a new law. It is the first law in Poland officially recognizing open standards. According to the announcement Poland hopes to achieve technology neutrality of the state by implementing "open and publicly available IT standards." + +All in all not a good time to be peddling overwrought file formats that seemingly no one is interested in. + +[1]: http://www.consortiuminfo.org/standardsblog/article.php?story=20070513180219689 "Norwegian Standards Council Recommends Mandatory use of ODF and PDF" +[2]: http://www.mswia.gov.pl/portal/pl/256/4635/ "Poland IT Agenda" +[3]: http://blog.wired.com/monkeybites/2007/05/the_be_very_afr.html "The 'Be Very Afraid' Tour: Microsoft's Patent Strategy Explained"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/twocolgoogle.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/twocolgoogle.txt new file mode 100644 index 0000000..673a195 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/twocolgoogle.txt @@ -0,0 +1,15 @@ +Google's simplistic search results page is arguably one of the reasons the search giant succeeded in what was, at the time, a crowded search market. But if you have a large monitor the Google search results page is a waste of screen real estate, forcing you to scroll down a whitespace-heavy page. + +If this situation annoys you, and you use Firefox, you can change Google to display two columns thanks to the [Two Column Google][1] Greasemonkey script (screenshots after the jump). + +The Two Column Google script displays Google results in rows rather than one long column. However, rather than the results being sorted into two columns (like a newspaper), this script organizes the results into a table that reads left to right. + +I would probably prefer two columns like a newspaper, but this is still better than the default Google search results page. If you've got a really big monitor and know your way around some Javascript you could change the number of columns to suit your needs. + +Naturally Two Column Google requires Firefox with the [Greasemonkey extension][3] installed. + +[via [Google Operating System][2]] + +[1]: http://userscripts.org/scripts/show/8477 "Greasemonkey: Two Column Google (row-wise)" +[2]: http://googlesystem.blogspot.com/2007/05/google-search-results-displayed-in.html "Google Search Results, Displayed in Columns" +[3]: https://addons.mozilla.org/en-US/firefox/addon/748 "Greasemonkey"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/wordpress2.2.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/wordpress2.2.txt new file mode 100644 index 0000000..b4a3a30 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.14.07/Wed/wordpress2.2.txt @@ -0,0 +1,19 @@ +WordPress has released an update, bringing the popular blogging software to version 2.2. The update is the first in the WordPress team's goal of a four month development cycle which they announced as part of an update earlier this year. + +[WordPress 2.2][1] sees the addition of a number of new features including widget integration, as well as over two hundred bug fixes. + +The WordPress widgets make it easy to rearrange and customize your weblog sidebar using a drag-and-drop interface. While the functionality was previously available via a plugin, widgets are now part of the core code and reportedly much improved. + +Other new features in WordPress 2.2 include: + +* Full Atom support, including updating our Atom feeds to use the 1.0 standard spec and including an implementation of the Atom Publishing API to complement our XML-RPC interface. +* Infinite comment stream, meaning that on your Edit Comments page when you delete or spam a comment using the AJAX links under each comment it will bring in another comment in the background so you always have 20 items on the page. (I know it sounds geeky, but try it!) +* Core plugin and filter speed optimizations should make everything feel a bit more snappy and lighter on your server. +* We've added a hook for WYSIWYG support in a future version of Safari. + +The last item, WYSIWYG support for Apple's Safari browser, should be available now if you happen to use the WebKit nightly builds. + +If you'd like an in-depth look at everything that changed under the hood in version 2.2, have a look at the [bug fixes in the WordPress Trac pages][2]. + +[1]: http://WordPress.org/development/2007/05/WordPress-22/ "WordPress 2.2" +[2]: http://trac.WordPress.org/query?status=closed&milestone=2.2 "WordPress Bug Fixes"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/calmobile.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/calmobile.jpg Binary files differnew file mode 100644 index 0000000..f9201fa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/calmobile.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/gcal.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/gcal.jpg Binary files differnew file mode 100644 index 0000000..d033b4d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/gcal.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/mobilecal.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/mobilecal.txt new file mode 100644 index 0000000..db13988 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/mobilecal.txt @@ -0,0 +1,11 @@ +Google quietly added a new mobile version of Google calendar to the site yesterday. The new mobile-optimized version of Google Calendar can be found by pointing your phone to [calendar.google.com][1]. + +The Google Blog reports that the mobile version of Calendar will display "your agenda of upcoming events, complete with details like date, time, location, description, and guest list." + +The new site is nice, but I can't help thinking that the mobile version should have been available from the beginning. Better late than never I guess. + +Screenshot from the official site: + + + +[1]: http://www.google.com/calendar/m "Google Calendar Mobile Edition"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/osx.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/osx.txt new file mode 100644 index 0000000..22d2846 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/osx.txt @@ -0,0 +1,9 @@ +Apple has released a new security update for Mac OS X, which patches a number of vulnerabilities including a fairly serious flaw in CoreGraphics. The CoreGraphics flaw could allow a malicious PDF file to crash an application and create a buffer overflow which would allow for the execution of malicious code. + +A number of the other significant patches include fixes for open source programs like Bind, Fetchmail, and contab. Aside from CoreGraphics the most serious flaw in an Apple program affects iChat and could also allow remote code execution. + +The new update is available via the Software Update pane in OS X's System Preferences, or direct from [the Apple site][1]. + +This marks the fifth security update from Apple this year, which, while not an official monthly occurrence like Microsoft's "patch Tuesdays," seems to be settling into a regular pattern. + +[1]: http://www.apple.com/support/downloads/ "Apple Support: Downloads"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/osxsm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/osxsm.jpg Binary files differnew file mode 100644 index 0000000..8b030d4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/osxsm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recap1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recap1.jpg Binary files differnew file mode 100644 index 0000000..16037ae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recap1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recap2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recap2.jpg Binary files differnew file mode 100644 index 0000000..1e604d3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recap2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recapi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recapi.jpg Binary files differnew file mode 100644 index 0000000..7a59abe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recapi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recaptcha.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recaptcha.txt new file mode 100644 index 0000000..266b44d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Fri/recaptcha.txt @@ -0,0 +1,24 @@ +Thanks to the wonderful world of spammers most websites these days rely on CAPTCHA images to force users to prove they are human before accepting comments or other user feedback. In fact humans solve roughly 60 million CAPTCHAs a day according to a the people behind [reCAPTCHA][1] a group that wants to leverage that effort to help digitizing books. + +ReCAPTCHA wants to improve the process of digitizing books by sending words that cannot be read by computers to the web in the form of CAPTCHAs for humans to decipher. + +The idea behind reCAPTCHA is that, as long as we're all solving these CAPTCHA puzzles, why not throw in some minimal additional data? By adding a second image with an unsolved word from the [Internet Archive][3] book scanning project, ReCAPTCHA allows users to channel their CAPTCHA solving skills into real world benefits. + +The Internet Archive and other similar initiatives are busy scanning the world's books and converting them to text via OCR technology. But of course OCR is far from perfect, often there are unreadable words in the scans that require a human to make a decision. Tedious work to be sure. + +The reCAPTCHA idea works by taking each word that cannot be read correctly by OCR and creating a CAPTCHA image out of it. + +But, you may be thinking, if the OCR software doesn't know the word, then how does the CAPTCHA software know that the solution has been correctly entered? + +Here's an explanation from the reCAPTCHA site: + +>But if a computer can't read such a CAPTCHA, how does the system know the correct answer to the puzzle? Here's how: Each new word that cannot be read correctly by OCR is given to a user in conjunction with another word for which the answer is already known. The user is then asked to read both words. If they solve the one for which the answer is known, the system assumes their answer is correct for the new one. The system then gives the new image to a number of other people to determine, with higher confidence, whether the original answer was correct. + +Since we're all stuck solving CAPTCHAs anyway, the reCAPTCHA project makes perfect sense. If you'd like to use the system head over to the reCAPTCHA site and have a look at the [various options][2] for including the CAPTCHAs on your site -- there are already plugins for WordPress and PHP. + +[via [Hackszine][4]] + +[1]: http://recaptcha.net/ "reCAPTCHA" +[2]: http://recaptcha.net/resources.html "reCAPTCHA resources" +[3]: http://www.archive.org/index.php "Internet Archive" +[4]: http://www.hackszine.com/blog/archive/2007/05/recaptcha_distributed_book_dig.html?CMP=OTC-7G2N43923558 "reCAPTCHA: distributed book digitization while fighting spam"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/UOF.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/UOF.txt new file mode 100644 index 0000000..52b780f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/UOF.txt @@ -0,0 +1,18 @@ +Microsoft wants to expand Office 2007's repository of document formats. The company will announce today that it will sponsor an [open-source project][1] to create a converter between OOXML, Office 2007's default file format, and the Chinese standard known as the Unified Office Format (UOF). + +Microsoft has already announced it will support Open Document Format (ODF), the existing ISO standard for office documents. But with ODF, OOXML and now UOF support Office users may be scratching their heads and wondering which is best. + +In terms of interoperability, ODF unquestionably already has the upper hand since it enjoys support in both Office 2007, OpenOffice and a number of online document services like Google Apps. + +Sun has already suggested that the Chinese format, which came about because of the lack of compatibility between documents generated by existing Chinese office software, ought to be merged with the ODF format. + +However, despite the fact that both are open formats there are, [according to Wikipedia][4], "significant technical challenges in achieving a merger, as the two formats have made different fundamental choices in how to describe documents." + +Even if the two never merge, there are already converters to [translate ODF to UOF][3] and vice versa and now, with Microsoft's announcement it should be possible to move your data between all three formats with relative ease. + +For more information on the UOF format and how it fits with the current office format wars, check out the [Standards Blog][2], which has a detailed breakdown on the issue. + +[1]: http://uof-translator.sourceforge.net/ "UOF Add-in for Microsoft Word" +[2]: http://www.consortiuminfo.org/standardsblog/article.php?story=2006110806164573 "Another Open Document Format – From China" +[3]: http://odf-to-uof.sourceforge.net/index.html "ODF-UOF Converter" +[4]: http://en.wikipedia.org/wiki/UOF "Uniform Office Format"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/barrett.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/barrett.jpg Binary files differnew file mode 100644 index 0000000..1bf5e90 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/barrett.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/facebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/facebook.txt new file mode 100644 index 0000000..1a9cca0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/facebook.txt @@ -0,0 +1,21 @@ +<img alt="Facebook" title="Facebook" src="http://blog.wired.com/photos/uncategorized/2007/04/11/facebook.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The Wall Street Journal [reports][1] that Facebook will make a major announcement later this weeks at the Facebook F8 event in San Francisco. The WSJ claims that the announcement will feature the launch of "Facebook Platform," a new tool designed to turn Facebook into an open platform which any service provider can leverage. + +According to the WSJ Facebook hopes the new service will allow users to "gain access to that content inside Facebook." As to what the details will look like or what they announcement means for users, the WSJ doesn't say and Facebook has not yet publicly commented. + +The WSJ does speculate a little on what Facebook Platform might entail: + +>For instance, an online retailer could build a service in Facebook to let people recommend music or books to their friends, based on the relationships they've already established on the site. Or a media company could let groups of users share news articles with each other on a page inside Facebook. + +If the Journal's sources are correct, it sounds like Facebook is making a move into a couple of already crowded markets -- personalized homepages and recommendation services. + +The homepage market especially will put Facebook up against some big players like the recently revamped iGoogle. + +The WSJ quotes Mark Zuckerberg as saying, "We realize that we're not going to be able to build everything ourselves here, and it's not the most efficient thing for us to do that." + +Zuckerberg also added that allowing others to build services which interact with Facebook is "definitely going to be a bigger part of our strategy." + +Regular readers will know that we at Compiler love us some APIs, and it certainly sounds like an expansion of the Facebook API could be in the works. + +Be sure to check back later in the week when Facebook officially unveils its new offerings. + +[1]: http://online.wsj.com/public/article/SB117971397890009177-wjdKPmjAqS_9ZZbwiRp_CoSqvwQ_20070620.html " Facebook Opens Its Pages As a Way to Fuel Growth"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/gmaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/gmaps.jpg Binary files differnew file mode 100644 index 0000000..ba0e26f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/gmaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/gmaps1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/gmaps1.jpg Binary files differnew file mode 100644 index 0000000..c089a3e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/gmaps1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/gmapsneighborhood.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/gmapsneighborhood.txt new file mode 100644 index 0000000..5bb0a44 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/gmapsneighborhood.txt @@ -0,0 +1,9 @@ +<img alt="Mymaps" title="Mymaps" src="http://blog.wired.com/photos/uncategorized/2007/04/05/mymaps.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Following close on the heals of a recent upgrade to Yahoo Maps, the Google LatLong blog has [announced a new feature][1] that allows users to search by neighborhood. Google has trumped Yahoo's initial launch of an identical feature by offer the service in fifty U.S. cities, while Yahoo's offering remains limited to New York and San Francisco. + +Google's neighborhood search allows users to perform searches like "[record store, greenwich village][2]." Note that informal names don't work quite as well, for instance a search for "record store, the village" will return results in about seven U.S. cities. + +In addition to the neighborhood-based features Google Maps can now do city level searches with just the city name, provided the name is unique, for instance, "[bookstore, Boston][3]." + +[1]: http://google-latlong.blogspot.com/2007/05/posted-by-david-tussey-product-manager.html "Neighborhood Search Capability" +[2]: http://maps.google.com/maps?f=q&hl=en&q=record+store,+greenwich+village&sll=46.739861,-95.537109&sspn=30.188964,83.144531&ie=UTF8&cd=1&filter=0&ll=40.732722,-74.000859&spn=0.016292,0.040598&z=15&iwloc=B&om=1 "Record Stores Greenwich Village" +[3]: http://maps.google.com/maps?f=q&hl=en&q=bookstore,+boston&ie=UTF8&ll=42.365647,-71.05545&spn=0.063544,0.162392&z=13&iwloc=C&om=1 "Bookstore, Boston"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/olpcspat.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/olpcspat.txt new file mode 100644 index 0000000..27a0174 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/olpcspat.txt @@ -0,0 +1,19 @@ +Nicholas Negroponte has come out attacking Intel for its recently announced "ClassMate" PC, which Negroponte claims is trying to undercut the OLPC project. Speaking to 60 Minutes last night [Negroponte said][1] Intel "should be ashamed of itself." He went on to call Intel's recent aggressive marketing campaign "shameless." + +Negroponte is upset in part because Intel is moving into the same markets that the OLPC project has targeted and has apparently released some FUD marketing literature with titles like "the shortcomings of the One Laptop per Child approach." + +The literature then touts Intel's more expensive ClassMate PC as a better alternative. Intel's CEO has also repeatedly referred to the OLPC machine as a $100 "gadget." + +While few would deny the potential benefits for third world children were the OLPC project to spark some sort of price war on stripped down laptops, Intel's aggressiveness in what remains a largely charitable market is a bit off-putting. + +Still the recent war of words might sound like a case of sour grapes on Negroponte's part, after all if the goal is to bring laptops to the developing world than who cares who makes them? + +However, one key element in the debate is that the OLPC uses a processor from Intel's chief rival AMD. + +"Intel and AMD fight viciously," Negroponte said on 60 Minutes, "we're just sort of caught in the middle." + +While that may be true, Negroponte probably isn't helping his cause much by complaining about competition. + +From the potential buyer's point of view the choice will always be easy -- the machine with the most capabilities for the least amount of money. + +[1]: http://www.cbsnews.com/stories/2007/05/20/60minutes/main2830058.shtml "Negroponte on 60 Minutes"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/youtubeapple.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/youtubeapple.txt new file mode 100644 index 0000000..0f933ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/youtubeapple.txt @@ -0,0 +1,17 @@ +An AppleTV user has posted a YouTube video demonstrating a new plugin which allows users to watch YouTube videos on the popular media device. [AwkwardTV][3], where we discovered the video, claims that the plug-in, named "A Series Of Tubes," will be available for download very soon. + +Some people might question the usefulness of taking 320x240 encoded videos and playing them back on an HDTV, where it will most likely like crap, but I think at this stage though the point isn't necessarily about quality, but more about possiblity (video after the jump). + +In other words yes, it isn't the most useful thing you're going to do with your AppleTV, but isn't it nice to know that you can? And actually, judging by the sample video (itself compressed) YouTube videos via AppleTV don't look that bad. + +No word on when YouTube plans to convert videos to streaming HD quality. + +[via [Digg][2]] + + + +[2]: http://digg.com/apple/YouTube_comes_to_the_Apple_TV "YouTube comes to the Apple TV" +[3]: http://www.awkwardtv.org/?p=45 + + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/vszCaC1A8-g"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/vszCaC1A8-g" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/ytplugin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/ytplugin.jpg Binary files differnew file mode 100644 index 0000000..647933f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/ytplugin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/zoho.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/zoho.txt new file mode 100644 index 0000000..d211d2f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/zoho.txt @@ -0,0 +1,21 @@ +Zoho, the online office suite, has announced it will open its Zoho Notebook service to the general public later today. [Zoho Notebook][1], first announced at DEMO 07 back in January has been in a private beta trial phase for the last few months. + +Zoho touts Notebook as a way for users to create, aggregate, and collaborate on content from other Zoho services as well as outside web content. + +As you might expect Zoho notebook uses a notebook metaphor for its interface design, allowing top level "notebooks" to contain "pages," which can be anything from Zoho documents to embedded web videos. For a more in-depth look at the notebook see the new video from Zoho embedded after the jump. + +The closest competitor for Zoho Notebook is undoubtedly Google Notebook, however, Zoho's features are considerably more impressive. + +Whereas Google Notebook is essentially a scrapbook for interesting tidbits you find around the web, Zoho Notebook is much closer to a full-blown desktop snippet-keeper application. + +As you can see in the video below, the application is laid out in a two-pane workspace. The left-hand side contains all the buttons for creating and modifying notebooks, pages, and elements. The content itself is in the right-hand pane. + +Along the top of the workspace are tabs to switch between notebooks. A small toolbar at the bottom contains some simple drawing tools like text boxes, lines, shapes and comment bubbles for creating your own content from scratch. + +Notebook also features browser plugins for Firefox and Internet Explorer which you can use to quickly cut and paste web content into a notebook. + +Zoho Notebook is an impressive offering and now that it's out of the beta phase I expect a number of curious users may defect from Google. Either way, scrapbook and snippet lovers have yet another online tool at their disposal. + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/sfJFBcF_6cE"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/sfJFBcF_6cE" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://notebook.zoho.com/nb/login.jsp "Google Notebook"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/zohonotebook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/zohonotebook.jpg Binary files differnew file mode 100644 index 0000000..5a166ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Mon/zohonotebook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/acrappysearchengine.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/acrappysearchengine.txt new file mode 100644 index 0000000..3404609 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/acrappysearchengine.txt @@ -0,0 +1,17 @@ +With Google, Yahoo and Microsoft are constantly touting new improved search features it's hard for the little guys to compete, which is why [ACrappySearchEngine.com][3] takes the alternative route -- really bad search results. + +ACrappySearchEngine is a humorous take on Google and the rest and it returns some truly meaningless results. I particularly love the "less" link where Google's "more" link would normally be. Clicking "less" removes all the other links. + +But humor aside (and I do realize that ACrappySearchEngine.com is a joke) I actually would love to see something based on "anti" search algorithms. + +As I wrote a while back, I love [LibraryThing's Unsuggest][1], which attempts to give search results based on what books you would probably not like. + +A number of pundits have already written repeatedly that our obsession with targeted search, optimized results and tag-based filtering allow us to find what we want on the web, but the same tools also tend to narrow our world-view by showing only those things we are likely to agree with. + +There's something to be said for expanding your narrow tunnel of reality by encountering unexpected things that are bound to shock, alarm and quite possibly enrich you in unexpected ways. + +[via [Valleywag][2]] + +[1]: http://blog.wired.com/monkeybites/2006/11/librarythings_u.html "LibraryThing's UnSuggest: Discover Your Dislikes" +[2]: http://www.valleywag.com/tech/acrappysearchengine%27com/just-what-you-werent-looking-for-263054.php "Just what you were(n't) looking for" +[3]: http://acrappysearchengine.com/ "A Crappy Search Engine"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/crappy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/crappy.jpg Binary files differnew file mode 100644 index 0000000..f3c0d52 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/crappy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/dell.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/dell.txt new file mode 100644 index 0000000..0b35295 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/dell.txt @@ -0,0 +1,18 @@ +As rumored, Dell has announced its Ubuntu Linux equipped PCs this morning. The particular models match the rumors we [published earlier this week][2] and will [go on sale later today][1]. However those hoping that a free OS would mean a cheaper PC are in for a bit of a surprise. + +In fact the pricing for the Ubuntu machines is roughly equal to that of Windows PC, and in the case of the low end desktop model, the Windows machine is actually a bit cheaper. + +So what's the deal Dell, is Ubuntu just a way of increasing your profit margin? + +To be fair Dell hasn't released the exact configuration specs for the Ubuntu machines yet. However, the base model of the highend desktop, the XPS 410, which ships with a Core 2 Duo processor, Vista Home Premium, 1GB RAM and 19 inch LCD monitor, is listed at the exact same price as the Ubuntu Linux version -- $900. + +But Ubuntu is a free OS and Windows costs money. Even taking into account the OEM discounts Dell gets from Microsoft, selling the same machine at the same price smacks of a cheap way to bump your bottom line. + +Some have suggested that Dell is covering the cost of supporting a new OS buy not dropping the prices as much as users may have hoped, but that argument falls apart when you consider that the entire GNU/Linux OS is developed and maintained for free. + +While it's nice that Dell is offering Linux as an option, I don't expect these machines to fly out the door when the Windows version are nearly the same price and Ubuntu is still a free download. + +Perhaps buying the Windows machine, selling your Windows license on EBay and then installing Linux is still the best option. + +[1]: http://direct2dell.com/one2one/archive/2007/05/24/15994.aspx "Dell Offers Three Consumer Systems With Ubuntu 7.04" +[2]: http://blog.wired.com/monkeybites/2007/05/rumor_ubuntu_eq.html "Rumor: Ubuntu Equipped Dell PCs Arriving Thursday"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/dellupdate.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/dellupdate.txt new file mode 100644 index 0000000..f2a451f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/dellupdate.txt @@ -0,0 +1,123 @@ +Well perhaps Dell isn't so bad after all. Based on a post at Direct2Dell, I suggested that the new Ubuntu laptops were [a bit of a rip off][2] since they we're much cheaper than the Windows versions. + +Shorty thereafter I received an email from Anne Camden at Dell Corporate Communications, who writes: + +>Scott: + +>The Dell XPS 410n with Ubuntu factory installed will have a starting price of $849. On average, comparably configured Ubuntu systems will be about $50 less. + +The original Direct2Dell post has been [updated][1] to list the correct price. + +Still not as much of a discount as seems fitting, but I am willing to concede that Dell probably recoups quite a bit of money on all the junkware that gets packaged with Windows installations -- AOL specials, etc. + +Arguably, not having to remove all the junkware is itself a significant savings, if not of money, than at least the time spent removing it all. + +[1]: http://direct2dell.com/one2one/archive/2007/05/24/15994.aspx "Dell Offers Three Consumer Systems With Ubuntu 7.04" +[2]: http://blog.wired.com/monkeybites/2007/05/ubuntu_on_dells.html "Ubuntu On A Dell: Dude You're Getting Ripped Off" + +Here's the offical specs and pricing information from Dell's press release: + +<p class="p6"><b>Recommended Configurations and Pricing</b></p> +<table cellspacing="0" cellpadding="0" class="t1"> + <tbody> + <tr> + <td valign="top" class="td1"> + <p class="p1"><b>Inspiron E1505n</b></p> + </td> + <td valign="top" class="td1"> + <p class="p1"><b>Dimension E520n<span class="Apple-tab-span"> </span></b></p> + </td> + <td valign="top" class="td1"> + <p class="p1"><b>XPS 410n</b></p> + </td> + </tr> + <tr> + <td valign="top" class="td1"> + <p class="p7">15.4-inch TrueLife WXGA display</p> + </td> + <td valign="top" class="td1"> + <p class="p7">17-inch flat panel display</p> + </td> + <td valign="top" class="td1"> + <p class="p7">19-inch flat panel display</p> + </td> + </tr> + <tr> + <td valign="top" class="td1"> + <p class="p7">Intel Pentium® Dual Core T2080</p> + </td> + <td valign="top" class="td1"> + <p class="p7">Intel Core 2 Duo E4300</p> + </td> + <td valign="top" class="td1"> + <p class="p7">Intel Core 2 Duo E4300</p> + </td> + </tr> + <tr> + <td valign="top" class="td1"> + <p class="p7">512MB shared memory<span class="Apple-tab-span"> </span></p> + </td> + <td valign="top" class="td1"> + <p class="p7">1GB shared<sup>1</sup> memory<span class="Apple-tab-span"> </span></p> + </td> + <td valign="top" class="td1"> + <p class="p7">1GB shared<sup>1</sup> memory<span class="Apple-tab-span"> </span></p> + </td> + </tr> + <tr> + <td valign="top" class="td1"> + <p class="p7">80GB hard drive<span class="Apple-tab-span"> </span></p> + </td> + <td valign="top" class="td1"> + <p class="p7">250GB hard drive<sup>2</sup><span class="Apple-tab-span"> </span></p> + </td> + <td valign="top" class="td1"> + <p class="p7">250GB hard drive<sup>2</sup></p> + </td> + </tr> + <tr> + <td valign="top" class="td1"> + <p class="p7">CDRW/DVD ROM</p> + </td> + <td valign="top" class="td1"> + <p class="p7">CDRW/DVD ROM<span class="Apple-tab-span"> </span></p> + </td> + <td valign="top" class="td1"> + <p class="p7">DVD+/- RW</p> + </td> + </tr> + <tr> + <td valign="top" class="td1"> + <p class="p7">Intel<sup>®</sup> Media Accelerator 950 Graphics</p> + </td> + <td valign="top" class="td1"> + <p class="p7">256MB<sup> </sup>nVidia Geforce 7300LE TurboCache</p> + </td> + <td valign="top" class="td1"> + <p class="p7">256MB<sup> </sup>nVidia Geforce 7300LE TurboCache<sup>4</sup></p> + </td> + </tr> + <tr> + <td valign="top" class="td1"> + <p class="p7">Intel PRO Wireless 3945<span class="Apple-tab-span"> </span></p> + </td> + <td valign="top" class="td1"> + <p class="p7">10/100 Ethernet</p> + </td> + <td valign="top" class="td1"> + <p class="p7">10/100 Ethernet</p> + </td> + </tr> + <tr> + <td valign="top" class="td1"> + <p class="p1"><b>Starting at $599</b></p> + </td> + <td valign="top" class="td1"> + <p class="p1"><b>Starting at $599</b></p> + </td> + <td valign="top" class="td1"> + <p class="p1"><b>Starting at $849</b></p> + </td> + </tr> + </tbody> +</table>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/feedburner.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/feedburner.jpg Binary files differnew file mode 100644 index 0000000..a321aec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/feedburner.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/feedburner.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/feedburner.txt new file mode 100644 index 0000000..c255fcf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/feedburner.txt @@ -0,0 +1,14 @@ +According to TechCrunch's Michael Arrington, Google is in the final stages of acquiring RSS publisher FeedBurner for a [rumored $100 million][1]. [Feedburner][2] is one of the most popular RSS publishing tools on the web, particularly in the blogging world (as a matter of fact, this blog's feeds are handled by Feedburner). + +In addition to bloggers, FeedBurner also publishes the feeds from a number of enterprise companies like Reuters, Newsweek and AOL. Currently, Feedburner claims to be handling over 720,000 feeds from over 420,000 publishers. + +Feedburner is more than just a publishing tool though, the site is also one of the best ways to track your feed readership and it seems likely that Google will at some point roll Feedburner's statics into Google Analytics. + +Another likely outcome of the acquisition is the integration of AdSense into RSS feeds. If Feedburner has a weakness, it's that the company doesn't offer many options for bloggers and other publishers to make money off their feeds. + +The Google acquisition means that Feedburner now has the Google advertising juggernaut behind it. Expect RSS-based ads to become more common in the near future. + +So far Google has remained mum about the purchase and TechCrunch says that there are still couple of weeks to go before the deal is finalized, but in the mean time, what does the acquisition mean for the rest of us? Let us know what you think in the comments below. + +[1]: http://www.techcrunch.com/2007/05/23/100-million-payday-for-feedburner-this-deal-is-confirmed/ "$100 Million Payday For Feedburner - This Deal Is Confirmed" +[2]: http://www.feedburner.com/fb/a/home "Feedburner"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/firefox3.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/firefox3.txt new file mode 100644 index 0000000..e74deb9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/firefox3.txt @@ -0,0 +1,15 @@ +Mozilla has floated a proposal to drop support for Mac OS X Panther in the upcoming version of Firefox 3. The proposal, written by Josh Aas, Mozilla's primary Mac OS X developer, can be [found on Google Docs][1]. + +Aas, writes: + +>Dropping support for Panther would also free up engineering resources and allow us to take advantage of APIs that only became available on Tiger. We have made a huge number of great changes to our Mac OS X code for Gecko 1.9, but we still have a lot of work to do and we are already running short on time to deliver a product that works well on Tiger and Leopard. + +Mozilla is hardly the first software maker to consider dropping Panther support for the next version of its product, in fact, the move is not entirely unexpected. + +Radical changes in many aspects of the underlying architecture in Panther versus Tiger have already led a number of developers to drop support for Panther. Textmate, a popular OS X text editor, has said it will [drop both Panther and Tiger support][3] for its next major revision, which will be Leopard-only. + +Mozilla has not actually made a decision yet, the plan is still in the discussion stage. If you'd like to follow the debate, head over to the developer mailing list page and [read through the thread][2]. There are some good arguments on both sides of the debate. + +[1]: http://docs.google.com/View?docid=ddgz99zp_3f7p24k "Proposal to Drop Mac OS X 10.3 (Panther) Support For Gecko 1.9" +[2]: http://groups.google.com/group/mozilla.dev.planning/browse_thread/thread/1bbeecf164bade5d/9f8b4e88c36bc048#9f8b4e88c36bc048 "Google Groups: mozilla.dev.planning" +[3]: http://macromates.com/blog/archives/2006/11/09/20-will-require-leopard/ "2.0 Will Require Leopard"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/googleengrish.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/googleengrish.txt new file mode 100644 index 0000000..3e00bcf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/googleengrish.txt @@ -0,0 +1,13 @@ +Google's new translation search engine, which was announced at last week's Searchology event, is now live. The new [cross-language search feature][1] allows users to find and view search results on foreign language pages in their native language. + +To use the new service you'll need to set your language preferences, for example English to French, and then just type your query. Google will translate the query to French and then translate the results back to English. + +Regrettably the service isn't yet available via the Google homepage, but the new translation services are still in beta so it may be a while before Translate gets homepage status. + +And because it is a beta and perhaps even moreso because it's attempting translations, results can be a bit rough -- particularly with Asian languages. The service is best for those wanting, as the [Google press release][2] puts it, "to obtain a gist of content written in a language that they do not know or know well," rather than a precise translation of a page. + +And of course the main Google homepage still offers the "translate this page" links when returning a non-english page. + + +[1]: http://translate.google.com/translate_t?hl=en "Google Translate" +[2]: http://www.google.com/intl/en/press/annc/translate_20070523.html "Google Leaps Over Language Barriers"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/googletranslate.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/googletranslate.jpg Binary files differnew file mode 100644 index 0000000..d60732f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/googletranslate.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/googletranslate1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/googletranslate1.jpg Binary files differnew file mode 100644 index 0000000..98f1fb7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Thu/googletranslate1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/badbunny.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/badbunny.jpg Binary files differnew file mode 100644 index 0000000..cdff88c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/badbunny.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/dell.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/dell.txt new file mode 100644 index 0000000..6bc1463 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/dell.txt @@ -0,0 +1,18 @@ +According to rumors making their way around the web, Dell will begin shipping its first round of Ubuntu equipped PCs later this week. The founder of LinuxQuestions.org claims that a Dell employee sent him a leaked email which says the new Ubuntu machines will [go on sale Thursday][2]. + +Although Dell has not made any official announcement yet, John Hull, Dell's Manager of Linux OS Technologies, has published a short overview of what customers can expect on their new Ubuntu PCs when they are released. + +"Before we announce the availability of Ubuntu 7.04 on select Dell client systems, I'd like to give an overview of what customers can expect from our initial Ubuntu offering," Hull writes in his post. He goes on to say that "the default software from the Ubuntu media will be installed on the system, including kernel and applications." + +Hull says Dell will configure and install open-source hardware drivers whenever possible, but will use "partial open-source or closed-source drivers where there is no equivalent open-source driver." The main source of non-open drivers will be Intel wireless cards and Conexant modems. + +Interestingly, Hull also notes that "at this time, we are not including any support for proprietary audio or video codecs that are not already distributed with Ubuntu 7.04." + +Due to patent law restrictions the default version of Ubuntu does not ship with support for formats like MPEG, WMA, DVD, QuickTime, and other proprietary codecs, however, it's not hard for users to install support for those formats. + +According to the leaked email, the initial Dell PCs to offer Ubuntu will include the Inspiron E1505 laptop ($700 to $1100), the Dimension E520 desktop (starts at $370 sans monitor) and the somewhat nicer XPS 410 desktop ($900 to $2500). + + +[1]: http://direct2dell.com/one2one/archive/2007/05/21/15563.aspx "Ubuntu 7.04 Offering—Technical Details" +[2]: http://jeremy.linuxquestions.org/2007/05/18/dell-announces-the-models-for-ubuntu/ "Dell announces the models for Ubuntu" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/macrovirus.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/macrovirus.txt new file mode 100644 index 0000000..7b4ad7a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/macrovirus.txt @@ -0,0 +1,27 @@ +A post on the [virus blog VirusList][3] is warning users about a macro virus that affects the OpenOffice and StarOffice suites. No doubt a number of engineers in Redmond are cackling with delight, but in fact the virus technically isn't a virus at all and poses little or no threat to users. + +As with any macro system, a script written in StarBasic -- the macro scripting language of the OpenOffice suite -- can execute any arbitrary code that a user allows it to execute. + +In the case of this new proof-of-concept macro, the code is embedded in a Draw file named badbunny.odg. + +The macro in question will ask users if they would like to execute the script. Should the user be foolish enough to agree, the script will attempt to download and display a bit of porn -- an image of a man wearing a bunny suit performing a sex act in the woods. Yes, you did read that right. + +Because StarBasic macros run on any platform that OpenOffice does, the "virus" can affect Windows, Linux and Mac OS X. The results vary somewhat according to your system. [According to APC][1], the macro will do the following depending on the system it runs on: + +>* Windows: The worm drops a file called drop.bad which is then moved to system.ini in your mIRC folder (if you have one) and also drops and executes badbunny.js which is a JavaScript virus that replicates to other files in the folder. +* MacOS: The worm drops one of two Ruby script viruses (in files called badbunny.rb or badbunnya.rb). +* Linux: The worm drops badbunny.py as an XChat script and also drops badbunny.pl which is a tiny Perl virus infecting other Perl files. + +The makers of OpenOffice are understandably somewhat annoyed at this bit of code being called a virus since it doesn't execute arbitrary code without user permission and can't self-replicate. + +A short [announcement sent to an OpenOffice mailing list][2] reads: + +>The OpenOffice.org engineers take the security of the software very seriously, and will react promptly to any new issues. This "proof of concept" virus is not new information, and does not require a software patch. Technically, it is not even a virus, as it is not "self-replicating" - with OpenOffice.org's default settings, it cannot spread without user intervention. + +As with anything, never trust a file from unknown sources. As long as users are smart enough to follow that timeless advice they should be in no danger whatsoever. + +[Photo from [APC][1]] + +[1]: http://apcmag.com/6162/first_openoffice_virus_emerges "First OpenOffice virus emerges" +[2]: http://www.openoffice.org/servlets/ReadMsg?list=announce&msgNo=287 "proof-of-concept macro virus" +[3]: http://www.viruslist.com/en/weblog?weblogid=187738337 "Stardust -- a macro curiosity"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/msupdate.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/msupdate.txt new file mode 100644 index 0000000..a1ea0dd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/msupdate.txt @@ -0,0 +1,13 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/office2007_2.jpg" title="Office2007_2" alt="Office2007_2" style="margin: 0px 0px 5px 5px; float: right;" />Microsoft has acknowledged that flaws in Vista's security update system may have left some Office 2007 users with unpatched, vulnerable systems. + +Mark Griesi, a Microsoft Security Response Communications team member, [writes][2] on the Microsoft Security Response blog that systems running Windows Vista and Office 2007 may not have received all of [this month's security updates][3], or that the updates may not have installed successfully. + +Griesi goes on to say that Microsoft has revamped the "detection logic for the May 8th Security and Non-Security Updates for Office 2007. The changes to the detection logic only pertain to a patch for a [flaw in Microsoft Excel][1] that allows for remote code execution. + +If you're running Microsoft Office 2007 on Windows Vista, Griesi says that "you will see new versions of the updates and will need to approve them." + +Note that there has been no change to the patches themselves. If by chance your machine managed to successfully install the updates under the old system, you will not be prompted for the new updates. + +[1]: http://support.microsoft.com/?kbid=934233 "Vulnerabilities in Microsoft Excel could allow remote code execution" +[2]: http://blogs.technet.com/msrc/archive/2007/05/17/new-detection-logic-for-may-8th-office-2007-updates.aspx "New Detection Logic for May 8th Office 2007 Updates" +[3]: http://blog.wired.com/monkeybites/2007/04/microsoft_relea.html "Microsoft Releases Windows Security Patch"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/symantec.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/symantec.jpg Binary files differnew file mode 100644 index 0000000..75385ed --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/symantec.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/symantec.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/symantec.txt new file mode 100644 index 0000000..eef0280 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/symantec.txt @@ -0,0 +1,18 @@ +Symantec, makers of the Norton Anti-virus software created a massive SNAFU for Chinese users when an update mistakenly identified two critical system files in the Simplified Chinese edition of Windows XP Service Pack 2 as Trojan horses. + +The two files, netapi32.dll and lsasrv.dll, were erroneously quarantined by the anti-virus software leaving users with a crippled installation of Windows. Rebooting the affected PCs caused Windows to fail on start-up and display the dreaded [blue screen of death][1]. + +Symantec uploaded a revised update some 13 and a half hours later, but by then it was too late for users who had already updated and restarted. + +By quarantining critical system files Symantec effectively rendered perhaps as many as a million, if China's state-sponsored Xinhau News Agency is to be believed (other reports range from 7,000 to several hundred thousand), Windows installations completely useless. + +Affected users will need to install new copies of the two .dll files. + +To compound matters, Symantec, in addition to their slow-as-molasses response, has yet to post any real notice of the problem on its site. + +Symantec did post a support document on its Chinese-language site that outlines how to use the Windows XP installation CD to re-install the files, but that document is buried deep in the site and Symantec homepage has no information on the issue at all. + +[via [Computer World][2]] + +[2]: http://computerworld.com/action/article.do?command=viewArticleBasic&articleId=9020058&intsrc=hm_list "Chinese PC users still contending with Symantec signature foul-up" +[1]: http://blog.wired.com/wiredphotos30/ "BSOD Through the Ages"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta.jpg Binary files differnew file mode 100644 index 0000000..54d4c76 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta.txt new file mode 100644 index 0000000..d64a4f9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta.txt @@ -0,0 +1,25 @@ +Yapta, a new way to track and compare airline ticket prices has opened its doors to the public. The private beta, which [launched a while back][3], is now open to anyone, though the service is still in beta. + +[Yapta][2] is a bit different than other services we've reviewed, like FareCast. Rather than plugging directly into the airline system as FareCast and Expedia do, Yapta simply tracks the data from other sites. + +Yapta currently supports a handful of airfare aggregators like Expedia, Orbitz and Travelocity as well as over half a dozen individual airline sites. Yapta says that it will be adding more sites as the beta period progresses. + +To use Yapta you can either enter your travel data by hand and search flights, or for batch tracking there is a browser add-on. Currently Yapta only offers an add-on for IE, but the download page says a Firefox version is coming soon. + +The Yapta browser add-on injects code into pages when you browse sites like Expedia (see screenshots below) with links to "tag" the selected flight in Yapta. Once you've tagged a flight, Yapta tracks the price and watches for changes. + +If a price changes Yapta will send you an email notification. + +The money saving part revolves around that fact that the airline industry offers what is known as the "guaranteed airfare rule." This rule says which says that if you buy a ticket directly from an airline and the price drops afterward, you're eligible for a refund. + +The airlines seem to make the voluntary offer on the basis that almost no one is aware or has the time to actually track and take advantage of the offer. Yapta's killer feature, as it were is that it handles the tracking and notification for you. + +Unfortunately it doesn't automate the process of contacting the airline, for that you're one your own. + +Yapta is simple to use and can in theory save you time and money. The principle is very similar to [Offertrax][1], but rather than retail prices, Yapta is in the airfare market. + +Unfortunately the lack of a Firefox plugin is a bit of deal breaker for me. However, when a Firefox version of the Yapta Tracker arrives I do think that Yapta, in combination with FareCast will be a boon for budget minded travelers. + +[1]: http://blog.wired.com/monkeybites/2006/11/offertrax_an_in.html "OfferTrax: RSS Shopping" +[2]: http://www.yapta.com/ "Yapta" +[3]: http://blog.wired.com/monkeybites/2007/04/yapta_revolutio.html "Yapta: Revolutionizing How You Buy Airline Tickets"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta1.jpg Binary files differnew file mode 100644 index 0000000..1cdec76 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta2.jpg Binary files differnew file mode 100644 index 0000000..9b0291c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta3.jpg Binary files differnew file mode 100644 index 0000000..96e13b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Tue/yapta3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/crappy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/crappy.jpg Binary files differnew file mode 100644 index 0000000..f3c0d52 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/crappy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/flickr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/flickr.jpg Binary files differnew file mode 100644 index 0000000..34b88fe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/flickr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/flickr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/flickr.txt new file mode 100644 index 0000000..024740a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/flickr.txt @@ -0,0 +1,20 @@ +Flickr is a great service for storing and sharing you photos on the web, but uploading images is often a hit or miss proposition. There's always the default uploader provided by Flickr, but its a bit cumbersome for large sets of photos. + +I've been relying on Kula's <a href="http://kula.jp/software/1001/">1001</a> to upload photos for some time, but unfortunately the program is notoriously unstable on Intel macs. Michael looked at [Fotofox][4] as an alternative, but while Fotofox is nice and full-featured, it somehow never grabbed me. + +Being a bit of python fan I was excited to find [uploader.py][1], a Flickr uploading solution that works by watching a folder on your hard drive and, with a little help from good old <code>cron</code>, can automatically upload new files whenever it discovers them. + +Uploader.py is the brainchild of Cameron Mallory and the clever folks over at Lifehacker have written a [great tutorial][2] on how to set things up on both Windows and Mac OS X. + +As with any outside program accessing Flickr, the first time you run uploader.py you'll need to login to your Flickr account and authorize the script to work with your account. + +Uploader.py has one dependancy, it needs to use the XMLTramp.py file to parse XML. You can grab XMLTramp [here][3] and just add it to your python path (or alternately just stick it in the folder with uploader.py). + +Other than that you just need to change a couple lines in the uploader.py script to point to the directory you want it to watch. From there you can either run it by hand in the terminal or add it to a cron job. + +For the less programatically inclined the uploader.py page says there is a GUI version available, though I haven't tested it. + +[1]: http://berserk.org/uploadr/ "uploadr.py" +[2]: http://lifehacker.com/software/hack-attack/automatically-upload-a-folders-photos-to-flickr-262311.php "Automatically upload a folder's photos to Flickr" +[3]: http://berserk.org/uploadr/xmltramp.txt "XMLTramp" +[4]: http://blog.wired.com/monkeybites/2006/11/easy_photo_uplo.html "Easy Photo Uploads with Fotofox"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/gm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/gm.jpg Binary files differnew file mode 100644 index 0000000..d974f0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/gm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/gmail.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/gmail.txt new file mode 100644 index 0000000..a08532c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/gmail.txt @@ -0,0 +1,11 @@ +Google has doubled GMail's maximum attachment size from 10 MB to 20 MB, which means you meaning you can now send bigger files to you friends. + +Of course the [new file size increase][1] won't help you if you're emailing someone outside of GMail since most other services cap the attachment size at 10MBs or less. Yet another reason to switch to GMail. + +Regrettably GMail still has no loading bar graphic to indicate your upload progress which seems all the more glaring now that it might take quite a while to upload a 20 MB file. + +[via [Google Operating System][2]] + +[1]: https://mail.google.com/support/bin/answer.py?answer=8770 "GMail Help Center: What's the maximum attachment size?" +[2]: http://googlesystem.blogspot.com/2007/05/gmail-doubles-maximum-attachment-size.html "Gmail Doubles Maximum Attachment Size to 20 MB" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/opera.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/opera.txt new file mode 100644 index 0000000..4f3f842 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/opera.txt @@ -0,0 +1,10 @@ +<img border="0" alt="Opera2" title="Opera2" src="http://blog.wired.com/photos/uncategorized/opera2.jpg" style="margin: 0px 0px 5px 5px; float: right;" />Opera has dashed off a security fix for Windows users which plugs a critical hole in the browser that allowed attackers hijack Windows machines by feeding them a malicious torrent file. + +According to a [security advisory][1] on the Opera site, "a specially crafted torrent file can cause a buffer overflow in Opera. This allows arbitrary code to be injected and executed." + +The exploit was only possible if users right-clicked on a malicious torrent in the transfer manager. Clicking a torrent link itself would not tricker the flaw. + +Opera patched the flaw in a [security update][2] (version 9.21), which is a recommended download for all Windows Opera users. + +[1]: http://www.opera.com/support/search/view/860/ "Advisory: Malicious torrent files can execute arbitrary code in Opera" +[2]: http://www.opera.com/download/index.dml?opsys=Windows&lng=en&ver=9.21&platform=Windows&local=y "Download Opera 9.21"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway.jpg Binary files differnew file mode 100644 index 0000000..d56b579 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway.txt new file mode 100644 index 0000000..10b61d4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway.txt @@ -0,0 +1,25 @@ +Pathway is a great little OS X app designed to enrich your Wikipedia experience. Pathway incorporates a browser for view pages along with some really nice node maps that trace your travels through Wikipedia (screenshots after the jump). + +Creator Dennis Lorson says the idea for [Pathway][2] came from his frustration with the limitations of traditional browsing in the tangled jungle of Wikipedia links. + +"Wikipedia articles tend to be full of distracting links, just screaming to be clicked on," he writes on the Pathway site. "What I needed, was an application that could easily archive the path I follow through Wikipedia pages." + + +And Pathway does just that by making your history both visual and spatial using a network node view to retain an overview of where you've been in Wikipedia and how those page relate to each other. + +While the visualization tools are undoubtedly Pathway's greatest strength, there's some other nice features to, including: + +* Add notes and download files + +* Options to export individual pages with one click to a Web Archive, for reference. + +* Spotlight integration: search for any article title and Spotlight will find the document it's in. + +* Multi-language support: Pathway supports Wikipedia pages in English, French, German, Dutch and Spanish. + +If you're a Wikipedia junkie (and Mac user) Pathway is indispensable, not only does it make the site much easier to navigate, it makes Wikipedia a heck of a lot more fun. + +[via [Circle Six Design][1]] + +[1]: http://blog.circlesixdesign.com/2007/05/22/pathway-wiki-breadcrumbs/ "Pathway: Wiki Breadcrumbs" +[2]: http://pathway.screenager.be/ "Pathway"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway1.jpg Binary files differnew file mode 100644 index 0000000..4bc190c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway2.jpg Binary files differnew file mode 100644 index 0000000..b44123b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway3.jpg Binary files differnew file mode 100644 index 0000000..a3ec1ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/pathway3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tech1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tech1.jpg Binary files differnew file mode 100644 index 0000000..d915a80 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tech1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tech1i.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tech1i.jpg Binary files differnew file mode 100644 index 0000000..cf8a131 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tech1i.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tech2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tech2.jpg Binary files differnew file mode 100644 index 0000000..823038e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tech2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/technorati.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/technorati.txt new file mode 100644 index 0000000..09e9a60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/technorati.txt @@ -0,0 +1,19 @@ +The blog search engine [Technorati][2] has launched a new design and a number of under the hood improvements that move the site away from the niche blog market and into the wider world of online searching. + +CEO Dave Sifry [outlines the changes on his blog][1], which he says, are largely in response to Technorati's increasingly mainstream user base. + +"Whereas folks using Technorati a couple of years ago were predominantly coming to us to search the blogosphere," Sifry writes, "today they are increasingly coming to our site to get the 360 degree context of the Live Web - blogs of course, but also user-generated video, photos, podcasts, music, games and more." + +The revamped Technorati has incorporated better support for tagging and streamlined the search options for those of us who could never quite understand the difference between a keyword search, a tag search and blog directory search. + +Those previously separate search options are now rolled together into a single search. + +For those addicted to the old blog search index, there's still a way to do it, in fact it even has its own subdomain now: [s.technorati.com][3]. + +The interface redesign gives Technorati a slightly more colorful look and includes a new "ticker" that scrolls at the top of the page listing the most recent search terms from other users. + +Overall the changes make Technorati somewhat easier to grok and move the site away from just blog searches to a wider view of what might be best termed time sensitive searches. + +[1]: http://technorati.com/weblog/2007/05/356.html "Technorati Redesign" +[2]: http://www.technorati.com/ "Technorati" +[3]: http://s.technorati.com/ "Streamlined blog search"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/trib.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/trib.jpg Binary files differnew file mode 100644 index 0000000..bcedcf2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/trib.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tribblr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tribblr.jpg Binary files differnew file mode 100644 index 0000000..38f10fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tribblr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tribler.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tribler.txt new file mode 100644 index 0000000..cef8a28 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.21.07/Wed/tribler.txt @@ -0,0 +1,23 @@ +Tribler is a BitTorrent client that attempts to combine the social aspects of online communities with the traditional components of the torrent app. Tribler uses an Amazon-style recommendations engine to offer suggestions and also allows users to get recommendations from trusted friends. + +[Tribler][1] is the first torrent client I've seen that attempts to take torrent searching beyond the basic search engine model and in some respects reminds me of old school P2P apps like Napster or even Limewire, but with a web 2.0 like twist. + +The social aspects of Tribler won't appeal to everyone, but for those who find the task of searching and finding torrent files daunting, Tribler does indeed make it easier to find what you want. + +Tribler also aggregates content from sources most torrent clients don't, like YouTube videos and, according the Holland-based company behind Tribler, the app will include more content from other web sources in the future. + +Some people might worry about a torrent client that tracks what they download and uses that information to make suggestions, but according to the normally quite paranoid folks at [TorrentFreak][2], Tribler "is the first P2P system which has merged online friends and a sense of community without using any central server." + +In other words there is no central repository of data for the RIAA to subpoena. Of course, from what I could tell, Tribler doesn't seem to support encryption which is too bad. + +Tribler is available for Mac, Windows and Linux. + +Tribler is nice, though a bit bulky. The Mac OS X version I tested weighed in at a hefty 257 MBs and even without any running downloads it grabbed nearly a 100 MBs of RAM. + +If you're looking for a more social way to find torrents, or you just miss the community aspects of the old style P2P networks, you'll probably enjoy Tribler. + + +[via [TorrentFreak][2]] + +[1]: https://www.tribler.org/ "Tribler" +[2]: http://torrentfreak.com/tribler-a-next-generation-bittorrent-client/ "Tribler: A Next Generation BitTorrent Client?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard1.jpg Binary files differnew file mode 100644 index 0000000..512a5c7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard2.jpg Binary files differnew file mode 100644 index 0000000..8e3c331 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard3.jpg Binary files differnew file mode 100644 index 0000000..1c087ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard4.jpg Binary files differnew file mode 100644 index 0000000..7617787 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecard4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecards.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecards.jpg Binary files differnew file mode 100644 index 0000000..34b13e4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecards.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecards5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecards5.jpg Binary files differnew file mode 100644 index 0000000..925fb99 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/ecards5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/gdesk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/gdesk.jpg Binary files differnew file mode 100644 index 0000000..1b03667 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/gdesk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/googledesk.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/googledesk.txt new file mode 100644 index 0000000..2c14c6c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/googledesk.txt @@ -0,0 +1,29 @@ +Just days after vulnerabilities were discovered in Google's toolbar for Firefox, hacker Robert Hansen has discovered that a similar exploit could be launched against Google's popular Google Desktop tool. + +Hansen has posted a [proof of concept attack][1] that shows how malicious crackers could use Google Desktop to launch software on a victim's computer (video after the jump). As zero day exploits go this one is pretty complicated and so far as anyone knows hasn't been used in the wild. + +However, given the growing popularity of apps that bridge the online/offline gap, it's likely that such attacks will become more common. + +In the case of Google Desktop Hansen outlines the steps involved: + +>* User goes to Google and performs a search. +* Man in the middle detects the action and proceeds to inject their own content. +* The attacker injects a piece of JavaScript that creates an iframe to the target URL as well as makes the iframe follow the mouse (typically this would be invisible to the user, but for demonstration purposes I made it visible). +* He then frames another search query to correctly position the content inside the follow mouse script. +* As the evil search query loads, he injects a meta refresh to reload the same page forcing Google Desktop to load. In the example video below I am launching hyperterm, but you could make it any program already installed on the victim machine that is indexed by Google Desktop. +* User inadvertently clicks on evil Google Desktop query which actually runs the associated program. + +Obviously there are easier ways to attack a PC and it doesn't appear that an attacker can install any unauthorized software, but the attack does show the sorts of exploits that become possible with the merging of web-based and desktop software. + +So far Google has not commented on the issue. + +Earlier this week Christopher Soghoian (of [boarding pass exploit fame][3]) showed vulnerability in Firefox add-ons that allow for a similar "man-in-the-middle" type of attack which *could* be used to install malicious software. + +A video of Hansen demonstrating the attack is embedded below. + + +<embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=2726113702646327649&hl=en" flashvars=""> </embed> + +[2]: http://blog.wired.com/27bstroke6/2007/05/google_yahoo_fa.html "Google, Yahoo, Facebook Extensions Put Millions of Firefox Users At Risk -- Updated" +[3]: http://www.wired.com/science/discoveries/news/2006/10/72023 "Boarding Pass Hacker Under Fire" +[1]: http://ha.ckers.org/google-desktop-0day/ "Google Desktop 0day"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/livemail.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/livemail.txt new file mode 100644 index 0000000..a00a6c8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/livemail.txt @@ -0,0 +1,16 @@ +Microsoft has released a beta for its new email client intended to replace the barely four month old Windows Mail which debuted with Vista. The new [Windows Live Mail][1] beta (note the addition of "Live" in the name) is now available for download. + +As we mentioned [earlier this month][3], Microsoft intends to replace Vista's Windows Mail with Windows Live Mail (WLM), which offers a Vista Aero interface and, according to Microsoft, better performance. WLM also works on Windows XP where it is intended to replace Outlook Express. + +The new e-mail client handles POP, IMAP and Windows Live Hotmail accounts. + +Microsoft is pushing WLM's integration with other Live services, particularly Windows Live Messenger, Spaces (the little know and little used blogging host and Windows Live Contacts as reasons for users to upgrade. + +At the moment Windows Live Mail is beta software and there have been [reports of problems][2] on the Microsoft discussion boards, including installation crashes and the need for multiple reboots. Should you encounter problems you can always revert back to your old e-mail client since WLM won't delete any existing programs. + +If you're feeling brave, you can [grab the new beta][1] from the Microsoft site. + +[1]: http://get.live.com/betas/maildesktop_betas "Windows Live Mail Beta" +[2]: http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.windows.live.mail.desktop&cat=en_US_0405EAE1-3A5E-559F-59E6-B48513D5B57E&lang=en&cr=US "Discussions in Windows Live Mail Desktop" +[3]: http://blog.wired.com/monkeybites/2007/05/hotmail_joins_w.html "Hotmail Joins Web 2.0 World" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/p0.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/p0.jpg Binary files differnew file mode 100644 index 0000000..6bad879 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/p0.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/p1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/p1.jpg Binary files differnew file mode 100644 index 0000000..29d2935 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/p1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/p2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/p2.jpg Binary files differnew file mode 100644 index 0000000..4de0a65 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/p2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/parallels.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/parallels.txt new file mode 100644 index 0000000..6c968ef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/parallels.txt @@ -0,0 +1,18 @@ +Parallels has announced the release candidate for the next version of Parallels Desktop for Mac. The final version of Parallels 3.0 is expected to arrive in the next few weeks and will bring support for 3-D graphics as well as two major new features -- SmartSelect and Snapshots. + +The graphics support should be welcome news for gamers as Parallels 3 will offer support for both DirectX and OpenGL graphics in the virtual machine. At the moment Vista's Aero interface is still not supported, though the Parallels site says it's in the works. + +Of the two major new features the most interesting is SmartSelect which allows users to map files on the Mac desktop so that they automatically open in Windows apps. For instance you can set all your .doc files to open in Microsoft Word 2007 and the virtual machine will launch whenever you double clicking a Word document. + +Having to manually launch Windows apps and then open files was the main reason I abandoned Parallels a while back, so I'm look forward to testing the new version when it officially arrives. + +The other noteworthy new feature is Snapshots, which offers the ability to save the state of a virtual machine and roll back to the saved state whenever you get a virus, er, need to. + +There are an additional 50 or so new features in the new release, as well as about a 100 bug fixes, which you can peruse in the release notes. + +If the announcement alone has sold you, Parallels is offering version 3 at the discount upgrade price of $40 until June 6. After that it'll be $50 to upgrade and $80 for a brand new copy. We'll be sure to give the full rundown when the public release arrives. + +screenshots from the Parallels site: + +[1]: http://www.parallels.com/en/products/desktop/upgrade "Parallels 3 release notes" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/someecards.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/someecards.txt new file mode 100644 index 0000000..15672b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/someecards.txt @@ -0,0 +1,11 @@ +If all this amazing mapping technology we've seen his week has your head spinning (and your tin foil hat just isn't assuaging the increasing paranoia), it's time to [head over to someecards.com][1] and bombard your friends with hilarious, albeit often insulting, ecards to lighten the mood. + +For the record I really dislike e-cards and had never sent one until I stumbled across someecards.com a couple weeks back. Something about the combination of snarky wit and hilarious illustrations won me over. (I should probably point out that some of the cards may qualify as NSFW or, at the bare minimim, offensive) + +The site appears to be relatively new and in the two weeks since I discovered it the number of cards has more than doubled. The site founders claim "new cards, categories, and features will be frequently added until everyone involved with the site dies." + +With graduations in full swing and Father's day just around the corner why not add a bit of humor to the mix? Or alienate your family and friends, as the case may be. + +My personal favorite is the one at the top of the post, but here's a couple more: + +[1]: http://www.someecards.com/ "someecards"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/wlive.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/wlive.jpg Binary files differnew file mode 100644 index 0000000..37dbd07 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Fri/wlive.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/adobecameraraw.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/adobecameraraw.txt new file mode 100644 index 0000000..9a270ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/adobecameraraw.txt @@ -0,0 +1,12 @@ +Adobe has released an update to its Photoshop Camera Raw plug-in and DNG Converter. Version 4.1 of the software [adds support for 13 new cameras][1], including the popular Canon EOS-1D Mark III. + +Regrettably the update is only available to Photoshop CS3 users, those who haven't upgraded are out of luck. + +At the moment the update is also unavailable for Adobe Lightroom, though the company says that Lightroom support will be coming soon in the form of an application update (Lightroom's camera RAW handling is markedly different than that of Photoshop). + +Adobe is still pushing its universal RAW format, .DNG, and the updated converter which translates camera specific formats to Adobe's version is included in the update. + +The update should be available via the CS3 Updater later today (I just ran Updater and it didn't see the new files yet), or you can grab it [straight from the Adobe site][2]. + +[1]: http://www.imaging-resource.com/NEWS/1180589842.html "Adobe Releases Camera Raw 4.1 for Photoshop CS3" +[2]: http://www.adobe.com/products/photoshop/cameraraw.html "Digital camera raw file support"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/ailogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/ailogo.jpg Binary files differnew file mode 100644 index 0000000..3e799da --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/ailogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/appletv.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/appletv.txt new file mode 100644 index 0000000..fe82ffe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/appletv.txt @@ -0,0 +1,19 @@ +As part of his talk at at the D: All Things Digital conference yesterday, Apple's Steve Jobs revealed that the company will partner with YouTube to bring the sites videos to Apple TV. + +Starting next month, Apple TV will [add a "YouTube" option][2] in the device's main menu allowing users to browse and watch the thousands of hours of videos on the site. + +Although hackers had already figured out [a way to browse YouTube via the Apple TV][1], the official version should be welcome news to those who haven't the skills or nerve to go tinkering with the core components of their Apple TVs. + +Also as part of the announcement, Jobs unveiled a new Apple TV model sporting a 160 gigabyte hard drive, which will retail for $400. The existing 80 gig model sells for $300. + +Sadly the Apple TV still lacks a DVD player, which is one of the central critiques in a recent and somewhat [scathing review from Fortune][3]. + +While the Fortune piece has some valid points, it seems to miss the larger picture. Even the iPod wasn't a best seller out of the gate. It was woefully small, quite expensive and didn't really catch on until Apple addressed the initial problems. + + + + + +[1]: http://blog.wired.com/monkeybites/2007/05/watch_youtube_o.html "Watch YouTube On AppleTV" +[2]: http://www.apple.com/pr/library/2007/05/30appletv.html "YouTube Coming to Apple TV" +[3]: http://money.cnn.com/magazines/fortune/fortune_archive/2007/06/11/100060835/?postversion=2007053007 "The trouble with Apple TV"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/fedora.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/fedora.jpg Binary files differnew file mode 100644 index 0000000..b928790 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/fedora.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/fedora7.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/fedora7.txt new file mode 100644 index 0000000..84ffb5a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/fedora7.txt @@ -0,0 +1,17 @@ +Red Hat released the new Fedora 7 this morning. This version of the popular Linux distribution sees the unification of the Core and Extra components, which is why the name is now just Fedora, rather than Fedora Core. + +The biggest news in Fedora 7 though is the new build system which simplifies the development of custom branches and tailored versions of the OS. + +Max Spevack, Fedora's Project Leader, [writes in an announcement][1] to the Fedora mailing list, "the entire Fedora toolchain has been freed... every step in the distribution-building process is completely open." + +What that means for developers is that it is much easier to modify and compile custom builds of Fedora geared toward derivative devices. + +Spevack claims that the new release gives developers the "ability to create appliances to suit very particular user needs." + +Fedora 7 includes the usual suspects of Linux tools including version 2.6.21 of the Linux kernel, GNOME 2.18 and well as KDE 3.5.6 for the desktop and Xorg 7.3 which offers better support for multiple monitor setups. + +The [complete release notes][2] can be found on the Fedora site and the live CD distribution can be downloaded from a [variety of mirrors][3]. + +[2]: http://docs.fedoraproject.org/release-notes/f7/en_US/ "Fedora Release Notes" +[3]: http://mirrors.fedoraproject.org/publiclist/Fedora/7/x86_64/ "The Fedora Mirror System" +[1]: https://www.redhat.com/archives/fedora-announce-list/2007-May/msg00008.html "a few words about Fedora 7"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears.jpg Binary files differnew file mode 100644 index 0000000..f771c9e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears0.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears0.jpg Binary files differnew file mode 100644 index 0000000..fa35708 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears0.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears1.jpg Binary files differnew file mode 100644 index 0000000..877d066 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears2.jpg Binary files differnew file mode 100644 index 0000000..6dcdc9a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears3.jpg Binary files differnew file mode 100644 index 0000000..89bcce6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/gears3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/ggears.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/ggears.txt new file mode 100644 index 0000000..53134d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/ggears.txt @@ -0,0 +1,26 @@ +Google has released a new Javascript API this morning dubbed Gears that adds offline support for web application. A browser plugin is available for both IE and Firefox and works on Windows, Mac and Linux machines. + +In conjunction with the [new toolkit][1], Google has updated Google Reader to offer offline support for reading RSS feeds. But the technology is not limited to just Google apps. + +Like other APIs, Google is offering [Gears][2] as a free, open source platform that can be used by any web application. + +Using Gears, web developers now have access to a toolkit which enables them to take advantage of offline capabilities such as local file storage and caching, a client-side SQL database and asynchronous background processes. + +From the user side the new plug-in comes with a domain selection tool similar to that of Mozilla's add-on tools. Only approved domains can store information, though for now there are no fine-grained tools like storage size limits or per-app permissions. + +Also worth noting, the installation server is not a <code>https</code> URL which means the new plug-in is potentially vulnerable to the scripting exploits recently discovered in Firefox plugins. Hopefully Google will address that oversight in the near future. + +So far the Gears toolkit only works with Firefox and IE, but support for Opera and Safari is in the works. + +In fact Google says it will submit the code behind Gears to a standards body and hopes that eventually the functionality will be built into all standards-compliant browsers. + +For the time being Gears is a beta, but Google hopes to have a consumer-ready version available in the next few months. + +While utilizing Google Reader offline is nice, the real power of Gears will likely come from integration with the Google Docs and Google Spreadsheet applications. Offline access to Google Docs would solve one the the chief complaints about the service. + +It will be interesting to see how Gears ends up being used, but one things is for certain it opens a lot of doors to developers looking to bridge the narrowing gap between desktop and web-based applications. + + + +[1]: http://www.google.com/intl/en/press/pressrel/gears_20070530.html "Google Launches Gears Open Source Project to Bring Offline Capabilities to Web Applications" +[2]: http://gears.google.com "Google Gears"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/il.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/il.txt new file mode 100644 index 0000000..6e7cf6b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/il.txt @@ -0,0 +1,14 @@ +Web data keeps popping up in some peculiar places these days, take for instance, Adobe Illustrator CS3, which actually [tracks tutorials on del.icio.us][2] and provides direct access to them from a small "knowhow" panel. + +The knowhow panel is a small Flash-based (I believe) widget that allows you to get help for the currently selected tool or search for other info in Illustrator. + +To access the del.icio.us bookmarks in Illustrator head to Window >> Adobe Labs >> knowhow. In the knowhow panel you'll see a couple of tabs below the search box and one of them has the del.icio.us logo on it. + +Click the logo and you'll see all the bookmarks that the Illustrator team has marked on del.icio.us. + +Note that the knowhow panel is new in CS3 and seems to be unique to Illustrator. I couldn't find anything similar in Flash or Photoshop. + +If you don't have Illustrator CS3, you can always see [all the bookmarks on the del.icio.us site][1] (and subscribe to the RSS feed as well). + +[1]: http://del.icio.us/knowhow "del.icio.us: Illustrator knowhow" +[2]: http://blog.del.icio.us/blog/2007/05/knowhow_adobe_a.html "knowhow Adobe and del.icio.us work together?"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/ill1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/ill1.jpg Binary files differnew file mode 100644 index 0000000..83ce200 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/ill1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/stumbleupon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/stumbleupon.txt new file mode 100644 index 0000000..433cb22 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Thu/stumbleupon.txt @@ -0,0 +1,11 @@ +<img alt="Stumblelogo" title="Stumblelogo" src="http://blog.wired.com/photos/uncategorized/stumblelogo.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />It's acquisition week in Silicon Valley. Yesterday CBS acquired Last.fm and now eBay has announced it will acquire StumbleUpon, the social bookmarking/search engine service, for $75 million. + +[The deal][1] will give eBay access to almost 2.5 million registered users, though it remains somewhat unclear as to what eBay plans to do with the site. + +StumbleUpon's founders will become eBay employees and eBay's Michael Buhr will head up the management, but so far no changes have been announced. + +If you're not familiar with Stumble upon, have a look at our [review from last year][3] and be sure to check out [Epicenter's coverage on the announcement][2], which offers some speculation on what eBay might be planning to do with StumbleUpon. + +[1]: http://investor.ebay.com/releasedetail.cfm?ReleaseID=246467 "eBay Acquires StumbleUpon" +[2]: http://blog.wired.com/business/2007/05/ebay_acquires_s.html "EBay Acquires StumbleUpon For $75 Million" +[3]: http://blog.wired.com/monkeybites/2006/10/the_social_book_3.html "The Social Bookmarking Showdown: StumbleUpon"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d1.jpg Binary files differnew file mode 100644 index 0000000..199e2b5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d2.gif b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d2.gif Binary files differnew file mode 100644 index 0000000..e8d4213 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d2.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d3.jpg Binary files differnew file mode 100644 index 0000000..f68f15f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d4.jpg Binary files differnew file mode 100644 index 0000000..370a84d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/3d4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/facebookapitos.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/facebookapitos.txt new file mode 100644 index 0000000..7296587 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/facebookapitos.txt @@ -0,0 +1,28 @@ +<img border="0" alt="Facebooklogo" title="Facebooklogo" src="http://blog.wired.com/photos/uncategorized/2007/05/24/facebooklogo.jpg" style="margin: 0px 0px 5px 5px; float: right;" />Last week Facebook unveiled its new development platform to open the site up to outside widget makers. Already widgets from iLike and others have seen widespread adoption, but in the rush to commend Facebook on its bid to overtake MySpace as the premier social network site the actual terms of use for the [Facebook platform][4] have largely been overlooked. + +While I am among those who would love to see Facebook succeed and MySpace come the way of Prodigy and other closed systems, I think it's worth pointing out that the Facebook terms of service are less than optimal from an outside developer's standpoint. + +A recent post on [Sam Sethi's Vecosys blog][1] points out some of the sticky points in the Facebook TOS. + +>* Facebook can limit you or terminate you at any time at their sole discretion (Section A.3) +* Facebook reserve the right to impose fees at time and in any manner (Section 3) +* Facebook can copy and distribute your Application, and analyze the content in order to target advertising (Section 4) +* Facebook may create similar applications to yours, with no obligation to you (Section 4) +* You can't use any name or domain name address containing 'facebook', even at the third level, e.g. "facebook.xxx.com" (Section 6. C) +* Be careful what ID you use for your developer account - IDs can't be transferred or sold on, but nor do there seem to be corporate IDs. (Section 7) +* Facebook can change the Terms and Conditions at any time, your only recourse if you don't like this is to STOP USING THE SERVICE + +>Will Facebook impose a 'tollbooth' or tax on successful widgets? Sure looks like they want to. Will they be building their own competitive versions? Sure looks like they want to. Can they cut you off from the platform at any time? Sure looks like they can. Can they change the ground on which you operate? Sure looks like they can. Do you have a hard and fast relationship with this platform, making it safe to build a 20 million user widget based company on? I don't think so. + +While I agree with Sethi that some of these clauses are somewhat alarming from an outsider developer's point of view, I don't think there's necessarily any cause for alarm. On some level Facebook is entering totally uncharted waters and is, understandably I think, covering their butts a bit. + +As Chris Messina [points out in the comments][2] on Sethi's post, "I don't think anything in those terms suggests that Facebook wants to build tollroads; nor that they will necessarily build competitive products if yours ends up being successful." + +Of course they could do both of those things, should the fancy strike them and that alone may put off some developers. + +Check out the full [terms of service][3] for the new Facebook F8 platform. + +[1]: http://www.vecosys.com/2007/05/28/working-with-facebook-f8-you-are-not-in-control-of-your-access/ "Working with Facebook f8: you are not in control of your access" +[2]: http://www.vecosys.com/2007/05/28/working-with-facebook-f8-you-are-not-in-control-of-your-access/#comment-33034 +[3]: http://developers.facebook.com/terms.php "Facebook: Developer Terms of Service" +[4]: http://blog.wired.com/monkeybites/2007/05/facebook_become.html "Facebook Becomes the Web's Plug-and-Play Application Platform"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/iphonerumor.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/iphonerumor.txt new file mode 100644 index 0000000..cf68f3e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/iphonerumor.txt @@ -0,0 +1,21 @@ +In an interview with the Seattle Times AT&T's president of national distribution, Glenn Lurie hinted that some [additional Google applications may be headed for the iPhone][1]. Since the next few weeks should get the hype to a fever pitch, we thought we'd kick off with this lovely rumor. + +When asked to justify the iPhone's price tag Lurie says: + +>I think when people get their hands on it and really experience it — the touch screen is phenomenal, this touch screen is like nothing you've ever used — to experience that, the skepticism, I think, around some of those things will go away. + +>There are other things — you have the widgets, <b>some of the Google applications that are coming</b> -- there are just so many things here that the price will not be an issue. + +(Emphasis mine) + +Of course Lurie could be referring to the Google Maps features that Jobs unveiled at MacWorld, but it's also possible that there's more in the works -- Google Apps perhaps? Google Reader? Google Notebook? + +Certainly Google Apps optimized for the iPhone would help Apple on the business front, though personally, [Steve Ballmer aside][3], I think the iPhone will do just fine even without the Office suite offerings. + +So what do you think my dear readers, could we see Google Apps for the iPhone? Is that even something users would want? + +[via [Digg][2]] + +[1]: http://seattletimes.nwsource.com/html/businesstechnology/2003724582_brier28.html "Leading the charge on iPhone" +[2]: http://digg.com/tech_news/Goog_Apps_in_the_Works_for_iPhone "Goog Apps in the Works for iPhone?" +[3]: http://blog.wired.com/cultofmac/2007/01/steve_ballmer_s.html "Steve Ballmer Still Largely Incoherent"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/lina.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/lina.jpg Binary files differnew file mode 100644 index 0000000..1dbfa15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/lina.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/lina.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/lina.txt new file mode 100644 index 0000000..052dac2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/lina.txt @@ -0,0 +1,29 @@ +What if you took the promise of Sun's Java programming language, "write once, run anywhere," and actually made it work? A new open source virtual machine by the name of [Lina][1] is hoping to do just that, and, judging by the video demo, Lina is off to a strong start. + +The Lina virtual Linux machine will run more or less normal Linux applications under Windows, Mac, or Linux, using the native look and feel of each system. + +As with Java, Lina users first install the VM specific to their platform. Once Lina is installed applications can be run using binaries compiled not for the particular OS, but for the Lina VM, which maps the OS level functions to the system functions of the OS in question (video after the jump). + +Lina's larger goal is to bring the vast world of open source applications to the masses via the VM. + +However, your mom probably isn't going to be able to use Lina any time soon. Although the installation of the Lina VM is a drag and drop simple process, firing up the actual applications still requires a trip to the command line. + +Look for LINA's public release in June, under the GNU General Public License, (v2) for open source developers who will be able to use Lina for free. + +Commercial developers will pay an as-yet undetermined licensing fee and will be bound by the Lina commercial license. + +According to the Lina site, the whole Lina VM weighs at about 40MB after installation, but the Lina team believes they can bring that down somewhat in the future. + +Will Lina solve the holy grail of application developers? Is it possible to create a VM that allows for the Linux platform to be the true, write once run anywhere solution that developers have long sought? + +It's too early to tell, but personally I'd be happy if Lina could enable me to run Amarok on OS X, and yes, it would be nice to run Photoshop on Linux, but that's probably still a pipe dream. + + + +[via [slashdot][2]] + +[1]: http://www.openlina.com/ "Open Lina" +[2]: http://linux.slashdot.org/article.pl?sid=07/05/27/0528230 " VM Enables 'Write-Once, Run Anywhere' Linux Apps" + + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/hGiIkceewRA"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/hGiIkceewRA" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/linuxfox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/linuxfox.jpg Binary files differnew file mode 100644 index 0000000..f8c3c56 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/linuxfox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/m_maps3D.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/m_maps3D.txt new file mode 100644 index 0000000..8bb9b93 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/m_maps3D.txt @@ -0,0 +1,16 @@ +With this year's Where 2.0 kicking off this morning, expect the mapping and geodata announcements to hit high gear in a few hours. Microsoft has already [announced a new feature][1] for [Microsoft Live Search Maps][2] which features three-dimensional, photo-realistic maps for New York City, San Francisco and other locations in the United States, United Kingdom and Canada. + +The new views show building and landscape details in 3-D and while the service is a bit slow in rendering, the results, once loaded, are indeed eye-popping (see screenshots after the jump). + +The new views show aerial views of landmarks and notably locations such as Times Square, Central Park, Wall Street, Rockefeller Plaza and other famous spots. + +To use the new 3-D features You'll need to be running Windows and Internet Explorer. There is a Firefox plug-in as well, but I encountered an error when trying to install it and could never get it to work. + +Microsoft has made some odd choices for the initial launch location including, understandably New York and San Francisco, but also smaller cities like Austin, Texas, Savannah, Georgia, and Northampton, England. + +In addition to the announced cities, a bit of exploring revealed some additional data in places like Boston (though no 3-D model of Fenway Park as I was hoping for). + +While I still prefer Google Earth and find it to be faster and has smoother navigation, the new Microsoft Live Search Maps 3-D data beats the pants off anything Google currently offers. + +[1]: http://www.microsoft.com/presspass/press/2007/may07/05-28NYC3DMA.mspx "New York, New York, in 3-D — Seeing Is Believing" +[2]: http://maps.live.com "Microsoft Live Search Maps"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/maps.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/maps.txt new file mode 100644 index 0000000..6e263c0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/maps.txt @@ -0,0 +1,12 @@ +Google has released a new Maps feature that allows you plan routes that avoid freeways and major interstate highways in favor of quainter, though possibly longer, routes. Beside the driving directions on Google Maps is a new checkbox that reroutes your directions sans interstate. + +Though the [Google LatLong blog][2] spins the features as a kind of Robert Frostian alternative navigation system, this could be genuinely useful for folks living in major metropolitan areas where clogged freeways can turn a ten minute trip across town into a rage-inducing two-hour stress-fest. + +The new "avoid highways" feature also works with the [recently introduced MyMaps][3] customization tool, so you can plan and retrace your more interesting routes. + +Hopefully at some point this functionality will be part of the Maps API, but for the moment Google Earth has the only routing API available to developers. + +[via the [Google LatLong Blog][2]] + +[2]: http://google-latlong.blogspot.com/2007/05/road-not-taken.html "The road not taken..." +[3]: http://blog.wired.com/monkeybites/2007/04/googles_new_my_.html "MyMaps"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/maps1.gif b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/maps1.gif Binary files differnew file mode 100644 index 0000000..73e48d4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/maps1.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/maps2.gif b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/maps2.gif Binary files differnew file mode 100644 index 0000000..b28c5d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/maps2.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/mapsi.gif b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/mapsi.gif Binary files differnew file mode 100644 index 0000000..a456764 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/mapsi.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/samba.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/samba.txt new file mode 100644 index 0000000..a3b44e0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/samba.txt @@ -0,0 +1,18 @@ +<img alt="Osxsm" title="Osxsm" src="http://blog.wired.com/photos/uncategorized/2007/05/25/osxsm.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Symantec has revealed that Apple's failure to update the open source Samba file- and print-sharing software that ships with OS X means that even fully up-to-date installations are still vulnerable to a buffer [overflow exploit in Samba][4]. + +While OS X ships with Samba disabled, many users looking to easily share files between OSes and across home networks may be using Samba. + +At the moment there's no patch available from Apple, though you can install the latest version of Samba yourself if you head over to the [Samba site][3] Samba 3.0.25 patches the buffer overflow bug which is the source of the exploit. + +While the Samba exploit has nothing to do with OS X itself, the fact that Apple relies on a number of open source add-on highlights one of the flaws in its periodic updates policy. Open source projects like Samba tend to discover and patch flaws as they come up. + +Linux users for instance can periodically run apt-get (or similar) to seamlessly upgrade all aspects of the system, while Apple users need to rely on Apple to issue patches or hunt down the latest versions of open source programs themselves, which is terribly inefficient. + +Given that well over half of the flaws patched in [Apple's recent security update][5] were for open source software packages, perhaps among Steve Jobs' rumored Leopard announcements at the upcoming WWDC we'll see a more modern update system unveiled. + +[via [ComputerWorld][2]] + +[2]: http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9021543 "Mac OS open to attack through unpatched Samba" +[3]: http://us3.samba.org/samba/ "Download Samba" +[4]: http://us3.samba.org/samba/security/CVE-2007-2446.html "Multiple Heap Overflows Allow Remote Code Execution" +[5]: http://blog.wired.com/monkeybites/2007/05/apple_patches_o.html "Apple Patches OS X Security Flaws"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/ubuntu1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/ubuntu1.jpg Binary files differnew file mode 100644 index 0000000..0450a03 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/ubuntu1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/ubuntufox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/ubuntufox.txt new file mode 100644 index 0000000..5d359d9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Tue/ubuntufox.txt @@ -0,0 +1,19 @@ +Mac users are traditionally a picky bunch when it comes to user interface design, but it would seem that Ubuntu users like a refined UI as well. Firefox's form widgets, long the band of many a Mac user don't look so hot on Linux either. Fortunately, [as with the Mac version][3], it's not hard to add some customized graphics. + +An Ubuntu fan by the name of Osmo Salomaa has created some much better looking form Widgets for Firefox users and another Ubuntu user has even [written a nice bash script to automate the installation process][1]. + +If you're not a big fan of the boxy, 1998-style interface that is Firefox's default look for HTML elements, head over to the Ubuntu forums and grab Fat Sheep's script to install some alternatives. + +If you have any problems be sure to post your feedback in the forum thread. + +Naturally this script should work in any Linux installation using bash, not just Ubuntu, though you may need to adjust the default directory locations. + +[via [Hackszine][2]] + +Screenshots from the Ubuntu Forums: + + + +[1]: http://ubuntuforums.org/showthread.php?t=369596 "Firefox Widgets" +[2]: http://www.hackszine.com/blog/archive/2007/05/beautify_firefox_widgets_in_ub.html "Beautify Firefox widgets in Ubuntu" +[3]: http://blog.wired.com/monkeybites/2006/07/apple_up_your_f.html "Apple Up Your Firefox"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/cbslastfm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/cbslastfm.txt new file mode 100644 index 0000000..c3adbdf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/cbslastfm.txt @@ -0,0 +1,16 @@ +CBS announced late yesterday that they have snapped up the popular music site Last.fm for a reported $280 million. But fear not Last.fm fans, the site will retain the present management team and its own separate identity. + +CBS's interest in the site stems from the community of users that Last.fm has built up over the years, and according the Last.fm [blog post on the deal][1], CBS will not mess with the site. + +"CBS understands the Last.fm vision, the importance we place on putting the listener in charge, the vibrant and vocal community, the obsession with music stats, and our determination to offer every song ever recorded," writes Last.fm's Richard Jones. + +And to alleviate user fears about a major media company suddenly having access to Last.fm user data, Jones adds, "don't panic." He goes on to assure users that "the openness of our platform and our approach to privacy won’t change." + +As for potential changes for users, Jones doesn't reveal any specific changes, but does point out that with CBS behind them, Last.fm will have more clout in negotiating deals with record companies. + +Last.fm has existing partnerships with record labels like EMI and Warner, but so far Last.fm hasn't made any aggressive moves toward selling music through the site. Although no announcements have been made it seems reasonable to assume that that may change with CBS at the helm. + +As for CBS's interest in Last.fm, CBS Chief Executive Leslie Moonves says in a [press release][2] about the deal, "their demographics also play perfectly to CBS' goal to attract younger viewers and listeners." + +[1]: http://blog.last.fm/2007/05/30/lastfm-acquired-by-cbs "Last.fm Acquired By CBS" +[2]: http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=104&STORY=/www/story/05-30-2007/0004597909&EDATE= "CBS Corporation Acquires Last.fm"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/democracy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/democracy.txt new file mode 100644 index 0000000..982523b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/democracy.txt @@ -0,0 +1,12 @@ +Mozilla will give a $100,000 grant to the Participatory Culture Foundation, the developers behind the Democracy Player media aggregator. [Democracy Player][3], which will soon be renamed [Miro][1] to avoid confusion about its purpose, is a mashup of RSS, media player and torrent client functionality. + +Mozilla says that the grant came about in part because the Participatory Culture Foundation shares a number of ideological goals with Mozilla, but also because Democracy/Miro uses some Mozilla technology. + +The Participatory Culture Foundation's mission statement reads, "we think free, open-source, open standards internet TV is our best shot at a solution" to the contentious world of internet video, which matches quite closely with Mozilla's own goal of providing "choice and innovation on the internet," as Seth Bindernagel of Mozilla [writes on his blog][2]. + +Hopefully the investment will help Democracy Player raise its visibility somewhat since thus far it has largely been flying under the radar. See our [review of the latest version of Democracy Player][4] for more info. + +[1]: http://www.getmiro.com/ "Miro" +[2]: http://blog.mozilla.com/seth/2007/05/29/mozilla-grant-to-pcf/ "Mozilla grant to PCF" +[3]: http://www.getdemocracy.com/ "Democracy Player" +[4]: http://blog.wired.com/monkeybites/2007/05/new_watched_fol.html "New 'Watched Folders' Turn Democracy Player Into Media Hub"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/firefox1.5.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/firefox1.5.txt new file mode 100644 index 0000000..53e75d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/firefox1.5.txt @@ -0,0 +1,14 @@ +It's the end of the line for Firefox 1.5. Later today Mozilla will release the final security update and bug fix for the now deprecated browser. Although it isn't currently available, the final version, 1.5.0.12, should be on [this page][2] later today. + +The last version of 1.5 will also reportedly include a mechanism that prompts users to upgrade to 2.0. Better late than never I guess. + +Firefox 2.0 will also be updated this afternoon with over a hundred bug fixes (including 2 memory leaks). Version 2.0.0.4 will be [available from Mozilla][1] sometime later today. + +So long Firefox 1.5, it was nice knowing you. + +Also of note, [the fifth alpha for Firefox 3][3] should be available for testing this Friday and will likely include the new [Places][4] bookmark management tools. + +[1]: http://www.mozilla.com/en-US/firefox/2.0.0.4rc/releasenotes/ "Firefox 2.0.0.5" +[2]: http://www.mozilla.com/en-US/firefox/releases/1.5.0.12.html "Firefox 1.5 Final" +[3]: http://wiki.mozilla.org/Firefox3/Schedule "Firefox 3 release schedule" +[4]: http://blog.wired.com/monkeybites/2007/05/developers_say_.html "Developers Say New Places Feature Makes Firefox 3 Faster"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/gmaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/gmaps.jpg Binary files differnew file mode 100644 index 0000000..6c0dd64 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/gmaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/gmaps.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/gmaps.txt new file mode 100644 index 0000000..f381b61 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/gmaps.txt @@ -0,0 +1,32 @@ +Google Maps has unveiled yet another feature, Google Mapplets, which are a mashup of mashups. Mapplets are a bit like Google gadgets applied to Maps. For now the feature is limited to a [developer preview][3], where you'll notice a new tab next to the MyMaps tab. + +The Google Maps [API documentation][2] describes the new Mapplets feature: + +>Mapplets are mini-webpages that are served inside an IFrame within the Google Maps site. You can put anything inside this mini-webpage that you can put into a normal webpage, including HTML, Javascript, and Flash. Google provides a Javascript API that gives the Mapplet access to services such as manipulating the map, fetching remote content, and storing user preferences. + +Essentially Mapplets are a mashup of existing mashups. Rather than tracking down various Google Mashups like [Chicago Crime][4], you can now pull that data directly into Google Maps and access it along with all the normal Google Maps features. + +To get started you can choose from any of the thirty mashups currently in the [Mapplets directory][1]. + +You could, for example, do a real estate search powered by Google Base and then combine it with crime statistics and earthquake information and more to discover where you really want or don't want to live, depending on your temperament. + +Because you can activate numerous Mapplets at the same time, you can see information like movie show-times, nearby restaurants and even measure the distance between the two all in a single view. + +Behind the scenes, the new features rely on KML and Atom languages and Google has proposed some format changes for both that would allow attribution and URLs for the content providers. + +Since the main reason many people don't use these various mashups is that they're spread all over the web the new centralized page should be helpful for developers looking to gain a wider audience. + +Combine that with the attribution and back-link proposals and some of the companies whose whole business model revolves around Maps don't seem so crazy after all. + +Google has also released video of Thai Tran, Product Manager at Google Maps, demonstrating the new features: + + +[3]: http://maps.google.com/preview "Maps Preview" + +[1]: http://maps.google.com/ig/directory?synd=mpl&pid=mpl&features=sharedmap "Google Mapplets" +[2]: http://www.google.com/apis/maps/documentation/mapplets/index.html#What_are_Mapplets "What Are Mapplets" +[4]: http://www.chicagocrime.org/map/ "Chicago Crime Map" + + + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/dFtfxv1JdXI"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/dFtfxv1JdXI" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/gmaps1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/gmaps1.jpg Binary files differnew file mode 100644 index 0000000..3f546ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/gmaps1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/itunes.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/itunes.txt new file mode 100644 index 0000000..5ad5a20 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/itunes.txt @@ -0,0 +1,20 @@ +At midnight last night Apple took the wraps off its new DRM-free iTunes Store component. The newly released iTunes 7.2 update allows the preview and purchase of what Apple is calling "iTunes Plus" music -- DRM-free tracks from EMI and other labels. + +ITunes 7.2 is available through the Software Update pane in OS X's System Preferences or can be downloaded [directly from the site][1]. The update is for both Mac and Windows PCs (screenshots after the jump). + +To see iTunes Plus songs you'll need to head into your account setting and enable the option to show available DRM-free songs. + +A few quick searches for the new $1.29 songs reveal that the listings are far from complete. In fact, the Beastie Boys listing pictured below, shows that just 30 of the available 144 song catalogue are available as DRM-free downloads. + +Presumably Apple will be rolling out more iTunes Plus tracks in the coming weeks. + +If you head into iTunes' entry in the Help Viewer you'll see an updated section for the new options, including instructions on how to upgrade previous purchases to the new iTunes Plus format. + +>The first time you buy an iTunes Plus song, you specify whether to make all future purchases iTunes Plus versions (when available). You can change this setting by accessing your account information on the iTunes Store. + +>If you already have iTunes Store purchases that are now available as iTunes Plus downloads, you may upgrade your existing purchases. To do so, visit the iTunes Store and follow the onscreen instructions. + +Be sure to also have a look at our [Cult of Mac blog][2] for additional coverage. + +[2]: http://blog.wired.com/cultofmac/ "Cult of Mac" +[1]: http://www.apple.com/itunes/download/ "Download iTunes 7.2"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/itunes1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/itunes1.jpg Binary files differnew file mode 100644 index 0000000..95b59eb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/itunes1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/itunes2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/itunes2.jpg Binary files differnew file mode 100644 index 0000000..f5d8765 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/itunes2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/lastfm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/lastfm.jpg Binary files differnew file mode 100644 index 0000000..4ac6b27 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/lastfm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/mapq.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/mapq.jpg Binary files differnew file mode 100644 index 0000000..7a3dbf0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/mapq.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/mapquest.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/mapquest.txt new file mode 100644 index 0000000..44e897d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/mapquest.txt @@ -0,0 +1,18 @@ +Mapquest has rolled out a new application programming interface (API) for ActionScript 3.0 developers. The new API is MapQuest's first native API for Flash (and Apollo) and should allow for complex web apps to take advantage of ActionScript 3's speed improvements. + +For the initial beta phase [the new API][4] will be available only as a commercial offering, though MapQuest will reportedly offer a limited free version later this year. + +Interesting to note that Google's recently announced street level view appears to using Flash as well and Yahoo Maps offers a Flash API, though it uses the older ActionScript 2.0 language. + +The new API uses native ActionScript 3 which offers a faster runtime environment compared to previous versions and the availability of the API inside the Flex builder application should make it easier for developers easier to build apps and mashups using MapQuest's services. + +There's a nice sample application that [overlays golf course data][3] and another that shows [address book contacts][2]. While both are fairly fast, many may find the pointless animation reminds them of Flash's darker days. So far there don't seem to be any demos utilizing Adobe's new Apollo platform. + +While MapQuest is still the leader in map search traffic, Google, Yahoo and Microsoft are all nipping at its heals and given that all three offer their APIs for free I don't imagine it will too long before one of them overtakes MapQuest. + +[via [O'Reilly Radar][1]] + +[1]: http://radar.oreilly.com/archives/2007/05/where_20_mapque.html "Where 2.0: Mapquest API Announcement" +[2]: http://www.mqdemo.com/flash/DemoApp1/DemoApp1.html "Mapquest Addressbook demo" +[3]: http://www.oobgolf.com/courses/finder/ "Oobgolf course finder" +[4]: http://company.mapquest.com/mqbs/4a.html "MapQuest's new API for Adobe ActionScript"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/qt.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/qt.txt new file mode 100644 index 0000000..f85fa76 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/05.29.07/Wed/qt.txt @@ -0,0 +1,11 @@ +If you use Apple's Software Update to download the new iTunes update you'll notice there's also an update available for Quicktime which marks the second Quicktime has been updated this month. Earlier in the month Apple released an update to [address the flaws found during last month's Hack A Mac contest][1]. + +Today's release [addresses two flaws in Quicktime][2] both related to how Quicktime interacts with Java. One of the flaws will allow for remote code execution and the other will expose sensitive user data. + +Both flaws require a user to visit a site containing a maliciously crafted Java applet. + +The updates are recommended for all users on both Windows and Mac. And while you're at it make sure that you've got the previous update installed since the security firm Secunia said earlier this month that only about a third of users have downloaded that patch. + + +[1]: http://blog.wired.com/monkeybites/2007/05/apple_patches_q.html "Apple Patches Quicktime, Security Firm Still Not Happy" +[2]: http://docs.info.apple.com/article.html?artnum=305531 "Security Update (QuickTime 7.1.6)"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Adobe AIR.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Adobe AIR.txt new file mode 100644 index 0000000..d6f632f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Adobe AIR.txt @@ -0,0 +1,128 @@ +If dropped wireless connections, wifi blackholes and other connection woes are stiffling your love of web-based apps, brace yourself. + +The offline functionality of your favorite web apps just got a boost from Adobe's new AIR platform. + +The new Adobe Integrated Runtime or AIR, the successor to what was previous code-named Apollo, now features support for HTML/Javascript applications in addition to the company's proprietary Flash technology. + +Adobe AIR, (née Apollo), will pit the company against Microsoft's Silverlight platform, Java's JavaFX development tools, Google's recent Google Gears and even perhaps even Firefox in the race to bridge the divide between browser and desktop applications. + +While the field seemed to be shaping up along the classic battle lines of programming frameworks -- Flash developers favoring AIR, .NET coders embracing Silverlight and open source fans following Firefox's lead -- Adobe is hoping to widen Apollo's impact by opening the doors to users who may not actually own any Adobe products. + +"We're really excited by the level of interest that we've seen amongst the developer community," says Pam Hkalsdfj Director of Product Management for Adobe's Platform Unit. "I expect to see our Alpha applications updated shorty as well as, now that AIR has enhanced Ajax support, to see that huge community begin to experiment with AIR as well." + +Jesse James Garrett, president of Adaptive Path, who coined the phrase AJAX, believes that AIR may end up freeing AJAX from the contraints of the browser. Historically the problem for HTML developers has been the fact that there's no way to port their code to the desktop environment. + +"I think that AJAX developers have kind of been running up against the constrainst of the browser for a while now -- there's a lot of code from your browser application that you'd have to throw out for the offline portion of your app." Says Garrett. + +More code means more work for developers, but AIR is changing that by offering a platform which allows programmers to reuse their AJAX code. "The advantage of AIR is the reusability of that code outside the browser." + + + +Hedlund says that Flash and AJAX both have strengths and weaknesses. "Why wasn't Google Maps done in Flash? Because Javascript was free and they could get it to do what they wanted." Conversely Hedland Conversely, why was YouTube developed in Flash? Because there's no way to get Javascript to do video, and Flash is the most widely-adopted technology that also fulfills the need." + +But for many the debate comes down to open source. Hedland's company +" + + + +The appeal of AJAX historically has been the wide level of browser compatibility + + + +If you want an application that works both in the browser and somewhere else, generally you'd have to rewrite a lot of your interface code because historically the browser is the only place AJAX code worked, but that's starting to change now with things like AIR. + + + + +work elsewhere + + +says that the AJAX/HTMl has been "part of the overall scheme and intention from the beginning," but concedes that it took longer to add the functionality because of cross platform issues. + +"it wasn't that it was never considered [HTML] to be a first class citizen" + +"but we had additional work to on the HTML and Javascript side." + +"What we expect to see developer's targeting... + + +Especially data-intensive or multimedia applications stand to benefit in situations where local wireless connections fail, for example, Turner said. These capabilities allow programmers to create simple-to-use "drag-and-drop" software that runs both online and offline. + + +Silverlight is fundamentally an environment for browser-based applications + + + + + + +Obviously, I think the individual technologies will start from their respective ecosystems. Apollo will appeal to Flash/etc developers, JavaFX to Swing/etc devs, Silverlight to .NET folks, and so on. And to be clear, those respective ecosystems are nothing to sneeze at; they’re very sizable in their own right. Each technology, in effect, has a built in opportunity in front of it to leverage. + +The question will be, in my mind, to what extent each can grow beyond its own developer base. Can they, in other words, begin to poach some of the developers that today are developing pure web applications. Can they persuade these independent developers that a.) there’s a volume audience waiting for the type of internet application that cannot be delivered using today’s pure web technologies, and b.) that their respective infrastructures are the right path now and going forward. + + +and will include a beta version of this runtime along with Ajax and HTML support. Previously, you could only build an Apollo application using Flash, but Adobe is now making it more appealing to a wider range of HTML developers - who may not use Adobe Flash. So included in this announcement is an extension that allows Apollo apps to be created directly from Dreamweaver, and PDF support to leverage the PDF platform in Apollo applications. The release also includes a SQLite database, just like Google Gears, so developers can go between the two easily. + + + + + +has revealed the true name of its Apollo project, which up until now has been the code name for Adobe Integrated Runtime (AIR). See here for initial review of Apollo launch. + +The cross-operating runtime developed by Adobe enables developers to create rich interface applications for users’ desktops, but even this key aspect of AIR has been improved upon for this latest update: AIR can now be utilized by HTML developers, meaning that Flash is no longer a necessity for using the platform. This broadens the scope for what AIR can be used for, and the range of developers that can use it, as AIR applications can be created directly from Dreamweaver and PDF. This new development benefits end users and developers alike, and further integrates AIR with Adobe’s other products. + +AIR is expected to be released sometime towards the end of the year, and a free AIR software development kit is expected to be released Monday, giving developers a head start on creating new apps. Adobe is also expected to release the beta for its Flex 3 software development tool for creating AIR applications. In related news, Adobe is working to some extent with Google on Gears, and Adobe’s recent acquisition of Scene7 will be integrated with Apollo as well. + + + + + Adobe Systems Inc. is releasing new design tools that further blur the divide between software that runs offline on computer desktops and programs that work on the Web, the company said on Sunday. + +Adobe, a leading independent maker of software programming tools, is allowing the newest generation of Internet software, nicknamed "Web 2.0," to run both online, in Web browsers, and offline, on desktop computers, without rewriting the code. + +On Monday, the company is introducing a public test version of its software, code-named Apollo, that helps programmers to write advanced programs called Rich Internet Applications (RIA) for desktop computers, even when not connected to the Web. +Reuters Pictures +Photo + +Editors Choice: Best pictures +from the last 24 hours. +View Slideshow + +"Apollo is for when developers want to take online applications and make them work offline on a computer," Michele Turner, Adobe's vice president of platforms, said in a phone interview. "We don't think the browser is going to go away." + +Consumers stand to benefit from a more flexible generation of Web software that works both online and offline and comes from a wide range of independent software makers. + +Especially data-intensive or multimedia applications stand to benefit in situations where local wireless connections fail, for example, Turner said. These capabilities allow programmers to create simple-to-use "drag-and-drop" software that runs both online and offline. + +Among the early customers is online auction giant eBay Inc., which plans to announce this week at a conference in Boston that it is using the Apollo programming language to create notification services for its sellers to manage auctions outside of an Internet browser. Sellers also can upload photos or pricing data without constantly being connected to the Web. + +Adobe is working with financial-services companies seeking to make it easier for clients to fill out mortgage loan forms when only periodic Web access is available, and with Finetune, an online music store that works offline, too, Turner sai + + +Adobe Systems Inc. released beta versions today of its Apollo application runtime to allow developers to build rich Internet applications that run on the desktop and its Flex 3 technology aimed at building RIAs for the Web. + +The beta version of the Adobe Integrated Runtime (AIR), formerly called Apollo, is a cross-operating system runtime to allow developers to use HTML, Asynchronous JavaScript and XML (AJAX), Adobe Flash or Adobe Flex to build RIAs for the desktop. Adobe is part of a growing group of vendors, including Google Inc., that has announced plans to take RIAs back to the desktop. They were originally aimed at infusing the rich, interactive features of a desktop application to the Web. + +"This is the first major public release of the AIR runtime," said Mike Downey, Adobe's group manager for evangelism of platform technologies. "This one is very close to having all the features enabled in it. We've focused on a variety of feature areas and very heavily on improvements to the HTML engine." + +In addition, this release will be major for AJAX developers, he said, noting that the alpha code released in March "was fairly incomplete if you were doing a purely AJAX implementation." Developers building AIR applications now can use any AJAX framework, he added. + +Additional new features in the Adobe Air beta include an embedded SQLite open-source local database, support for PDF and deeper integration with Flex, Adobe said. Users will be able to view and interact with PDF documents within Adobe Air applications similar to how they interact with a PDF in the browser, the company added. + +Meanwhile, eBay Inc. is scheduled to unveil today an Adobe AIR application project called San Dimas, which can deliver notifications and updates in real time to eBay users' desktops without them having to open a browser. + +A final version of AIR is slated to ship before the end of the year. + +Adobe also announced the beta release of its Adobe Flex 3 software, its free open-source tool for building RIAs. The beta versions of the Flex Builder 3 and the Flex 3 SDK will be available for download today. + + + +Adobe has just unveiled the official name of its much talked about Adobe Apollo product: Adobe Integrated Runtime, or Adobe AIR for short. Adobe is also announcing a beta version of the runtime, which will include Ajax and HTML support. This means developers can create an Apollo application entirely based on HTML, without using Flash at all. + +For those who may not know, Adobe Apollo was the code name for the cross-operating runtime developed by Adobe that allows developers to create Rich Internet Applications for the desktop. There's a myriad of possible use cases for this technology, from productivity applications that work both online and offline, to music players such as Finetune that can be accessed via the desktop. + +Adobe AIR is expected to be released at the end of the year, and will include a beta version of this runtime along with Ajax and HTML support. Previously, you could only build an Apollo application using Flash, but Adobe is now making it more appealing to a wider range of HTML developers - who may not use Adobe Flash. So included in this announcement is an extension that allows Apollo apps to be created directly from Dreamweaver, and PDF support to leverage the PDF platform in Apollo applications. The release also includes a SQLite database, just like Google Gears, so developers can go between the two easily. + +Adobe is attempting to streamline the process of building Apollo applications, in the hope it increases adoption rates. The challenge in introducing a web development platform is making it simple enough for developers to test drive, yet valuable enough for the end user. Adobe competitor Dekoh (see our profile here), is using an open-source model and community to increase adoption. In many ways, the Adobe strategy is similar to that of Facebook, which recently opened up the Facebook platform. Most web teams can easily develop a Facebook app in a weekend, as it is simple for the development team to create apps for that platform. In turn, the Facebook team hopes that it's valuable enough to the end user, which then encourages more application building and innovation from developers at other websites. + +Although not exactly identical situations, Adobe is making it easier for all the developers out there to play around with the platform - and opening it up to HTML developers seems like a smart move. Backed by a $100 million venture fund and tons of corporate investment, Adobe needs to also do a better job of showcasing successful implementations of Apollo; and convince end users why they need to have online and offline support. That is probably the major goal behind the Adobe Bus Tour, also announced today, in which Adobe is traveling to 18 cities to perform demos and spread the word on the platform.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/austin sarner interview.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/austin sarner interview.txt new file mode 100644 index 0000000..6eafda2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/austin sarner interview.txt @@ -0,0 +1,41 @@ +Continuing the conversation with Mac developers about the [Core Animation features][1] in the upcoming Mac OS X 10.5 (Leopard), here's Austin Sarner of [MadeBySofa][2]. + +MadeBySofa is perhaps best know for its application [Disco][3], which is a disc burning utility with some spectacular eye candy -- it smokes while it burns discs and if you blow into your computer's microphone, the smoke blows across your desktop. + +Also be sure to check out the other interviews with [Wil Shipley of Delicious Monster][4] and [Cabel Sasser of Panic Software][5]. + +--------------------- + +**Wired News:** First off, do you think developers are going to embrace Core animation (given that doing so would possibly break the backwards compatibility)? I know the TextMate developers have said they plan to drop support for 10.4 in the next version to take advantage of CA (well the text rendering portion anyway, any plans for your software? + +**Austin Sarner:** Overall I do think that developers will be embracing Core Animation over time. Like you said, deciding to do so will make your application Leopard only, so I see it being something that will happen after the bulk of the shareware audience migrates. As for me, there isn't any specific feature in any of my apps that could rely on Core Animation for a drastic upgrade. However, once a bulk of my user base has migrated I will consider enhancing existing animations and other graphics with it. + +**WN:** Is core animation more than just eyecandy? In other words does it provide a way to improve the user experience, whether through better UIs or speed boosts etc? + +**AS:** Core Animation is definitely more than eye candy. Animation in general creates continuity and more direct feedback to a user experience. For instance, when you select an item in the AppleTV, your selection glides into place as opposed to immediately snapping to the next item. Midway through the split second animation, you can neatly cancel out and go in the other direction. In addition to obvious graphical speed boosts, the elegance it can add to a UI is pretty substantial in my opinion. + +**WN:** From the demo video available on the Apple site it would seem that the new tools enable an almost windowless environment, is that true? + +**AS:** While I can't really comment on the actual inner workings of the framework, it seems that with Front Row and Time Machine Apple has opened up to the idea of completely modal experiences when used correctly. + +**WN:** Do you think Apple plans to move away from windows as a metaphor for the workspace? + +**AS:** Definitely not. I think that in some cases a windowless environment makes sense -- when changing the content of all windows on screen (Time Machine) or browsing through a media library from a distance (Front Row), for instance. + +**WN:** And as an extension of the last question, with Apple moving into more devices which run largely windowless UIs (i.e. Apple TV, iPhone) is the windowed application a thing of the past? + +**AS:** I think that windows still have a place in the desktop environment, while more focused devices like those require modal user experiences. + +**WN:** Jobs talked briefly last night at D about the various iPhone UI limitations: no mouse, no pull-down menus and so forth. While those are constraints in the case of the iPhone do you think Apple might be looking to turn them into strengths on the desktop platform? + +**AS:** Again, I do think that the reason a minimal UI like that works on a device like the iPhone is because of the device itself. It's relatively small and when you open it up you generally will want to either make a call, check your email, or do another very specific task. The desktop environment, on the other hand, is entirely about multi tasking. + +**WN:** Is there a new UI paradigm on the horizon and if so what do you think it would look like? + +**AS:** I wouldn't be surprised to see an evolution in consumer software that stresses a more real world style for applications. Garageband, for instance, is a great example of an app that takes the standard interface to the next level by creating a more innovative experience through the UI. + +[1]: http://www.wired.com/software/coolapps/news/2007/06/core_anim?currentPage=all "Kiss Boring Interfaces Goodbye With Apple's New Animated OS" +[2]: http://www.madebysofa.com/ "MadeBySofa" +[3]: http://www.discoapp.com/ "Disco" +[4]: http://blog.wired.com/monkeybites/2007/06/mac_app_designe.html "Mac App Designers On Leopard: Wil Shipley of Delicious Monster" +[5]: http://blog.wired.com/monkeybites/2007/06/mac_app_designe_1.html "Mac App Designers On Leopard: Cabel Sasser Of Panic Software"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/bootcamp.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/bootcamp.txt new file mode 100644 index 0000000..b69dfcb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/bootcamp.txt @@ -0,0 +1,10 @@ +When it rains... Following two updates for Mac virtualization software, Apple has released an update for Boot Camp, the company's software for running a Windows installation on your Mac. Boot Camp is [still a beta][1] and the usual warnings apply. + +Boot Camp beta 1.3 adds support for the newly released Macbook Pros and features upgraded graphics drivers, an improved installer and some localization fixes. + +I had no problem installing the update, though I should also note that I haven't actually noticed any difference either. + +Upgrading Boot Camp is a little tricky, make sure you read the instructions thoroughly, and check out our [post on the last beta update][2] which has some installation tips as well as some gotchas to watch out for. + +[1]: http://www.apple.com/macosx/bootcamp/ "Boot Camp public beta" +[2]: http://blog.wired.com/monkeybites/2007/03/first_look_boot.html "First Look: Boot Camp Vista Support"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/firefox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/firefox.txt new file mode 100644 index 0000000..64cc9b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/firefox.txt @@ -0,0 +1,15 @@ +Perhaps the most frustrating aspect of Google Maps is cutting a pasting addresses into the search field. The Google Maps search field is a single line input, while most addresses are printed on two lines which means two cut-and-paste operations. + +Unless of course you use Firefox. [Lifehacker][2] has a link to a post in the [Google Maps help group][3] which points out that Firefox can take double (or more) line input with a simple tweak to the about:config file. + +To make this tweak work, visit [about:config][1] and follow these direction: + +>Type "about:config" in the location bar. In the "Filter" field type "singleline." You can set the value to 2 for editor.singleLine.pasteNewlines, which will allow pasting of multiple lines to input boxes. + +Naturally the tweak affects all input boxes, not just those in Google Maps. Also note that this should work in any Firefox based browser like, for instance, [Camino][4] or [Netscape Navigator][5]. + +[1]: about:config "Firefox about:config" +[2]: http://www.lifehacker.com/software/firefox-tip/paste-multiple-lines-to-input-boxes-266870.php "Paste multiple lines to input boxes" +[3]: http://groups.google.com/group/Google-Maps-How-Do-I/msg/5d8e1bc4507dfe5f "Another multiline request" +[4]: http://blog.wired.com/monkeybites/2007/06/camino_15_new_f.html "Camino 1.5: New Features And More Speed" +[5]: http://blog.wired.com/monkeybites/2007/06/netscape_naviga.html "Netscape Navigator 9: The Old Favorite Goes Social"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/shipley interview.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/shipley interview.txt new file mode 100644 index 0000000..b004589 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/shipley interview.txt @@ -0,0 +1,59 @@ +As part of today's articles on [Mac OS X 10.5 (Leopard)][1] and the upcoming WWDC, I spoke to a number of Mac developers to see what the developer community thinks of Leopard, specifically the [Core Animation features][2] which give programmers a new tool to easily create 3-D animation and interface enhancements. + +Wil Shipley of [Delicious Monster][3], Cabel Sasser of [Panic Software][4] and Austin Sarner of [MadeBySofa][5] gave far longer responses than could fit in the limited space of the article so I thought I'd post the entire interview transcripts here. + +The interview with Shipley is after the jump, Cabel Sasser's responses can be found here and Austin Sarner here. + +--------------------- + +Wil Shipley is the brains behind Delicious Library, a Mac media cataloging program, for more info check out the [Delicious Monster][3] site. + +**Wired News:** First off, do you think developers are going to embrace Core animation (given that doing so would possibly break the backwards compatibility)? I know the TextMate developers have said they plan to drop support for 10.4 in the next version to take advantage of CA, any plans for Delicious Monster? + +**Wil Shipley:** Yes, Delicious Library 2 is based entirely around Core Animation and other key Leopard technologies, so our customers are going to have to upgrade their OS if they want to upgrade our program. We had originally planned to make DL2 10.4-based, and worked for a year and a half on that version, but in August of '06 we learned more about Leopard and where it is going, and we simply couldn't say no any longer. We realized any app we released based on Tiger was going to look really pathetic when Leopard came out. + +**WN**Is core animation more than just eye candy? In other words does it provide a way to improve the user experience, whether through better UIs or speed boosts etc? + +**WS:** Absolutely... every time you give developers a chance to do better graphics with less code, you're going to see another revolution in user experience. The revolution coming with Core Animation is akin to the one that came from the original Mac in 1984 -- the Mac said "here's a relatively easy way to add graphics to your user interface" and Core Animation says, "Here's a very easy way to add composited layers and motion to your interface." + +**WN:** The Core animation changes are quite significant and open up some interface possibilities that would have previously been a lot of work... Time Machine for instance has a pretty amazing interface which, from what I understand, is made possible by the new Core animation tools. + +**WS:**I can't speculate on how Time Machine was written, but it's true that we're going to see a whole new world of user interface metaphors with Core Animation. For me, the original Cocoa was about making it really easy to me to construct an interface with sliders and textfields and buttons -- standard widgets. So we saw a whole generation of applications (for NeXTstep, and then later for Mac OS X) that had pretty decent interfaces, because they all used the same widgets and the widgets were pretty and functional. + +What we'll see with Core Animation is a move away from widgets and into direct manipulation. In Delicious Library 2, we're conveying much more information directly on our bookshelf view, instead of using textfields and the like, and similarly we're allowing the user to interact more directly with the books on the shelf, instead of just looking at them and then pressing buttons on another part of a screen to change them. + +Sure, we'll see some pure "eyecandy" applications that kind of abuse Core Animation, but we'll also see more of what are coming to be called the "Delicious Generation" of applications (not a term I coined!), where the entire application is designed from the start to be beautiful and fun while solving whatever problem it solves. + +**WN:** From the demo video available on the Apple site it would seem that the new tools enable an almost windowless environment, is that true? + +**WS:** One thing to remember about Core Animation, or any 'enabling' technology, is that any developer could do all the same effects herself, given enough time and motivation. It's not that Core Animation taps into some magic graphics processor that we didn't know about before, it just makes it extremely easy to use the existing graphics processor in the most efficient way. Which means we get to spend more time making cool interfaces because we are spending less time trying to get, like, anything to draw at all. + +**WN:** Do you think Apple plans to move away from windows as a metaphor for the workspace? + +I am very, very hesitant to speculate on future directions, because people often assume developers have some secret "red phone" where Steve calls us and says, "Hey, Wil, we're going to dump windows as a metaphor in two years, you down with that? Oh, also, did you get those iPhones I sent you?" + +In truth, we wait for the same announcements as everyone else... and I have to wait for my damn iPhone. Which, believe me, is cruelty itself. + +**WN:** As an extension of the last question, with Apple moving into more devices which run largely windowless UIs (i.e. Apple TV, iPhone) is the windowed application a thing of the past? + +I personally think that full-screen applications are becoming more important (especially for Apple) as we see more special-purpose devices -- the Apple TV is supposed to a neat way to watch your shows, the iPhone is too damn small to support windows -- but there will always be a need for windowed applications. Humans are inherently multi-tasking creatures. + +I'm old enough to remember a lot of the early experiments with graphical user interfaces, before the world standardized on the Macintosh model. It's funny to remember all the varieties of metaphors that were attempted back then (e.g. the Andrew Window System from CMU had a "tiled" interface, where windows never could overlap, but instead automatically resized themselves to perfectly fill the screen, and Microsoft Windows used to have windows inside of windows for applications), but I think they all died out for good reasons. + +**WN:** Jobs talked briefly last night at D (The recent All Things Digital conference) about the various iPhone UI limitations: no mouse, no pull-down menus and so forth. While those are constraints in the case of the iPhone do you think Apple might be looking to turn them into strengths on the desktop platform? + +**WS:** Fundamentally it hurts my arms to hold them up to the screen, and I have enough trouble keeping my screen clean as it is, so I don't think I really want a touch-screen computer. I haven't seen the iPhone up-close, but I absolutely think some of the creative solutions Apple has come up with in terms of directly manipulating items on the screen (instead of using widgets) are going to carry over and inspire the Delicious Generation of applications. + +**WN:** Is there a new UI paradigm on the horizon and if so what do you think it would look like? + +**WS:** I think the paradigm is direct manipulation -- just grab your document and "throw" it upwards to get it to scroll, for example, instead of fumbling about for the scroller. + +**WN:** Do you think users are ready to abandon the dominant metaphor of desktop UIs? + +**WS:** I don't think we'll abandon the old way as much as supplement our armory with a whole new arsenal of tools. It's an awesome time to be a Mac developer, and, by extension, a Mac user. + +[2]: http://www.wired.com/software/coolapps/news/2007/06/core_anim?currentPage=all "Kiss Boring Interfaces Goodbye With Apple's New Animated OS" +[1]: http://www.wired.com/software/coolapps/news/2007/06/leopard_preview?currentPage=all "Apple to Show Off Leopard's Claws at WWDC" +[3]: http://www.delicious-monster.com/ "Delicious Library" +[4]: http://www.panic.com/ "Panic Software" +[5]: http://www.madebysofa.com/ "MadeBySofa"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/vmware.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/vmware.jpg Binary files differnew file mode 100644 index 0000000..b960acd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/vmware.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/vmware.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/vmware.txt new file mode 100644 index 0000000..246138a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/vmware.txt @@ -0,0 +1,16 @@ +Not to be outdone by the [release of Parallels 3.0][4], VMWare has announced the availability of the fourth beta for VMWare Fusion for Mac, another Mac OS X virtual environment for Windows. Beta 4 features a new tool, dubbed Unity, which integrates Windows application into OS X and offers a new "Launch palette" designed to make switching between OS X and Windows much easier. + +Like Parallels, VMWare Fusion allows Mac users to run Windows in a virtual machine without rebooting or switching OSes. VMWare also offers pre-configured virtual machines including a whole [library of virtual appliances][3] with pre-installed applications and operating systems. + +Beta 4 also [improves on some other areas][2]: + +>* Boot Camp improvements — You no longer have to choose between Windows or Mac-run Windows XP with Mac OSX off your existing Boot Camp partition. Beta 4 adds experimental support for Microsoft Vista, greatly improves Boot Camp partition detection, and when you are running the Boot Camp partition in a virtual machine, VMware Fusion automatically updates the Boot Camp partition to use drivers that are optimized for your virtual machine. +* Improved performance — Virtual machines boot faster and applications launch faster from virtual hard disks. Interactive performance is improved over previous betas and VMware Fusion now uses Apple's multithreaded OpenGL engine for improved performance. +* Improved user experience — The toolbar is greatly enhanced and is now completely customizable. To make the display less cluttered and easier to use, the virtual hardware buttons have been moved from the toolbar to the status bar. The virtual machine hardware editor is a now sheet attached to the virtual machine you are editing. + +VMWare Fusion for Mac beta 4 is a [free download][1], though you'll have to fill out the registration form. + +[1]: http://register.vmware.com/content/beta/fusion/registration.html "Download VMWare Fusion" +[2]: http://www.vmware.com/products/beta/fusion/releasenotes_fusion.html#newb4 "VMWare Fusion beta 4 release notes" +[3]: http://www.vmware.com/vmtn/appliances/ "VMWare Virtual Appliance Marketplace" +[4]: http://blog.wired.com/monkeybites/2007/06/after_releasing.html "Parallels 3.0 Officially Released Bringing 3D Graphics And More"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/webmonkeysasser interview.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/webmonkeysasser interview.txt new file mode 100644 index 0000000..6b19462 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Fri/webmonkeysasser interview.txt @@ -0,0 +1,38 @@ +Continuing the conversation with Mac developers about the [Core Animation features][2] in the upcoming Mac OS X 10.5 (Leopard), here's Cabel Sasser of [Panic Software][4]. + +Sasser is the co-counder of Panic whose software includes the popular FTP client, Transmit as well as the newly-released Coda, which we [reviewed last month][5]. + +Also be sure to check out the other interviews with [Wil Shipley of Delicious Monster][3] and Austin Sarner of MadeBySofa. + +--------------------- + + + +**Wired News:** First off, do you think developers are going to embrace Core animation (given that doing so would possibly break the backwards compatibility)? I know the TextMate developers have said they plan to drop support for 10.4 in the next version to take advantage of CA (well the text rendering portion anyway) any plans for Panic? + +**Cabel Sasser:** I've no doubt that developers will embrace Core Animation -- providing a fast, Apple-maintained way to do the kind of animations we now rely on heavily is a brilliant, and well-welcome idea. + +Ironically, before Core Animation existed, we had created our own set of animation routines, many of which are eerily similar to the work Apple did in Core Animation! Great minds, etc.! So in our case, we'll probably branch to allow our software to be 10.4 compatible -- if you're running 10.5, you'll get the Core Animation version of our transitions, and if you use 10.4, you'll get our custom version. The Core Animation version will probably be much better and smoother. + +**WN:** Is core animation more than just eye candy? In other words does it provide a way to improve the user experience, whether through better UIs or speed boosts etc? + +**CS:** There are innumerable little animations that the user probably never even thinks of -- things like preference pane transitions, or simple sliding panels -- that will all be easier, and possibly better, with Core Animation. + +**WN:** From the demo video available on the Apple site it would seem that the new tools enable an almost windowless environment, is that true? Do you think Apple plans to move away from windows as a metaphor for the workspace? And as an extension of those ideas, with Apple moving into more devices which run largely windowless UIs (i.e. Apple TV, iPhone) is the windowed application a thing of the past? + +**CS:** These are tough questions to answer. I really don't think that the desktop will ever become "windowless" -- windows present a very familiar and natural way to work and multitask, and to radically change it might just mean desktop suicide. You don't multitask on an Apple TV, and you probably don't do a ton of multitasking on an iPhone, but on a desktop you simply need to be able to do many things at once, and for that, you need windows. + +That said, I suspect we'll know more very soon. Sorry I don't have too much conjecture here. + +**WN:** Jobs talked briefly last night at D about the various iPhone UI limitations: no mouse, no pull-down menus and so forth. While those are constraints in the case of the iPhone do you think Apple might be looking to turn them into strengths on the desktop platform? + +**CS:** I personally doubt it. A hand-held phone is a vastly different user experience than a mouse and a keyboard. I really applaud Apple's tenacity to sit down and say "You know what? This is a phone, and it needs to work differently", instead of trying to shoehorn a desktop UI into a mobile form factor. That's why every phone in the world sucks, and why I couldn't be more excited about the iPhone. I have faith that Apple will give each platform the best possible experience -- tailored to that platform. + +**WN:** Is there a new UI paradigm on the horizen and if so what do you think it would look like? + +**CS:** I've joked about having a fixed "sidebar" in future versions of Mac OS X, since virtually every application now has its own little blue landing strip on the left side of the window -- think of the window space you can regain! -- but once I started to actually think about it, I realized that it's an awful idea. ;) + +[2]: http://www.wired.com/software/coolapps/news/2007/06/core_anim?currentPage=all "Kiss Boring Interfaces Goodbye With Apple's New Animated OS" +[3]: http://blog.wired.com/monkeybites/2007/06/mac_app_designe.html "Mac App Designers On Leopard: Wil Shipley of Delicious Monster" +[4]: http://www.panic.com/ "Panic Software" +[5]: http://blog.wired.com/monkeybites/2007/04/coda_release_no.html "Coda: An All-In-One Web Developer Tool"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/Firefoxinterface.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/Firefoxinterface.txt new file mode 100644 index 0000000..5b6eebb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/Firefoxinterface.txt @@ -0,0 +1,36 @@ +Firefox Alpha 5 arrived last Friday bringing with it the first looks at Places, the new bookmark management system. But the Firefox team has a number of additional UI tweaks up their sleeve and some of them look quite slick. + +Alex Faaborg who's one of the interface designers for Firefox 3 recently posted an overview and some screenshots of what the changes might look like (screenshots after the jump). + +None of these are guaranteed to end up in Firefox 3, they're merely a glimpse of what *might* end up in the final version. Also, Faaborg cautions that the screenshots below may not be what the final versions actually look like, but they do provide a rough sketch of possible implementations. + +The features Faaborg outlines include: + +>* Places bookmark management system which includes support for: + * Web Page Tagging + * Smart Folders + * Saved searches + + +* Content Handling. Firefox currently has different dialog boxes for dealing with content depending on if it has a MIME type, is a protocol, is being delivered through RSS, or is an application being downloaded. The user will have a consistent UI for selecting the actions they would like associated with content, regardless of if the content is a file being download or is a microformat embedded in a Web page. + + +* Microformat Detection. + +* Changes to the Location Bar. We are considering removing the favicon from the location bar, and changing the location bar so that everything except "Public Suffix + 2" is greyed out. This will prevent malicious sites from placing visual cues in the location bar (like using a lock as a favicon), and the change in text color will help users identify the web site domain. + +* Private Browsing. Put Firefox into a temporary state where no information about the user's browsing session is stored locally + +The two standout features in my opinion are the tagging capabilities in the bookmark manager and the microformats detection, but there's also a few nice little features that will smooth over certain aspects of the interface. + +One of the things I really like in the screenshots below is the bookmark feedback window hanging off the URL bar, particularly the ability to delete the bookmark without opening the manager. Because CRTL-D (default keystroke for a new bookmark) is right next to CRTL-S and I'm a bit clumsy with the keyboard I frequently end up bookmarking things I meant to save. + +It's not an earth shattering feature, but it's a great example of well-thought-out interface design (provided it actually works the way I'm assuming from the screenshot). + +Another subtle, but potentially very useful feature is the highlighted primary site in the URL bar. So long as the whole URL bar is still easily selectable, the proposed feature would make it easier to actually see what site you're on. + +Other proposed features that thus far don't have UI mockups include: + +>* Offline Web applications +* Improvements to the password manager +* A graphical keyboard-based UI similar to Quicksilver and Enso for searching the Web, bookmarking and tagging pages, navigating recent history, and switching between tabs. Note: this feature isn't in the Firefox 3 PRD, and it will probably be released as an experimental extension through Mozilla Labs before it gets considered for inclusion into Firefox.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/MS.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/MS.txt new file mode 100644 index 0000000..dd552f5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/MS.txt @@ -0,0 +1,21 @@ +Microsoft has successfully defeated a number of attempts to mandate ODF format documents for official U.S. State documents. Thanks to heavy lobbying by the Redmond giant, bills in California, Connecticut, Florida, Texas and Oregon have all been shelved, stalled indefinitely or tossed out the window entirely. + +Only Minnesota passed pro-ODF legislation and even then it was a severely watered-down bill which merely calls for the state's IT officials to look into the debate. + +Computer World has a [rather long piece][1] on Microsoft's efforts to defeat the bills by creating mock grassroots support, including a series of letters supposedly "written by small businesses against the proposed legislation -- letters that turned out to have been penned by Microsoft resellers and partners." + +The letters were sent after an [online petition][3] and an [open letter][2] both failed to garner any support for Microsoft's proprietary format OOXML -- the company's ODF competitor. + +But the real problem may have been with the legislators who didn't understand the debate. + +According to some legislators quoted in the Computer World story, the lawmakers felt out of their elements in making decisions on technical issues, which shouldn't really be surprising, but is disheartening nonetheless. + +Don Betzold, a Democratic state senator who sponsored the open formats proposal in Minnesota tells Computer World that he and other politicians felt overwhelmed by the technical jargon presented by each side. + +"I wouldn't know an open document format if it bit me on the butt," Betzold said. "We're public policy experts. [Deciding technical standards] is not our job." + +But despite the setbacks, Marino Marcich, executive director of the ODF Alliance, believes the legislative fight has only begun. + +[1]: http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9022878&pageNumber=1 "Microsoft trounces pro-ODF forces in state battles over open document formats" +[2]: http://blog.wired.com/monkeybites/2007/02/microsofts_open.html "Microsoft's Open Letter Whine" +[3]: http://blog.wired.com/monkeybites/2007/04/microsoft_petit.html "Microsoft Petition A Desperate Bid to Gain OOMXL Support"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/bookslive.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/bookslive.jpg Binary files differnew file mode 100644 index 0000000..331753c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/bookslive.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/digg.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/digg.txt new file mode 100644 index 0000000..8f7192d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/digg.txt @@ -0,0 +1,19 @@ +Kevin Rose announced at the recent TheNextWeb conference in Amsterdam, that Digg will expand into images and eventually product reviews and more. Rose is hoping the changes will transition Digg from a primarily social news site to a more generalized audience. + +The images section is one of the most requested features for Digg and isn't really much of a surprise, but by hinting that Digg will expanding beyond simply news Rose may risk alienating the sites core users. + +Digg began life as a Slashdot competitor, but has gradually moved beyond the tech and nerd news that remains the staple for Slashdot to include a wide range of topics like politics, videos, sports, business, entertainment, gaming. + +Still, as [Pete Cashmore at Mashable][1] points out, "those categories that have succeeded are those that continue to cater to a young male tech audience: videos, left wing politics (and non-interventionist Republican Ron Paul), gaming and science." + +While Rose and the Digg team would clearly like to pull off a Facebook-like demographic shift to a wider audience, past Digg expansions haven't really done that. + +Cashmore suggests that a product reviews section is far more likely to produce gadget heavy listings than a wider Amazon-like cross-section since gadgets are what appeal to Digg's core users. + +Still, even if the site fails to draw in a wider audience, Digg is undeniably good at unearthing obscure posts on a range of subjects and the new categories will likely continue and expand that trend. + +Here's the video of Rose talking via video at TheNextWeb conference courtesy of YouTube user BlueAceNL: + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/Wyi05G_zI3Q"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Wyi05G_zI3Q" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://mashable.com/2007/06/02/kevin-rose-digg/ "Kevin Rose: Digg Expanding to Images, Restaurant and Product Reviews"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ezmaps.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ezmaps.txt new file mode 100644 index 0000000..df31174 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ezmaps.txt @@ -0,0 +1,16 @@ +Last week saw the introduction of a host of new mapping tools and features from a number of companies gathered at the [Where 2.0 conference][1]. However, for many users even the basics of adding a Google map to their site can be a serious headache, fortunately there's an easier way -- [GMapEZ][2]. + +As one who abhors curly braces, the Javascript necessary to add Google Maps to my site is not only confusing, but quite challenging -- the Google Maps API is robust, but the flip side of that full-featured goodness is a lot of additional complexity. + +Somewhere between beating my head against the wall and abandoning all hope, I stumbled across GMapEZ, a small Javascript library that makes adding a Google map to your site a simple as writing a few lines of HTML. + +GMapEZ is a Javascript routine that parses some specially formated HTML and then handles converting that information into a Google map complete with markers, controls and a number of other options. + +GMapEZ doesn't handle the entire Google Maps API, but for the basics of adding markers and showing a location, I don't know of an easier option. + +The script is the brain child of Chris Houser and is available for free, licensed under the GNU General Public License. Houser even provides a cut-and-paste link to the file on his server, though I went ahead and copied it over to my own since, where I come from, hot-linking is frowned upon. + +Note that you'll still need to have a Google Maps API key, but otherwise, even your mom could embed maps with GMapEZ. + +[1]: http://blog.wired.com/monkeybites/where20/index.html "Compiler Where 2.0 coverage" +[2]: http://n01se.net/chouser/gmapez/ "GMapEZ: Google Maps the easy way."
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ffadd.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ffadd.jpg Binary files differnew file mode 100644 index 0000000..dfb3a89 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ffadd.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ffplaces.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ffplaces.jpg Binary files differnew file mode 100644 index 0000000..89d1e77 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ffplaces.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/fftags.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/fftags.jpg Binary files differnew file mode 100644 index 0000000..4cd9294 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/fftags.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ffurlbar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ffurlbar.jpg Binary files differnew file mode 100644 index 0000000..05d2a5c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ffurlbar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ftpfirefox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ftpfirefox.txt new file mode 100644 index 0000000..ab22718 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/ftpfirefox.txt @@ -0,0 +1,22 @@ +We've written [several][3] [times][4] about various ways to bulk upload files to sites like Flickr or YouTube, but wouldn't it be nice if you could just login via an FTP interface? While it doesn't actually offer FTP access, the Firefox plugin [Firefox Universal Uploader][1] uses an FTP-like interface which makes it easy to upload batches of files to YouTube, Flickr, Picasa and Box.net. + +Firefox Universal Uploader creates a two-pane window in your browser and allows you to easily move files from your hard drive to any of the four supported sites. + +I set it up and tested it with my Flickr account and had no problems. However, for some reason Firefox Universal Uploader couldn't login to my YouTube account. Since I don't have accounts at Picasa or Box.net I haven't tested those services. + +The process of logging in was simple, though the menu icon for switching between services looks more like a button than the drop-down menu that it actually is, which confused me a bit at first. However, once I authorized Firefox Universal Uploader to access my Flickr account, transferring files couldn't have been simpler. + +The plugin presents your Flickr sets and photos in a directory like structure in one panel and your hard drive folder structure in the other. Two arrow buttons located between the panes allow you to upload and download the selected files. + +A third pane at the bottom of the windows shows upload progress in one tab and allows you to set permissions and edit photo properties once they're uploaded. + +While it thus far lacks drag-and-drop support, which most FTP programs offer, in most other respects it behaves just like your typical FTP interface. In fact after using Firefox Universal Uploader for a while you may have to remind yourself that isn't actually an FTP program. + +For those looking for a fully automated solution, check out the [python-based uploader][4] I wrote about a couple weeks back. + +[Discovered via [CyberNetNews][2]] + +[1]: https://addons.mozilla.org/en-US/firefox/addon/4724 "Firefox Universal Uploader (fireuploader)" +[2]: http://tech.cybernetnews.com/2007/06/01/ftp-like-uploader-for-firefox-supports-flickr-picasa-and-more/ "FTP-like Uploader for Firefox Supports Flickr, Picasa and more" +[3]: http://blog.wired.com/monkeybites/2006/11/easy_photo_uplo.html "Easy Photo Uploads with Fotofox" +[4]: http://blog.wired.com/monkeybites/2007/05/auto_upload_ima.html "Auto Upload Images To Flickr With Uploader.py""
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/gmapez.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/gmapez.jpg Binary files differnew file mode 100644 index 0000000..cede56f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/gmapez.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/livesearch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/livesearch.txt new file mode 100644 index 0000000..098a435 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/livesearch.txt @@ -0,0 +1,11 @@ +Microsoft announced it will be adding in-copyrighted works to its [Live Search Books][2] as part of the company's attempt to compete with rival book search offerings from Google. Microsoft [says it has permission][1] to scan and display books from publishers like McGraw-Hill, MIT Press, Oxford University Press, Simon & Schuster and more. + +Microsoft has thus far managed to avoid some of the controversy that has plagued [Google Books][3] regarding copyright concerns. Both the Authors Guild and the Association of American Publishers have accused Google of infringing on copyrights, despite Google's insistence that its book search qualifies as fair use. + +Rather than presenting users with summary information as Google does with copyrighted works, Microsoft will offer actual content previews where it has permission to do so, though you'll have to sign in to the site via a Windows Live ID. One nice feature is that the previews inform the user many pages are missing from each book. + +Live Search will also include summaries and links to sites where the books can be purchased. + +[1]: http://blogs.msdn.com/livesearch/archive/2007/06/01/live-search-books-now-with-in-copyright-content.aspx "Live Search Books: Now with In-Copyright Content" +[2]: http://books.live.com/ "Live Book Search" +[3]: http://blog.wired.com/monkeybites/2007/05/google_book_sea.html "Google Book Search Adds Library Options"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/lolcat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/lolcat.jpg Binary files differnew file mode 100644 index 0000000..8d3e204 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/lolcat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/lolocat.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/lolocat.txt new file mode 100644 index 0000000..b9bc7eb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/lolocat.txt @@ -0,0 +1,11 @@ +We've generally avoided the whole LOLcats phenomena that has been making the internet rounds of late, but sometimes an idea reaches its hilarious peak and simple must be acknowledged. + +Personally I think the whole idea could be justified for leading to this one image, but then again I'm a closet physics nerd and have been known to watch Richard Feynman lectures on the weekend. + +For those wanting more explanation of the humor, have a look at the Wikipedia entry on [Schrödinger's Cat][4]. + +[via [Scientific American][2], photo from Flickr user [dantekgeek][3]] + +[2]: http://blog.sciam.com/index.php?title=schrodinger_s_lolcat&more=1&c=1&tb=1&pb=1&ref=rss "Schrodinger's LOLcat" +[3]: http://flickr.com/photos/dantekgeek/522563155/ "Schrodinger's lolcat" +[4]: http://en.wikipedia.org/wiki/Schrodinger%27s_cat "Wikipedia: Schrödinger's cat"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/mslinuxdeal.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/mslinuxdeal.txt new file mode 100644 index 0000000..3065d76 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/mslinuxdeal.txt @@ -0,0 +1,42 @@ + +[1]: http://www.microsoft.com/presspass/press/2007/jun07/06-04XandrosPR.mspx?rss_fdn=Press%20Releases "Microsoft, Xandros Agreement" + +Over the next five years, Microsoft and Xandros will focus on five primary efforts: +• + +Systems management interoperability. Xandros and Microsoft believe advances in system management technology can significantly reduce the cost of operating large computer networks running diverse platforms. Xandros will partner with Microsoft to deliver value-added heterogeneous management capabilities that will work with the next generation of Microsoft® System Center and Xandros Systems Management products, which provide end-to-end service management. Xandros will also join Microsoft and other management vendors in implementing the WS-Management set of protocols in Xandros BridgeWays cross-platform management products and in various systems management standardization efforts. +• + +Server interoperability. Xandros will license a broad set of Microsoft server communications protocols. Xandros will develop enhancements to Xandros Server, allowing it to interoperate more smoothly with Windows Server® in a network setting. +• + +Office document compatibility. Xandros and Microsoft share the view that competing office productivity applications should, by design, make it easy for customers to exchange files with one another. To that end, Xandros will join Microsoft and other companies that are building open source translators fostering interoperability between documents stored in Open XML and Open Document Format. Xandros will ship the translators in upcoming releases of its Xandros Desktop offering. +• + +Intellectual property assurance. Through the agreement, Microsoft will make available patent covenants for Xandros customers. These covenants will provide customers with confidence that the Xandros technologies they use and deploy in their environments are compliant with Microsoft’s intellectual property. By putting a framework in place to share intellectual property, Xandros and Microsoft can speed the development of interoperable solutions. +• + +Microsoft sales and marketing support. The companies are committing to a set of sales and marketing efforts to promote the output of their technical efforts. As part of this effort, Microsoft will now endorse Xandros Server and Desktop as a preferred Linux distribution due to Xandros’ efforts to establish rich interoperability and deliver IP assurance to its customers. In addition, a specialized team of Microsoft staff will be trained on the value propositions of this collaboration to customers and channel partners. Xandros will also become a member of the Microsoft Interop Vendor Alliance. + +About Xandros + + +Microsoft has announced a new deal with Linux outfit Xandros that is similar to the Microsoft-Novell tie-up of last year coming complete with Intellectual property assurance. + +The “broad collaboration agreement” covers a range of technical, business, marketing and intellectual property commitments. Microsoft said that the commitments will provide customers with enhanced interoperability, more effective systems management solutions and intellectual property assurances “all of which extend a bridge between open source and commercial software and deliver customers real value in mixed systems environments”. + +For Xandros and its customers, it’s a get out of jail free card if and when Microsoft starts the open source equivalent to World War 3 by taking legal action against Linux over alleged patent violations. + +The deal includes: + +Systems management interoperability: “value-added heterogeneous management capabilities” which in English translates to co-operative interoperability development between Xandros and Microsoft. + +Server interoperability: Xandros will license a broad set of Microsoft server communications protocols allowing it to interoperate more smoothly with Windows Server + +Office document compatibility: Xandros will join Microsoft and other companies in building open source translators fostering interoperability between documents stored in Open XML and Open Document Format. + +Microsoft sales and marketing support: Microsoft will now endorse Xandros Server and Desktop as a preferred Linux distribution + +Intellectual property assurance: Microsoft will make available patent covenants for Xandros customers that will provide customers with confidence that the Xandros technologies they use and deploy in their environments “are compliant with Microsoft’s intellectual property”. + +There was a lot of surprise following Microsoft’s announcement of a deal with Novell last year, and although the Xandros deal follows Novell, there is still bound to be surprise considering many thought the Microsoft-Novell agreement may have been a one off. The extension of intellectual property assurance to another Linux distro will no doubt cause a flurry of discussion in the open source community. My only question: who will be the next Linux deal in Microsoft’s continued efforts to strength the anyone but Red Hat Linux marketplace.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/uu1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/uu1.jpg Binary files differnew file mode 100644 index 0000000..e66342a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/uu1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/uu2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/uu2.jpg Binary files differnew file mode 100644 index 0000000..a3334bf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Mon/uu2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/ballmer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/ballmer.jpg Binary files differnew file mode 100644 index 0000000..1300b63 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/ballmer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gcal.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gcal.jpg Binary files differnew file mode 100644 index 0000000..6413dd6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gcal.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gcal.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gcal.txt new file mode 100644 index 0000000..136c5a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gcal.txt @@ -0,0 +1,18 @@ +Google has added a directory of public calendars to Google Calendar to make browsing and finding calendars a little bit easier. The new directory is organized into 8 categories: popular, TV shows, sports, events, entertainment, miscellaneous, holidays, and Google-related. + +The [new listings][1] contain calendars from across the web as well as those created in Google Calendar. As a nice touch there's a "preview" option that will overlay a calendars events on top of your current calendar before you commit to subscribing. + +Unfortunately Google has made searching your public calendars the default option. There's a new button that will restrict searches to your own agenda, but typing a search and hitting return will only show results from your public calendars, which seems backwards to me. + +Why not search personal events by default? Or at least both by default. Hopefully Google will address this unnecessary complication issue in the future. + +In fact, as Ionut Alex Chitu [points out on Google Operating System][2], the new features have unnecessarily complicated Google Calendar in other ways as well. + +>The fact that Google Calendar complicates itself unnecessarily is obvious if you look at how many options are available to add a new calendar: you can add a public calendar, or the calendar of one of your contacts, you can enter the URL or just upload it. And each option has a different place in the interface. + +While it's now easier to find calendar data, it's much more complex to organize and search it, making Google's upgrade something of letdown. + +Previously finding calendars was possible only by searching. + +[1]: http://www.google.com/calendar/render?mode=gallery&cat=POPULAR "Google directory of public calendars" +[2]: http://googlesystem.blogspot.com/2007/06/googles-gallery-of-public-calendars.html "Google's gallery of public calendars"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gmail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gmail.jpg Binary files differnew file mode 100644 index 0000000..c596f05 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gmail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gmailtips.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gmailtips.txt new file mode 100644 index 0000000..8bc1fa3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/gmailtips.txt @@ -0,0 +1,19 @@ +One of the hardest things for new GMail users to get used to is the lack of folders. In GMail, as with Google Reader, "folder" are really just tagged items. In essence tagged items behave just like folders, but they do require a little more work. + +Despite the lack of drag-and-drop support that you might be accustomed in your desktop client, GMail tags are quite powerful tools, especially when combined with filter rules. + +But many potential uses of the tag/filter combination aren't immediately obvious to new users, which is why I thought I'd point out a nice collection of GMail filter tips published last week on [Lifehack.org][1]. + +Some of them are obvious and some of them quite specific for general use, but most are quite handy and may well improve your email filing system. + +My personal favorites include: + +>Backups. Create a second Gmail account for storage, and create a filter to automatically forward any emails with attachments ("has:attachments") to this second address. Now you can delete your old emails without guilt or worry. + +>Flickr. Forward your Flickr account’s feed to your Gmail, with a filter to automatically label it, and now your photos are searchable through Gmail. You can also set up filters to send notices that certain tags in your Flickr account has new photos to certain relatives. + +>Archived bookmarks. If you use del.icio.us and other bookmarking services, you can archive them all in a Gmail label (”bookmarks”). Get the feed urls for each of your bookmarking services, enter them in a forwarding service such as rssfwd.com, and then set up a filter to label them all “bookmarks”. Now all your bookmarks are in one place, with Gmail’s great search. + +For the full list [visit Lifehack.org][1]. + +[1]: http://www.lifehack.org/articles/technology/20-ways-to-use-gmail-filters.html "20 Ways to Use Gmail Filters"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/lg.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/lg.txt new file mode 100644 index 0000000..8608f7c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/lg.txt @@ -0,0 +1,11 @@ +Just days after the [deal with Xandros][1], Microsoft has announced a cross-licensing deal with LG Electronics to grant Linux patent "protection." While Microsoft has yet to demonstrate or reveal any possible Linux patent infringements apparently the threat of doing so was enough to convince LG to seek protection for its mobile phones and other Linux devices. + +According to the press release, LG will make payments to Microsoft "for the value of Microsoft patents as they relate to Linux-based embedded devices that LGE produces." + +Microsoft on the other hand will have access to LG's patents for an undisclosed sum. + +According to analysts [cited by Reuters][2], LG has patents that can be applied to Microsoft's XBox game console. + + +[1]: http://blog.wired.com/monkeybites/2007/06/xandros_joins_n.html "Xandros Joins Novell In Microsoft Ménage à Trois" +[2]: http://in.today.reuters.com/news/newsArticle.aspx?type=businessNews&storyID=2007-06-07T141119Z_01_NOOTR_RTRJONC_0_India-301889-3.xml "Microsoft, LG Elec agree licensing deal"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/linkpad.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/linkpad.jpg Binary files differnew file mode 100644 index 0000000..0e057c6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/linkpad.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav1.jpg Binary files differnew file mode 100644 index 0000000..d7d25d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav2.jpg Binary files differnew file mode 100644 index 0000000..a9dd920 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav3.jpg Binary files differnew file mode 100644 index 0000000..27dccbd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav4.jpg Binary files differnew file mode 100644 index 0000000..fba6583 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav5.jpg Binary files differnew file mode 100644 index 0000000..bc2490b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nav5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/netscape.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/netscape.jpg Binary files differnew file mode 100644 index 0000000..4b28832 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/netscape.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nn9.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nn9.txt new file mode 100644 index 0000000..2d5f8da --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/nn9.txt @@ -0,0 +1,29 @@ +No it isn't dead, in fact Netscape has just released a beta version of Navigator 9, which is essentially a branded remake of Firefox 2 with a couple nice extra features that add some social aspects to the default version of Firefox 2. + +While I know Netscape Navigator has been using Firefox as its backbone for some time, I'll confess that I haven't really used it since version 4.7 (oh, those were the days). That said, the new version is really nice and the additional features are great, particularly if you're a fan of Netscape's Digg-clone news site. + +[Netscape Navigator 9][1] features a host of new stuff including a visual makeover as well as new features like automatic URL correction, several new sidebar options, including a really nice one dubbed "Linkpad." There's also a bunch of social web style features including in-browser voting (for sites listed on netscape.com). + +Netscape Navigator 9 also [features][2] full compatibility with Firefox 2 extensions. Themes on the other hand must be built specifically for Navigator 9. + +The sharing aspects of the new navigator feature some interesting additions to the URL bar, including a link to submit the site to Netscape.com if no one has yet, and, in cases where the URL is already submitted, voting buttons are included. + +There's also a new sidebar option dubbed the "Friends' Activity Sidebar" which lets you track what your Netscape.com contacts have marked. The Activity sidebar will show your friends' votes, comments they've written, and story submissions. + +The standout among the new features is Linkpad, a sort of temporary storage mechanism for pages you want to investigate later, but don't necessarily want to bookmark. Linkpad lives in the sidebar and pages can be added by dragging the URL (or tab) and dropping it in the sidebar. + +Linkpad will remember your temporary bookmarks between sessions and when you click a saved link it will automatically be removed from the linkpad. Netscape touts that last feature as saving you hassle of deleting the link from Linkpad, but frankly there should be an option to control that behavior in the preferences. + +Another sidebar addition is the News Tracker which adds Netscape.com news headlines to your sidebar (via RSS). + +Finally, perhaps it's a personal tick, but I was excited to see that Netscape has combined the stop and reload buttons, which is one of those UI decisions that just makes sense, but for some reason requires an extension in Firefox. The fact is, you never need both buttons at the same time, why waste the space? + +Since it now has full compatibility with Firefox 2 (I should note that of the half dozen extensions I tested, one, CookieSafe did not work -- YMMV), fans of Netscape.com can have their cake and eat it too. + +As someone who doesn't actually use Netscape.com, the sharing features are of limited use, but Linkpad is a particularly nice feature I'd love to hear if anyone knows of a Firefox extension that does something similar. + +Current users should note that the auto-update feature of Netscape 8 will not upgrade them to version 9 (presumably because it's still a beta). To get the latest version [head over to the download site][3]. + +[1]: http://browser.netscape.com/ "Netscape Navigator" +[2]: http://browser.netscape.com/releasenotes/ "What’s New in Netscape Navigator 9" +[3]: http://browser.netscape.com/downloads/ "Download Netscape Navigator 9"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/ubuntu.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/ubuntu.jpg Binary files differnew file mode 100644 index 0000000..ae4840d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/ubuntu.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/ubuntumobile.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/ubuntumobile.txt new file mode 100644 index 0000000..a77bac0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/ubuntumobile.txt @@ -0,0 +1,13 @@ +Canonical, sponsors of Ubuntu Linux, have [announced details][2] regarding the company's Ubuntu Mobile and Embedded OS, a mobile version of its popular operating system. First [mentioned last month][1], today's announcement at the Computex conference in Taipei has roadmap information as well as compatibility details. + +Ubuntu Mobile will be available in October 2007, which coincides with next version of desktop client, but in addition, Canonical is reportedly working directly with device manufacturers to get the OS pre-installed on actual devices in 2008. + +According to the press release, the Ubuntu Mobile and Embedded version of Ubuntu will be developed in partnership with Intel, and will target, not phones but "mobile Internet devices" (MIDs) running on Intel's new low-power processors. + +Think Nokia's N800 web tablet, for instance, not your Razr. + +Canonical says Ubuntu Mobile will be stripped down to use a smaller memory footprint, but still deliver the spectrum of content, with video, sound and fast and full-fledged web browsing on the MID platform. + + +[1]: http://blog.wired.com/monkeybites/2007/05/ubuntu_has_wing.html "Ubuntu Has Wings: Popular Linux Distro Announces Mobile Version" +[2]: http://www.ubuntu.com/news/ubuntu-for-mobile-internet-devices "Canonical Announces Details of Ubuntu for Mobile Internet Devices "
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/vista.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/vista.txt new file mode 100644 index 0000000..73aeb7e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Thu/vista.txt @@ -0,0 +1,12 @@ +After swearing up and down that it was [done with Service Packs][1] and that Windows Vista was "secure out of the box," it would seem that Microsoft does indeed have plans for Vista SP1, though no dates have yet leaked. + +A number of bloggers noticed this week that a document [posted][2] to the Microsoft Download Center carries the title: "Windows Automated Installation Kit Documentation (Windows Server code named "Longhorn" & Windows Vista SP1 Beta 3)" + +There have been a couple other leaks as well, though Microsoft continues to officially deny plans for Vista SP1 (no doubt hoping to encourage consumers waiting for SP1 to go ahead and buy Vista now). + +It seems safe to assume at this point that some sort of Service Pack upgrade for Vista is in the works, but so far no time table has been released. + +[via [ZDNet][3]] +[1]: http://blog.wired.com/monkeybites/2007/04/microsoft_says_.html "Microsoft Says No To Large Vista Service Packs" +[2]: http://www.microsoft.com/downloads/details.aspx?FamilyID=c0758bb7-b0c9-4a70-9462-4e3e8e3176b1&DisplayLang=en "Windows Automated Installation Kit Documentation (Windows Server code named "Longhorn" & Windows Vista SP1 Beta 3)" +[3]: http://blogs.zdnet.com/microsoft/?p=495 "More Windows Vista SP1 sightings (and frustrations)"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/OpenOffice.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/OpenOffice.txt new file mode 100644 index 0000000..de716df --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/OpenOffice.txt @@ -0,0 +1,25 @@ +Last month Sun announced it would [lend its support to a native OS X port][3] of the OpenOffice suite and yesterday OpenOffice.org released the first alpha version of an OS X native version of the popular, free alternative to Microsoft Office. + +But before Mac users get to excited about shedding those Redmond chains bear in mind that this release is very alpha and comes with the follow, bold, red, all caps warning from the OpenOffice site: + +>THIS SOFTWARE MAY CRASH AND MAY DESTROY YOUR DATA DO NOT USE THIS SOFTWARE FOR REAL WORK IN A PRODUCTION ENVIRONMENT + +Having downloaded and tested the OpenOffice alpha I can attest to its bugginess. In fact I would characterize this as more of a proof of concept than an alpha (screenshots after the jump). + +Thus far the [list of missing features][2] is nearly as long than the features list, but the release is a welcome sign of life for the OS X port of OpenOffice. Here's a few notes from the release page: + +>* You cannot print +* PDF export does not properly work as the text won't show on the page right +* Starting OpenOffice.org from a shared folder does not work +* Copy and paste does not fully work +* OpenOffice.org will crash after quitting +* Some text is not drawn in places like Impress +* Impress will not recognize multiple monitors + +OpenOffice for Mac will require OS X 10.4 Tiger + +If the limited functionality doesn't put you off, feel free to [download and give it a try][1]. Just be warned, it's got a long way to go before it reaches to functional stage. + +[1]: http://porting.openoffice.org/mac/download/aqua.html "Open Office for Mac" +[2]: http://qa.openoffice.org/issues/buglist.cgi?keywords=aqua "OO Mac Known Issues" +[3]: http://blog.wired.com/monkeybites/2007/05/sun_embraces_op.html "Sun Embraces OpenOffice For Mac"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/ask.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/ask.txt new file mode 100644 index 0000000..42f486e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/ask.txt @@ -0,0 +1,23 @@ +Ask has redesigned its default search page and introduced some new features. The company is touting the new results page, dubbed "Ask 3D," as a "[major leap forward][3]" for search. [Ask 3D][1] features a new three-panel interface which integrates additional multimedia content -- images, videos and music -- along with the traditional text-based results. + +Although Google dominates the search market, pulling in nearly fifty percent of all online search queries, Ask has its small, but loyal audience as well -- 5 percent according the comScore's April numbers. + +And those existing users will likely enjoy some of the new features, which push personalization over generic search results. + +The most obvious change is the merging of all types of search into a single page. The new search results page is divided into three sections -- hence the "Ask3D" -- with the left side containing a search box and links to expand or narrow results. + +The center section contains traditional Web results. Highlights in the section are page previews complete with information like whether the page requires plug-ins, if there are "pop up" windows on loading, page size and download time (based on a 56K modem connection). + +The right column of the search results page contains auxiliary search results such as images, Wikipedia, dictionary and blog results. + +There's also a new video search, powered by Blinkx, which offer the ability to see video previews by moving your mouse over the thumbnail image. + +Ask now features customizable skins and options for saving and sharing results with other users via folders of "MyStuff". + +For more detailed information on all the new features check out the [Ask about page][2]. + +All in all Ask's relaunch is impressive and features make the site easier to use and more content rich, but at the same time Ask has a long road ahead of it if it wants to continue competing with Google. + +[2]: http://about.ask.com/en/docs/about/site_features.shtml "Ask: Site Features" +[1]: http://www.ask.com/ "Ask.com" +[3]: http://blog.ask.com/2007/06/introducing_ask.html "Introducing Ask3D - A Truly New Way to Search"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/ask1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/ask1.jpg Binary files differnew file mode 100644 index 0000000..6c55213 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/ask1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/ask2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/ask2.jpg Binary files differnew file mode 100644 index 0000000..24cd339 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/ask2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/asklogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/asklogo.jpg Binary files differnew file mode 100644 index 0000000..75b814d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/asklogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/backsoon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/backsoon.jpg Binary files differnew file mode 100644 index 0000000..9324307 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/backsoon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/mt4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/mt4.jpg Binary files differnew file mode 100644 index 0000000..d20caa5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/mt4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/mt4.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/mt4.txt new file mode 100644 index 0000000..3d693b5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/mt4.txt @@ -0,0 +1,29 @@ +Blogging software giant Six Apart has announced the beta release of Movable Type (MT) 4.0. MT 4.0 is the first release since 2004's MT 3.0 and brings upwards of 50 new features and a completely revamped interface. + +Anil Dash, [writing on the Six Apart blog][2], also says that the new version will be released under the GPL, which means MT 4.0 will be open source like Wordpress. + +So far I haven't been able to locate an exact feature list, but Dash's post provides the following overview of the new version: + +>* A completely reinvented user interface with a dashboard overview of how all of your blogs are doing +* Support for publishing standalone pages and managing file assets and images right within MT +* Brand-new community features like OpenID, and a built-in user registration system +* A completely redesigned component architecture that makes MT faster and more scalable than ever before +* And it’s going to be available in a completely open source version with its home at a completely relaunched community site that revives an old, beloved URL: movabletype.org. + +Moveable Type took something of a beating in the blogosphere when version 3.0 was released and introduced all sorts of licensing and fees that led many longtime users to abandon the platform in favor of Wordpress, Textpattern and other blogging software. + +Obviously Six Apart is hoping to regain some of those users with the release of 4.0 and from all appearances the current beta is still very much a work in progress -- Dash says that Six Apart would love to hear from users. + +If you're a Movable Type user and and you'd like to test the new version, [grab a copy from the Movable Type site][3] and be sure to use the [feedback form][4] if you have suggestions and ideas. + +While it's good to see Six Apart moving in a new direction and embracing open source, from the limited information that's available regarding the new release, there doesn't seem to be a whole lot that Wordpress doesn't already offer. OpenID support is nice and the redesigned interface looks to offer some slick new stats and other options, but the core feature set still + +While the update will know doubt be welcomed by current users, there isn't much to entice new users to switch from their existing platforms. + +The beta version of Movable Type 4.0 is free and the final release will be free for personal use with support and commercial licenses ranging from $50 for basic support to a whooping $750 for a 20 seat commercial license. + +[In the interests of full disclosure I should note that Compiler runs on Typepad which is a Six Apart service.] + +[2]: http://www.sixapart.com/movabletype/news/2007/06/movable-type-4-beta.html "Movable Type 4 Beta: We're On A Mission" +[3]: http://www.movabletype.org/download.html "Download MT 4.0 beta" +[4]: http://www.movabletype.org/feedback.html "MT feedback"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/word.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/word.txt new file mode 100644 index 0000000..dab3f94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Tue/word.txt @@ -0,0 +1,27 @@ +When Microsoft announced that Office 2007 would use the OOXML format as its default file format the company sought to assure customers that the change was for the best. But judging by the experiences of two major scientific publishers, Microsoft may have misjudged the market. + +At least two major scientific publishers, <cite>Science</cite> and <cite>Nature</cite>, are both [refusing to accept documents in the new Word 2007 format][1]. Science's authoring guidelines contain the following warning: + +>Because of changes Microsoft has made in its recent Word release that are incompatible with our internal workflow ... Science cannot at present accept any files in the new .docx format produced through Microsoft Word 2007, either for initial submission or for revision. + +While Science doesn't detail their internal workflow beyond saying that it involves Word 2003, the follow highlights the major issue with OOXML from many publishers' point of view: + + +>Users of Word 2007 should also be aware that equations created with the default equation editor included in Microsoft Word 2007 will be unacceptable in revision ... because the default equation editor packaged with Word 2007 -- *for reasons that, quite frankly, utterly baffle us* -- was not designed to be compatible with MathML. (emphasis mine) + +Nature's guidelines for authors contain a similar warning: + +>We currently cannot accept files saved in Microsoft Office 2007 formats. Equations and special characters (for example, Greek letters) cannot be edited and are incompatible with Nature's own editing and typesetting programs." + +For reasons that baffle just about everyone familiar with the issue, Microsoft has chosen to replace the industry standard language for displaying mathematical equations -- MathML -- with their own proprietary version, which, as the above quotes illustrate, almost no one outside of Redmond is interested in using. + +Just one of the many reasons why OOXML just doesn't work. + +What remains to be seen is whether industry leading publishers like Nature and Science will convert their workflow to use OOXML's proprietary formats, or simply stick with the the systems they have which use the existing and well-established MathML format. + +Given what I know about the publishing industry, I suspect that it will be a very long time before print publications invest in a radical new publishing standard that ties them down to a single piece of software. + +[via [O'Reilly Radar][2]] + +[1]: http://prorev.com/2007/05/science-pubs-reject-articles-written-in.htm "Science Pubs Reject Articles Written In Word 2007" +[2]: http://radar.oreilly.com/archives/2007/06/science_and_nat.html "Science and Nature rejecting Word 2007 Manuscripts"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/aquamacs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/aquamacs.jpg Binary files differnew file mode 100644 index 0000000..e402aef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/aquamacs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/aquamacs.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/aquamacs.txt new file mode 100644 index 0000000..94016e2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/aquamacs.txt @@ -0,0 +1,27 @@ +Along with the new GNU Emacs [release of version 22.1][1], Aquamacs has announced that its specially tailored version of Emacs for Mac OS X has, at long last, hit 1.0. [Aquamacs][2] has been in development for over two years and attempts to merge Emacs' legendary functionality with Apple's Aqua interface design. + +Aquamacs looks like a Mac program and it was stable in my testing this morning (actually I've used Aquamacs off and on for a while and never had any stability issues), but Aquamacs' attempts to integrate Emacs into the Mac environment are a mixed bag. + +Keyboard shortcuts have been modified to follow patterns Mac users will be familiar with rather than the Emacs equivalents (which also work). + +For instance in Emacs, to open a new file, er, technically a buffer, but never mind that, you would type Ctrl-x Ctrl-f whereas in the Mac way of doing things is Apple-O. Aquamacs also solve the Emacs meta key problem by offering some remapping options (Emacs commands often use a "meta" key which isn't part of the standard Apple keyboard). + +Other Apple-friendly features include the follow options: + +* Fonts just work, right from the menu: The Mac-standard font (Lucida Grande) is the default for editing text, and the mono-spaced Monaco is used to other modes. +* Aquamacs Emacs has a standard Mac menu with entries where you would expect them, and recently used files are available from the File menu. +* Aquamacs Emacs can open a normal OS X window for each file that is opened - Emacs experts call such windows frames. Finally, Aquamacs Emacs makes use of the capabilities of windows on modern graphical user interfaces. This is configurable with a mouse-click - of course, You can switch between the windows (frames) with the "Buffers" menu. +* Clipboard operations interoperate with other Mac apps. +* A number of little extensions specific to the Mac are contained - they're small details that make your life easier. For example, there is a "Show (file) in Finder" function, or another one to open new files in one of many popular modes. When you double-click a file written in Aquamacs, it'll open in Aquamacs (thanks to Creator meta-information in files). + + +With many Mac switcher coming from the Linux world (where Emacs use is highest) the release of Aquamacs will no doubt be welcomed by some. However the differences between even Aquamacs and traditional Mac interface design may confuse longtime Mac users. + +Aquamacs preferences for instance, while available via the traditional Apple-; shortcut, are anything but standard -- many options are still configurable only via the traditional Emacs interface. + +Other non-standard features include Emacs style quit options (feedback is at the bottom of the buffer, i.e. "save changes y or n," and there's still no decent word-wrap module available. + +But if you're a longtime Emacs user looking for a good OS X GUI variant, Aquamacs ably fits the bill. + +[1]: http://blog.wired.com/monkeybites/2007/06/emacs_221_embra.html "Emacs 22.1 Embraces The GUI. Finally." +[2]: http://aquamacs.org/ "Aquamacs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/cam-feed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/cam-feed.jpg Binary files differnew file mode 100644 index 0000000..b48f373 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/cam-feed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/cam-spell.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/cam-spell.jpg Binary files differnew file mode 100644 index 0000000..c81a05e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/cam-spell.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/camino-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/camino-logo.jpg Binary files differnew file mode 100644 index 0000000..bbf1088 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/camino-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/camino.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/camino.jpg Binary files differnew file mode 100644 index 0000000..5f7a941 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/camino.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/camino.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/camino.txt new file mode 100644 index 0000000..9866d78 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/camino.txt @@ -0,0 +1,19 @@ +It's a good week for Mac users, NetNewsWire has a new version out and now the developers behind Camino, the Aquafied alternative to Firefox, have [released version 1.5][1] adding some features that bring it closer to being a true Firefox 2 replacement. + +Camino 1.5 feels much faster than its predecessor and offers a true Mac interface which now duplicates Firefox's session recovery tools, spell checker and RSS detection. + +Camino 1.5 includes a new in-line spell checker which uses the native OS X spell checker rather than its own separate spell checker as is the case with Firefox 2. The spell checker doesn't detect every input field (for instance, many search boxes I tested it didn't get spell-checked), but whenever Camino detects a misspelled word it will underline it and right-clicking reveals a drop-down menu of possible corrections. + +Version 1.5 also adds support for auto detecting RSS feeds, which are displayed in the toolbar à la Firefox 2, clicking the icon will load the feed into your default news reader. + +Camino also now supports session recover even on crashing, so you can always restore your previous tabs and windows. + +The browser has also gained an improved "annoyance" blocking system. Camino has always been able to block ads and pop-ups but it now features an improved engine and the ability to block Flash movies (provided you enable Javascript). + +Although the new features bring Camino closer to being a full fledged Firefox replacement, regrettably Camino still doesn't (and likely never will) support Firefox's add-on architecture. + +For many users this won't matter, but those of addicted to our add-ons can still dream, because on nearly every other level Camino blows Firefox 2 for Mac out of the water (and note that there are some "add-ons" available for Camino, though nowhere near the number for Firefox 2). + +Still, if you're looking for a speedier alternative to Firefox or Safari, Camino 1.5 is your browser. + +[1]: http://www.caminobrowser.org/ "Camino"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/eee.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/eee.jpg Binary files differnew file mode 100644 index 0000000..32a9655 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/eee.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs new file mode 100644 index 0000000..ccce884 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs @@ -0,0 +1,29 @@ +The venerable text editor GNU Emac released a significant update this morning (and when we say venerable we mean it -- how many programs have made it to version 22?). Emacs, is rather famously, the extensible, customizable, self-documenting real-time display editor -- that would be a text editor to you and I. + +But given Emacs' seeming penchant for willfully eschewing the GUI enhancements that have developed in the thirty plus years since the advent of the program, many may be surprised to discover that [many of version 22's changes involve GUI elements][1]. + +The highlights in new version include the following improvements: + +* Support for the GTK+ graphical toolkit + +* Drag-and-drop support on X. + +* Support for GNU/Linux systems on S390 and x86-64 machines, and for Mac OS X, and for Windows using Cygwin. + +* Full support for images, toolbar, and tooltips on MS-Windows, Mac OS 9 and Mac OS X builds. + +* Many user interface tweaks, including the highlighting of the selected window's mode line and a distinct minibuffer prompt face. + +* Full graphical user interface to GDB. + + +Emacs, which has perhaps the steepest learning curve of any piece of software on the market, almost seems to be headed in a new user-friendly direction with graphical enhancements and drag-and-drop support on some platforms. + +Still, somehow I doubt this release is going to win any new converts. + +Emacs gurus can make the program do backflips without ever lifting their fingers from the keyboard, but the uninitiated, while generally impressed, often remain baffled. + +If you're an Emacs fan [head over to the official site][2] and grab the latest build. + +[1]: http://lists.gnu.org/archive/html/info-gnu-emacs/2007-06/msg00000.html "Emacs 22.1 released" +[2]: http://www.gnu.org/software/emacs/ "GNU Emacs"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs1.jpg Binary files differnew file mode 100644 index 0000000..ea7d557 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs2.jpg Binary files differnew file mode 100644 index 0000000..fc45629 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs3.jpg Binary files differnew file mode 100644 index 0000000..ccd8e2d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/emacs3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/gnuemacs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/gnuemacs.jpg Binary files differnew file mode 100644 index 0000000..d92fefb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/gnuemacs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/inteloplc.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/inteloplc.txt new file mode 100644 index 0000000..facd6e6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/inteloplc.txt @@ -0,0 +1,15 @@ +Not content with using [ruthless marketing tactics to muscle in on charity projects][2], Intel unveiled a second sub-notebook plan today, which will see the chip maker teaming up with Asustek Computer, the world's largest maker of computer motherboards. + +Today's announcement comes just weeks after Intel publicly criticized the OLPC project and announced its own competing [Classmates PC initiative][3], which hopes to ship 1,230 low-cost PCs to governments in Asia later this year. + +And to think everyone laughed at Negroponte when he first proposed the idea of a $100 laptop. + +Unlike the Classmates PC, Intel and Asustek's new offering would be a fully fledged, low-end notebook and offer no hand crank options for situations where there is no electricity. + +The resulting notebook will reportedly cost around $240 and is aimed at, not the One Laptop Per Child (OLPC) market, but rather more traditional consumers via the usual channels like retail outlets. + +For more details on the new Intel laptop, awkwardly dubbed Eee, check out [Gadget Lab's coverage][1]. + +[1]: http://blog.wired.com/gadgets/2007/06/intel_vs_olpc_r.html "Intel vs OLPC Round Two. Fight!" +[2]: http://blog.wired.com/monkeybites/2007/05/negroponte_accu.html "Negroponte Accuses Intel Of Hitting Below The Belt" +[3]: http://blog.wired.com/monkeybites/2007/04/microsoft_will_.html "Developing Gov'ts Get a Choice: Free Linux or $3 Windows"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/netnewswire.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/netnewswire.txt new file mode 100644 index 0000000..8646b64 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/netnewswire.txt @@ -0,0 +1,27 @@ +NewsGator has released the final version of NetNewsWire 3.0, the popular RSS reader for Mac OS X. The new version boast some speed gains and features better integration with other Apple apps such as Spotlight, Address Book, iCal and iPhoto. + +Version 3.0 offers a few enhancements not present in the beta we reviewed a few weeks back. + +NetNewsWire 3.0 sports redesigned interface with customizable color schemes and some much needed performance improvements. + +The biggest news though is undoubtedly the speed boast. Switching between feeds is now instantaneous and images in feeds seem to load faster as well. NewsGator says the speed gains are made possible by improvements to the storage and memory systems. + +There's also a host of new bells and whistles that, while they won't revolutionize how you consume feeds, are welcome nonetheless. + +NetNewsWire now offers support for posting news items straight to your del.icio.us account and contact and calendar items can go straight to AddressBook and iCal thanks to microformats support. + +The Spotlight integration means that when a search returns something within an RSS item the results will shows up in the list of Documents complete with a NetNewsWire icon. + +Thanks to iPhoto integration you can now send images straight from a feed item to your iPhoto library. + +NetNewsWire 3 also adds support for Growl notifications and Twitterific as well as the ability to email the contents of a news item via a new menu command + +There's also a new "flagged items" option in the right hand feeds column which mirrors the functionality of Google Reader's starred items. But NewsGator goes a step beyond Google Reader, letting you store news items as "clippings," which are synchronized with your NewsGator account. + +I've been a NetNewsWire user for years. In fact, up until about a week ago I'd never really used anything else, but then Google Reader launched its offline support and in the course of testing it I got addicted. + +For one thing my browser is always open anyway and using Google Reader means one less application eating up my limited memory. And the "starred items" feature has proved highly addictive so it's good to see something similar in NetNewsWire. + +But the real drawback to NetNewsWire is that it's tied to NewsGator and NewsGator's online interface is, quite frankly, terrible. + +If you're already a NetNewsWire user, I highly recommend the upgrade, but if you're debating between Google Reader and dedicated desktop news client, I don't see much in this release to compel you to plunk down $30. The free version of NetNewsWire, NetNewsWire Lite has not yet been upgraded, but the site claims it should arrive in the very near future.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/nnw1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/nnw1.jpg Binary files differnew file mode 100644 index 0000000..0ef9566 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/nnw1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/nnw2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/nnw2.jpg Binary files differnew file mode 100644 index 0000000..9fb268b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/nnw2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/nnw3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/nnw3.jpg Binary files differnew file mode 100644 index 0000000..268f27b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/nnw3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac1.jpg Binary files differnew file mode 100644 index 0000000..c7130d3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac2.jpg Binary files differnew file mode 100644 index 0000000..a86a42c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac3.jpg Binary files differnew file mode 100644 index 0000000..640ae36 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac4.jpg Binary files differnew file mode 100644 index 0000000..13bfa1e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac5.jpg Binary files differnew file mode 100644 index 0000000..516cdca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.04.07/Wed/oomac5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/AIR.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/AIR.jpg Binary files differnew file mode 100644 index 0000000..c429221 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/AIR.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/AIR.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/AIR.txt new file mode 100644 index 0000000..87a7068 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/AIR.txt @@ -0,0 +1,20 @@ +Adobe has officially unleashed its new cross-OS runtime designed to bring rich internet apps to the desktop. Previously code-named Apollo in the developer preview releases, Adobe is calling the first open beta "[Adobe AIR][1]" with AIR standing for Adobe Integrated Runtime. The final version of Adobe AIR will be released toward the end of the year. + +More than just a formal release to new Adobe AIR is also significantly different than the developer preview version in that it can run HTML/Javascript applications rather than just Flash. The enlarged scope of AIR pits it directly against Microsoft's [Silverlight][4] offering as well as, to a certain extent, the recently released [Google Gears][5]. + +Today's beta is designed to give developers a head start creating applications with AIR and includes some other new features beyond the HTML support. Adobe has also announced a new [Dreamweaver extension][2] to help HTML developers build AIR applications. + +Today's AIR beta also sees the inclusion of PDF support and, like Google Gears, includes a SQLite database allowing developers to easily store data on the client side. + +The AIR runtime environment is a 8MB download from the Adobe site and note that when the final version ships the runtime will not be a requirement. Adobe says that developers will be able to package applications as standalone executable files (which presumably contain the runtime environment much the way Flash movies can also be packaged as executables). + +If you previously the alpha runtime you'll need to delete that before you install the beta, though Adobe says that step won't be necessary with subsequent beta release. Unfortunately Adobe doesn't provide any information on how to go about uninstalling the alpha. + +So far there isn't much in the way of [demo apps][3]. The Adobe site lists an AIR version of its [Kuler color picker app][6], as well as some mapping applications and an RSS reader. EBay is expected to release an AIR-based application in the near future, but for the moment AIR remains largely a developer release. + +[1]: http://labs.adobe.com/technologies/air/ "Adobe Integrated Runtime (AIR)" +[2]: http://labs.adobe.com/wiki/index.php/AIR:Dreamweaver_CS3_Extension "AIR Dreamweaver CS 3 extension" +[3]: http://labs.adobe.com/wiki/index.php/AIR:Applications:Samples "AIR sample applications" +[4]: http://blog.wired.com/monkeybites/2007/04/silverlight_mic.html "Silverlight: Microsoft Launches Flash Competitor" +[5]: http://blog.wired.com/monkeybites/2007/05/google_gears_br.html "Google Gears Brings Offline Functionality To Web Apps" +[6]: http://blog.wired.com/monkeybites/2006/11/kuler_rulers.html "Kuler Rulers!"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/gateswillcrushyou.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/gateswillcrushyou.jpg Binary files differnew file mode 100644 index 0000000..82d0b96 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/gateswillcrushyou.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/googleprivacy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/googleprivacy.txt new file mode 100644 index 0000000..21e7817 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/googleprivacy.txt @@ -0,0 +1,28 @@ +Privacy International has come out with a report listing Google as the worst company on the web when it comes to protecting user privacy. Privacy International (PI) gave Google the [dismay rating][1] based on criteria like failing to provide an expunge option for retained data, failing to adhere to generally accepted privacy practices and failing to provide clear information on the length of time user data is retained. + +Privacy is understandably a touchy subject with users and Privacy International's report is fairly damning which makes for massively bad PR for Google. + +However there's a few things to note about PI's report. First off one of PI's board members is employed by Microsoft. + +While it seems unlikely that one person could influence a [70 person board][2] to skew a report to damage a competitor, it does beg the question why there are no representatives from Google (or for that matter Yahoo or any of the other large internet firms). + +PI has published an [open letter][3] accusing Google of trying to conduct a smear campaign against the organization. According to the letter: + +>Two European journalists have independently told us that Google representatives have contacted them with the claim that "Privacy International has a conflict of interest regarding Microsoft". I presume this was motivated because Microsoft scored an overall better result than Google in the rankings... + +If that claim is in fact true and Google's plan to minimize the bad press from the report is to imply bias, it seems likely to backfire. The fact is Google does collect a fair amount of personal data and has already be repeated criticized for failing to clearly delineate how long it retains that data. + +However it's worth bearing in mind that many other company's are just as bad and possibly worse. + +Danny Sullivan over at Search Engine Land has a [pointed critique][4] of the PI report that offers a point by point analysis of PI's claims about Google. + +Sullivan concludes that "overall, looking at just the performance of the best companies PI found shows that Google measures up well -- and thus ranking it the worse simply doesn't seem fair." + +I tend to agree with Sullivan, however, the truth is even the best company's in PI's report track data at a level that might have some reaching for the tin foil hat. + +So what do you think? Are you worried about Google (or anyone else) knowing what you're doing on the internet? Or are you happy to give Google all your base? Or perhaps more cynically, is information gathering just so rampant that it isn't even possible to fight anymore? Let us know in the comments below. + +[1]: http://www.privacyinternational.org/article.shtml?cmd[347]=x-347-553961 "A Race to the Bottom: Privacy Ranking of Internet Service Companies" +[2]: http://www.privacyinternational.org/article.shtml?cmd[347]=x-347-91571 "About PI - International Advisory Board" +[3]: http://www.privacyinternational.org/article.shtml?cmd[347]=x-347-553964 "An Open Letter to Google" +[4]: http://searchengineland.com/070610-100246.php "Google Bad On Privacy? Maybe It's Privacy International's Report That Sucks"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/leaopard joke.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/leaopard joke.txt new file mode 100644 index 0000000..05a4b8d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/leaopard joke.txt @@ -0,0 +1,7 @@ +<img alt="Leopard" title="Leopard" src="http://blog.wired.com/photos/uncategorized/2007/04/12/leopard.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Steve Jobs WWDC keynote is just a few minutes away and we'll have live coverage for you right here on Compiler so be sure to stay tuned. Predictions have been rampant in the last few days about what his Jobsness will reveal this morning. + +I'll refrain from weighing in myself, but I thought I would point out a prediction I agree with: the brushed metal interface is history. Expect all of leopard's interface to utilize the sort of muted grey windows and toolbars that iTunes and some other apps have switched to in the last year. + +For a humorous spin on where Brushed Metal is headed, have a read through John Gruber's hilarious post over at Daring Fireball entitled: [An Anthropomorphized Brushed Metal Interface Theme Shows Up for the WWDC Preview Build of Mac OS X Leopard][1]. And okay, maybe hilarious is stretching it a bit, but if you're a Mac nerd it should make you smile. + +[1]: http://daringfireball.net/2007/06/brushed_metal_leopard "An Anthropomorphized Brushed Metal Interface Theme Shows Up for the WWDC Preview Build of Mac OS X Leopard"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/msantitrust.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/msantitrust.txt new file mode 100644 index 0000000..aab2bbf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/msantitrust.txt @@ -0,0 +1,22 @@ +Neither Google nor Microsoft are strangers to antitrust accusations, but recently the two have been butting heads more frequently. Last month Microsoft asked the federal government to review Google's proposed merger with DoubleClick and now it seems, according to the New York Times, that Google has been doing the same behind closed doors. + +The New York Times [reports][1] that Google filed a confidential complaint with the Justice Department several months ago asking that the government force Microsoft to alter Vista's desktop search behavior claiming antitrust violations. + +Google claims that Vista's indexing behavior cannot be turned off and alternative service (namely Google Desktop) thus create an additional drag on system resource (making them appear less effective). + +According to The Times: + +>When the Google and Vista search programs are run simultaneously on a computer, their indexing programs slow the operating system considerably, Google contended. As a result, Google said that Vista violated Microsoft’s 2002 antitrust settlement, which prohibits Microsoft from designing operating systems that limit the choices of consumers. + + +Similar charges about Internet Explorer being embedded into the OS are what landed Microsoft in its famous antitrust suit in the 1990s. However the actual suit began with charges that Microsoft bullied Compaq by threatening to terminate of Compaq's Windows license agreement if it bundled the Netscape browser with Windows. + +As a result of that case Microsoft worked with the US government before Vista's release to ensure that no violations were present and the government officials gave Vista the thumbs up. + +Perhaps it's not surprising then that Thomas Barnett, who heads the Justice Department's antitrust division, circulated a memo to state Attorney Generals asking them to reject Google's complaint. + +However, many might be surprised to learn that, as The Times points out, Barnett also happens to be the former vice chair of the antitrust and consumer protection practice group at the DC law firm Covington & Burling -- a firm that represented Microsoft throughout its antitrust suit. + +The Times chocks the memo up to "the political transformation of Microsoft, as well as the shift in antitrust policy between officials appointed by President Bill Clinton and by President Bush." + +[1]: http://www.nytimes.com/2007/06/10/business/10microsoft.html?ex=1339128000&en=43dcd8ca34c7b926&ei=5090&partner=rssuserland&emc=rss "Microsoft Finds Legal Defender in Justice Dept."
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/path1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/path1.jpg Binary files differnew file mode 100644 index 0000000..0757807 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/path1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/pi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/pi.jpg Binary files differnew file mode 100644 index 0000000..f5ec253 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Mon/pi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/findersucks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/findersucks.txt new file mode 100644 index 0000000..d436b17 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/findersucks.txt @@ -0,0 +1,28 @@ +Leopard's New Finder: Yawn Inducing + +The much anticipated preview of OS X 10.5 at yesterday's WWDC ended up heavy on the eye candy and light on the useful features. + +Perhaps the most interesting news from yesterday's WWDC was Steve Jobs' demo of the revamped Finder for Leopard. Finder, OS X's file management application, is perhaps the most neglected application in the OS, and while Finder has gained some additional features, Jobs was clearly pushing the "wow" of the new eye candy. + +Coverflow for the Finder?! Just what users need -- an interface metaphor that mimics the inefficient browsing methods of a 1950s file cabinet. It could just be me, but Coverflow is about as useful as a warm bucket of hamster vomit when it comes to actually finding things. + +But enough of the superfluous eye candy, surely there's something in the new Finder that's worth the price of an upgrade? + +And there are two genuinely useful things in Leopard's new Finder which bring the app, if not fully up to speed, at least closer to being a useful file browser. + +The revamped sidebar with its list of networked drives and saved searches is nice and potentially useful, especially given the number of users who are setting up home networks. + +Quickview is also great especially since Preview remains, after Finder, the next least useful app on the OS. What would be really nice is if Quickview were a slightly lower-level tool that other apps could utilize -- for instance Apple's Mail.app. + +In fact, what would be really nice is if Cocoatech's wonderful Finder replacement, [PathFinder][3], could leverage Quickview since the rest of Leopard's "new" features have been part of Cocoatech's application for at least two years now. + +(Note: It's entirely possible that Quickview *is* available to other apps, so far it's hard to tell from Apple's limited feature details.) + +While Quickview and the revamped Sidebar are welcome additions, they're hardly revolutionary similar features are already available to OS X users through a number of third party apps like PathFinder, [Filegazer][1], [FinderPop][2] and others. + +Leopard photo found at [webshots][4]. + +[1]: http://www.donelleschi.com/filegazer/ "Filegazer" +[2]: http://www.finderpop.com/ "FinderPop" +[3]: http://www.cocoatech.com/pf4/ "PathFinder" +[4]: http://outdoors.webshots.com/photo/1182729638021450172TdYBIe "Leopard Yawning 4"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/gvid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/gvid.jpg Binary files differnew file mode 100644 index 0000000..2a56f7a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/gvid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/iphone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/iphone.txt new file mode 100644 index 0000000..a52bdec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/iphone.txt @@ -0,0 +1,17 @@ +As they say, you can fool some of the people some of the time, but you can't fool programmers, ever. And saying that the iPhone is open to outside apps because developers can build web apps for the iPhone's Safari browser is just plain insulting to the intelligence. + +It might work for mainstream pundits who seem to be eating up the "outside apps for iPhone" headlines, but to try and pass it off to a bunch of developers like those gathered for Apple's annual developer conference seems like PR suicide. Indeed, many Mac developers are less than thrilled with the announcements at the WWDC -- particularly the iPhone. + +The iPhone announcement has raised the ire of many that would generally qualify as Mac "fanboys." John Gruber over at Daring Fireball [pulls no punches on the iPhone][3] "outside apps" announcement: + +>If all you have to offer is a shit sandwich, just say it. Don't tell us how lucky we are and that it's going to taste delicious. + +On the brighter side, at least there is a full-fledged version of Safari on the iPhone. But many other mobile devices already have access to Opera mini and other mobile-optimized browsers so the iPhone may have a long road ahead of it as it competes for market share. + +The [press release for the iPhone announcement][1] seems to indicate that webapps optimized for the iPhone might have some additional functionality, but as Erica Sadun over at O'Reilly [puts][2] it, "if all that the iPhone provides is integration along the lines of a mailto: link, I can't see that as a major step forward." + +And since neither Safari nor the iPhone itself seem to offer offline storage capabilities, web apps aren't going to particularly useful to the power users who ordinarily are Apple's core early adopters. + +[1]: http://www.apple.com/pr/library/2007/06/11iphone.html "iPhone to Support Third-Party Web 2.0 Applications" +[2]: http://www.oreillynet.com/mac/blog/2007/06/on_the_iphone_and_no_developme.html "On the iPhone and no Development" +[3]: http://daringfireball.net/2007/06/wwdc_2007_keynote "WWDC 2007 Keynote News"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/iphone3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/iphone3.jpg Binary files differnew file mode 100644 index 0000000..a41eef3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/iphone3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/leopardyawn.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/leopardyawn.jpg Binary files differnew file mode 100644 index 0000000..79e3052 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/leopardyawn.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/path1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/path1.jpg Binary files differnew file mode 100644 index 0000000..0757807 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/path1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/path2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/path2.jpg Binary files differnew file mode 100644 index 0000000..0f30e82 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/path2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/path3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/path3.jpg Binary files differnew file mode 100644 index 0000000..c2c4883 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/path3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/pathfinder.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/pathfinder.jpg Binary files differnew file mode 100644 index 0000000..8f812d8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/pathfinder.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/pathfinder.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/pathfinder.txt new file mode 100644 index 0000000..2d7e936 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/pathfinder.txt @@ -0,0 +1,22 @@ +Cocoatech has released version 4.7 of PathFinder the company's replacement file browser for OS X's Finder application. In the [critique of Apple's new Finder for OS X 10.5][3] I mentioned that many of the Finder features due in Leopard are already available in PathFinder and the new release brings even more to the table (screenshots after the jump). + +[PathFinder 4.7][3] brings numerous bug fixes and small improvements as well as some new features like support for Subversion, which is thus far experimental and Cocoatech advices caution about using it with mission critical documents. + +Other new features include: + +>* Redesigned Get Info window which allows get summary info (Cmd-Option-I) +* New Subversion plugin (experimental - use with caution) that provides basic svn functionality (status, update, commit, diff, add) +* Redesigned Applications Launcher - press F8 or see the Go menu +* Updated the Terminal to the latest iTerm code: new interface; drag reorder tabs in terminal; drag tab out of window to create new window; many other new features. Terminal preferences have been moved and can be now found in the terminal window (“Settings” toolbar button). +* Added the ability to preview Safari .webarchive files +* You can now preview and play media files as well as preview PDF thumbnails in the last column of column view + +As a longtime PathFinder user, I have to say the most exciting thing on that list is refinements to the built-in iTerm code. The new interface is much more usable and the ability to reorder tabs brings the terminal window inline with the rest of the application. + +For more details on the various smaller improvements and bug fixes, check out the [release notes for version 4.7][1]. + +PathFinder is $35 for a new copy and $18 for an upgrade. Leopard support is already enabled. + +[1]: http://www.cocoatech.com/changelog.php "Path Finder 4.7 changelog" +[2]: http://www.cocoatech.com/news/archives/2007/06/11/ "Path Finder 4.7 released" +[3]: http://blog.wired.com/monkeybites/2007/06/os_x_leopards_n.html "OS X Leopard’s New Finder: Yawn Inducing"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/rss.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/rss.jpg Binary files differnew file mode 100644 index 0000000..c62b520 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/rss.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/rss.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/rss.txt new file mode 100644 index 0000000..6712570 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/rss.txt @@ -0,0 +1,9 @@ +Looking for the best RSS reader for your OS? Want to know what online options are available? Looking for add-ons to trick out your feeds? Curious what your RSS reader options are for mobile devices? + +Well, to answer those questions and more Stan Schroeder over at Mashable has [assembled][1] what might well be the largest collection of RSS links on the web. + +The list covers all the questions listed above plus has a round up of tips and techniques for optimizing your RSS reader and as well as resources for content publishers looking to deliver more with their feeds. + +It could be a bit overwhelming for RSS newcomers and perhaps could perhaps have been organized better (how about the tutorials and tip at the top of the article), but it is an impressive effort regardless and deserves a look even from those who feel they have RSS down pat. + +[1]: http://mashable.com/2007/06/11/rss-toolbox/ "The Ultimate RSS Toolbox - 120+ RSS Resources"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/safari.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/safari.txt new file mode 100644 index 0000000..470fbe6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Tue/safari.txt @@ -0,0 +1,14 @@ +Cult of Mac's Leander Kahney has an article this morning with the headline: [Who in Their Right Mind Would Run Safari on Windows][1]? AS it turns out there's an easy answer: Hackers. It took all of two hours for researchers to find 6 bugs in the Windows version of Safari, 4 DoS attacks and 2 remote code execution bugs. + +Now granted, Safari is a beta and some bugs are to be expected, but six in one afternoon does not bode well for Apple's second foray into Windows software. + +While one of the bugs comes from a [security consulting company][3] who will not divulge the details until Apple has sufficient time to patch the flaws, Thor Larholm, a Danish hacker, has [detailed the workings][2] behind one of the remote code injection flaws. + +To be fair the exploit is not entirely Safari's fault since it leverages some Windows vulnerabilities to do its dirty work, but most of the blame can go to Safari for failing to properly validate URL arguments before passing them on to the command line. + +Still, six exploits in two hours doesn't exactly make you want to rush out and download a copy does it? + +[2]: http://larholm.com/2007/06/12/safari-for-windows-0day-exploit-in-2-hours/ " Safari for Windows, 0day exploit in 2 hours" + +[1]: http://www.wired.com/gadgets/mac/commentary/cultofmac/2007/06/cultofmac_0612 "Who in Their Right Mind Would Run Safari on Windows?" +[3]: http://erratasec.blogspot.com/2007/06/niiiice.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/Google.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/Google.txt new file mode 100644 index 0000000..4f45b25 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/Google.txt @@ -0,0 +1,21 @@ +Google has quietly updated its Custom Search Engine tools, allowing users to create dynamic search engines that update searched domains on the fly. When you add a URL to your custom search engine, [the new tools][4] will also search any linked sites found on the page. + +While it was possible to achieve this back when [Google launched the Custom Search Engine tools][2], you would have had to add each additional domain by hand and then update it every time you updated your page. + +With the update Google does the hard work for you, spidering out your search to include any domain linked from your URL and it periodically updates itself to discover any additional URLs added to the page. + +As the [Google Blog post][1] suggests, this is especially handy for people with large directories of links, for instance, a blog roll: + +>if you have a blog or a directory-like site and don't feel like listing all of the URLs you want to search across, you can leave the work to us. With this new feature we'll automatically generate and update your CSE for you. + +The feature should be handy both for bloggers look to create an easy "other sites" feed or perhaps creating custom search engine that mines a bit deeper. + +Say, for instance, you're a blogger looking for more background a story, you can create a search engine that starts with your favorite link directory and then expands to search any pages linked to from that site. This allows you to potentially locate the source of a story rather than just the link scraper sites that bring it to your attention. + + +[via [Google Operating System][3]] + +[1]: http://googlecustomsearch.blogspot.com/2007/06/custom-search-on-fly.html "Custom Search on the fly" +[2]: http://blog.wired.com/monkeybites/2006/10/google_announce_1.html "Google Announces Customized Search Engines" +[3]: http://googlesystem.blogspot.com/2007/06/super-powerful-custom-search-engines.html "Super-Powerful Custom Search Engines" +[4]: http://www.google.com/coop/cse "Google Coop: Custom Search Engines"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/coop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/coop.jpg Binary files differnew file mode 100644 index 0000000..faf7ad4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/coop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/flickr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/flickr.txt new file mode 100644 index 0000000..175b036 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/flickr.txt @@ -0,0 +1,14 @@ +Flickr went multi-national yesterday, adding seven additional languages: French, German, Italian, Korean, Portuguese, Spanish and Traditional Chinese. + +[The update][1] hasn't changed the layout of the site at all, in other words it's still one large site with all the photos in a single system, but you may notice an additional param in the urls specifying your default language. + +To set your default language just login and you'll see links at the bottom of almost any page that will set your language preferences (via a cookie). + +In addition to main site language preferences, the Flickr Forum and Help by Email features have also gained international language support and there are new tools to create localized descriptions of your groups. + +As you might expect the Flickr uploader also features additional language support. So far an updated Windows uploader is available with the Mac version said to be arriving soon. + +In all the new language support is a welcome addition and makes those rotating welcome messages on your Flickr homepage less of an empty gesture. + + +[1]: http://blog.flickr.com/en/2007/06/12/flickr-international-launch/ "Bienvenue! Welcome! 歡迎! Willkommen! Benvenuto! 반갑습니다! Seja bem-vindo(a)! Bienvenido!"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/ghack.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/ghack.jpg Binary files differnew file mode 100644 index 0000000..96b0a6b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/ghack.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/ghack.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/ghack.txt new file mode 100644 index 0000000..dd995d8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/ghack.txt @@ -0,0 +1,16 @@ +Google Video is exposing your username and password when you post videos through the provided webform on Google Video. + +It would seem that [Google Video][2] sends your username and password *as cleartext* over the http protocol rather than using the more secure https. This means that nearly anyone can grab your login information when you share videos or post them to your MySpace page or blog. + +The issue was reported earlier this morning on [Search Engine Roundtable][1], which explains how to replicate the hack. + +>Want to see for yourself? First, install the [Live HTTP Headers Firefox add-on][3]. Then, go to Google Video. When you click on Post to MySpace, you get a link [like this][4] in a popup window. On this window where you input your username and password, go to the Firefox Tools menu > Live HTTP Headers. What you see is your username and password in plain text. + +SERoundtable demonstrates with MySpace, I followed their instructions, but ran it against my Typepad account and it does indeed reveal the username and password (blacked out in the screenshot below). + +Hopefully Google will address the problem in the very near future since it's a very amateur web programming mistake, but there's no telling how many people might be harvesting the data in the mean time. + +[1]: http://www.seroundtable.com/archives/013820.html "Google Video Flaw Raises Privacy Concerns by Exposing Usernames and Passwords" +[2]: http://video.google.com/ "Google Video" +[3]: https://addons.mozilla.org/en-US/firefox/addon/3829 "Live HTTP headers" +[4]: http://video.google.com/blogpost?docid=7274049881792333623&siteindex=3
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/greader.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/greader.jpg Binary files differnew file mode 100644 index 0000000..90a364c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/greader.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/greader.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/greader.txt new file mode 100644 index 0000000..8988bb7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/greader.txt @@ -0,0 +1,17 @@ +Lack of search remains the ban of many a Google Reader fan, but with the introduction of the new offline mode, Blogger Raúl Ochoa has come up with a [Greasemonkey script][2] that provides a stopgap solution until Google can get its act together. + +There's a couple of serious limitations, namely that you'll need a Greasemonkey and Google Gears capable browser and the search is limited to the last 2000 items since that's all that Google Gears indexes. + +But it's definitely the easiest solution I'm aware of for adding (albeit limited) search capabilities to Google Reader. + +And Ochoa says he's looking into ways to use a true fulltext search (at the moment the search relies on a "LIKE" query) as well as some way to "maintaining a database table with all the Google Reader items, and not only the ones that are synchronized with Google Reader." + +Perhaps, Google will someday figure out a way to add search to Google Reader, but in the mean time if you're desperate for a solution this one works. + +Note though that Ochoa's script doesn't work with [Jon Hicks' Google Reader theme][3]. The search box shows up, but won't accept input. + +[found via [Lifehacker][1]] + +[1]: http://www.lifehacker.com/software/featured-greasemonkey-user-script/add-search-to-google-reader-with-google-reader-gears-search-268151.php "Add search to Google Reader with Google Reader Gears Search" +[3]: http://blog.wired.com/monkeybites/2007/04/make_google_rea.html "Make Google Reader More Mac-like" +[2]: http://rau1.com/blog/2007/06/11/google-reader-gears-search-english "Google Reader Gears Search"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/gvid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/gvid.jpg Binary files differnew file mode 100644 index 0000000..2a56f7a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/gvid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/mspatches.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/mspatches.txt new file mode 100644 index 0000000..923ac31 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/mspatches.txt @@ -0,0 +1,14 @@ +Yesterday was Microsoft's patch Tuesday and the company issued a number of security updates for both Windows Vista and XP users. June's release contains 6 new bulletins, 4 of which are listed as critical. + +Together [the six patches][1] fix fifteen vulnerabilities found in a variety of Windows programs including Internet Explorer, Outlook Express, Windows Mail and Windows Vista. + +While previous patches have been issued for Vista, yesterday's release marks the first time Microsoft has had to patch a flaw introduced by code in Vista. Pervious Vista patches applied to problems with legacy code. The [MS07-032 update][2] applies to Vista systems only and addresses a vulnerability in setting Access Control Lists, which could allow "information disclosure," as the Microsoft advisory puts it. + +Perhaps the most serious flaw in June's batch of patches is a fix for a critical flaw in the SSL libraries used by Windows, which can be exploited via IE. The SSL vulnerability also affect non-Microsoft browsers like Firefox and Opera which call the SSL libraries included in the OS. + +To update your system turn on the automatic update feature or head to the Microsoft Update site and downloading the patches by hand. + + + +[1]: http://blogs.technet.com/msrc/archive/2007/06/12/june-2007-monthly-security-bulletin-release.aspx "June 2007 Monthly Security Bulletin Release" +[2]: http://www.microsoft.com/technet/security/Bulletin/MS07-032.mspx "Vulnerability in Windows Vista Could Allow Information Disclosure" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho-logo.jpg Binary files differnew file mode 100644 index 0000000..2e605b2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho.txt new file mode 100644 index 0000000..b68897d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho.txt @@ -0,0 +1,34 @@ +Zoho just rolled out a significant upgrade to its database tool, Zoho Creator, which features a much improved interface complete with drag-and-drop functionality and a new script building tool that allows users to create complex queries without learning the Deluge script language. + +[Creator 2.0][1], as the company calls the new version, is aimed at providing MS Access-like database functionality to users who may not understand all the intricacies of relational database management. + +The new point-and-click and drag-and-drop actions do indeed make creating forms for data input fairly easy, though Zoho's claims about the new drag-and-drop script editor may be slightly exaggerated. + +Yes it's easy to add code to process your form data and perform other actions, but it still helps to have a general understanding of Zoho's Deluge scripting language. + +Luckily Zoho has some nice online help materials and tutorials. + +And don't think that just because Zoho Creator 2.0 has added a pretty new interface that the application lacks flexibility, there's still plenty of power under the hood and you can always write scripts by hand to accomplish more complex tasks. + +Zoho Creator 2.0 also adds some additional new features that bring it up to speed with other apps in the Zoho suite, like the ability to share applications with other Zoho users, new ways embed applications in your website and the ability to export your data in multiple formats. + +To mark the release Zoho has posted the following video which gives users an overview of the new features and demonstrates how to get started using the app: + +<embed src="http://www.vimeo.com/moogaloop.swf?clip_id=210220" quality="best" scale="exactfit" width="400" height="300" type="application/x-shockwave-flash"></embed> + + +Setting up a new form: + +Adding new fields to your database input form is drag-and-drop simple: + +Once form elements are added, users can edit the elements values, attach scripts and more + +The new script editing interface, also with drag-and-drop functionality. + +Interface for editing script elements. + +Scripting in "free-flow" mode allows you to write your own scripts if you're familiar with the language already. + +[1]: http://creator.zoho.com/index.jsp?targetURL=%2Fhome.do "Zoho Creator" + +[3]: http://creator.zoho.com/collateral/script_builder/Deluge-Script.html "Intro to Deluge scripting"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho1.jpg Binary files differnew file mode 100644 index 0000000..670d41e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho2.jpg Binary files differnew file mode 100644 index 0000000..fa704d7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho3.jpg Binary files differnew file mode 100644 index 0000000..364a7f1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho4.jpg Binary files differnew file mode 100644 index 0000000..1ecc3d5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho5.jpg Binary files differnew file mode 100644 index 0000000..4ff1bd2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho6.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho6.jpg Binary files differnew file mode 100644 index 0000000..8757bab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.11.07/Wed/zoho6.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/amazonmacosx.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/amazonmacosx.txt new file mode 100644 index 0000000..16eb1ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/amazonmacosx.txt @@ -0,0 +1,7 @@ +Despite the fact that there's no firm release date yet, Amazon is [already pre-selling][1] Apple's forthcoming OS X Leopard. Mac fans can place their orders now for $129 and Amazon is offering its price guarantee so if the OS goes on sale (unlikely) between now and whenever it is released, you're covered. + +For more info on some of the features in Leopard check out our review and for the eye candy, have a look at the [photo gallery of the beta version][1] that was handed out at last week's WWDC (Apple asked us to pull some of the shots from the gallery, however, a little bird told me that Google's search page has something called "cached" I have no idea what it does, I'm just saying, [it exists][3]). + +[1]: http://www.amazon.com/Apple-Mac-Version-10-5-Leopard/dp/B000FK88JK/ "Apple Mac OS X Version 10.5 Leopard" +[2]: http://blog.wired.com/monkeybites/2007/06/screenshots_mac.html "Screenshots! Mac OS X Leopard" +[3]: http://www.google.com/search?q=Leopard+site%3Ahttp%3A%2F%2Fblog.wired.com%2Fmonkeybites%2F&ie=utf-8&oe=utf-8&aq=t
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/del.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/del.jpg Binary files differnew file mode 100644 index 0000000..7e6f21a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/del.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/del.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/del.txt new file mode 100644 index 0000000..d76fe7a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/del.txt @@ -0,0 +1,14 @@ +A site by the name of 6pli has released a [really nice del.icio.us tag visualization tool][1]. The flash-based visualizer provides 3-D views of del.icio.us tags and allows you to browse through a web of interconnected del.icio.us links. + +To get started just click one of the demo apps on the start page and then hit the "visualize" link at the bottom of the box. + +One part six-degrees-of-separation and one part search tool, the 6pli browser is a nice way to visualize how del.icio.us bookmarks fit together. + +To the right of the visual node view you'll see a list of the actual links, which makes it easy to not just explore, but also jump to the referenced pages. Mouse over a node and that link title will be highlighted in the right-hand side list and show the url as well as additional tags. + +The 6 pli del.icio.us visualizer is listed as an alpha project, but I had no problems with it in Firefox 2. + +[via [Digg][2]] + +[1]: http://www.sixpli.com/ "del.icio.us visualizer" +[2]: http://digg.com/design/Visualizing_data_is_oh_so_del_icio_us
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/safari3.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/safari3.txt new file mode 100644 index 0000000..856565c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/safari3.txt @@ -0,0 +1,14 @@ +After a being publicly dressed down for security flaws, Apple has released an update to its Safari 3 browser for OS X and Windows which patches three serious security flaws. + +[The Safari 3.0.1 update][1], which was released last week, fixes three flaws in the Windows version of the browser including the very serious bug [we mentioned][2] when the initial version was released. + +Although the first beta of Safari for Windows probably could have used some extra testing, at least Apple was able to turn around an update rather quickly. Thor Larholm, who discovered one of the more serious bugs that the update fixes, says that the quick turnaround time is a positive sign for Apple's beleaguered entry into the Windows browser market. + +"I want to congratulate Apple for fixing a serious security vulnerability in such a short time frame," Larholm [writes on his blog][3], "their usual response time can be counted in weeks to months." + +Still there are other known flaws which have yet to be patched and LArholm suspects that a variation on his initial attack may still be possible. "Quotes and whitespace are now filtered on any requests to external URL protocol handler applications," he notes, "but other characters are still being passed without filtering so I expect to find some variations pretty soon." + + +[1]: http://www.apple.com/safari/download/ "Download Safari 3" +[2]: http://blog.wired.com/monkeybites/2007/06/safari_for_wind.html "Safari For Windows: Six Security Exploits In One Afternoon" +[3]: http://larholm.com/2007/06/14/safari-301-released/ "Safari 3.01 released"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/safariinterface.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/safariinterface.jpg Binary files differnew file mode 100644 index 0000000..9bd3924 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/safariinterface.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/shuttleworth.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/shuttleworth.txt new file mode 100644 index 0000000..cc4f8ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/shuttleworth.txt @@ -0,0 +1,28 @@ +With the flurry of Microsoft-Linux vendor patent deals in recent weeks, we asked you to vote on who you thought would be next to join the ranks of [Novell][5], [Linspire][4], and [Xandros][3] all of which have signed deals with Microsoft which provide patent protection. + +"Not Ubuntu" was the overwhelming [response to our poll][1] and it would seem that Compiler readers are a savvy bunch since Mark Shuttleworth [recently announced on his blog][2] that neither Canonical nor the Ubuntu project are interested in signing any deals with Microsoft. + +Although Shuttleworth says he has not spoken formally with the Ubuntu Community Council, he rejects Microsoft's patent claims on his blog and says, "we have declined to discuss any agreement with Microsoft under the threat of unspecified patent infringements." + +>Allegations of "infringement of unspecified patents" carry no weight whatsoever. We don't think they have any legal merit, and they are no incentive for us to work with Microsoft on any of the wonderful things we could do together. A promise by Microsoft not to sue for infringement of unspecified patents has no value at all and is not worth paying for. It does not protect users from the real risk of a patent suit from a pure-IP-holder (Microsoft itself is regularly found to violate such patents and regularly settles such suits). People who pay protection money for that promise are likely living in a false sense of security. + +Shuttleworth does not however outright reject Microsoft's claims that it wants to improve "interoperability" between the two OSes. "I welcome Microsoft's stated commitment to interoperability between Linux and the Windows world - and believe Ubuntu will benefit fully from any investment made in that regard," he writes. + +Shuttleworth doesn't rule out the possibility of a collaborative deal between the Ubuntu project and Microsoft. "I have no objections to working with Microsoft in ways that further the cause of free software, and I don't rule out any collaboration with them, in the event that they adopt a position of constructive engagement with the free software community." + +However Shuttleworth also calls out OpenXML in particular as an example of Microsoft interoperability that won't be coming to Linux. + +>The Open Document Format (ODF) specification is a much better, much cleaner and widely implemented specification that is already a global standard. I would invite Microsoft to participate in the OASIS Open Document Format working group, and to ensure that the existing import and export filters for Office12 to Open Document Format are improved and available as a standard option. + + + + + + + +[1]: http://blog.wired.com/monkeybites/2007/06/vote_who_will_s.html "Vote: Who Will Sign with Microsoft Next?" +[2]: http://www.markshuttleworth.com/archives/127 "No negotiations with Microsoft in progress" +[3]: http://blog.wired.com/monkeybites/2007/06/xandros_joins_n.html "Xandros Joins Novell In Microsoft Ménage à Trois" +[4]: http://news.wired.com/dynamic/stories/M/MICROSOFT_LINSPIRE?SITE=WIRE&SECTION=HOME&TEMPLATE=DEFAULT "Microsoft Signs Another Linux Deal" +[5]: http://blog.wired.com/monkeybites/2007/05/the_be_very_afr.html "The 'Be Very Afraid' Tour: Microsoft's Patent Strategy Explained" +[6]: http://blog.wired.com/monkeybites/2007/01/more_on_microso.html "OOXML"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/youtuberemixer.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/youtuberemixer.txt new file mode 100644 index 0000000..0e53da9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/youtuberemixer.txt @@ -0,0 +1,28 @@ +Last Friday YouTube [quietly launched][3] a new online video editing tool dubbed Remixer. Remixer uses Adobe's flash-based Premiere Express web app and is nearly identical to the video editing tools launched by Photobucket earlier this year. + +In fact there's so little difference, [our earlier review will suffice][4] to give you an overview of what Remixer offers. In brief: very little aside from back-button headaches. Combine that with the fact that Photobucket Remixer launched its version way back in February and you can see why we're underwhelmed. + +While the new editing tools may appeal to those shooting video with their cellphones or other sources that make it easy to upload first and edit later, most operating systems ship with some sort of video editing package these days and frankly even the most basic desktop app is going to blow YouTube Remixer out of the water. + +Along with the Remixer YouTube also launched a [mobile version of the site][2]. The slimmed down mobile interface features video selections in streamed 3GP. Hitting the site on your mobile will display a prominent warning: + +>YouTube Mobile is a data intensive application. We highly recommend that you upgrade to an unlimited data plan with your mobile service provider to avoid additional charges. + +Much as I would like to test YouTube Mobile, I don't have an unlimited data plan, so I'll differ to the folks over at [Gizmodo][1] who found that while the initial offering is fairly impressive, there are some drawbacks: + +>* No way to upload videos via the page, but you can still upload via SMS, as always. +* Not all videos on the main page are online, and there's no discernible pattern to what you'll find. +* The files come in .3gp streamed format. You can't download them to save. +* Video res is downscaled compared to the main site, but impressive. +* Buffering takes about 10 seconds or so. These files aren't small, and downloading them and playing them is likely to destroy your battery life. +* Sorry iPhone, these videos are too beefy for EDGE. + +Gizmodo posted the following video demo as well. + + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/UPhq0EPMmNQ"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/UPhq0EPMmNQ" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://gizmodo.com/gadgets/video/a-tour-of-mobile-youtube-269525.php "A Tour of Mobile YouTube" +[2]: http://m.youtube.com/ "YouTube Mobile" +[3]: http://www.youtube.com/blog?entry=vX4dQrLrds4 "YouTube: Site Update" +[4]: http://blog.wired.com/monkeybites/2007/02/photobucket_deb.html "Photobucket Debuts New Video Remixer"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/ytubere.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/ytubere.jpg Binary files differnew file mode 100644 index 0000000..5459667 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/ytubere.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/ytubere1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/ytubere1.jpg Binary files differnew file mode 100644 index 0000000..8fb4ddf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/ytubere1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/ytubere2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/ytubere2.jpg Binary files differnew file mode 100644 index 0000000..0054ad2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Mon/ytubere2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/ZZ5B12751A.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/ZZ5B12751A.jpg Binary files differnew file mode 100644 index 0000000..149cd5b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/ZZ5B12751A.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/appleupdate.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/appleupdate.txt new file mode 100644 index 0000000..25e6db9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/appleupdate.txt @@ -0,0 +1,14 @@ +Apple has released an small, incremental update for OS X. Mac OS X 10.4.10 patches a security flaw and fixes some issues with Bluetooth and USB, as well as adding RAW image support for eight new cameras. Users can grab the update via the Software Update pane or stright from [the Apple download site][1]. + +The security issue addressed in the update relates to the IPv6 addressing system. Apple's [short security note][2] says the following: + +>A design issue exists in the IPv6 protocol's handling of type 0 routing headers. Depending on network topology and capacity, the reception of specially crafted IPv6 packets may lead to a reduction in network bandwidth. This update addresses the issue by disabling the support for type 0 routing headers. This issue does not affect systems prior to Mac OS X v10.4. + +Other changes in 10.4.10 include fixes for corruption problems in DNG images and some reliability improvements for external USB hard drives. The additional camera RAW support adds profiles for Panasonic, Leica, Fuji, Nikon, and Canon cameras. + +There is also a fix for a decimal rounding error which Apple says affects "some applications," but no further details are available. + +Apple-heads interested in trivia will note that this is the first time Apple has released a tenth upgrade for its OS, the rest have stopped at 9 or lower before being replaced by a whole new version. + +[1]: http://www.apple.com/support/downloads/ "Apple Downloads" +[2]: http://docs.info.apple.com/article.html?artnum=305712 "About the security content of the Mac OS X 10.4.10 Update"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/iphoneporn.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/iphoneporn.txt new file mode 100644 index 0000000..ca5a619 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/iphoneporn.txt @@ -0,0 +1,11 @@ +Apple continues its strip tease of iPhone features with some new details [posted to the Apple site][1]. New videos demonstration multi-tasking features, the multi-touch interface, the OS X underpinnings, the wireless capabilities (EDGE, Wi-Fi and Bluetooth) and the different sensors that enable the rotating screen. + +Highlights include the view of the options that appear on the screen while making a phone call and the seemingly seamless switching between phone, email and photo modes. + +There's are also a number of [new photos in the iPhone gallery][2] including some of the dock and headphones. + +If your iPhone lust knows no bounds this probably isn't gonna cut it, but at least there's a little something to tide you over until June 29th. + + +[1]: http://www.apple.com/iphone/technology/ "iPhone Technology" +[2]: http://www.apple.com/iphone/gallery/index.html "iPhone Gallery"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/opensource.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/opensource.txt new file mode 100644 index 0000000..6827a73 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/opensource.txt @@ -0,0 +1,46 @@ +The Open Source Initiate (OSI), overseer of open source licenses, has decided to go on the offensive against companies and services who abuse the term "open source" to promote products and software that do not use an OSI approved license. + +Michael Tiemann, President of the OSI, [writes in a post on the ISO site][1] that the changing landscape of software development combined with deceptive practices by vendors necessitate a more stringent policy. + +>The topic of "what is really open source and what is not?" has been simmering for quite some time. And until last year the question was trivial to answer, and the answer provided a trivial fix. But things have changed, and it's time to regain our turf. + +As Tiemann outlines the problems and abuses of the term "open source," he points the finger primarily at vendors who claim to offer open source software, but use licenses that don't have ISO approval. + +According to Tiemann, the last year and half has seen vendors move from correcting ignorance or misunderstandings to outright hostile responses to the ISO. + +The biggest challenge many vendors lob at the ISO is, predictably, "our definitions of open source are every bit as valid as yours." + +For the record, Tiemann has no problem with non-open-source software. "If people want to try something that's not open source, great," he writes, but he goes on to add that they should "call it something else, as Microsoft has done with Shared Source." + +As the overseer of open source licenses, the ISO has stringent definition of the rights an open source license must guarantee as well as the control it can exercise. Here's the basic summary, but [read through the full definitions on the ISO site][2] for a more thorough explanation of each item. + + +>1. Free Redistribution +2. The program must include source code, and must allow distribution +in source code as well as compiled form. +3. The license must allow modifications and derived works +4. Integrity of The Author's Source Code +5. No Discrimination Against Persons or Groups +6. No Discrimination Against Fields of Endeavor +7. The rights attached to the program must apply to all to whom +the program is redistributed without the need for execution of +an additional license by those parties. +8. License Must Not Be Specific to a Product +9. License Must Not Restrict Other Software +10. License Must Be Technology-Neutral + +[For a complete list of licenses that meet these terms, [see the ISO list][3]] + +In the past the ISO has dealt with companies who use the term open source to describe proprietary software by correcting them with letters and other "polite" means, but that may be changing. + +The ISO is not planning to take vendor abuses lying down. + +Tiemann thinks that he and the ISO have "been remiss in thinking that gentle but firm explanations would cause [vendors] to change their behavior." + +He goes on to suggest that some of the misinformation about open source comes from the press. "I have also not chased down and attempted to correct every reporter who propagates these misstatements." + +Tiemann believes that if the ISO and the community in general doesn't start taking the initiative, open source customers, who find themselves betrayed by unscrupulous vendors, will come to distrust the community as a whole. "If we don't respond... we are betraying the community." + +[1]: http://www.opensource.org/node/163 "Will The Real Open Source CRM Please Stand Up?" +[2]: http://opensource.org/docs/osd "The Open Source Definition" +[3]: http://opensource.org/licenses/alphabetical "Licenses by Name"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/osilogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/osilogo.jpg Binary files differnew file mode 100644 index 0000000..423c1e5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/osilogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/sling.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/sling.txt new file mode 100644 index 0000000..6d7dc9e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/sling.txt @@ -0,0 +1,14 @@ +<img alt="Sling" title="Sling" src="http://blog.wired.com/photos/uncategorized/2007/03/28/sling.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Sling Media has announced that its SlingPlayer Mobile client is now compatible with Microsoft’s Windows Mobile 6 OS, which means users can now "sling" their content to any mobile device running Windows Mobile 5 or 6 as well as Palm OS devices. + +Since Windows Mobile 6 supports wide screen viewing, Sling users will have access to larger picture sizes on v6 devices. + +The new version of SlingPlayer Mobile can be [downloaded][1] from Sling's site for $30 or if you just want to test the waters, there's a free 30-day trial available. Note that you'll need to have a Slingbox and some sort of wireless or 3G network, but the service is not tied to any specific wireless provider. + +There are also localized version for Canadian and UK customers. + +If you'd like to upgrade your Sling Player for Windows Mobile 5 to the 6 version, you'll need to [request a new registration key][2]. + +[1]: http://us.slingmedia.com/page/downloads.html "Sling Mobile" +[2]: http://support.slingmedia.com "Sling Support" + + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/yahoo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/yahoo.txt new file mode 100644 index 0000000..cbeaed0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/yahoo.txt @@ -0,0 +1,19 @@ +Yahoo is set to roll out an upgrade to its free mobile suite of services with improved search, e-mail and photo management as well as other enhancements. Dubbed [Yahoo Go for Mobile 2.0][1], the service has been in a test phase since its introduction back in January, but this Friday Yahoo will drop the test mode and make the service available to anyone in the U.S. + +Along with the official version for U.S. customers Yahoo will roll out a beta version in 13 additional countries. + +Yahoo Go for Mobile 2.0 is free to download and the company says the service will support more than 200 different mobile phones at launch and will add 200 more by the end of the year. + +Improvements in the new version include speed boosts as well as some new features like support for more attachments in Yahoo Mail (including PDF, Word, PowerPoint and Excel documents) and access to folders within Yahoo Mail. + +Yahoo is also touting improvements to its [OneSearch Mobile][3] tool as well as the mobile mapping features. Mobile 2.0 now supports satellite and hybrid map views and includes real-time traffic information and GPS services on devices that support it. + +Curiously absent from Yahoo's preview announcement is any mention of the iPhone, but if you're a heavy Yahoo user on your current device the mobile upgrade should be good news. + +And we'll be sure to give Yahoo's claims some real-world testing when the new software is available. If you'd like to check out the hype, Yahoo has posted a [video intro][2] that gives an overview of the service. + + + +[1]: http://mobile.yahoo.com/go "Yahoo Mobile 2.0" +[2]: http://mobile.yahoo.com/go/tour +[3]: http://blog.wired.com/monkeybites/2007/03/yahoo_onesearch.html "Yahoo OneSearch Goes Mobile"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/yahoogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/yahoogo.jpg Binary files differnew file mode 100644 index 0000000..d25c84c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Thu/yahoogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/adobedigitaled.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/adobedigitaled.txt new file mode 100644 index 0000000..16e619c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/adobedigitaled.txt @@ -0,0 +1,23 @@ +Adobe has released Adobe Digital Editions 1.0, a new hybrid on/offline application for acquiring, managing and reading ebooks and other digital publications. With built-in support for Adobe’s PDF format as well as additional content like Flash and eBook formats, Digital Editions could end up becoming a slick replacement for the free Adobe Acrobat Reader. + +The application is lightweight, only 3 MB and has a [very nice Flash-based installer on the Adobe site][1] which makes for an ultra simple install. + +Feature wise the 1.0 release is fairly basic. Books, PDFs and other materials are added to your library by finding them on your hard drive. You can also download items through libraries and other ebook lenders and retailers, but the integration with these services is somewhat limited. + +Were Digital Editions able to directly download new ebooks from within the application, I'd be willing to give it high marks. However, at the moment that isn't possible (at least I couldn't find a way to do it). + +Once you've added all your books to your shelf (if you're looking for some free ebooks to play with, check out the [Adobe sample library][2]), the options mirror those of other ebook cataloguing applications on the market (we liked [Papers on the Mac][3] a while back). You can view library items by cover or as a list and items are sorted into a main view, borrowed items, purchased items and recently read items. + +Browsing and reading books is easy, though a full screen reading mode would be nice. There are a variety of reading modes, single page, facing pages and a zoom mode. The zoom mode provides a nice little windowpane for controlling the zoom level and dragging your way through the page. + +Users can add bookmarks, complete with notes and it's dead simple to print out books if you prefer to read them in physical form. + +While Digital Editions is a nice offering and performs well, it lacks any real killer feature to separate it from the pack of eBook organizers that we've tested. However, since the eBook game is just getting off the ground we'll be keeping an eye on Digital Editions to see where Adobe goes with it. + +Already Adobe is planning to release a mobile version and, if it's anything like the desktop version, it will probably be the best option for PDFs on mobile devices. Adobe also says it has plans for eBook reading devices and Sony will reportedly be embedding Digital Editions in its portable reader product line. + +Ebooks may still have a way to go before they hit the mainstream, but Adobe claims that 300,000 users downloaded Digital Editions during the initial public beta phase so perhaps the day of the ebook is closer than we think. + +[1]: http://www.adobe.com/products/digitaleditions/ +[2]: http://adedemo.com/ +[3]: http://blog.wired.com/monkeybites/2007/03/papers_a_pdf_br.html "Papers: A PDF Browser"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/blurb.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/blurb.jpg Binary files differnew file mode 100644 index 0000000..c4b46a1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/blurb.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook1.jpg Binary files differnew file mode 100644 index 0000000..9932e65 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook2.jpg Binary files differnew file mode 100644 index 0000000..28f651d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook3.jpg Binary files differnew file mode 100644 index 0000000..c9f45e5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook4.jpg Binary files differnew file mode 100644 index 0000000..cf7a41b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/ebook4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/flickrblurb.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/flickrblurb.txt new file mode 100644 index 0000000..f476df3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/flickrblurb.txt @@ -0,0 +1,16 @@ +Flickr and Blurb are partnering to provide Flickr users with a easy way to create DIY photo books. No official announcement has been made yet by either company, but I spoke to Eileen Gittins, founder and CEO of [Blurb][1], and she confirmed the deal and says formal announcements will be made in the very near future. + +According to Gittins, Blurb will be the new exclusive provider of photo books for [Flickr][2]. Blurb, a DIY book printing service has added a Flickr widget to its desktop client which grabs the users photostream. + +"We built a 'slurper' that automates grabbing the hi-res version of people's photos for book printing," says Gittins. + +Of course, users could always create a photo book using Blurb and their Flickr images, but the new tools make the process infinitely easier thanks to the Blurb client integration with Flickr. + +QOOP, another Flickr partner that currently provides photo books for Flickr will reportedly continue to provide other services like calendars or posters. + +Blurb is also set to announce that they have a new printing partner in the Netherlands. "We're now printing and shipping directly to our customers in Europe," says Gittins who also added that "in about two weeks time, our site will be updated with pricing in Euros and Pounds." + +Gittins says the pricing won't be changing, just the localization of the currency. The local printing should speed delivery of not just Flickr photo books, but all European orders placed through Blurb. + +[1]: http://www.blurb.com/home/1/ "Blurb" +[2]: http://flickr.com/ "Flickr"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/gadvanced.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/gadvanced.jpg Binary files differnew file mode 100644 index 0000000..8e9008c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/gadvanced.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/glubble.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/glubble.jpg Binary files differnew file mode 100644 index 0000000..89f57a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/glubble.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/glubble.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/glubble.txt new file mode 100644 index 0000000..54d04e0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/glubble.txt @@ -0,0 +1,13 @@ +Not content with the content filtering built in to your favorite OS? Well, now you can filter via the Firefox browser. Glaxstar, a Firefox plugin developer, has launched an extension for the popular browser which allows parents to sandbox the internet. + +[Glubble][1], which, according the site, is short for global bubble, is essentially an extensive white list filter. With the add-on installed users can only visit pre-approved sites allowing parent to filter online content and control what their children are exposed to on the net. + +Glubble is a free add-on and you can grab your copy from the site, but keep in mind that it's currently in a beta test phase. + +There are a number of other content filtering solutions out there, but Glubble offers some very fine tuned features including the ability to search Google and only return approved sites. + +If you're familiar with the Ad-block Plus add-on, Glubble offers very similar means of building a whitelist and preferences can be set for children as well as adult users of the same Firefox install. + +Glubble is targeting children under 12, but frankly I'd be surprised if a 12-year couldn't figure out how to circumvent it. Still for the younger children Glubble gives parents an added layer of filtering possibilities. + +[1]: http://www.glubble.com/index.php "Glubble"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/greview.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/greview.jpg Binary files differnew file mode 100644 index 0000000..c2ae3d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/greview.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/greviews.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/greviews.txt new file mode 100644 index 0000000..9c6c6de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/greviews.txt @@ -0,0 +1,13 @@ +Google has added user generated reviews to its growing list of services available through Google Maps. Google Maps has always offered reviews from a variety of "professional" sources, but now your opinions can be heard along side the pros. + +To use the new reviews section, just do a business search and select the business you'd like to review. Then hit the "More Info" link and under the reviews tab you'll see a link to add your own. + +As with any addition of user-generated content there's a definite possibility for abuse -- company's giving themselves good reviews or competitors bad reviews, etc. There is an option for other users to "flag as inappropriate" any reviews they disagree with, but that doesn't really solve the problem. + +The Google LatLong blog, which made the announcement, doesn't mention anything about how user reviews fit into the review listings -- for instance, will they be at the top? intermingled? toward the end? + +It would be nice if there were an option to show only user reviews or only professional reviews, but of course, at the end of the day, professional reviews are probably just as suspect as those generated by users. + +Either way, Google Maps users now have a way to add their opinions to the mix. + +[1]: http://google-latlong.blogspot.com/2007/06/add-your-reviews-to-businesses-on.html "Add your reviews to businesses on Google Maps"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/gsearch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/gsearch.txt new file mode 100644 index 0000000..4618606 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/gsearch.txt @@ -0,0 +1,10 @@ +Google has updated the behavior of the date range function in its [advanced search page][1] so that it now behaves as you'd expect -- finding pages that have been created within the selected date range. + +Previously the date range function considered a page new each time it was re-indexed, meaning that despite the actual age of the page Google would include it in a date search if it had been re-index recently, making the feature worthless. + +It might seem like a meaningless update, but this should be a huge boon for those looking to find the latest information on the web. + +[via [Google Operating System][2]] + +[1]: http://www.google.com/advanced_search?hl=en "Google Advanced Search" +[2]: http://googlesystem.blogspot.com/2007/06/get-fresh-search-results-from-google.html "Get Fresh Search Results from Google"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/idtheft.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/idtheft.txt new file mode 100644 index 0000000..6673c87 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/idtheft.txt @@ -0,0 +1,22 @@ +Identity theft is always a problem with online transactions and while this story doesn't didn't start with online identity theft, its conclusion is amazing and hilarious enough that it deserves mention. + +One of the biggest headaches for those who have dealt with identity theft is tracking down the person and filing charges -- how do find someone who is "you"? + +In this case, you run into them in Starbucks. From the San Francisco Chronicle: + +>If it hadn't been for the distinctive suede coat, there would have been no chase through the streets of San Francisco, no heroine and, in all likelihood, no justice. But when Karen Lodrick turned away from ordering her latte at the Starbucks at Church and Market streets, there it was, slung over the arm of the woman behind her. + +>It was, Lodrick thought, a "beaucoup expensive" light-brown suede coat with faux fur trim at the collar, cuffs and down the middle. + +>The only other time Lodrick, a 41-year-old creative consultant, had seen that particular coat was on a security camera photo that her bank, Wells Fargo, showed her of the woman who had stolen her identity. The photo was taken as the thief was looting Lodrick's checking account. + +>Now, here was the coat again. This woman -- a big woman, about 5 feet 10, maybe 150 pounds -- had to be the person who had put her through six months of hell and cost her $30,000 in lost business as she tried to untangle the never-ending mess with banks and credit agencies. + .... + +>Lodrick's heart was pounding. Despite the expensive coat, the Prada bag, the glitter-frame Gucci glasses, there was something not right about the impostor she would later learn was named Maria Nelson. + +>"She had bad teeth and looked like she hadn't bathed," the onetime standup comic recalled recently. "I thought, 'You're buying Prada on my dime. Go get your teeth fixed.' " + +The story has a semi-happy ending, though the thief gets off with a relatively light sentence. Read the whole thing [here][1]. + +[1]: http://sfgate.com/cgi-bin/article.cgi?f=/c/a/2007/06/15/IDTHEFT.TMP "How victim snared ID thief"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/theft.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/theft.jpg Binary files differnew file mode 100644 index 0000000..114db4f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/theft.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/yahoophotos.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/yahoophotos.txt new file mode 100644 index 0000000..beadba2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/yahoophotos.txt @@ -0,0 +1,12 @@ +Yahoo photos is [closing its doors very soon][2], but users have some pretty nice migration incentives from the various competing services wanting to host their images. Naturally Yahoo would prefer to have you stick with one of their properties, namely Flickr and have reportedly made the transition a one-click process. + +As we reported when the [announcement was first made][1], users transitioning to Flickr will get three months of free Pro status. But that isn't the only deal going, if Flickr doesn't suit your tastes some competing offers include: + +>* Shutterfly: Get a free 8×8 inch photo book +* Kodak Gallery: Get 20 free 4×6 inch prints +* Snapfish: Get 50 free 4×6–inch prints + +Some disgruntled users might argue that's not enough for shutting down their favorite photo site, but hey, it could be worse, you could get nothing. + +[1]: http://blog.wired.com/monkeybites/2007/05/yahoo_posts_pho.html "Yahoo Posts Photo Migration Instructions, Offers Free Flickr Pro Trials" +[2]: http://help.yahoo.com/l/us/yahoo/photos/photos3/closing/closing-02.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/youtube.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/youtube.txt new file mode 100644 index 0000000..84de832 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/youtube.txt @@ -0,0 +1,20 @@ +YouTube goes international + +YouTube has launched nine country-specific versions of the site. Local versions of YouTube are now available for Brazil, France, Ireland, Italy, Japan, Netherlands, Poland, Spain, and the U.K. + +The [localized editions of YouTube][1] feature fully translated content and at some point in the future will track country-specific popular content. + +The new sites can be round at their country specific addresses such as [youtube.fr][5] or [youtube.jp][6] (note that all those URLs work, they actually redirect to fr.youtube.com, etc.). + +YouTube rather conspicuously has left Germany out of the initial launch of its international sites. Epicenter [posits][3] that it might have something to do with the age-verification restriction in place in Germany. + +Flickr, which also [recently went international][4], [upset users in some countries][2] (including Germany) by censoring content. Though it took them two whole days to explain themselves, Flickr says the censorship is due to stringent German age-verification laws. If that statement is correct then YouTube's decision to skip Germany for the time being makes sense. + +YouTube plans to roll out more country-specific versions of the site in the coming weeks and has already announced plans for a Chinese version. + +[1]: http://br.youtube.com/blog?entry=ktewBXNbyTw "YouTube Speaks Your Language" +[2]: http://blog.wired.com/business/2007/06/german_users_in.html "German Users In Revolt Over Flickr Image Restrictions" +[3]: http://blog.wired.com/business/2007/06/youtube_goes_in.html "YouTube Goes International...Sans Germany" +[4]: http://blog.wired.com/monkeybites/2007/06/flickr_speaking.html "Flickr Speaking In Tongues: Photo Sharing Site Adds Additional Language Support" +[5]: http://fr.youtube.com/ +[6]: http://jp.youtube.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/yt.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/yt.jpg Binary files differnew file mode 100644 index 0000000..9c63c7c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Tue/yt.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/appletv.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/appletv.txt new file mode 100644 index 0000000..8cea0b9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/appletv.txt @@ -0,0 +1,11 @@ +Apple has just put up a press release [announcing the availability][2] of YouTube for AppleTV, which was announced several weeks ago. Apple TV owners can grab the new service via Software Update. + +But the bigger news in the announcement is that YouTube will also be available on the iPhone. Both services will features content encoded in H.264, the higher quality codec used by Apple for most of their video services. + +Interestingly, the [demo video][3] of the iPhone-YouTube functionality makes it pretty clear that the new feature **is not** just a browser-based app, which further supports the argument that even Steve Jobs knows [real apps are better than web apps][1]. + +Apple says that 10,000 YouTube titles will available to iPhone users when the product launches on the June 29th with the rest of the vast YouTube catalog arriving later in the year. + +[1]: http://blog.wired.com/monkeybites/2007/06/steve_jobs_real.html "Steve Jobs: Real Apps are Better Than Web Apps" +[2]: http://www.apple.com/pr/library/2007/06/20youtube.html "YouTube Live on Apple TV Today; Coming to iPhone on June 29" +[3]: http://www.apple.com/iphone/internet/?feature=feature05
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/gdocs.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/gdocs.txt new file mode 100644 index 0000000..d2ada4d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/gdocs.txt @@ -0,0 +1,16 @@ +Google has [acquired Zenter][1], an online slideshow maker that has largely flown under the radar. Zenter is actually the second slideshow related software that Google has swallowed in recent months, the first being Tonic Systems. + +Zenter is largely a front end application focusing on presentation and sharing features, while Tonic is is a back end app which can convert Powerpointfiles into Java documents. + +Together the acquisitions pave the way for the missing link in Google Docs -- a Powerpoint competitor. + +Though no firm dates have been revealed, look for the new features to be added to a "Presentations" apps in Google Docs & Spreadsheets sometime soon. + +Now the Google has all the pieces in place Google Docs looks, to be ready to take on Microsoft Office -- especially for those consumers that want online functionality in their office suite, something Office 2007 largely lacks. + +However, as Om Malik over at GigaOm [points out][2], Google needs to work on the integration between the various Google Docs components before it's ready to hit primetime. Thus far Google docs lacks the cohesion of a true "suite." + +The closest competitor in the online market is undoubtedly Zoho, which offers similar tools, but thus far lacks the email integration of GMail (Zoho Mail is currently a private beta). + +[1]: http://googleblog.blogspot.com/2007/06/more-sharing.html "More sharing" +[2]: http://gigaom.com/2007/06/19/enter-zenter-google-office-is-now-complete/ "Enter Zenter, Google Office is now complete"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/iphoneyoutube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/iphoneyoutube.jpg Binary files differnew file mode 100644 index 0000000..847c451 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/iphoneyoutube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/losers.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/losers.jpg Binary files differnew file mode 100644 index 0000000..a485626 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/losers.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/mozilla.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/mozilla.txt new file mode 100644 index 0000000..0d33b1a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/mozilla.txt @@ -0,0 +1,23 @@ +Mozilla COO John Lilly believes that Apple wants to create a duopoly in the browser market at the expense of Firefox, Opera and other browsers, which Lilly calls "a blurry view of the real world." + +In a post to his blog last week Lilly [points to the slides Jobs used at the recent WWDC][1] which showed the current browser market in the first slide and then Apple's vision in the second slide which is, apparently, a world in which Internet Explorer and Safari are the only options. + +As Lilly says, this sort of vision isn't exactly forward thinking: + +>It destroys participation, it destroys engagement, it destroys self-determination. And, ultimately, it wrecks the quality of the end-user experience, too. Remember (or heard about) when you had to get your phone from AT&T? Good times. + +However, given that the initial beta of Safari 3 for Windows received what might diplomatically be called a lukewarm reception, not to mention the numerous security flaws already discovered, it would seem that Mozilla might not need to worry just yet. + +Some reports have spun Lilly's post as a case of sour grapes, but a quick glance at the slides in question (see below) *is* a revealing look at how Apple is approaching the market: eliminate the small competitors. + +Part of that may be simple pragmatism -- for all its faults IE continues to dominate the market -- but Firefox has already showed that it is possible to eat into IE's market share so why doesn't Apple see that as a possibility? + +Lilly thinks it's a result of Jobs' misunderstanding of what users want. + +>So here’s my point, to be clear: another browser being available to more people is good. I’m glad that Safari will be another option for users. (Watch for the Linux port Real Soon Now.) We’ve never ever at Mozilla said that we care about Firefox market share at the expense of our more important goal: to keep the web open and a public resource. The web belongs to people, not companies. + +>This world view that Steve gave a glimpse into betrays their thinking: it’s out-of-date, corporate-controlled, duopoly-oriented, not-the-web thinking. And it’s not good for the web. Which is sort of moot, I think, because I don’t think this 2 party world will really come to be. + +I know it will never come to be on my desktop, you can pry Firefox out of my cold dead hands, but I'm curious what Compiler readers think. Is Apple out of touch with the mass of internet users? Microsoft rather famously failed to see the potential of the internet in the early '90s and paid a heavy price, is Apple making a similar mistake in believing the Safari can win over Firefox and Opera users? Let us know what you think in the comments below. + +[1]: http://john.jubjubs.net/2007/06/14/a-pictures-worth-100m-users "A Picture’s Worth 100M Users???"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/msgoogle.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/msgoogle.txt new file mode 100644 index 0000000..ce85462 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/msgoogle.txt @@ -0,0 +1,14 @@ +<img alt="Gateswillcrushyou" title="Gateswillcrushyou" src="http://blog.wired.com/photos/uncategorized/2007/06/11/gateswillcrushyou.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Microsoft has reached an agreement with the Justice Department and agree to alter Windows Vista to allow users to change their desktop search program. The changes come in [response to the confidential complaint][1] filed by Google earlier this year alleging that Microsoft's built-in desktop search mechanism violated the company's anti-trust settlement. + +Under the new agreement with the Justice Department (as well 17 state attorneys general), Microsoft will alter Vista to provide users with an option to select a default desktop search program, which will allow competitors like Google's Desktop Search program equal access to the OS. + +Google's complaint alleged that while users can install Google Desktop, there is currently no way to turn off Microsoft's version and any third party app thus eats into system resources and gives the impression that it is slowing down the system. + +By allowing users to turn off Microsoft's Instant Search, the performance hit for third party apps should disappear. + +As part of the deal, Microsoft says it will place links in both IE and the main Vista "Start" menu to make it easier for users to set the default desktop search service. + +Also in the PDF released yesterday by Microsoft is yet another mention of Vista SP1 (which will incorporate the changes). The document says a Vista SP1 beta will be ready by the end of the year, though no specific date is mentioned. + + +[1]: http://blog.wired.com/monkeybites/2007/06/google_accuses_.html "Google Accuses Microsoft Of Antitrust Violations"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/myspaceim.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/myspaceim.txt new file mode 100644 index 0000000..262739c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/myspaceim.txt @@ -0,0 +1,17 @@ +MySpace users rejoice, you now have your own IM client. Well, provided you're using Windows that is. The new [MySpaceIM beta][2], which was informally launched almost a year ago, requires a Windows machine and only runs in Internet Explorer. + +Given the already crowded IM marketplace, how to you differentiate yourself? Take a tip from Microsoft: platform lock-in. MySpaceIM eschews existing IM protocols in favor of its own in-house technology, which means it won't work with any of the all-in-on IM clients currently on the market. + +On the bright side, the makers of Trillian say a forthcoming version will support the new MySpaceIM. + +MySpace is touting the new IM features saying they offer tight integration with member profiles and additional features like a music player as well as image sharing capabilities. + +I really hope all those embedded songs start auto-playing whenever you initiate a chat, OMG! That would B So AwSme! (I tried, I really tried, to write this without any hint of sarcasm or mockery, but I just can't do it, sorry). + +In other MySpace news, The Times of London has published a rumor that a deal between MySpace and Yahoo could be in the works. According to The Times, the deal would involve a swap of 30 percent of Yahoo in exchange for MySpace. Check out Epicenter for more [details on the rumor][1]. + +[Photo [credit][3]] + +[1]: http://blog.wired.com/business/2007/06/rumor_control_m.html "Rumor Control: MySpace Deal For Yahoo Stake" +[2]: http://www.myspace.com/index.cfm?fuseaction=im.faq +[3]: http://www.flickr.com/photos/bitterjug/462059242/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/slide1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/slide1.jpg Binary files differnew file mode 100644 index 0000000..007213b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/slide1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/slide1a.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/slide1a.jpg Binary files differnew file mode 100644 index 0000000..118e635 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/slide1a.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/slide2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/slide2.jpg Binary files differnew file mode 100644 index 0000000..5600b03 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/slide2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/thinkfree.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/thinkfree.jpg Binary files differnew file mode 100644 index 0000000..7315352 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/thinkfree.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/thinkfree.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/thinkfree.txt new file mode 100644 index 0000000..7b19194 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/thinkfree.txt @@ -0,0 +1,12 @@ +ThinkFree announced yesterday that it will launch a $7-a-month [Premium subscription service][1] that allows users to view and edit their online docs offline.Google have have found the missing piece in its [online office suite][2], but ThinkFree Office already has its online suite and now users can enjoy offline functionality as well. + +ThinkFree, which began life as a pared down desktop alternative to Microsoft Office, has offered a free online component for some time, but, as with other online services, offline functionality wasn't part of the package. + +The new beta of ThinkFree Premium will offer the ability to save documents either locally or online, and includes a synchronization tool that auto-updates online files when users reconnects to the internet. + +ThinkFree's press release claims the suite offers "the most Microsoft-compatible online/offline hybrid office suite." However, those working with the new Office 2007 OOXML format documents may beg to differ with that statement. + +The ThinkFree Premium runs in Internet Explorer, Firefox and Safari and will be free until August when the $7-a-month price kicks in (ThinkFree will offer 10 percent discount for yearly subscriptions). + +[1]: http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=104&STORY=/www/story/06-19-2007/0004610884&EDATE= "ThinkFree Takes Online Office Suite Offline With New ThinkFree Premium Edition " +[2]: http://blog.wired.com/monkeybites/2007/06/zenter_acquisit.html "Zenter Acquisition Provides The Missing Piece In Google Office"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/yahoopipes.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/yahoopipes.txt new file mode 100644 index 0000000..b990abe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.18.07/Wed/yahoopipes.txt @@ -0,0 +1,11 @@ +Yahoo Pipes has led to some interesting web mashups since its [release a while back][3] and yesterday the Webware blog published a nice guide detailing how to translate foreign language RSS feeds using Yahoo Pipes and Babel Fish. + +Webware has the [full details][1], but the technique is fairly simple -- grab the source feed and use the Babelfish module to run the feed through and translate it to your native language. Then just pipe out the results and subscribe in your favorite reader. + +Naturally Babelfish is far from perfect so you're likely to end up with some mangled sentences, but at least you can get the gist of foreign language feeds. + +[found [via Lifehacker][2]] + +[1]: http://www.webware.com/8301-1_109-9731147-2.html "How to translate RSS feeds" +[2]: http://lifehacker.com/software/how-to/translate-a-foreign-language-rss-feed-270214.php +[3]: http://blog.wired.com/monkeybites/2007/02/yahoo_launches_.html "Yahoo Launches Pipes"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/gdocsredux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/gdocsredux.txt new file mode 100644 index 0000000..585e839 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/gdocsredux.txt @@ -0,0 +1,44 @@ +Google's recently re-designed Google Docs & Spreadsheets failed to impress us the way other online office offerings have. But to learn more about the re-design and Google's thinking behind some of the design choices I recently spoke with Ken Norton, Product Manager at Google and Sam Schillace, Engineering Director and cofounder of Writely which Google acquired to create Google Docs & Spreadsheets. + +While many of the the quibbles in [our review][2] were small points, they were also shared by many users as evidenced in this [Google Groups post][1]. + +But rest assured users, Google is listening. + +In fact one of the primary critiques from many users was Google's decision to remove the handy "last edited by" function has been restored to its former function. + +Here's a transcript of my conversation with Ken Norton and Sam Schillace: + +**Wired News**: What brought about the re-design? + +**Ken Norton**: We started to realize the limitations of the old user interface -- it was great and helpful when you had eight documents, but suddenly you have a hundred documents and you're collaborating with fifty people and it started to become unwieldy. People started asking for better organizational tools -- the ability to filter documents based on who it was shared with, the ability to organize them into folders. + +And that prompted a discussion for us internally because while we felt folders were a familiar organizational metaphor, it was something people were used to, but there were many advantages to tags or labels. One of the biggest advantages of labels or tags was the ability to add multiple tags to each document as opposed to folders that kind of live in one place. + +So what we did is introduced folders as the UI metaphor, but kept the advantages of tags behind the scenes. So a document can live in multiple folders, which something you normally don't get with folders. + +**WN**: What about some of the other changes? + +**Ken Norton**: We also added the ability to organize documents by type, the ability to filter by who they're shared with and we took away some of the behavior of the document list that was confusing to some people... we gave the user a lot more control over how their documents are organized. And most of this was a result of user feedback. + +And this certainly isn't a point in the sand.... One of the advantages of web-based software is that we can be very responsive to the feedback that we're getting. + +**WN**: Why not have both folders and labels? + +We talked about it. I think the reason is to keep the UI simple. As people realize that folders have all the advantages of labels, their reason for wanting them goes away. It'll take a little while for people to understand what's going on, that it still works like labels. + +But the advantage for new users who may not be familiar with labels or expecting folders is pretty substantial in this case. Especially in the Google Apps arena with business users may be more familiar with folders to start with. + +**WN**: Why was the "last edited" functionality buried in the redesign? + +**Sam Schillace**: We just felt that it wasn't as valuable in terms of UI and there's some problems with the way it works that need to get fixed -- if people just view the document, that field gets updated, which is bug in the spec. + +But with that particular feature I think we just didn't think it was that useful and we thought it would be better if we took it so we did. And we were wrong. So we put it back. + +**WN**: What about the look and feel -- many users have complained that interface lacks the traditional Google minimalism... + +**Sam Schillace**: Any time you make a change people complain about it, but this is the result of a lot of UI usability research.... We felt that the UI design need to be stronger and a bit clearer. You can consider it an experiment, nothing is carved in stone, we just wanted it to be a better UI. + +Both Sam and Ken also said that they've welcomed user feedback (both positive and negative) so if you've got something to say, [let them know][1]. + +[1]: http://groups.google.com/group/Suggestions-and-Ideas-Writely/browse_thread/thread/c0d1654371f61ed8/5f7c6db33f088703 "So...how do you like our new Docs list?" +[2]: http://blog.wired.com/monkeybites/2007/06/a-dissapointing.html "A Disappointing Redesign For Google Docs And Spreadsheets" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/gmaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/gmaps.jpg Binary files differnew file mode 100644 index 0000000..58ddc8e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/gmaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/gmaps.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/gmaps.txt new file mode 100644 index 0000000..83db3ab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/gmaps.txt @@ -0,0 +1,17 @@ +Google recently added an "[avoid highways][3]" option to Google Maps and now [Google Maps][2] expands on that idea to allow for drag and drop route building. After creating a route users can now grab any segment of the plotted route and drag-and-drop it to reroute their directions. + +Not only does this make plotting multi-stop trips and custom routes much easier, when coupled with the "traffic" maps it can help users find faster, less congested routes. + +Although the [Google Lat Long blog post][1] on the subject doesn't mention it, if these new features worked with the iPhone Google Maps on the iPhone could be a must have for those living in congested cities. And of course any other mobile device that can handle Google Maps. + +It might not sound like much given its dead simple interface, but the results are jaw-dropping -- and very useful. + +And these features work in nearly all areas and handle things like ferries, bridges, toll roads and other elements seamlessly. + +Naturally the printable driving instruction are updated along with the graphical elements and there's even an option to add destinations mid route by searching for the address and then dragging it into the route. + +Here's the video Google released demonstrating the new features: + +[1]: http://google-latlong.blogspot.com/2007/06/its-click-drag-situation.html "It's a click & drag situation" +[2]: http://maps.google.com/ "Google Maps" +[3]: http://blog.wired.com/monkeybites/2007/05/google_maps_the.html "Google Maps The Road Less Traveled"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/iphone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/iphone.txt new file mode 100644 index 0000000..8a6eed0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/iphone.txt @@ -0,0 +1,32 @@ +I've had the iPhone for about three hours now and it's definitely a mixed bag. On one hand it's a truly remarkable device -- easy to navigate and use -- but at the same time it has some serious shortcomings. + +I've made a number of calls and the sound quality has varied immensely -- ranging from something like a echo sealed in a bottle ten years ago and reopened in your ear to perfectly crisp sound. Thus far I haven't seen a pattern with regard to carrier or anything else. + +Signal strength mirrors my experience with my old phone on the the AT&T network, which ranges from okay to bad, but has never really been good. Welcome to paradise iPhone lovers. + +Perhaps the most intriguing part of the iPhone is the keyboard. As Apple has pointed out in its videos, the keyboard takes some getting used to, but the suggestion engine is remarkable. + +The real pain is entering all your passwords, which, for obvious reasons do not generate suggestions. But once you ham-fist your way through that, I find that just ignoring your mistakes and plowing through until the iPhone suggests the right word really is the fasteste way to type. + +Right now I can't type very fast with the virtual keyboard, but I can see where, once I've adapted to it, it will be just as good as a regular small QWERTY keyboard. + + + +I had no problems connecting to GMail, but *all* my e-mail streamed in to my inbox. None of my filters worked -- no messages skip the inbox on the iPhone and no label information shows up, which makes it difficult to sort your email. + +If I login to GMail, the same messages are already archived and labeled (though not marked as read, which makes me assume the GMail widget on the iPhone is grabbing unread messages regardless of their location). + +As for my regular IMAP account, forget about it. The iPhone managed to retrieve a list of mailboxes, but selecting any of them just gives me the spinning wheel. I gave up after twenty minutes. + + +Browsing the web is much better. Safari may not be anyone's top choice for a browser, but it works surprisingly well. As long as you don't hit a site that uses Flash or Java. + +The camera isn't bad either and even does reasonably well in low light situations, though the images are only two megapixels so I wouldn't expect to them to look all that great when enlarged. + +The other small widgets all work just as you'd expect, weather, stocks, maps and more are all easy to navigate and work quite quickly so long as you have a wireless connection. + +Turn off the wifi and revert to AT&T's Edge network and you'll find yourself seized with an uncontrollable desire to do [this][1]. + +Final verdict: There's no denying the wow factor, but overall the iPhone isn't worth the money. For $300 I'd give it the thumbs up, but at $600 you're better off with something else for half the price. + +[1]: http://blog.wired.com/gadgets/2007/06/watch-an-iphone.html "An iPhone Smashed With A Hammer"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/izoho.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/izoho.jpg Binary files differnew file mode 100644 index 0000000..c1ec5cd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/izoho.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/izoho.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/izoho.txt new file mode 100644 index 0000000..3bf7f36 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/izoho.txt @@ -0,0 +1,18 @@ +Zoho, maker of the popular online office suite, has [announced iZoho][1] a version of the site optimized for the iPhone. With the iPhone set to arrive this evening (Friday June 29th), iZoho is the first online office suite to have iPhone compatibility. + +Of course given the iPhone's full fledged browser, the ordinary Zoho suite will work, but as founder Raju Vegesna points out on the Zoho blog "there is lot of stuff you don’t need on your mobile phone." + +IZoho features a simplified interface featuring just the simple tools you’d normally use on a mobile phone. + +So far iZoho provides full read/write access to Zoho Writer and offers viewing access to Sheet and Show (spreadsheets and presentations respectively). + +Given that Zoho hasn't actually tested the suite on an iPhone yet it seems reasonable to expect there could be glitches but the company plans to work out the bugs and enable more editing support when they get their hands on an iPhone. + +Interestingly, Vegesna [tells Read/Write Web][2] that supporting the iPhone was simple compared to the work that would need to be done to offer support for Blackberry users. + +"iPhone was easy because we didn't do lots of changes", Raju says and goes on to add that, "that's not the case with Blackberry. We'd have to do a specific version for it, as it is not a full fledged browser." + +With so much press given to the iPhone's lack of appeal for enterprise customers lately, iZoho could dispel that myth and make a compelling case for the iPhone over a Blackberry. + +[1]: http://blogs.zoho.com/general/izoho-zoho-for-iphone/ "iZoho - Zoho for iPhone" +[2]: http://www.readwriteweb.com/archives/office_apps_on_the_iphone.php "Office Apps on the iPhone: iPhone vs Blackberry"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/myspacebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/myspacebook.txt new file mode 100644 index 0000000..f2e8671 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/myspacebook.txt @@ -0,0 +1,16 @@ +MySpace may soon release a Facebook-style API to allow developers the ability create applications which integrate into the popular social network site. Facebook's much hailed [developer platform][4] has apparently convince MySpace of the need to do the same. + +Chris DeWolfe, one of MySpace's founders, [tells the Financial Times][2] that the Facebook platform is "interesting," but also touts MySpace's current approach. + +He goes on to argue MySpace's current technology gives its users many of the same benefits as the Facebook F8 platform, but concedes "we'll probably offer users the choice of both." + +As it stands, many developers are hesitant to build on the MySpace network because the site [frequently blocks services][3] without warning (or rhyme or reason for that matter). An open platform like Facebook's could renew developer faith in MySpace. + +At the same time, as Jason Kottke recently pointed out, there are some close similarities [between the Facebook platform and AOL's "rainman" platform][1], and we all know how well that one did. + +The crux of the problem, according the Kottke and others, is that all social networks use what amounts to a proprietary API and even if the API remains stable, developers must content with the differences between platforms -- making it difficult and expensive to develop apps that work across popular social networks. + +[1]: http://www.kottke.org/07/06/facebook-is-the-new-aol "Facebook is the new AOL" +[2]: http://www.ft.com/cms/s/f8b11252-25a7-11dc-b338-000b5df10621.html "MySpace to follow rival’s lead" +[3]: http://blog.wired.com/monkeybites/2007/04/myspace_is_bloc.html "MySpace Is Blocking Photobucket Videos" +[4]: http://blog.wired.com/monkeybites/2007/05/facebook_to_mov.html "Facebook To Move Beyond Social Networking"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun.jpg Binary files differnew file mode 100644 index 0000000..d9d61e3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun1.jpg Binary files differnew file mode 100644 index 0000000..75ce16f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun2.jpg Binary files differnew file mode 100644 index 0000000..e553c5d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun3.jpg Binary files differnew file mode 100644 index 0000000..263a54a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sun3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sunbird.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sunbird.txt new file mode 100644 index 0000000..72e411f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Fri/sunbird.txt @@ -0,0 +1,36 @@ +Yesterday Mozilla released an update to its standalone calendar application, Sunbird. The new version, .5 is still a beta and not without its quirks, but [the update adds][1] some much desired features like Google Calendar and auto-importers for a number of other calendar applications. + +Along with Sunbird the Lightning tool to integrate Sunbird into Thunderbird has also been updated. You can grab Sunbird [from Mozilla][2], but [Lightning][4] aficionados should take note of Mozilla's installation warning: "be sure to backup the ICS file that it put in your profile directory, and uninstall the [Thunderbird] Calendar Extension before installing Lightning." + +The update brings some much needed speed and stability improvements, but unfortunately the Google Calendar support is read only unless you install the [Provider for Google Calendar add-on][5]. + +With Provider installed in either Lightning or Sunbird you can have the two-way sync with Google Calendar that you've always wanted. Having tested the add-on in Thunderbird some time ago I can say that the new versions of the app handles syncs much better. I couldn't tell if it auto-updates (or a way to set how often), but selecting File >> Reload Remote Calendars will force the two to sync. + +Mozilla touts the following additional improvements for Sunbird v.5: + +>* 42 new calendars added +* Much more polished user interface in the calendar views +* Automatic migration of data in Sunbird 0.2, iCal.app, and Evolution +* Much improved printing functionality +* Vastly improved reliability +* Many usability improvements + +This version also features support for Universal binaries on the Mac. + +In testing Sunbird this morning I didn't notice any serious bugs, though I did have problems with a few Google Calendars. I found that for the best results you should use the URL for your "private calendar" when subscribing from Sunbird. + +When Sunbird started up it automatically detected and imported my iCal calendars with only one issue -- it lost the calendar names. + +Also I still find it somewhat confusing the distinguish between events/tasks in the list view atop the monthly calendar, it would be nice if these were displayed in the same color as the calendar they below too. + +Mozilla has a [list of known issues in Sunbird][3], the most serious of which is that, in some cases, calendar data can become corrupted when two or more users are editing the file. But stability wise this is huge step up from the previous .3 version. + + + +Sunbird v .5 beta is considerably snappier than its predecessor and the new features are welcome, but the app still has a ways to go before it's a viable way to manage your calendars. + +[1]: http://weblogs.mozillazine.org/rumblingedge/archives/2006/12/sb_0-5.html "Sunbird 0.5 Released" +[2]: http://www.mozilla.org/projects/calendar/sunbird/download.html "Sunbird download" +[3]: http://www.mozilla.org/projects/calendar/releases/common0.5.html "known issues in Lightning & Sunbird 0.5" +[4]: http://www.mozilla.org/projects/calendar/releases/lightning0.5.html "Lightning 0.5" +[5]: https://addons.mozilla.org/en-US/thunderbird/addon/4631 "Provider for Google Calendar"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/gcentral.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/gcentral.txt new file mode 100644 index 0000000..f444092 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/gcentral.txt @@ -0,0 +1,17 @@ +<img alt="Grandcentral" title="Grandcentral" src="http://blog.wired.com/photos/uncategorized/2007/03/23/grandcentral.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Google is reportedly considering buying out the telephone management site, GrandCentral for an undisclosed amount. + +[GrandCentral][4], which we've [looked at and generally liked][2] when it launched last year, uses one centralized number to route your incoming calls to any phone. Designed for those with several phones who'd like to consolidate their numbers, GrandCentral is quite handy. + +Since writing the earlier review I've been using the service on a regular basis and have become quite addicted to it. There's also a new feature that delivers "[visual voicemail][5]" (despite Apple's overhyped claim about the iPhone being the first to deliver such features) to just about any smart phone. + +Taking GrandCentral's already impressive set of features and integrating them into GMail or GTalk would be a real boon if Google wants to move into Skype's market. + +Although [TechCrunch reports][1] that their source believes the deal is already closed, neither Google nor GrandCentral have responded or made any announcements. I just fired off an email to GrandCentral's founders and I'll be sure to update this post when I hear back from them. + +Also note that If you're interested in internet phone services, you should check out Michael's [review of Vtxt from Callwave][3], a service that will transcribe your voicemail and send it to you as a text message. + +[1]: http://www.techcrunch.com/2007/06/24/google-to-acquire-grand-central-for-50-million/ "Google To Acquire GrandCentral" +[2]: http://blog.wired.com/monkeybites/2007/03/grandcentral.html "GrandCentral Delivers" +[3]: http://www.wired.com/software/webservices/news/2007/06/callwave "Voicemail-as-Text Service Quiets the Ringing in your Ears" +[4]: http://www.grandcentral.com/ "GrandCentral" +[5]: http://www.grandcentral.com/howitworks/mobile_inbx "GrandCentral Mobile"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/linkedinapi.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/linkedinapi.txt new file mode 100644 index 0000000..a8819db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/linkedinapi.txt @@ -0,0 +1,11 @@ +<img border="0" src="http://blog.wired.com/photos/uncategorized/logo_1.gif" title="Logo_1" alt="Logo_1" style="margin: 0px 0px 5px 5px; float: right;" />There's a rumor floating this morning that LinkedIn will follow in Facebook's footsteps and open up the LinkedIn platform to developers in the form of an API. Dan Farber over at ZDNet reports that LinkedIn CEO Reid Hoffman says the move will [happen over the next nine months][1]. + +[LinkedIn][2], with its focus on professional networking, seems of the surface to have little to fear from Facebook, which, thus far has focused on the decidedly less professional market of college classmates. Where Facebook connects old friends, LinkedIn focuses on professional contacts. + +However, Facebook has seen some explosive growth in recent months, thanks in part to [its new API][3] and even if the two aren't yet going head to head, LinkedIn would no doubt also like to see the kind of signup numbers Facebook is reporting. + +If LinkedIn does indeed roll out an API over the next few months it could be the beginning of some serious competition between the two, however, LinkedIn users who love the service's minimalist approaches might not necessarily want a bunch of developer widgets cluttering up their profile. + +[1]: http://blogs.zdnet.com/BTL/?p=5482 "LinkedIn to open up to developers" +[2]: http://www.linkedin.com/ +[3]: http://blog.wired.com/monkeybites/2007/05/facebook_to_mov.html "Facebook To Move Beyond Social Networking"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/pbucket.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/pbucket.txt new file mode 100644 index 0000000..2973af4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/pbucket.txt @@ -0,0 +1,12 @@ +[Photobucket][1] has [updated its media search plug-in][2]. Photobucket Media Plug-in 2.0 lets users of Photobucket's partner sites search public photos, videos and images from Photobucket’s library without leaving the affiliate sites. + +So far the partner sites include CherryTAP, Freewebs, Gaia Online, LiveJournal, Piczo, RockYou, Slide, Tagged and more. + +Photobucket CEO, Alex Welch, says in a statement, “our partners can receive free digital media hosting and search, vastly improving their user experience and engagement.” + +This is the first product launch since Photobucket's [recent acquisition by Fox Interactive][3]. + + +[1]: http://photobucket.com/ +[2]: http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20070625005427&newsLang=en "Photobucket Enables Third Party Web Sites to Embed Instant Digital Media Search" +[3]: http://blog.wired.com/monkeybites/2007/05/myspace_swallow.html "MySpace Swallows Photobucket"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo-intro.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo-intro.jpg Binary files differnew file mode 100644 index 0000000..beeeff8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo-intro.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo-logo.jpg Binary files differnew file mode 100644 index 0000000..48fa2a6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo-main.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo-main.jpg Binary files differnew file mode 100644 index 0000000..6de46c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo-main.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo.txt new file mode 100644 index 0000000..bc485ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo.txt @@ -0,0 +1,37 @@ +Plaxo has launched a brand new version of the popular online contact manager app as well as new and improved desktop clients. [Plaxo 3.0][1], as the company calls the updates, boasts a number of synchronization improvements and aims to be your one-stop address book and contact manager. + +New features include find-as-you-type search and click to call buttons in the contact portion of Plaxo as well as a new calendar section that integrates Yahoo weather along side your schedule. + +Also new is a content sharing system which allows you subscribe to friends content feeds as well as create your own feeds by pulling in data from popular web services. At the moment those services are limited to Flickr photos, Amazon wish lists and blog feeds, but Plaxo says support for more web services will be coming in the following months. + +While the bells and whistles are nice the real news are the changes to core of Plaxo's synchronization options. + +Having used Plaxo off and on for about a year, I was never that impressed with its functionality. Importers often choked and the desktop client was more intrusive than helpful, but I'm happy to report that the new version solves those issues. + +Plaxo now offers an online "Sync Dashboard," which brings together multiple "sync points," such as Google Calendar, Outlook, Hotmail, Yahoo, Mac OS X, AOL, Thunderbird, LinkedIn and even your mobile phone in one handy location. + +And in my testing the synchronization worked perfectly, provided you give it time, since it's certainly no speed demon. + +While the new Plaxo Dashboard provides an easy way to update contact info across various platforms (GMail is currently not supported, but Plaxo says it will be added soon), perhaps even more useful is the calendar synchronization. + +I've never found an easy way to sync between Google Calendar and Apple's iCal, but Plaxo handles the two quite well and every change I made from either end was quickly reflected at the other end (and of course on Plaxo's own Calendar in the middle). + +Other new features in the Plaxo desktop client for Mac include improved support for Mail.app. Plaxo now injects a small drop down menu at the top of each mail message to show whether or not the sender is in your address book. The menu then gives you options to add that person to your address book if they aren't already in it or, if they are, Plaxo will show their contact card. + +Since the same thing can be accomplished by using Mail's built-in connections with Apple's Address Book, the Mail feature isn't totally necessary and can be turned off in the Plaxo system preference pane, but the contact card preview can come in handy. + +Plaxo also support similar features in Thunderbird, but I haven't tested them. + +But for all its strong points, Plaxo 3.0 has some serious drawbacks as well. I found the web interface buggy and slow in Firefox 2.0 (it was better in IE, Safari is not yet supported). + +The Sync Dashboard frequently timed out or threw infinite loop redirect warnings and even when it did work, syncing was unacceptably slow. I have a meager 31 contacts in my address book and Plaxo took around five to seven minutes to update them, depending on which client I used to sync. + +Also the links which should appear at the bottom of the main page for adding additional sync points didn't show up in Firefox (this seems to have been fixed as of 3:30pm). + +However, once Plaxo works out the kinks (the service is officially still a public beta) they will indeed have the killer app for online contact info management especially for those that rely on a variety of different web services since Plaxo manages to make synchronization seamless. + +In the meantime, if you'd like to check out Plaxo without having to sign up there's a nice demo video below from Plaxo. + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/n-yXudmFowE"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/n-yXudmFowE" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://www.plaxo.com/info/corp/learn_more?t=1&f=landing "Plaxo 3.0" diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo1.jpg Binary files differnew file mode 100644 index 0000000..7457a08 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo2.jpg Binary files differnew file mode 100644 index 0000000..8a46f02 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo3.jpg Binary files differnew file mode 100644 index 0000000..ad73405 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/plaxo3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/safecache.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/safecache.txt new file mode 100644 index 0000000..ccdd9cd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/safecache.txt @@ -0,0 +1,22 @@ +Browsers hemorrhage information. Cookies, auto-fill information, search history and more can be accessed by websites, and while sometimes this information is gather for benign reasons, sometimes it's not. + +With more and more people refusing to accept cookies in their browsers (almost every modern browser contains a preference for controlling cookie settings) marketers and others that would like to know what you do on the internet have turned to other means. + +One sneaky way of grabbing information uses the browsers cache as a means of tracking user behavior. + +Which brings us to [SafeCache][1], a Firefox plug-in developed by Stanford university that protects your privacy by defending against cache-based tracking techniques. + +SafeCache allows embedded content to be cached, but segments the cache according to the domain of the originating page. + +To install SafeCache, just head over to the site and hit "install." Once you restart Firefox open up the preferences and under the "Privacy" tab you should see a new option to turn SafeCache on and off. Regrettably there isn't a way to set per-site permissions, but it's still better than nothing at all. + +The same folks at Stanford that developed SafeCache also have another Firefox add-on named [SafeHistory][2] which attempts to defend against visited-link-based tracking techniques. + +And for an excellent write up on various other ways you can make Firefox more secure have a look at Security Hack's "[Firefox: 10 tips to bolster your privacy][3]." + +[via [Lifehacker][4]] + +[1]: http://www.safecache.com/ "SafeCache" +[2]: http://www.safehistory.com/ +[3]: http://www.security-hacks.com/2007/06/08/firefox-10-tips-to-bolster-your-privacy "Firefox: 10 tips to bolster your privacy" +[4]: http://lifehacker.com/software/featured-firefox-extension/prevent-cache+based-tracking-with-safecache-270366.php
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/symantec.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/symantec.txt new file mode 100644 index 0000000..5f94878 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Mon/symantec.txt @@ -0,0 +1,12 @@ +<img alt="Symantec" title="Symantec" src="http://blog.wired.com/photos/uncategorized/2007/05/22/symantec.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />A while back we told you about Symantec accidentally [crippling upwards of 50,000 Chinese Windows machines][1] when the anti-virus software deleted two critical system files in the Simplified Chinese edition of Windows XP which left those systems inoperable. + +In an [attempt to return to its users good graces][3] Symantec is offering affected users a free copy of Norton Save & Restore 2.0 backup software (enterprise users can get Symantec Ghost Solution Suite) along with a 12 month extension to the Norton Anti-Virus subscription services. + +Symantec calls the offer a "gesture of goodwill," however given that Norton is in fact the source of the original problem, many users may think twice about installing it again. Or as the Register so [drolly puts it][2]: "cockroach in your salad, sir? Have some free salad." + +Symantec had previously hinted that was considering a compensation package of some kind for affected users, but an extension of the same service that caused the problem is dubious at best; especially given that some Chinese enterprise companies are rumored to be demanding up to $130,000 for lost productivity. + + +[1]: http://blog.wired.com/monkeybites/2007/05/symantec_hoses_.html "Symantec Hoses Chinese Windows Users" +[2]: http://www.theregister.co.uk/2007/06/25/symantec_compensation/ "Symantec showers free software on bug-afflicted Chinese" +[3]: http://www.symantec.com/zh/cn/home_homeoffice/theme.jsp?themeid=goodwill
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/footnote.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/footnote.txt new file mode 100644 index 0000000..82446cb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/footnote.txt @@ -0,0 +1,18 @@ +A while back we mentioned that Footnote.com had reached an agreement with the National Archives to digitize selected historical documents. Today Footnote has announced a new [history nerd social networking site][2] where users can download and dig through historical documents and create pages to share their findings with the community. + +As part of the launch, Footnote is offering some of their millions of Revolutionary War documents for free. But if you're interested, you need to hurry, they'll be locked behind a paywall at the end of July. Footnote membership is $8/month or $60/year. + +For the time being you can grab a limited time trial membership to see if the network is worth your money. + +Roger Bell, president of Footnote says in a statement regarding the new documents, "Many people may know the high level details of American history; however, information about specific events and the heroic individuals involved are often overlooked." + +Footnote's documents aim to fill that gap. The documents on Footnote range from secret journals to purloined letters to correspondences between the founding fathers. + +While the Footnote offerings are impressive I can't help thinking that the historical data nerd market isn't all that big to start with, how much money can Footnote possibly hope to raise? Why not just throw up some ads and give it away? + +In fairness to Footnote, I should point out that large portions of the site can be accessed for free and there's no charge to use the social networking features such as building a family history page. + +[via [9:01 AM][1]] + +[1]: http://www.901am.com/2007/footnotecom-launches-reveals-accounts-of-the-birth-of-america.html "Footnote.com launches, reveals accounts of the birth of America" +[2]: http://www.footnote.com/ "Footnote"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/ftc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/ftc.jpg Binary files differnew file mode 100644 index 0000000..d6eced7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/ftc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/ftc.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/ftc.txt new file mode 100644 index 0000000..1ae6cf6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/ftc.txt @@ -0,0 +1,19 @@ +The Federal Trade Commission has given the "Net Neutrality" movement a serious slap in the face. A new [report][1] (PDF) issued yesterday by the FTC says there's no need for government to get involved in ensuring the fairness of network traffic in the U.S. + +The Chairman of the FTC Deborah Platt Majoras says in a [statement][2] accompanying the report that "in the absence of significant market failure or demonstrated consumer harm, policy makers should be particularly hesitant to enact new regulation in this area." + +In other words wait and see if it all goes south and then maybe consider doing something to fix it. + +Interestingly, a report also released yesterday which shows that U.S. broadband customers seriously lag behind the rest of the western world in terms of speed, seems to be a definitive for of "demonstrated consumer harm" that the FTC claims is necessary before action can be taken. + +Not surprisingly the telecoms and other broadband providers cheered the decision which more or less paves the way for a two-tiered internet with prioritized traffic. While there is ostensibly nothing wrong with that approach, as many have noted, it is fraught with opportunities for potential abuse. + +Still, it's possible the FTC is right, there is no real cause for alarm at this point and FTC can fix the problems as they arise. Just like the FTC's highly successful efforts to protect consumers from credit fraud, deceptive advertising and a host of others consumer ills which have been eliminated. + +In other news, Compiler now has bridges for sale -- contact us for details. + +For a less biased overview of the reports' intricacies see [Threat Level's coverage][3]. + +[1]: http://www.ftc.gov/reports/broadband/v070000report.pdf "FTC report" +[2]: http://www.ftc.gov/opa/2007/06/broadband.shtm "FTC Issues Staff Report on Broadband Connectivity Competition Policy" +[3]: http://blog.wired.com/27bstroke6/2007/06/gov-regulator-1.html "Gov Regulators Issue Wait-And-See Net Neutrality Report"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/gdesk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/gdesk.jpg Binary files differnew file mode 100644 index 0000000..26d9ba9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/gdesk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/gdesklinux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/gdesklinux.txt new file mode 100644 index 0000000..278c4e9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/gdesklinux.txt @@ -0,0 +1,18 @@ +Google has released a new version of Google Desktop with support for Linux. As with early version of the Windows tool and the [recently release Mac OS X tool][3], Google Desktop for Linux is just the desktop search engine component, but the company [says][4] the eventually support for the sidebar and gadgets will be added. + +The [Linux version of Google Desktop][1] can index OpenOffice documents, PDF and PostScript files, text and HTML, man pages, music, video and image files, web history (provided you use Firefox) and emails from Gmail and/or Thunderbird. + +If you're not a Firefox user Google Desktop can still index things like bookmarks, but you won't have access to your web history. + +Currently Microsoft Office documents can not be indexed and, regrettably, neither can chat transcripts or archive files. + +Google Desktop for Linux officially supports Ubuntu 6.10+, Debian 4.0+, Fedora Core 6+, SUSE 10.1+ running on x86 hardware, however, so long as you have the core components (glibc 2.3.2 or later and gtk+ 2.2.0 or later) installed, it should work with just about any distro. + +Unlike some Google offerings, Google Desktop for Linux is not open source. Google says the tool is based on its own desktop search algorithms not existing Linux search programs. + +Although there are already some great desktop search programs for Linux ([Beagle][2] come to mind), it's nice to see Google make good on its promise to delivery more Linux software offerings. Google Desktop for Linux joins Picasa, Google Earth and the Firefox toolbar, all of which offer Linux support. + +[1]: http://desktop.google.com/linux/ "Google Desktop for Linux" +[2]: http://beagle-project.org/Main_Page "Beagle" +[3]: http://blog.wired.com/monkeybites/2007/04/first_look_goog.html "First Look: Google Desktop For Mac" +[4]: http://googleblog.blogspot.com/2007/06/google-desktop-now-available-for-linux.html "Google Desktop now available for Linux"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/gpl.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/gpl.txt new file mode 100644 index 0000000..2eb965c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/gpl.txt @@ -0,0 +1,18 @@ +The Free Software Foundation has announced that version 3 of the GNU General Public License will officially be [released tomorrow][3], Friday June 29th. Richard Stallman will be on hand for the unveiling and there will be a live video stream available on the [FSF site][4]. + +Version 3 of the GNU GPL has seen its share of [controversy][1] over the [last eighteen months][2] of public debate and revision, specifically with regard to provisions designed to thwart the kind of patent deals Microsoft has reached with [Novell][6], [Xandros][7] and other Linux vendors. + +The latest public draft of the GPLv3 removed some provisions so that vendors like Novell could continue to distrubte their software using the GNU GPL. + +So far there's been no official word on whether or not the Linux kernel will adopt the new license. Linus Torvalds has said that recent revisions to GPL v3 have assuaged the concerns of many in the community, but he remains "unsure" as to whether or not he'll move the Linux kernel to the new license. + +[via [Slashdot][5]] + +[1]: http://blog.wired.com/monkeybites/2007/06/are_the_gpls_cr.html "Are the GPL's Critics Happy Yet?" +[2]: http://blog.wired.com/monkeybites/2007/03/the_free_softwa.html "Free Software Foundation Releases GPL v3 Draft" +[3]: http://lists.gnu.org/archive/html/info-member/2007-06/msg00000.html "Launch of GNU GPLv3" +[4]: http://www.fsf.org/ "FSF" + +[5]: http://slashdot.org/articles/07/06/27/210226.shtml +[6]: http://blog.wired.com/monkeybites/2007/05/the_be_very_afr.html "The 'Be Very Afraid' Tour: Microsoft's Patent Strategy Explained" +[7]: http://blog.wired.com/monkeybites/2007/06/xandros_joins_n.html "Xandros Joins Novell In Microsoft Ménage à Trois"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/iphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/iphone.jpg Binary files differnew file mode 100644 index 0000000..6f395f1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/iphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/iphonehacks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/iphonehacks.txt new file mode 100644 index 0000000..a0c0d8c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/iphonehacks.txt @@ -0,0 +1,26 @@ +Tomorrow is the big day, the iPhone cometh. This morning David Pogue [posted an article][1] that has a sort of FAQ of iPhone features which lists some fairly serious limitations (along with the usual good stuff). + +But here at Compiler we aren't all that interested in Gadgets (that would be [Gadget Lab][2]), rather we like software, and what we really like are software hacks. + +Our interest in the iPhone is primarily to see what people can do with it -- using it in ways that Apple never intended them to. + +Apple is famous (or notorious depending on your perspective) for leaving the back door, if not open, at least unlocked. For instance there's no way to take songs off your iPod via iTunes, however [dozens of third party apps][3] can handily accomplish that task. + +Or take the AppleTV which has been [hacked to support externals hard drives][5], watching [Joost for internet TV][4] and more. + +So we're curious what you think will end up being hacked on the iPhone. Pulling from various source's here's a list of potential shortcomings that might end up being hacked or worked around (I'm not a software engineer and I've never laid hands on an iPhone so take this list with a grain of salt): + +>* Use any song as a ringtone. Crazy though it seems you can't do this the way the iPhone ships. I expect this to be the first thing hackers tackle. I'll be bold and go ahead and say this one will be done by the end of the weekend. +* Instant messaging. Considering the iPhone data plans start with a paltry 200 SMS messages there's definitely some consumer drive to figure out how to get IM clients running on the iPhone. At the very least there's always the browser-based options. +* The version of Safari on the iPhone lacks support for any of the following: Java, Flash, stored passwords, RSS, streaming audio or video (except for some QuickTime videos). All potentially hackable. +* Calendar and ToDo support lags (based on Pogue's piece). The iPhone synchronizes with your computer's calendar and address book, but ToDo items don't show up on the iPhone. Worse, memos created with iPhone’s Notes program don't show up on your computer. Again potentially hackable. + +Then there's the small matter of the iPhone only working on AT&T's craptastic network (I currently have it, trust me, it sucks). No doubt unlocking the iPhone is the holy grail of hacks, unfortunately, I think it's unlikely. + +There's tons of other stuff that could be potentially hacked or worked around to make the iPhone into what it should be, let us know your ideas in the comments below and I'll see about setting up a voting widget so we can track your ideas. + +[1]: http://www.nytimes.com/2007/06/28/technology/circuits/28pogue.html?ex=1340683200&en=6db6ecaa7a2c97d0&ei=5090&partner=rssuserland&emc=rss "Often-Asked iPhone Questions" +[2]: http://blog.wired.com/gadgets/ "Gadget Lab" +[3]: http://blog.wired.com/monkeybites/2006/11/the_ipod_exodus.html "The iPod Exodus: How To Get Music Off Your iPod" +[4]: http://blog.wired.com/monkeybites/2007/03/hacking_appletv.html "Hacking AppleTV: Users Report Successfully Running Joost On AppleTV" +[5]: http://blog.wired.com/monkeybites/2007/04/transforming_th.html "Transforming The AppleTV"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/pownce.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/pownce.jpg Binary files differnew file mode 100644 index 0000000..6f7b9bd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/pownce.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/pownce.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/pownce.txt new file mode 100644 index 0000000..720d7d4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/pownce.txt @@ -0,0 +1,23 @@ +Kevin Rose of Digg fame has launched a new startup named Pownce. One part social network, one part chat and file transfer program, Pownce seems a bit like [AllPeers][1] or [Tubes][2] but with some additional elements as well. + +In addition to the website there is an optional desktop client built on Adobe's [AIR platform][3] which means it's available for all OSes, provided the user has the AIR runtime installed. + +Here's what [the site][4] has to say about the process: + +>Right now, there are four basic things you can send: messages, links, files, and events. + +You might send an event out to a dozen of your friends letting them know you’re hosting a party this Friday. They could easily get the event details you entered, respond with questions or comments and then quickly rsvp. + +Say you had a great photo you wanted to share with all of your friends. Just add the file and all of your friends will get it right away. They’ll be able to reply and tell you if it’s cool. You could even post songs you recorded in your home studio to share with your friends. + +For now the site is in private beta, but you can request an invitation on the home page. I haven't been able to test it yet, but judging by the screenshots, if nothing else, it certainly looks good. + +Pownce is free, but there's a pro version for $20 a year which ditches the ads and increases the file upload limits. + +Nerd trivia: the Pownce website is built on [Django][5], a python framework that we dearly wish powered this site. + +[1]: http://www.allpeers.com/ "All Peers" +[2]: http://www.tubesnow.com/ "Tubes" +[3]: http://blog.wired.com/monkeybites/2007/06/adobe_apollo_in.html "Adobe Apollo In The AIR, Now With HTML/Ajax Support" +[4]: http://www.pownce.com/ "Pownce" +[5]: http://www.djangoproject.com/ "Django"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/rev.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/rev.jpg Binary files differnew file mode 100644 index 0000000..3fe6f4b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Thu/rev.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/filerights.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/filerights.jpg Binary files differnew file mode 100644 index 0000000..0753df3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/filerights.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/filerights.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/filerights.txt new file mode 100644 index 0000000..4d43bdf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/filerights.txt @@ -0,0 +1,24 @@ +The team behind TorrentSpy, a torrent search site, has rolled out a new copyright protection scheme which TorrentSpy claims can be used to track infringing material on the web. The [FileRights service][2], as it's know, will use md5 hashes to track suspect files and eliminate them from search engines that subscribe to FileRights. + +The idea behind the project is to eliminate the need to file DMCA takedown notices against every site hosting a file by creating a central database capable of tracking files. + +Our own Treat Level blog [has some more background on FileRights][2] and wonders how the technology might work in practice -- in short, it won't. + +The smallest alteration to a file will make that file essentially unique and largely untrackable by the database, which is in fact the basis of hash signatures. + +Hash signature verification, frequently used for downloading files to ensure that the file your download is in fact the file you wanted, relies on total symmetry to validate. For instance, file servers like SourceForge use pre-computed MD5 checksums for the files you download to verify that what arrives is in fact the file requested. + +However, a number of tools have appeared which generate MD5 collisions, making it possible to generate an alternative file with the same checksum. + +Since FileRights is essentially looking at the process in the opposite direction the problem is compounded. FileRights must stop people from altering the hash *or* the file itself. + +One simple bypass that seems likely is to take the file and re-compress it with a different compression engine (correct me if I'm wrong about that). + +Couple that with the fact the FileRights will require copyright holders to add the hash themselves and you have a system that's little more effective than the current one. + +Additionally, TorrentSpy and Isohunt are currently the only two torrent search/trackers signed on for the service. It seems unlikely that other torrent trackers will embrace FileRights since most are based outside the U.S. where the MPAA and RIAA have less legal sway. + +Given that TorrentSpy is currently being sued by the MPAA and others, FileRights feels more like a symbolic gesture of goodwill to copyright holders than a genuinely effective system. + +[1]: http://www.filerights.com/Default.aspx "FileRights" +[2]: http://blog.wired.com/27bstroke6/2007/06/torrentspy-foun.html "TorrentSpy Founders Create Copyright Filtering Company"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/gapps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/gapps.jpg Binary files differnew file mode 100644 index 0000000..b78f037 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/gapps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/gmailmigrate.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/gmailmigrate.txt new file mode 100644 index 0000000..c13779d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/gmailmigrate.txt @@ -0,0 +1,15 @@ +Google has rolled out a new e-mail migration tool for prospective business customers looking to switch their e-mail management tasks over to Google Apps. The new new self-service mail migration tools enable system admins to copy existing mail from an IMAP server over to GMail. + +The tools are [available only for Google Apps Premier and Education Editions][1], individuals looking to migrate from an IMAP set up to GMail will still have to make the move by hand. + +Google claims more than 100,000 customers have signed up for the Premier and Education services since they were launched last year. The company also says it has been adding new business customers at the staggering rate of one thousand per day. + +The biggest competitor in this space, particularly with regard to corporate e-mail, is undoubtedly Microsoft's Exchange Server 2007, released earlier this year. + +While I can see how offloading of mail maintenance and other infrastructure costs to Google is a serious advantage for businesses, there are, at the same time, a number of serious disadvantages to GMail versus an IMAP server. + +Having attempted the switch myself, I ended up still maintaining my IMAP account, partly as a backup and partly because GMail can't sync across clients. From a web-based perspective the two are the same, but when using e-mail clients to access the account, IMAP clearly has the edge. + +Google has also rolled a few other new features for enterprise customers in the past few days including shared address books, group chats in Google Talk and Powerpoint support in slideshows. + +[1]: http://googleblog.blogspot.com/2007/06/smooth-apps-move.html "A smooth Apps move"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/iphoneact.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/iphoneact.jpg Binary files differnew file mode 100644 index 0000000..7dd53d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/iphoneact.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/iphoneprices.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/iphoneprices.txt new file mode 100644 index 0000000..d5eee09 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/iphoneprices.txt @@ -0,0 +1,9 @@ +IPhone fanatics it's the moment you've been waiting for: [pricing plans][1]. Apple has posted rate information for prospective iPhone buyers ranging in price from $60 - $100 a month. Existing AT&T customers can add the iPhone data plan for $20 a month. + +Also, as Cult of Mac's Leander Kahney [correctly speculated][3], Apple will take the pain out of buying an iPhone. No longer will you have to wait while an AT&T employee who probably knows less about what s/he's doing than you do, messes with your new phone. + +Activation and plan purchasing will all take place through iTunes -- including the ability to transfer your existing number to AT&T. If you'd like to know what to expect, check out the [new video posted on the Apple site][1]. + +[1]: http://www.apple.com/iphone/usingiphone/activation_medium.html +[2]: http://www.apple.com/iphone/easysetup/rateplans.html "iPhone Rate Plans" +[3]: http://www.wired.com/gadgets/mac/commentary/cultofmac/2007/06/cultofmac_0626 "Apple, Take the Pain Out of Buying a Cell Phone -- Please!"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/iradiosilence.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/iradiosilence.jpg Binary files differnew file mode 100644 index 0000000..11ab61e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/iradiosilence.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/netradio.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/netradio.txt new file mode 100644 index 0000000..e472192 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/netradio.txt @@ -0,0 +1,18 @@ +To protest hikes in radio broadcast fees most large internet radio stations will be silent today, giving users a preview of what will likely happen for good on July 15th when the new royalty payments go into effect. + +Smaller stations like Pandora, and even the bigger ones run by Yahoo, MTV, Real/Rhapsody and many others are [protesting the rate hikes][4] (PDF file) which the broadcaster's claim unfairly targets internet radio. + +Under pressure from the big music labels, the U.S. government is set to institute royalty rate hikes while traditional radio stations and satellite providers, both arguable already in the music industries back pocket, will still pay next to nothing. For more background on the issue, [check out Listening Post's coverage][1]. + +Popular social network and radio broadcaster Last.fm has elected not to participate generating a fair bit of negative press in the process. + +Last.fm has [posted an explanation][3] on their blog, the gist of which boils down to fact that Last.fm is British and consequently doesn't understand how protest movements work, er, I mean was recently [purchased by a large media conglomerate][2] and doesn't have to worry about the rate hikes. + +Wait, no, I mean Last.fm has always had to deal with high royalty rates because they're British, yes that's it. + +Seriously, Last.fm does have some valid points (such as 'why punish listeners?'), but its lack of solidarity makes it an easy target and could well end up doing some damage to its image, especially given its recent acquisition by CBS. + +[1]: http://blog.wired.com/music/2007/06/tomorrow-day-of.html "Tomorrow: Day of Silence for Internet Radio" +[2]: http://blog.wired.com/monkeybites/2007/05/cbs_hears_lastf.html "CBS Hears Last.fm's Siren Song" +[3]: http://blog.last.fm/2007/06/25/make-some-noise "Make Some Noise" +[4]: http://www.savenetradio.org/press_room/press_releases/070625-snr_dos.pdf "SaveNetRadio: Day of Radio Silence"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/yahooimage.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/yahooimage.txt new file mode 100644 index 0000000..7c1d080 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/yahooimage.txt @@ -0,0 +1,17 @@ +Yahoo has integrated Flickr images into Yahoo Image Search via the live photostream feeds that Flickr utilizes. This means that image results returned by Yahoo Image Search happen in realtime. + +Rather than indexing Flickr content, Yahoo has leveraged Flickr's existing features to provide not just image results but links to Flickr users photostreams along with the live results. + +Although Flickr has been integrated with Yahoo's main search to provide thumbnails for popular landmarks and more, this if the first time Yahoo has done a large scale integration of Flickr images into its search properties. + +It also give Yahoo Images an advantage over Google's competing service since, while Google is indexing images from Flickr, Yahoo has live results via the feed. With Flickr users uploading around 1 million files a day, that's a pretty healthy gain for Yahoo Image Search. + +Additionally, as Search Engine Journal [points out][2], Flickr users frequently delete images which makes Google's indexing somewhat less reliable than the live photostream search. + +Yahoo has also added the ability to search by Flickr User ID in the Yahoo Image Search Box if you're looking to find a specific person's photos. + +Also note that the Flickr images now in Yahoo Image results are limited to those marked as "Safe". + + +[1]: http://images.search.yahoo.com/images "Yahoo Image Search" +[2]: http://www.searchenginejournal.com/flickr-photos-integrated-into-yahoo-image-search/5182/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/yahooimages.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/yahooimages.jpg Binary files differnew file mode 100644 index 0000000..c1fe738 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Tue/yahooimages.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/fastnet b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/fastnet new file mode 100644 index 0000000..4e72ac7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/fastnet @@ -0,0 +1,23 @@ +Just about everyone believes their internet connection is too slow, but now, if you live in the United States, you can prove it. A communications workers union has [released a study][1] showing that the median U.S. download speed is a mere 1.97 megabits per second. That number comes into perspective when you consider Japanese users enjoy a whopping 61 mbps for the same price. + +If the numbers mean nothing to you, consider this from the opening paragraph of the report: "People in Japan can download an entire movie in just two minutes, but it can take two hours or more in the United States. Yet, people in Japan pay the same as we do in the U.S. for their Internet connection." + +But this is more than just a first of its kind look at how your broadband provider is screwing you, it also has some nasty implications for U.S. productivity. + +It could be argued that the survey does not encompass business and enterprise internet connections which are often much faster, but with more and more U.S. tech workers working from home, the study seems even more telling. + +For those curious about the numbers, have a look at the [actual PDF file with all the details][2]. The high level summary is that the survey looked at 80,000 internet users in all 50 states and less than 5 percent of them were on dial-up connections. The dial-up numbers undoubtedly dragged things down, but only highlight the fact that in some areas that's all that's available. + +The authors of the study call for five key principles they feel must be embraced in order to change the dismay speeds of U.S. internet users: + +>* Speed and Universality Matter for Internet Access +* The U.S. "High Speed" Definition is Too Slow +* A National High Speed Internet for All Policy is Critical +* The U.S. Must Preserve an Open Internet +* Consumer and Worker Protections Must Be Safeguarded + +For the record, using the test service on the [SpeedMatters site][3] my own connection measured at 2.9 kbps, just over the median for my state. + +[1]: http://www.speedmatters.org/ "SpeedMatters" +[2]: http://www.speedmatters.org/document-library/sourcematerials/sm_report.pdf +[3]: http://www.speedmatters.org/speed-test/ "SpeedMatters: Speed Test"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/folders1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/folders1.jpg Binary files differnew file mode 100644 index 0000000..2b662b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/folders1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/folders2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/folders2.jpg Binary files differnew file mode 100644 index 0000000..3438b94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/folders2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/folders3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/folders3.jpg Binary files differnew file mode 100644 index 0000000..ad12223 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/folders3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/gdocs-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/gdocs-logo.jpg Binary files differnew file mode 100644 index 0000000..35dab5b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/gdocs-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/gdocs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/gdocs.jpg Binary files differnew file mode 100644 index 0000000..d8ffc54 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/gdocs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/gdocs.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/gdocs.txt new file mode 100644 index 0000000..bb31b76 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/gdocs.txt @@ -0,0 +1,29 @@ +Google has given Docs and Spreadsheets a [makeover and added some new features][1], including support for folders and live search, but while the new interface is looks different, in some ways the new "features" are a step backwards. + +Folders were undoubtedly one of the most requested features for [Google Docs][2] and they have indeed arrived, however folder support comes at the expense of labels. Label (or tag if you prefer) support has been dropped in the new Google Docs. + +Existing users will note that all their tags have been converted to folders which work more or less like labels, but include drag-and-drop support. Unfortunately there doesn't seem to be a way to re-order the folder list hierarchy other than with creative naming conventions. + +But the real problem with the new folders is their inconsistent behavior. Files can be be placed in multiple folders, but rather confusingly this only works from the main list. + +If you drag a document from the main list to a any number of folders it will be added to those folders. + +However, if you are inside a folder and drag a document to a different folder it will be removed from the first folder, which makes for a rather confusing user experience. + +People have been clamoring for folders in various Google Apps for some time, however, this implementation may leave many questioning their wishes. + +Given that Google is aiming Docs and Spreadsheets at the business crowd, the move to folders makes sense, folders are a much more familiar organizational metaphor and have a somewhat more "professional" feel about them, but in terms of functionality the new folders differ from labels largely in semantics. + +I always thought of folders and labels as complimentary, so ditching labels in favor of folders seems, well, kind of pointless. Now everyone is going to clamor for the old labels -- why not support both? + +And the labels to folders move isn't the only letdown in the redesign. Those using the collaborative features will likely miss the "last edited by" function, which appears to have gone the way of the Dodo (if you know where it went, let me know). + +Also, while it's a minor point, I can't help thinking that interface has a very un-Google feel to it, I don't mind the re-design, but it looks more like something Yahoo or AOL would come up with. + +But the redesign isn't a total letdown. There are a couple of truly useful features in the new Docs and Spreadsheets. The live search suggestions tool with dynamic results pulled from your document list as you type (think Google Suggest or Apple Spotlight) is a great time saver and the ability to sort documents by collaborator is also quite handy. + +Since there doesn't appear to be a way to revert to the old version, the Google Docs redesign, for better or worse appears to be here to stay. + +[1]: http://google-d-s.blogspot.com/2007/06/entirely-new-way-to-stay-organized.html "An entirely new way to stay organized" +[2]: https://docs.google.com/ "Google Docs and Spreadsheets" + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/iphone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/iphone.txt new file mode 100644 index 0000000..93b0d6c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/iphone.txt @@ -0,0 +1,22 @@ +The initial real world reviews of iPhones are starting to trickle in and for the most part it would seem that Apple has a winner on its hands. Sure there's some things that could be improved, but by and large the reviews are positive. + +Here's a roundup: + +<p><a href="http://online.wsj.com/article/SB118289311361649057.html">The iPhone is Breakthrough Handheld Computer</a> (Walt Mossberg, Wall Street Journal)</p> +<p><a href="http://www.nytimes.com/2007/06/27/technology/circuits/27pogue.html?_r=1&hp&oref=slogin">The iPhone Matches Most of its Hype</a> (David Pogue, NY Times)</p> + +<p><a href="http://www.msnbc.msn.com/id/19444948/site/newsweek/page/0/">At Last, the iPhone</a> (Steven Levy, Newsweek)</p> +<p><a href="http://www.usatoday.com/tech/columnist/edwardbaig/2007-06-26-iphone-review_N.htm">Apple’s iPhone isn’t perfect, but it’s worthy of the hype</a> (Ed Baig, USA Today)</p> + +Perhaps the most interesting thing all these reviews mention is the lack of scratches on the screen -- even when the iPhone is tossed in a pocket with keys, loose change and whatnot. + +But of course these mainstream journalists have overlooked the obvious satanic witchcraft overtones of the iPhone which Wired's Lore Sjöberg, master of the dark arts, details in his latest column: [Beware the Magical IPhone][2]. + +And just because it's the first and only time this will happen, I'd like to say that I actually agree with John Dvorak, who recently wrote an article entitled: [Shut Up About the iPhone, Already!][1]. + +Still, despite the fact that I'm thoroughly sick of hearing about the thing (David Pogue claims the "iPhone has been the subject of 11,000 print articles, and it turns up about 69 million hits on Google"), I do plan to purchase one, and probably on Friday, but only out of a sense of obligation to you my dear readers, definitely not because I actually want it. + + + +[1]: http://www.pcmag.com/article2/0,1895,2150870,00.asp "Shut Up About the iPhone, Already!" +[2]: http://www.wired.com/culture/lifestyle/commentary/alttext/2007/06/alttext_0627 "Beware the Magical IPhone"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lightroom.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lightroom.txt new file mode 100644 index 0000000..ba08c49 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lightroom.txt @@ -0,0 +1,20 @@ +Adobe has released an upgrade for its Photoshop Lightroom RAW image editing tool. [Lightroom version 1.1][2] packs an impressive amount of new features for an incremental upgrade and it's free for all Lightroom users. + +You probably won't notice any great changes in the interface when you install the update, but that doesn't mean there aren't significant improvements. Most of the changes are on the fine grained controls and image editing options. + +An extensive [list of changes][3] (PDF) can be found on the Adobe site and there really is far more than I can cover in a single post, but here's some of the highlights I've noticed in the last hour or so of testing: + +>* The application feels faster, switching between modules is quicker and when scrolling through the library thumbnails snap into focus much quicker (note I'm using a Macbook with one gig of RAM, YMMV). +* Vastly improved sharpening tools. In the Develop module the sharpening slider has been replaced with four individual controls (Amount, Radius, Detail, and Masking). This could be a mixed bag, on one hand you have more fine-grained control on the other hand it takes longer -- it would nice if this were a "advanced" option. +* "Clarity" controls. A new Develop module feature which Adobe says "adds depth to an image by increasing local contrast." I haven't had time to really get the hang of it, but in certain situations it can give images that extra "pop" that editors are always asking for. +* The cataloging system has been revamped and you can now import images from one catalog for use in another (see the new menu item File >> Import For Catalog) +* New metadata browsing option. Images can be sorted by things like camera, lens, aperture, ISO etc. + +Version 1.1 also incorporates all the improvements of Adobe Camera Raw 4.1, which we [wrote about previously][1] as well as some other interface improvements and under-the-hood performance boosters. + +Since the upgrade is free and the new features impressive, I'd definitely recommend Lightroom 1.1 for existing users. For those unfamiliar with the program, have a look at our [earlier review][4]. + +[1]: http://blog.wired.com/monkeybites/2007/05/camera_raw_upda.html +[2]: http://www.adobe.com/products/photoshoplightroom/ "Adobe Lightroom" +[3]: http://www.adobe.com/special/photoshop/Lightroom_ReadMe.pdf "Lightroom 1.1 Read Me" +[4]: http://www.wired.com/gadgets/digitalcameras/news/2007/02/72787 "First Look: Photoshop Lightroom"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lr.jpg Binary files differnew file mode 100644 index 0000000..0580ed0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lr1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lr1.jpg Binary files differnew file mode 100644 index 0000000..c57f212 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lr1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lrmeta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lrmeta.jpg Binary files differnew file mode 100644 index 0000000..e7a0f13 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lrmeta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lrsharp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lrsharp.jpg Binary files differnew file mode 100644 index 0000000..7668925 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/lrsharp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/mizpee.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/mizpee.jpg Binary files differnew file mode 100644 index 0000000..46391e3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/mizpee.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/mizpee.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/mizpee.txt new file mode 100644 index 0000000..54ddefc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/mizpee.txt @@ -0,0 +1,18 @@ +Just in case you weren't sure of the whole web 2.0 thing had jumped the shark or not, there's now a web service for finding the nearest restroom on your mobile device. Yes, you read that right. + +[MizPee][2] is a new web service that aims to deliver information regarding the location of nearby restrooms. + +And it gets better, once you enter your location MizPee will send back not only a list of nearby toilets but also provide ratings (ranging from 1-5 rolls) and even user comments. Also included are details like whether or not a payment is required, if the restroom has disabled access or diaper changing facilities. + +The site can be accessed via your mobile device at mizpee.com or you can send an SMS message from your phone. + +One on hand this could be genuinely useful in some cases (the upper west side in the New York has always been a touch place to find a restroom), but at the same time it seems a bit ridiculous as well, is it so hard to stop someone on the street and ask them if they know of a restroom in the area? + +However I should note that while I find the whole thing funny, my girlfriend assures me that there is market for exactly this sort of information. + +And at least now you can rest easy knowing you'll have no trouble finding a restroom after waiting in line for your new iPhone. + +[via [Techcrunch][1]] + +[1]: http://www.techcrunch.com/2007/06/27/when-youve-got-to-go-go-to-mizpeecom/ +[2]: http://www.mizpee.com/ "Mizpee"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/mslive.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/mslive.txt new file mode 100644 index 0000000..84a19af --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/mslive.txt @@ -0,0 +1,31 @@ +Microsoft has slowly been releasing pieces of its Windows Live Services over the last year and today sees a couple more betas hatching onto the web. [Windows Live Photo Gallery][1] is intended as free upgrade to Vista's Photo Gallery (it also works on XP) and [Windows Live Folders][2] is the long awaited "Live Drive" backup storage solution. + +For now both services are in limited beta test phases. Windows Live Folders is currently a managed beta and accounts are limited to 500 MB of storage, but that restriction will be lifted as the product moves out of beta. + +To use the new beta you'll need a Windows Live ID, but otherwise the service works quite well. There are a number of options for sharing files, including options to allow access to the whole web, selected users or keep them totally private. + +In order to access files in a shared folder other users will need at the bare minimum a Windows Live ID for authentication. Beyond that you can control whether or not specific people can gain access. + +While Windows Live Folders is easy to use and I had no problems in my testing, it isn't exactly groundbreaking. For instance, I wouldn't want to try and back up a large amount of files through the web interface since you'd be limited to uploading five files at a time. + +Windows Live Photo Gallery is an update/replacement for the Photo Gallery that ships with Vista, though the new version works with XP as well, which should be welcome news for those who haven't upgraded yet. Microsoft claims Windows Live Photo Gallery will have a number of enhancements, including a new "stitching" tool and built in tools for posting photos to Live Spaces, or, in the case of videos, Soapbox. + +While there is actually a live page for the Photo Gallery beta, the link currently leads to a dead page, but hopefully the download will be active soon. + +As part of the announcement Microsoft has [posted an interview][3] with Chris Jones, corporate vice president, Windows Live Experience Program Management. Jones outlines some of Microsoft's strategies for the future of on/offline application, which Jones refers to as "software plus services." + +Unlike Yahoo and Google who tend toward browser-based applications, Microsoft plans to use desktop clients for many of its integrated services. + +For example Windows Live Messenger, Windows Live Mail and the new Windows Live Photo Gallery are all essentially desktop software packages that also feature an online component. + +Some might argue that the future of the desktop is the browser, but Microsoft doesn't seem to think so, of course they are a desktop software vendor so they have a vested interest in making sure the browser doesn't replace the desktop. + +At the moment Microsoft's Windows Live strategy appears a bit fragmented and with the company cranking out so many new betas at such an impressive pace, many users may not even be aware of what's currently available. + +Jones acknowledges that issue and says that an all-in-one download of the whole integrated Live Suite is in the works. + +With Google and Yahoo focused on the browser and Microsoft taking a more hybrid direction it will be interesting to see which aproach customers prefer. For my money, I'll stick with the browser, but let us know what you think in the comments below. + +[1]: http://get.live.com/betas/photogallery_betas "Windows Live Photo Gallery" +[2]: https://folders.live.com/ "Windows Live Folders" +[3]: http://www.microsoft.com/presspass/features/2007/jun07/06-26windowslive.mspx "Windows Live Moves Into Next Phase with Renewed Focus on Software + Services"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/myspacevideo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/myspacevideo.txt new file mode 100644 index 0000000..678ec32 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/myspacevideo.txt @@ -0,0 +1,15 @@ +MySpace plans to launch an overhaul to its MySpace Video service tomorrow, complete with a new name, MySpace TV and separate URL. MySpace is currently the number two video host in the U.S, trailing YouTube by about 8 million viewers a month. + +According to the [New York Times][2], the new MySpace TV will be [available at a separate domain][3] so that those without a MySpace account can still access video from the site's users. + +However MySpace TV is also said to be moving away from user generated content to focus more on professionally created content. For all the hype surrounding user-generated content, it's still the professional clips that bring in the advertising dollars. + +MySpace TV is not just a name though, the Times says that each MySpace member page will "link to a separate MySpace TV channel, which will display the videos the user has uploaded." + +As with the rest of MySpace users will be able to unleash their hideous design choices on the web at large -- customizing the page as it's known in the trade. + +MySpace also plans to launch an online video editing service later this year to compete with [YouTube's Remixer offering][1]. + +[1]: http://blog.wired.com/monkeybites/2007/06/youtube_launche.html "YouTube Launches Lackluster Video Editing Tools" +[2]: http://www.nytimes.com/2007/06/27/technology/27video.html?ei=5088&en=551d80295e4c0211&ex=1340596800&adxnnl=1&partner=rssnyt&emc=rss&adxnnlx=1182956421-2ZsQE3UPTNgm6WBluPwZuw "MySpace, Chasing YouTube, Upgrades Its Offerings" +[3]: http://www.myspacetv.com/ "MySpaceTV"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/picasa.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/picasa.jpg Binary files differnew file mode 100644 index 0000000..2731525 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/picasa.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/picasa.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/picasa.txt new file mode 100644 index 0000000..3dda9ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/picasa.txt @@ -0,0 +1,20 @@ +Google's [Picasa photo sharing site][2] has finally added mapping support. The new features allow users to see a small map in the sidebar for each photo that has latitude and longitude data associated with it. + +Adding your geodata is a drag and drop process and in a nice touch entire albums can be dropped on a location rather than having to set each photo individually. The Picasa desktop client also supports image geodata via Google Earth. + +Most other photo hosting services (Flickr comes to mind) have offered similar support for ages, but now Picasa users don't have to feel left out. Plus Picasa boasts a couple of new features that Flickr lacks. + +First there's a integration with Google Earth which can turn Google Earth into a photo browser. Another nice touch is that in the main Picasa maps view, rather than simple pins to mark each photo, Picasa displays a small thumbnail of the image. + +But the highlight of the new mapping features is the combination of maps and slideshows. If you select a photo in the map and click on "play", the slideshow will move around the map according to the photos locations. + +If you'd like to see the slideshow in action, the Picasa team has [posted a test gallery][1]. + +Picasa has also announced a new [mobile version of the site][4]. + +[via the [Google Blog][3]] + +[1]: http://picasaweb.google.com/picasateam/VegasWeekend/photo#map "Picasa Map Slideshow sample" +[2]: http://picasaweb.google.com/ "Picasa Web Albums" +[3]: http://googleblog.blogspot.com/2007/06/put-your-photos-on-map-and-picasa-on.html +[4]: http://www.google.com/mobile/photos/ "Picasa Mobile"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/rev.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/rev.jpg Binary files differnew file mode 100644 index 0000000..3fe6f4b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/rev.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/speed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/speed.jpg Binary files differnew file mode 100644 index 0000000..cab5021 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/speed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/wlive.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/wlive.jpg Binary files differnew file mode 100644 index 0000000..4998254 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/06.25.07/Wed/wlive.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/codesearch.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/codesearch.txt new file mode 100644 index 0000000..e022d7f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/codesearch.txt @@ -0,0 +1,13 @@ +Google has updated the search capabilities of Google Code Search with expanded coverage and improvements in ranking and access. + +Google Code Search [now features][1] indexing of individual files and code snippets from all over the web rather than just archives and repositories -- such as .zip, .tar, or CVS and Subversion files -- as was previously available. + +Code Search also has an improved ranking system so class and method definitions appear closer to the top of search results for applicable queries. + +In addition to the new features there are now international Code Search domains for Brazil, China, France, and Russia. + +While Google Code Search is getting better, and now that it indexes all files rather than just repositories it certainly casts a wider net, we still prefer [Krugle][2] for its well organized results and advanced operators. + +[1]: http://google-code-updates.blogspot.com/2007/07/improvements-to-google-code-search.html "Improvements to Google Code Search" +[2]: http://blog.wired.com/monkeybites/2007/02/yahoo_developer.html + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/googlecodesearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/googlecodesearch.jpg Binary files differnew file mode 100644 index 0000000..fcfac8d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/googlecodesearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/iphonevoip.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/iphonevoip.txt new file mode 100644 index 0000000..1eaa95e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/iphonevoip.txt @@ -0,0 +1,10 @@ +After several attempts ending in failure I've been forced to conclude that [Jajah][2], the internet based VoIP client, doesn't work with the iPhone. What's worse is, even using Firefox from the desktop, I can't get Jajah to work with the iPhone. + +The call goes through and I can hear the other caller quite clearly (despite the usual VoIP lag-time and echos), but no one seems to be able to hear me from the iPhone. + +Obviously Skype isn't an option, though hackers claim to be quite close to discovering a way to [install third party software][1], which leaves the iPhone without a VoIP option. + +If anyone out there has any suggestions for a web-based VoIP client I should test, be sure to leave a comment below. + +[1]: http://www.hackszine.com/blog/archive/2007/07/all_about_iphoneinterface.html +[2]: http://jajah.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/jajah.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/jajah.jpg Binary files differnew file mode 100644 index 0000000..54512dd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/jajah.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/msgpl.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/msgpl.txt new file mode 100644 index 0000000..8afb359 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Fri/msgpl.txt @@ -0,0 +1,14 @@ +Microsoft has announced in no uncertain terms that it will not support version 3 of the GPL. In a [statement published yesterday][1], the company says "Microsoft is not a party to the GPLv3 license and none of its actions are to be misinterpreted as accepting status as a contracting party of GPLv3 or assuming any legal obligations under such license." + +Microsoft's statement comes in response to claims that the company's deals with Novell and others which involve "interoperability collaboration," would mean, should the Linux kernel move to the GPL v3, that Microsoft would support the new license as part of those agreements. + +However Microsoft insists that such claims do not have "a valid legal basis under contract, intellectual property, or any other law." + +Even more interesting is that Microsoft contends that they don't need a license under the GPl in order to collaborate with its Linux partners even if they should choose to distribute code under the GPL v3 in the future. + +Novell says it will continue to support customers with a regular SUSE Linux Enterprise Server subscription, regardless of the terms of the certificates provided by Microsoft. + +[via [eWeek][2]] + +[1]: http://www.microsoft.com/presspass/misc/07-05statement.mspx "Microsoft Statement About GPLv3" +[2]: http://www.eweek.com/article2/0,1895,2155119,00.asp
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/ebayfirefox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/ebayfirefox.jpg Binary files differnew file mode 100644 index 0000000..82bc0fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/ebayfirefox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/ebayfirefox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/ebayfirefox.txt new file mode 100644 index 0000000..9e2cb1e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/ebayfirefox.txt @@ -0,0 +1,17 @@ +Mozilla has released another branded, use-specific version of Firefox, this one as part of a deal with eBay. For now the [eBay optimized Firefox][1] (which really just amounts to the eBay toolbar pre-installed) is available for users in Germany, France and the United Kingdom with other countries "possible at a later date." + +The Ebay toolbar, which has been in testing for a while now, includes the following features designed to improve your buying/selling experience: + +>* eBay Button to open and close the eBay Companion sidebar and provides quick access to popular eBay bookmarks. +* eBay Companion Sidebar for quick links to check on your buying, selling and feedback status. +* eBay Alert Box with out-bid notices. + + +Branded versions of Firefox are nothing new, Google has long offered a version with the Google Tools pre-installed and we looked at an [AllPeers version][2] a while back, but the EBay deal could be a sign the Mozilla sees this as Firefox's future. + +Although no details about the deal have been disclosed it seems reasonably to assume that Mozilla see a profit from the inclusion of the toolbar just as they do with the Google Search box in the standard toolbar. + +Some purists might be thinking sellout, but the eBay branded version (and others) are actually a good thing for Firefox, not only does it provide Mozilla with an additional revenue stream, but it also spotlights the browser on eBay and had the potential to draw in new users who might not otherwise be motivated to switch to Firefox. + +[1]: http://pages.ebay.co.uk/firefox/ "Mozilla Firefox eBay Edition" +[2]: http://blog.wired.com/monkeybites/2007/06/firefox_and_all.html "Firefox and AllPeers To Be Bundled Together"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/feed1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/feed1.jpg Binary files differnew file mode 100644 index 0000000..460b2ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/feed1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/feed2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/feed2.jpg Binary files differnew file mode 100644 index 0000000..6653dee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/feed2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/feedburner.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/feedburner.txt new file mode 100644 index 0000000..9669ed8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Thu/feedburner.txt @@ -0,0 +1,16 @@ +As part of its acquisition by Google, Feedburner is now offering several of its "Pro" features at no additional cost. Both the "MyBrand" tool, and a tool which tracks feed analytics, allowing you to see the number of people who have viewed or clicked items in your feed, are now available to [everyone for free][1]. + +But you'll need to turn on the new features yourself. The advanced stats package can be enabled on a per-feed basis by logging in to your account, clicking on the desired feed and then heading to the "Analyze" tab. + +Under the Analyze tab click the "Item Views" checkbox and then hit save. If you flip back to your main feed list the feed you just changed should now display a "Pro" label after the name. + +MyBrand, the other new free feature, allows you to track your feeds without using the feedburner domain -- in other words your feed can live at yoursite.com/feeds/ and Feedburner will still track it. + +To enable MyBrand, sign into FeedBurner, click the "My Account" link in the upper left-hand corner, and then select "MyBrand." + +You'll need to email Feedburner to turn the feature on since it might require some DNS changes. I haven't actually gotten around to this one yet, but I haven't heard of any problems with it. + +I've only had the new analytics turned on for a day so there isn't much to see yet, but it is nice to finally have access to it detailed stats info at no charge. And it seems logical to assume that this is only the start as Google and Feedburner begin to integrate Feedburner service into the Google empire -- I'm looking forward to Feedburner being rolled in the Google Analytics. + + +[1]: http://blogs.feedburner.com/feedburner/archives/2007/07/freeburner_for_everyone.php "FreeBurner for Everyone"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/allmp3.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/allmp3.txt new file mode 100644 index 0000000..4355529 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/allmp3.txt @@ -0,0 +1,15 @@ +The controversial Russian music download site AllofMP3.com has closed its doors. The music service, which sold songs for much less than other online services (thanks to a weird loophole in Russian law) has been the [target of U.S. ire][3] for some time. + +AllofMP3 claimed it was the second largest online music retailer, trailing only Apple's iTunes service. + +But before the RIAA execs start dancing in the streets and users shed tears in half consumed pints, consider the old adage: if it looks like a duck, and quacks like a duck... it's probably AllofMP3 at the new domain [MP3Sparks.com][2]. + +If you're wondering why the site would just transfer its entire catalogue to a new domain consider that, as the [BBC reports][1], "during talks on Russian membership of the World Trade Organization in 2006, Susan Schwab, the US Trade Representative, said that the site must be closed before entry." + +Russia wants to be part of the WTO, AllofMP3 is a stumbling block, hence get rid of AllofMP3 and the problem is solved. After all, that is what the U.S. asked for right? + +That may or may not be the real reason for the move and somehow I think U.S. officials will probably be back with some more specific demands before Russia gets its WTO membership. But at least users of the site can rest assured that their favorite music service isn't gone yet. + +[1]: http://news.bbc.co.uk/2/hi/technology/6264266.stm +[2]: http://mp3sparks.com/ +[3]: http://blog.wired.com/monkeybites/2006/12/allofmp3com_fig.html "AllofMP3.com Fights Back"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/apple.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/apple.jpg Binary files differnew file mode 100644 index 0000000..0b8c5e9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/apple.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/apple.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/apple.txt new file mode 100644 index 0000000..e9c38ff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/apple.txt @@ -0,0 +1,16 @@ +Apple has issued a small update to correct an audio problem caused by the OS X 10.4.10 update released last month. + +After installing the [Mac OS X 10.4.10 update of June 20][2], some users were plagued by "popping" or "crackling" sounds which would come through when some external speakers were connected to Intel-based Macs. + +To remove the Rice Krispies effect from your Mac, Apple has [released a new audio patch][2]. + +Today's patch is listed as "Audio Update 2007-001" and came be retrieved via Software update or [direct from the Apple site][3]. + +The 660KB download is a recommended update for all Intel Macs, but older PowerPC machines are not affected. + +Apple has also re-released the original Mac OS X 10.4.10 update as v1.1 to add the audio patch, so if you've held off based on the audio problems it should be safe to upgrade now. + + +[1]: http://www.apple.com/support/downloads/audioupdate2007001.html "Audio Update 2007-001" +[2]: http://blog.wired.com/monkeybites/2007/06/apple-release-o.html "Apple Releases OS X 10.4.10 Update" +[3]: http://docs.info.apple.com/article.html?artnum=305840
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/firefoxalpha6.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/firefoxalpha6.txt new file mode 100644 index 0000000..d5e895e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/firefoxalpha6.txt @@ -0,0 +1,22 @@ +The final alpha of Firefox 3 was released to developers today. After this Mozilla's roadmap calls for the release of beta 1 on July 31st which will be the first feature complete version of the next generation Firefox browser. + +Alpha 6 doesn't add too much in the way of new features, for instance the much anticipated Places feature has not been updated from the [last release][2], though Places should be fully incorporated into the beta coming later this month. + +A quick overview from the [release notes][1] reveals the following additions to Alpha 6: + +>* Updated SQLite engine to version 3.3.17 +* Support for site-specific preferences - text size +* A new Quit dialog box that resolves termination errors +* Added permanent 'Restart Firefox' button to Add-Ons Manager +* Miscellaneous fixes to download manager including correctly displaying large file sizes +* Various Places fixes +* Miscellaneous Gecko 1.9 bug fixes + +I just took the new version for a quick test drive and found that, as with previous alphas, it's faster than Firefox 2 but it still has a ways to go before it's stable and ready for the public. + +We'll do a more detailed review of Firefox 3 when the first beta arrives. I'm particularly interested to see the revamped download manager and the rest of the Places improvements. + + + +[1]: http://www.mozilla.org/projects/firefox/3.0a6/releasenotes/ +[2]: http://blog.wired.com/monkeybites/2007/04/first_look_fire.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/gCentral.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/gCentral.txt new file mode 100644 index 0000000..ed2c65e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/gCentral.txt @@ -0,0 +1,17 @@ +Both Google and GrandCentral have announced this morning that Google has acquired the voice communications service. Rumors of the deal [surfaced last week][2] but neither company would comment. Techcrunch, who broke the initial rumors now [reports][3] that Google may have dropped as much as $50 million on Grand Central. + +For more on GrandCentral and how the service works, check out [our review][1] from earlier this year. + +The Google Blog [announcement][4] says that current GrandCentral customers will "continue to have uninterrupted access to the service." So far Google has not announced any plans for GrandCentral but has said that "GrandCentral's technology fits well into Google's efforts to provide services that enhance the collaborative exchange of information between our users." + +When the rumors surfaced last week a number of pundits speculated that Google may want to integrate GrandCentral with GoogleChat to create a Skype-like service, but thus far that remains speculation. + +While GrandCentral will continue to function as-is for existing users, the site will be shutting down slightly for those that haven't signed up. GrandCentral [claims][5] that "a limited number of users will be able to sign up for an invitation to participate in continued beta-testing of the service." + +The only other change is that GrandCentral users can no longer upload custom sound files for their ring back tones, but given the copyright infringing potential there, that's hardly surprising. + +[1]: http://blog.wired.com/monkeybites/2007/03/grandcentral.html "GrandCentral Delivers" +[2]: http://blog.wired.com/monkeybites/2007/06/google-moving-i.html "Google Moving Into The Phone Market With GrandCentral Acquisition?" +[3]: http://www.techcrunch.com/2007/07/02/deal-is-confirmed-google-acquired-grandcentral/ +[4]: http://googleblog.blogspot.com/2007/07/all-aboard.html +[5]: http://www.grandcentral.com/about/google
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/gc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/gc.jpg Binary files differnew file mode 100644 index 0000000..b868a01 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/gc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/iphoneaim.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/iphoneaim.jpg Binary files differnew file mode 100644 index 0000000..803ed4f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/iphoneaim.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/iphonehacks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/iphonehacks.txt new file mode 100644 index 0000000..91bd913 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/iphonehacks.txt @@ -0,0 +1,26 @@ +The iPhone hacks are starting to get more interesting. Hackers haven't yet pulled off the [number one most requested hack][1], unlocking the phone for use on any network, but a <a href="http://gigaom.com/2007/06/28/no-contract-no-iphone-for-you/#comment-299545">commenter on a GigaOM thread</a> claims to have found a way to use the iPhone without AT&T service, something which was rumored to have been impossible. + +As the commenter writes: "Once disconnected, the phone, voicemail, and SMS features of your iPhone will no longer work. You'll see "No Service" in place of the AT&T name with no bars shown. BUT all other functionality of the device will work (including WiFi)." + +Given that pretty much all mobile providers suck, each in their own special way, and even if it's unlocked there still won't be 3G support, unlocking the phone seems mildly useless to me (save for the ability to use it abroad). + +The ability to use the iPhone as just a handheld mini computer over wifi actual strikes me as far more useful in the long run. + +But it isn't just hacks that are trickling in, there's some useful web apps as well. + +My personal favorite is the [iChat for iPhone][2] which is written in JavaScript and allows for web-based chats on the AIM network. While it's ideal with a wireless connection, it's not too bad even over EDGE. The source is available and can be hosted on your own server. + +There's also a [nice skin for Google Reader][3] which looks like it would make it a little easier to use on the iPhone, but i can't figure out how to make it work (or else it's just timing out on my current EDGE connection). + +For other useful iPhone apps, check out the [iPhone Application List][4] which is doing a good job of tracking down various iPhone optimized web tools. + +Having used the iPhone for a few days now I'll admit that the device is growing on me. There are still a number of things that annoy me (number one being the lack of multimedia messages -- even my camera-less five-year-old Nokia could do that), but I actually find it to be an excellent phone. + +Yes I'd like more features, but in my experience the call quality is excellent, dialing and contact navigation is by far the easiest of any phone I've used and the SMS interface is wonderful. + +If you'd like to check in on the state of the unlocking hack there's the iPhone Dev Wiki. Earlier the site wound up on Slashdot and Digg which caused it to choke so I won't add a link, but feel free to login to the IRC channel if you'd like to help out the hackers, it's #iphone on irc.osx86.hu. + +[1]: http://blog.wired.com/monkeybites/2007/06/hackers-start-y.html "It's Up To Users To Solve The IPhone's Shortcomings -- Hackers Start Your Engines" +[3]: http://davidcann.com/iPhonify/GoogleReader/ +[2]: http://www.publictivity.com/iPhoneChat/ +[4]: http://www.iphoneapplicationlist.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/lin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/lin.jpg Binary files differnew file mode 100644 index 0000000..f7ddf06 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/lin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/linspire.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/linspire.txt new file mode 100644 index 0000000..54473a9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/linspire.txt @@ -0,0 +1,13 @@ +Linux distributer Linspire has announced that it will pitch in to help create document translators for OpenOffice which will allow the office suite to read and write Microsoft's OOXML document format. + +Linspire [will join][3] Novell and Xandros (among others) in developing the translators, which will offer two-way conversion between the competing document formats. + +If those three Linux distributers ring a bell, it's because they're also the three companies that have signed licensing deals with Microsoft, which offer protection against possible violations of Microsoft patents by Linux. + +Given that a number of large presses and publishers have already [said no to documents saved in Microsoft's OOXML format][2], there doesn't seem to be a huge consumer need for the ODF to OOXML converters, however, the opposite direction OOXML to ODF will allow OpenOffice users to convert documents into a more usable, wide-accepted format. + +Details about the ODF/OOXML translator project can be [found on Sourceforge][1] where the project is hosted. + +[1]: http://sourceforge.net/projects/odf-converter +[2]: http://blog.wired.com/monkeybites/2007/06/industry_leader.html "Industry Leading Publications Reject Office 2007 Documents" +[3]: http://www.linspire.com/lindows_news_pressreleases_archives.php?id=220 "Linspire Joins Microsoft in Developing and Deploying Open Source Translators between Document Formats"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/sap.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/sap.txt new file mode 100644 index 0000000..30e6fe4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/sap.txt @@ -0,0 +1,14 @@ +SAP, one of the largest business application and enterprise software providers in the world, has admitted to corporate espionage. + +Oracle Systems, a competitor in the burgeoning corporate database market, filed suit against SAP earlier this year claiming the company obtained secret Oracle product information which SAP used to entice new customers. + +Today SAP [admitted][1] that it obtained Oracle documents through TomorrowNow -- a Texas-based customer support unit SAP purchased in 2005 -- but SAP maintains that it did not have access to Oracle's intellectual property. + +Oracle claims that TomorrowNow accessed Oracle's information by using the login info from defecting customers and then the company went on to concealed its real identity by using fake phone numbers and bogus e-mail addresses such as the ever popular, test@testyomamma.com. + +Oracle also alleges that SAP violated its intellectual property rights by copying code and claiming it as its own. + +While SAP has admitted the wrongdoing, the lawsuit and feud between the two shows no signs of abating. + + +[1]: http://news.wired.com/dynamic/stories/G/GERMANY_SAP_ORACLE?SITE=WIRE&SECTION=HOME&TEMPLATE=DEFAULT
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/spy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/spy.jpg Binary files differnew file mode 100644 index 0000000..8124d7b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Tue/spy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphone_hacked.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphone_hacked.jpg Binary files differnew file mode 100644 index 0000000..57083b4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphone_hacked.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphonedev.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphonedev.jpg Binary files differnew file mode 100644 index 0000000..ea83cfe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphonedev.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphonedev.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphonedev.txt new file mode 100644 index 0000000..5d018fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphonedev.txt @@ -0,0 +1,24 @@ +Another bit of iPhone news: Apple has [posted a developer's guide][1] for those looking to build web applications optimized for the iPhone. + +With a number of apps already "iPhonified," it would seem that iPhone optimization is mainly a matter of dumbing down your web app for Safari. + +Here's a quick list of things Safari on the iPhone doesn't support: + +>* window.showModalDialog() +* Mouse-over events +* Hover styles +* Tool tips +* Java applets +* Flash +* Plug-in installation +* Custom x.509 certificates + + +One thing Apple omits from this list is that Safari for the iPhone can't download anything. Apparently downloading files is not part of Apple's definition of a "full fledged browser." + +After reading through Apple's documentation and guidelines, I realized the killer hack for the iPhone is going to be installing Opera Mini. + +Still as the apps [listed in our poll demonstrate][2], despite the shortcomings it is possible to build at least semi-useful apps for the iPhone. + +[1]: http://developer.apple.com/iphone/ "Develop For the iPhone" +[2]: http://blog.wired.com/monkeybites/2007/07/vote-best-web-a.html "Vote: Best Web Apps for the iPhone"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphonehacked.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphonehacked.txt new file mode 100644 index 0000000..9d03052 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.02.07/Wed/iphonehacked.txt @@ -0,0 +1,11 @@ +Today is independence Day in the U.S. and to celebrate we've got a link to DVD Jon's hack to use the iPhone without AT&T service. It requires a Windows machine and bit of hex editing (if I'm understanding it right, for obvious reasons Jon doesn't exactly give detailed instructions), but users report that it does seems to work. + +If the comments on the thread, Jon notes that there's an even easier way to activate the phone sans AT&T, provided you know someone who has an activated phone and is willing to risk it: + +>If you know someone who has already activated their iPhone, borrow their SIM. Insert the SIM in the non-activated iPhone. Then cradle the new iPhone in the dock with iTunes. iTunes then quickly activates the new phone with ATT. This only took about 2-3 min. Now.. the only possible issue is that it might disable the original phone? But I have nothing to base this on, this is more or less a warning. I did not have access to the original phone after the process was done. + +Another poster in the thread raises an interesting question, if you apply the hack, activate the phone and then decide you want to go ahead and legitimately register with AT&T will it work? So far no one seems to know the answer to that question. + +There have been several articles around the web about how Apple might live to regret it's exclusive deal with AT&T, however, given the nature of these early hacks it seems that AT&T might be the ones that end up regretting the deal. Certainly if nothing else they're seeing a heap of bad press with countless reviews repeating the manta iPhone good, AT&T bad. + +And who better to release the first iPhone unlocking patch than DVD Jon -- given that he's already unlocked DVDs, iTunes tracks and host of other DRM measures?
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/anonymizer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/anonymizer.jpg Binary files differnew file mode 100644 index 0000000..5c70e90 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/anonymizer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/anonymizer.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/anonymizer.txt new file mode 100644 index 0000000..e740710 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/anonymizer.txt @@ -0,0 +1,11 @@ +Without fanfare or explanation long-time anonymous browsing service Anonymizer has [discontinued the web-based and toolbar versions][2] of its "Private Surfing." The desktop version of Anonymizer is still available, but there are already hosts of desktop packages that do the same thing and cost less --[Tor][1] comes to mind-- what made Anonymizer unique was the web-based component. + +Even worse for Mac, Windows Vista and Linux users, the desktop version of Anonymizer is only available for Windows 2000 and XP. + +Though I haven't actually used Anonymizer in years (I gave up basically) I'll credit the site and its re-routing web-service with introducing me to the concept of anonymous web browsing and why it's necessary. + +These days I have a copy of Tor installed and I use the Firefox extenstion, [TrackMeNot][3], but I'm curious if Compiler readers have any suggestions for another web-based service like Anonymizer... let me know your ideas in the comments below. + +[1]: http://blog.wired.com/monkeybites/2006/08/beginners_guide.html "Beginner's Guide to Safe Searching" +[2]: http://www.anonymizer.com/consumer/ps_upgrade_authentication.html +[3]: http://mrl.nyu.edu/~dhowe/TrackMeNot/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/ask.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/ask.txt new file mode 100644 index 0000000..c1ff5c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/ask.txt @@ -0,0 +1,25 @@ +[Ask.com][5] has announced it will release a new privacy tool, AskEraser, which will allow users to stop Ask from storing any information at all about user searches. With Google under fire for its [meaningless cookie policy change][4], Ask has stepped forward to give searchers a reason to move away from the Googlopoly. + +When AskEraser is enabled, Ask.com will not retain any of the data it typically stores during a search. As it is now the site stores the search query, IP address, incoming URL as well as cookie-based information. + +We looked at Ask's new [integrated search results][1] a couple of months back and [came away impressed][2] and with Google seemingly unwilling to respect user privacy, Ask is looking even more like an attractive alternative. + +Jim Lanzone, Ask.com CEO [says in the press release for AskEraser][3]: + +>AskEraser is a great solution for those looking for an additional level of privacy when they search online. Anonymous user data can be very useful to enhance search products for all users, and we're committed to being open and transparent about how such information is used. But we also understand that there are some who are interested in new tools that will help protect their privacy further, and we will give them that control on Ask.com. + +For those who don't worry about privacy, keep in mind last years screw up at AOL which exposed data on about 650,000 searches and remember that New York Times reporters successfully tracked down one of the searchers, based solely on the data exposed by AOL. + +In addition to the user pro-active AskEraser, the company plans to change its privacy policy and says it will no longer link search queries to IP addresses after eighteen months. + +With AskEraser, Ask.com becomes the only major search engine to offer users a way to control data retention and search history at the time of their search. + +AskEraser should be available in the U.S. and U.K. by the end of the year with rollouts in global markets starting early next year. + +[1]: http://www.wired.com/software/webservices/news/2007/06/new_search +[2]: http://blog.wired.com/monkeybites/2007/06/ask_redesign_hi.html +[3]: http://www.irconnect.com/askj/pages/news_releases.html?d=123324 +[4]: http://blog.wired.com/monkeybites/2007/07/new-google-sear.html +[5]: http://ask.com + +&
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/gearth.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/gearth.txt new file mode 100644 index 0000000..4c0a024 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/gearth.txt @@ -0,0 +1,14 @@ +Google Earth has rolled out some spectacular new layers including "Astronaut Photography of Earth" with images from the last 40 years of NASA and "Earth City Lights," views of the planet at night. + +The [new layers][1] highlight images from the collaborative effort between Google Earth and NASA which is designed to promote NASA's various "earth" programs. + +As the Google LatLong Blog notes, "People are usually familiar with NASA's space missions, but not everyone knows that NASA also devotes a considerable amount of effort to Earth explorations." + +The new layers can be found in the Featured Layers section on Google Earth, there's no need to update the application, the layers should be there. + +The images for the Astronaut Photography layer are highlights from Nasa's online [Astronaut Photography collection][2] (an excellant way to waste time on the lazy Friday). + +Google Earth has also updated its European roads content, adding 15 new countries in Europe, as well as adding more content for the Netherlands, like business listings layers and country names in Dutch. + +[2]: http://eol.jsc.nasa.gov/ +[1]: http://google-latlong.blogspot.com/2007/07/nasa-in-google-earth.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/geath1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/geath1.jpg Binary files differnew file mode 100644 index 0000000..27ff35f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/geath1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/geath2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/geath2.jpg Binary files differnew file mode 100644 index 0000000..0c4dd7d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/geath2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/how-to back up windows.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/how-to back up windows.txt new file mode 100644 index 0000000..a95234e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/how-to back up windows.txt @@ -0,0 +1,45 @@ +Windows users looking to back up their precious documents have considerably more options than other platforms, including a very nice built-in back up program that ships with both Windows XP and Vista. + +Regrettably the program is somewhat buried and many users aren't familiar with it. + +Depending on your needs the built-in option may be sufficient, but if you'd like more options with bells and whistles not found in Microsoft's program, fear not — numerous backup solutions are available from third party vendors. + +What you'll need + +A secondary hard drive of equal or greater capacity to the machine you want to back up or another form of media (tape drives etc). + +Some back up software, whether the default Microsoft program or one of the third party vendors listed below. + +How To + +If you use Windows XP Professional, Ntbackup.exe, Microsoft's cryptic name for the backup utility should already be installed. If you're using XP Home Edition, you'll need to grab your original install CD. + +Pop in the XP Home install CD and at the "Welcome to Microsoft Windows XP" screen, click "Perform Additional Tasks." In the resulting window click "Browse this CD." This should put you in Windows Explorer where you'll need to double-click the "ValueAdd" folder, followed by "Msft" and then "Ntbackup." + +Then just open Ntbackup.msi to begin installing the Backup utility. + +Once you have everything installed click the Start menu and navigate to All Programs>>Accessories>>System Tools>>Backup to launch the backup wizard. + +In the Wizard you'll need to click through the opening page and choose "Back up files and settings" on the second page. + +On the following page you'll be asked what you want to back up. + +For most people, backing up the My Documents folder and settings is probably suffient (unless you have multiple users in which case you'll want to select the "Everyone" option). + +From there you can select which folders (if any) to exclude, choose a kind of backup, the location and even set up a schedule for future back ups. To set up the schedule, don't click "Finish" on the last page of the Wizard. Instead hit the "Advanced" button and chose "Later" and set up a future date. + +For Vista users the process is very similar, but there are two different back up programs depending on the version of Vista that your using. Automatic File Backup is available in almost all editions of Windows Vista (except Starter and it has only basic functionality in Home Basic). + +Windows Complete PC Backup is available in the Business, Ultimate, and Enterprise editions, and performs a complete, image-based backup of the entire computer. + +Note that neither of Vista's offerings support tape drives. + +Third Party Offerings + +If you'd like to make a clone of your drive, <a href="http://www.2brightsparks.com/downloads.html">SyncBackSE</a> offers some nice options for a reasonable price ($30). There's also a 30-day trial available. + +SyncBackSE features some nice fine grained controls and can even back up to an FTP server with compressed files, allows for set commands to run before and after backups and will e-mail you in the event of a backup failure. + +<a href="http://www.acronis.com/homecomputing/products/trueimage/index.html">Acronis True Image Home</a> ($50) is another popular solution and features Vista support. With Acronis you can clone your drive and recover particular files in archives just like in Windows Explorer or restore the whole system. + +Another option is <a href="http://www.novastor.com/pcbackup/backup/n_backup.html">NovaBACKUP</a> ($50) which supports Windows Vista and offers backups to nearly any storage format, scheduling and file integrity verification. NovaBAKCUP can also create a Disaster Recovery CD that can be used to boot an unresponsive system, but note that it does not currently support Windows Vista. diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/how-to encrypt email.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/how-to encrypt email.txt new file mode 100644 index 0000000..f3e7e46 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/how-to encrypt email.txt @@ -0,0 +1,57 @@ +Do you think of e-mail as a digital postcard or a signed and sealed letter? If you're not using an encryption tool to send your e-mail, regardless of how you answered that question, your e-mail is essentially a postcard transmitted in plain text and available for anyone on the internet to read. + +If you'd like to keep your e-mail, or at least some of your e-mail, from prying eyes, you need to use some sort of encryption. There is a protocol for sending messages in secure format, but since almost no e-mail hosts support it, it isn't yet a very good solution. + +At the moment the best solution is to use either PGP (Pretty Good Privacy) or GPG (Gnu Privacy Guard) a similar, but free and open source, encryption scheme. + +PGP and GPG both rely on shared keys which means that once you send an encrypted e-mail only those recipients with your shared key can read it. + +What you'll need: + +<a href="http://www.pgp.com/index.html">PGP</a> or <a href="http://www.gnupg.org/">GPG</a>. Both will work, but PGP is not free or open source. + +A plug-in for your e-mail client. + +Solutions by client + +Apple Mail (OS X 10.4, earlier versions require additional steps) + +There's a <a href="http://www.sente.ch/software/GPGMail/English.lproj/GPGMail.html#Download">plug-in available</a> for Apple Mail that utilizes Mail's unofficial plug-in architecture to add GPG/PGP features. + +You'll need three components installed: <a href="http://macgpg.sourceforge.net/">GPG</a>, <a href="http://macgpg.sourceforge.net/">GPG KeyChain Access</a>, and the <a href="http://www.sente.ch/software/GPGMail/English.lproj/GPGMail.html#Download">GPG Mail.app plugin</a>. GPG and the Mail plug-in are available as package installers with instructions GPG KeyChain Access is pre-compiled and can be easily dragged to your application folder. + +Open GPG Keychain Access and create a private key. This is yours alone, don't share it or your GPG messages will be compromised. + +In creating the private key, keychain Assistant also sets up your public key which you can export and share with your friends and associates so they can decrypt your messages. + +Now that your Keys are set up, it's time to open Mail.app. Create a new message and you should see a small toolbar just above the message body with options to encrypt and what key to use. + +Congratulations, no more postcards for you. + +Thunderbird + +Thunderbird on all platforms has a plug-in very similar to that of Mail.app. <a href="http://enigmail.mozdev.org/download.html">Enigmail</a> requires Thunderbird 2.0 and GPG 1.4.7 or later. + +For Mac users the installation and GPG set mirrors that of Mail.app. For Windows users the process is roughly the same and <a href="http://enigmail.mozdev.org/gpgconf.html">Mozilla has a step-by-step guide</a> that walks you through the process. + +Outlook + +There is a <a href="http://www3.gdata.de/gpg/">plug-in for Outlook</a> that supports GPG, but unfortunately it's currently limited to a German version. The developers claim an english version is in the works. + +Network Associates, the corporation behind PGP, offers a <a href="http://na.pgpstore.com/product.aspx?sku=3118545&section_id=58&culture=en-US">plug-in package solution</a>, but it will set you back a hefty $200. + +GMail + +If you aren't concerned about encrypting your e-mail messages, consider that most web providers like Yahoo and Google don't just send plain text messages, they actively scan your messages to deliver targeted ads — paranoid yet? + +Unfortunately, due to the limitations of web-based interfaces, encrypting messages in GMail is no easy task. + +But don't dispair, an industrious Greasemonkey hacker has done the hard work for you. The Greasemonkey script <a href="http://www.langenhoven.com/code/emailencrypt/gmailencrypt.php">GMail Encrypt</a> will work with any browser that supports Greasemonkey to encrypt all your outgoing GMail messages, though as the author admits: + +<blockquote> + Due to the fact that Javascript can not handle stupendously large numbers in a timely fashion, even with the BigInt functionality, this encryption is not bulletproof. This routine will conveniently encrypt your emails well enough to prevent your coworker and probably your employer from reading your emails. However, if you decide to annoy somebody working for the NSA then DO NOT be surprised if some bulky guys pull up at your front door in a black SUV. +</blockquote> + +The rest + +There are a lot more e-mail clients out there than these three and many offer GPG solutions. OpenPGP maintains a <a href="http://openpgp.vie-privee.org/courrier_en.html">list of clients that support GPG</a>. diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/iphone4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/iphone4.jpg Binary files differnew file mode 100644 index 0000000..69481d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/iphone4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/iphoneapp.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/iphoneapp.txt new file mode 100644 index 0000000..a198c21 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/iphoneapp.txt @@ -0,0 +1,14 @@ +A hacker by the name of Nightwatch has successfully compiled and launched and first third-party iPhone application. Nightwatch's program is a simple "hello world" app and end-user apps are still a ways off, but this definitely opens the door for others to create applications that run on the iPhone. + +Although the iPhone Dev Wiki is at pains to point out the site is a community effort, the progress report specifically says that Nightwatch has apparently pulled off the app on his/her own. + +The "hello world" app was accomplished using the ARM/Mach-O Toolchain, which is also the main brains behind the "jailbreak" app which is a key element of some other hacks, such as the custom ringtone hack we [detailed earlier this week][2]. + +Nightwatch and the iPhone Dev Wiki team have put together a pre-alpha ARM/Mach-O Toolchain for other hackers looking to compile applications. + +And naturally it remains to be seen whether Apple will continue the hands-off approach to hacks that have characterized the company's handling of AppleTV, the iPod and other products. + +Note that I've omitted a direct link in keeping with the iPhone Dev Wiki's requests to minimalize traffic to the site, but a Google search for ["iPhone hello world"][1] will give you some more information. + +[1]: http://www.google.com/search?q=Hello+World+on+the+iPhone&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:unofficial&client=firefox-a +[2]: http://blog.wired.com/monkeybites/2007/07/iphone-hacks-ad.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/vistasp1.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/vistasp1.txt new file mode 100644 index 0000000..c767586 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Fri/vistasp1.txt @@ -0,0 +1,19 @@ +It would seem that yesterday's rumors of a possible Vista service pack in coming weeks are unfounded. Microsoft has taken the relatively unprecedented step of issuing a press release that attempts to dispel the rumors and asks the public to stop spreading the misinformation. + +While our post was [clearly labeled as a rumor][3], it seems appropriate to follow up and say that the e-mail which fueled the rumors was indeed, according to Microsoft, a typo. + +The announcement quoted on Windows Connected reads: + +>There will be a Windows Vista service pack and our current expectation is that a beta will be made available sometime this year. Service packs are part of the traditional software lifecycle — they're something we do for all Microsoft products as part of our commitment to continuous improvement, and providing early test builds is a standard practice that helps us incorporate customer feedback and improve the overall quality of the product. + + +As longtime Microsoft watcher Mary Jo Foley over at ZDNet points out, the company seems to being following a strategy that has worked well for Apple (well until the iPhone anyway): [under-promise, over-deliver][1]. + +But Apple has long been an underdog and to this day has only a marginal market share on the desktop, Microsoft on the other hand has vast legions of corporate and consumer users who unwilling to upgrade to Vista until an SP1 release sees the light of day. + +But it would appear that that day won't be coming for some time. Although Microsoft hasn't explicitly said so, it would seem that if the beta will arrive late this year, the final release won't happen until next year. + + +[1]: http://blogs.zdnet.com/microsoft/?p=559 +[2]: http://www.windowsconnected.com/blogs/joshs_blog/archive/2007/07/19/no-public-windows-vista-sp1-this-week.aspx +[3]: http://blog.wired.com/monkeybites/2007/07/rumor-windows-v.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/gcookie.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/gcookie.txt new file mode 100644 index 0000000..b3a198a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/gcookie.txt @@ -0,0 +1,16 @@ +In an attempt to appease privacy advocates critical of the search giant's data retention policies Google announced a near meaningless change to its cookie policy yesterday. Starting later this year Google's search cookies will expire after two years rather than the current policy which stores cookies until 2038. + +Of course, given that Google sets a new cookie each time you search, the new expiration date only rolls around if you haven't been to the site for two years. Since most of us use Google somewhat more frequently than once every two years to move, while welcome, really doesn't change anything. + +The [announcement posted to the Official Google Blog yesterday][1] claims the company is seeking a balance between privacy concerns and customer ease-of-use. + +>After listening to feedback from our users and from privacy advocates, we've concluded that it would be a good thing for privacy to significantly shorten the lifetime of our cookies — as long as we could find a way to do so without artificially forcing users to re-enter their basic preferences at arbitrary points in time. + +However, in practice, for heavy Google users the change means almost nothing since the cookies will auto-renew each time you search. + +Of course if you're really concerned about the cookies Google uses to track your search queries you can always set your browser to reject all cookies from the Google homepage, just head to your browser's preferences panel and look for the privacy/cookie policy settings. + +[photo [credit][2]] + +[1]: http://googleblog.blogspot.com/2007/07/cookies-expiring-sooner-to-improve.html "http://googleblog.blogspot.com/2007/07/cookies-expiring-sooner-to-improve.html" +[2]: http://www.flickr.com/photos/massless/8182590/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/hacktheiphone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/hacktheiphone.txt new file mode 100644 index 0000000..44b744d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/hacktheiphone.txt @@ -0,0 +1,19 @@ +It's long, it's complicated and it's not for the faint of heart, but Hacktheiphone.com has posted [instructions on how to add your own custom ringtones][1] to the iPhone from your Intel Mac (Windows iPhone users, [check out this hack][2]). Despite the technical hurdles, this should be welcome news for users since this was the top pick in our [reader poll of missing iPhone features][3] last month. + +The hack requires the iPhone software restore file from Apple as well as the "jailbreak" program and the iPhoneInterface hack and the instructions top out at nearly 20 steps, but users report that it works and even in the event of failure it's still possible to restore your phone via iTunes. + +That said, proceed at your own risk since there is the, however small, chance that you could end up with the $600 paper weight. + +Also keep in mind that the hack could cease to work at any time, should Apple decide to update the iPhone's firmware. + +Given that you're basically recompiling the iPhone's OS you'll want to make sure you have all the ringtones you want to add all ready to go before you start -- in other words this isn't a drag-and-drop, add-them-as-you-go sort of solution. + +I haven't tested it yet because it requires the dock connector and I'm out of town at the moment, sans docking base, but if you decide to give it try be sure to let us know your experiences in the comments below. + +Here's a teaser video of an iPhone with custom ringtones installed: + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/F_IcnbqPOao"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/F_IcnbqPOao" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://hacktheiphone.com/iphone_ringtone_installation.html "How to add custom ringtones/system sounds (for intel Mac users)" +[2]: http://cre.ations.net/blog/post/custom-ringtones--sounds-on-your-iphone-using-windows "Custom ringtones / sounds on your iPhone using Windows" +[3]: http://blog.wired.com/monkeybites/2007/06/hackers-start-y.html "It's Up To Users To Solve The IPhone's Shortcomings -- Hackers Start Your Engines"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/ibm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/ibm.txt new file mode 100644 index 0000000..b88c7ec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/ibm.txt @@ -0,0 +1,17 @@ +Last week IBM announced that it would be [releasing a public beta of AIX 6.1][2], the next upgrade to the company's Unix-based server OS. The open beta for AIX 6 can be downloaded [directly from IBM][1]. + +The public beta is part of IBM's attempt to bring the open source philosophy to the OS level and, presumably, drum up a little publicity and possible developer interest in the little used AIX OS. + +While the beta is free and available to anyone who accepts the license terms, IBM will not be offering support for the pre-release versions of AIX 6.1. Instead a note on the site directs users to a web forum where they can [discuss issues and possible solutions][3] with fellow users. + +New features in AIX 6 include security and virtualization enhancements. Notable items listed on the IBM page include: + +>* Workload Partitions -- software based, virtualization designed to reduce the number of operating system images that have to be managed when consolidating workloads. +* Role Based Access Control -- improved security and manageability by giving admins greater flexibility when granting user authorization and access controls. +* System Director Console for AIX -- new tool for accessing the System Management Interface via a browser with no web server required. + + +[1]: https://www14.software.ibm.com/iwm/web/cc/earlyprograms/ibm/aix6beta/ "AIX beta download" +[2]: http://www-03.ibm.com/servers/aix/6/beta.html +[3]: http://www.ibm.com/developerworks/forums/dw_forum.jsp?forum=1123&cat=72 + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/inviteshare.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/inviteshare.jpg Binary files differnew file mode 100644 index 0000000..f025ed6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/inviteshare.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/inviteshare.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/inviteshare.txt new file mode 100644 index 0000000..f0a6d64 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/inviteshare.txt @@ -0,0 +1,14 @@ +Tired of being locked out of the coolest new startup service that everyone is buzzing about? Not the [coolest person at the party][1] anymore? Never fear, [InviteShare][2] is here to help. The new service is community based around sharing private beta invites. + +New startups typically launch in some sort of limited beta invite phase -- they seed out a few invites to friends and then each invite can pass on a few more. That's where InviteShare comes in. + +If you can't get an invite to your favorite beta site, you can register for an account at InviteShare and then browse the site to find various private betas that are being offered. If you need an invite you can add your name to the list. + +If you're one of the beautiful people and you have invites to hand out you can invite the people at the top of each list by clicking on their name. + +While it remains to be seen how the developers working on beta sites feel about this sort of thing, since, cheekiness aside, private betas are often private for a reason -- startups often lack server bandwidth and code may not be stable yet -- at least the early adopter crowd has a resource all their own. + +The site was working fine earlier this morning when I tested it, but I just tried to login and it threw a few server errors, but a couple refreshes got me in. Since InviteShare was Techcrunch and some others presumably the server is a little overwhelmed, just keep trying and it should eventually work. + +[1]: http://www.theonion.com/content/node/34917 "Guy At House Party Must Be At Least 32" +[2]: http://www.inviteshare.com/ "InviteShare"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/iphone4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/iphone4.jpg Binary files differnew file mode 100644 index 0000000..4f2f564 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/iphone4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/iphone5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/iphone5.jpg Binary files differnew file mode 100644 index 0000000..9609c2a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/iphone5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/iphoneexchange.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/iphoneexchange.txt new file mode 100644 index 0000000..a2ce765 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/iphoneexchange.txt @@ -0,0 +1,11 @@ +Need Microsoft Exchange support before the iPhone makes your wish list? Fear not, Apple may not be supporting the popular corporate mail system from Redmond, but Synchronica, a UK mobile sync company, [announced][1] last week that its Mobile Gateway 3.0 service supports Microsoft Exchange Server/iPhone synchronization. + +Mobile Gateway 3.0 allows iPhone users to access corporate e-mail accounts without the need to open firewalls or install additional server software -- tasks the average IT admin isn't going to look kindly upon. + +Mobile Gateway 3.0 relies on Microsoft's secure Outlook Web Access to retrieve e-mail from corporate Exchange servers and deliver them directly to iPhone's built-in email client. The service also reportedly allows users to take advantage of the iPhone's Address Book integration. + +Of course you won't have access to client side junk mail filters for other fairly basic email services you may take for granted, but at least it's possible to use the iPhone with MS Exchange accounts. + +However, Mobile Gateway isn't cheap. A five seat license will set you back a cool 1,200 Euro (about 1,650 USD). + +[1]: http://www.synchronica.com/news/070711-synchronica-syncs-apple-iphone-to-microsoft-exchange.shtml "Synchronica Syncs Apple iPhone to Microsoft Exchange"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/msdrmcrack.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/msdrmcrack.txt new file mode 100644 index 0000000..4b2b6ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/msdrmcrack.txt @@ -0,0 +1,12 @@ +Microsoft is the latest loser in the cat and mouse game between hackers and various DRM technologies. The company's FairUse4WM DRM scheme, which is used for tracks purchased at the Zune marketplace, has been [hacked again][1]. + +The new hack reportedly strips DRM off of tracks purchased from the Zune Marketplace, or those traded via the Zune's Wi-Fi sharing features. + +Hackers have been able to circumvent FairUse4WM's DRM in the past, but both of the earlier holes have since been patched by Microsoft. However, shortly after the patches appeared the hackers updated their code to defeated the patches -- and so the game continues. + +Microsoft attempted to sue the hacker responsible for the early cracks, but abandoned the effort after failing to identify the individual who goes by the name "viodentia." + +While the post announcing the hack in the [Doom9 forums][1] claims to be someone other than viodentia, as [Ars Technica points out][2] that user's handle "Divine Tao" is an anagram of "viodentia," which seems a bit suspicious at the very least. + +[1]: http://forum.doom9.org/showthread.php?t=127943 " Microsoft WM-DRM and IBX 11.0.6000.6324" +[2]: http://arstechnica.com/news.ars/post/20070715-confirmed-microsofts-windows-media-drm-cracked-again.html "Confirmed: Microsoft's Windows Media DRM cracked (again)"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/pirillo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/pirillo.jpg Binary files differnew file mode 100644 index 0000000..6a8f59a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/pirillo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/pirillo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/pirillo.txt new file mode 100644 index 0000000..edec45d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/pirillo.txt @@ -0,0 +1,29 @@ +Chris Pirillo sparked off a little controversy last week when he announced that he was "upgrading" from Windows Vista to Windows XP. It started with a post on Pirillo's blog entitled [Windows Vista I'm Breaking Up With You][1]. + +Apparently lacking anything better to wrote about a number of mainstream media outlets picked it up as a story and the usual controversy surrounding the opinions of a high profile blogger ensued. + +But Pirillo's decision to move back to XP has some strong weight behind it and having experienced many of the same issues in my own limited use of Vista, I would, if I still had a copy of XP probably move back myself. + +Here's a few of Pirillo's complaints: + +>* My scanner doesn't really work (Hewlett-Packard Laserjet 3052). HP hasn't caught up with support yet, and software updates won't be available until SP1 time-frame. The software works like a charm in XP - amazingly well, as a matter of fact. +* Windows Movie Maker crashes on a regular basis. +* My IPFax software doesn't work (the driver will likely never be updated to be Vista-compliant). Never, EVER caused me a problem in XP.I need this software to work, and dual-booting to use this is not an option. +* I still can't get my Lifecam to work, but wound up purchasing the vastly superior Logitech QuickCam Ultra Vision instead (which puts Microsoft's new webcam software AND hardware series to shame). +* On the same machine (AMD Quad FX), XP trumps Vista in terms of performance. I don't have specific benchmarks on hand, but I can tell you the difference is quite palpable. This is even with most of Vista's eye candy tuned to a dull roar. We'll see if it runs just as quickly when everything's reinstalled there. I only discovered this after rebooting to try my scanner in XP - blazing differences, similar tasks. +* NVIDIA chipsets and video cards. Need I say more? +* I simply can't get to my OS X machine from Vista (or mount a WebDAV server). + +There's several more, but I think this covers some common problems. The first and last issues in this list are my number one grapes about Vista. + +Even as far back as its launch many people complained that Vista felt more like a beta than a true 1.0 release, and, as Pirillo highlights, for many that feeling hasn't changed. + +Which isn't to say that XP is vastly superior, indeed I agree with Pirillo that in most respects Vista *is* far superior to its predecessor -- the security improvements alone are tremendous -- but it still isn't ready for prime time. + +However, I'm curious what Compiler readers think... what are your experiences with Vista? What do you think needs to be done to improve Vista? Let us know what you think in the comments below. + +Here's a rather lengthy video response Pirillo put together to answer both journalist's questions and the comments from readers of his blog. The meaty stuff starts about 13 minutes in: + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/HELrxLdP85c"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/HELrxLdP85c" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://chris.pirillo.com/2007/02/27/windows-vista-im-breaking-up-with-you/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/trippert.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/trippert.jpg Binary files differnew file mode 100644 index 0000000..0f9a6b1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/trippert.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/trippert.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/trippert.txt new file mode 100644 index 0000000..5827f62 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/trippert.txt @@ -0,0 +1,19 @@ +Trippert is new travel community site with a focus on in-depth guides to destinations and thanks to some dead simple navigation and extensive use of tags, is a great way to bone up on wherever you're thinking of going this summer. + +Regular readers know I'm a sucker for a good travel site, but these days most travel communities have become little more than blog providers -- Live Journal clones with a travel focus -- and most are sorely lacking when it comes to easily finding the information you want. + +Trippert eschews the travel diary approach in favor of providing an easy way to collect and save articles and photos of interest. The site's founders write: + +>We don’t expect to offer the traditional travelogue features -- travel diaries, step-by-step maps that retrace a trip, etc. Instead, we want to provide the best tool for you to add great photos and articles, to discover unexpected places, to save what you like, and to leave inspired to take a trip. + +Trippert offers the sort of tag navigation you'd expect -- browsing by country or region -- but it also offers a number of other ways to find an interesting destination by tags. Say you're an architecture aficionado looking to put together a whirlwind tour of the world's most interesting buildings; click on the ["architecture" tag][2] and you'll find a list of articles on significant architectural structures around the world. + +Signing up for a Trippert account will get you a user page where you can track and save your favorite articles and the nerds among us will no doubt love the RSS support which extends to per-author feeds so you can receive notifications each time your favorite Trippert user posts a new article. + +Trippert isn't really breaking any new ground in the online travel community realm, but it's easy to use and has a wealth of information for a recently launched site -- highly recommended for the those in search of summer travel inspiration. + +[via [Mashable][3]] + +[1]: http://www.trippert.com/ "Trippert.com" +[2]: http://www.trippert.com/articles/0/0/0/3:architecture "Trippert tag: Architecture" +[3]: http://mashable.com/2007/07/16/trippert/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/wmdrm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/wmdrm.jpg Binary files differnew file mode 100644 index 0000000..77bbaf3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Mon/wmdrm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/ipodk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/ipodk.jpg Binary files differnew file mode 100644 index 0000000..9818216 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/ipodk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/ipodpatents.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/ipodpatents.txt new file mode 100644 index 0000000..c38a512 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/ipodpatents.txt @@ -0,0 +1,16 @@ +Our sister site Gadget Lab [dug up a new Apple patent][1] for "Portable Home Folders," which could mean that it'll soon be easier to carry your entire User folder on all your portable devices like the iPhone or iPod. + +It's possible to achieve this now with a bit of hacking, but be sure to check out Gadget Lab for the details on how Apple plans to do it. + +In other Apple patent news, AppleInsider [reports][2] that the company has filed for a patent that allows dynamic lyrics display for iPods and iPhones. + +The gist of the system outlined in the patent is that your iPod (or iPhone) would store lyric information and if the information isn't already available would then query a service to retrieve it. In the case of the iPhone this could probably happen from the device via WiFi or Edge, but otherwise would be tied to iTunes (unless a WiFi iPod is in the works). + +The process as described in the patent works like this: + +>identifying an audio file for a media item to be played, the identified audio file including at least encoded audio content for the media item and encoded lyric codes for the media item; accessing lyrics pertaining to the media item; processing the identified audio file to extract and decode the encoded audio content and the encoded lyric codes; playing of the audio content that has been extracted and decoded from the identified audio file; displaying a portion of the lyrics such that the portion of the lyrics being displayed corresponds to that portion of the audio content being played; and distinguishably displaying, based on the lyric codes, a specific part of the portion of the lyrics being displayed from at least one other part of the lyrics being displayed. + +Can a mobile karoke phenomena be far behind? + +[1]: http://blog.wired.com/gadgets/2007/07/apple-patent-wa.html +[2]: http://www.appleinsider.com/articles/07/07/19/apple_working_on_dynamic_lyrics_display_for_ipods_and_iphones.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/plaxid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/plaxid.jpg Binary files differnew file mode 100644 index 0000000..7d23003 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/plaxid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/plaxo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/plaxo.txt new file mode 100644 index 0000000..44e239a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/plaxo.txt @@ -0,0 +1,18 @@ +Plaxo is the latest high profile web service to [announce support for OpenID][1], the standard for online identity management. Plaxo's recently unveiled beta of Plaxo 3.0 has been updated to offer support for OpenID and the company says it plans to become an OpenID provider in the near future. + +In addition to the OpenID support Plaxo is now encoding contact and event information in the microformats [hCard][3] and [hCal][4] in an effort to both improve the sites ease-of-use and raise the profile of microformats. + +Both OpenID, which is a decentralized single sign-on system that enables you to securely use the same login information across multiple sites, and microformats, which are standards-based markup formats that wrap calendar events, contact information and more in code which allows them to be easily shared with other services, are fast becoming *de rigueur* for web platform services. + +For a reasonably complete list of sites that support microformats see the [official microformats wiki][5] and if you haven't already set yourself up with an OpenID account, be sure to [check out our earlier guide][6] (note that while we specifically looked at ways to use your own domain as an OpenID provider, you don't need a domain to take advantage of OpenID). + +As part of the release, Plaxo has also [published a handy guide][2] for other developers looking to support OpenID logins on their sites. + +Plaxo joins other high profile companies like AOL, Microsoft, Sun Microsystems and others who support the OpenID standard. In a press release Plaxo writes that "open standards that have blossomed out of the user-advocate community, we hope to accelerate the emergence of a truly open social web." + +[1]: http://www.plaxo.com/about/releases/release-20070718 +[2]: http://www.plaxo.com/api/openid_recipe +[3]: http://microformats.org/wiki/hcard +[4]: http://microformats.org/wiki/hcalendar +[5]: http://microformats.org/wiki/Main_Page +[6]: http://blog.wired.com/monkeybites/2007/03/how_to_make_you.html "How To Make Your Own Domain An OpenID"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/vistasp1.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/vistasp1.txt new file mode 100644 index 0000000..f0733de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Thurs/vistasp1.txt @@ -0,0 +1,15 @@ +Rumors of a Vista Service Pack continue to surface, the latest coming from Winbeta.org which [posted an e-mail][1] the Windows Driver Kit mailing list which seems to hint at a service pack release in the very near future. + +The e-mail in question tells driver developers that "This WDK beta release to Connect coincides with the recent OS beta release for Vista SP1 Preview," however, Microsoft later [issued an apology][2] saying that what it meant to write was Windows Server 2008. + +But that hasn't stopped the rumor mills. [PCWorld reports][3] that sources close to the company have been told that SP1 would be released by now and since today is the day Microsoft will announce its fiscal 2007 fourth quarter and year-end financial results, SP1 would be a nice way to cap those off. + +Given the many users, particularly large corporate companies, have said they will hold off on upgrading until the first Vista service pack update is available, even a beta release of SP1 could boost Microsoft's sales. + +Microsoft also needs to contend with the upcoming release of Leopard, Apple's next OS upgrade and a Vista SP1 could be a good way to steal a bit of Apple's thunder. + +For its part Microsoft remains mum about any specifics regarding a Vista SP1 release. + +[1]: http://winbeta.org/comments.php?id=8475&catid=1 +[2]: http://winbeta.org/comments.php?shownews=8497&catid=1 +[3]: http://www.pcworld.com/article/id,134748-c,vistalonghorn/article.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/bugs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/bugs.jpg Binary files differnew file mode 100644 index 0000000..3f90dd7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/bugs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/ffeurope.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/ffeurope.txt new file mode 100644 index 0000000..e2da80f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/ffeurope.txt @@ -0,0 +1,15 @@ +Despite vast improvements to Internet Explorer, Microsoft's flagship browser continues to lose ground to Mozilla's Firefox -- especially in Europe. According to a [new study][2] ([translated][1]) by XiTiMonitor, a French internet monitoring firm, Firefox has made dramatic gains in browser market share in Europe throughout the past year with a fairly dramatic upswing in Firefox usage over the past four months. + +The study which looked at roughly 96,000 websites during the first week in July found that FF had 27.8 percent market share across Eastern and Western Europe, IE had 66.5 percent. The remaining share is made up of other browsers like Apple's Safari and Opera. + +The rise in Firefox usage is even more dramatic in individual countries, particularly Slovenia (47.9 percent) and Finland (45.4 percent) where Firefox is basically on par with Internet Explorer. + +Perhaps the most disturbing news for Microsoft is that even in markets where IE continues to dominate users have been slow to upgrade to the latest version IE7. Another study by XiTiMonitor reveals that only about on third of IE users have upgraded to the latest version. + +In fact Firefox 2 has a greater market share than IE7 in 17 European countries. + +[via [Slashdot][3]] + +[1]: http://www.google.com/translate?u=http%3A%2F%2Fwww.xitimonitor.com%2Ffr-fr%2Fbarometre-des-navigateurs%2Ffirefox-juillet-2007%2Findex-1-1-3-102.html&langpair +[2]: http://www.xitimonitor.com/fr-fr/barometre-des-navigateurs/firefox-juillet-2007/index-1-1-3-102.html +[3]: http://slashdot.org/articles/07/07/15/1240204.shtml
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/ffie.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/ffie.jpg Binary files differnew file mode 100644 index 0000000..1c648eb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/ffie.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/gcookie.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/gcookie.jpg Binary files differnew file mode 100644 index 0000000..1fe58b5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/gcookie.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/handbrake.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/handbrake.jpg Binary files differnew file mode 100644 index 0000000..fa3f666 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/handbrake.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/handbrake.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/handbrake.txt new file mode 100644 index 0000000..426748b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/handbrake.txt @@ -0,0 +1,10 @@ +Hackszine has a dead simple guide to putting DVDs on your iPhone using the popular open source MPEG-4 ripper/converter Handbrake. + +While [Handbrake][2] is cross-platform and should work with either Mac or Windows, I've only tested this method on a Mac. + +To rip a DVD just fire up Handbrake and select your disk. If you're a video guru you can tinker with Handbrake's default settings and probably obtain a higher quality recording, but I left things as they were and ended up with 1.3 GB file that looked perfectly fine on the iPhone's diminished screen. + +For more details and complete instructions [head over to Hackszine][1]. And of course keep in mind that you should only do this with movies and DVDs you legally own. + +[1]: http://www.hackszine.com/blog/archive/2007/07/how_to_put_dvds_on_the_iphone.html +[2]: http://handbrake.m0k.org/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/iphonebrake.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/iphonebrake.jpg Binary files differnew file mode 100644 index 0000000..4ff0744 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/iphonebrake.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/iphonebugs.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/iphonebugs.txt new file mode 100644 index 0000000..d03ecd9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/iphonebugs.txt @@ -0,0 +1,23 @@ +AppleHound has compiled an extensive list of iPhone bugs, but very few of the listed flaws are likely to affect users. The most serious bug involves the way the proximity sensor shuts down the screen. + +Of the [68 listed "bugs"][1] only seven involve applications crashing or data loss, which is actually pretty good for a 1.0 product. + +The proximity sensor bug can be duplicated using the following steps as provided by AppleHound, though I wouldn't recommend doing it: + +>To reproduce, call a friend -> press the home button -> slowly run your hand over the proximity sensor near the receiver (not the speaker on the bottom of the phone). Move your hand more quickly if the screen turns off and back on once. Move your hand more slowly if the screen doesn't turn off at all. The trick is to cover the sensor for about 1 second. Stop the screen flashing by covering the sensor again for more than 1 second, pressing the home button, or launching an application. + +Many of the rest of the so-called bugs are really just usability issues, and, while it would nice if Apple addressed some of these concerns, I don't know that they qualify as bugs. + +For instance, "The phone vibrates when switched to silent mode (the Ring/Silent switch is located on the side of the iPhone), but does not provide audible feedback when exiting silent mode." AppleHound argues that "the expected result would be a short notification beep when switching to an audible mode." True that would be a nice interface enhancement, but variances in "expected" interface behavior are not true software bugs. + +On the other hand security firm SPI has found a [serious flaw in the automated web-dialing feature][3] on the iPhone. For the time being it's probably best to avoid those "call now" links on iPhone optimized sites. + +On a related note, a couple a days after purchasing my iPhone the slider to unlock the screen stopped responding to the touch input. Taking a [Tekken][2]-based approach to solving the problem I randomly pushed buttons in rapid succession which would sometimes bypass the lock screen. Once the phone was open the input screen responded fine and most apps worked without issue -- save Safari which crashed on just about every page. + +I stopped by an Apple Store and talked to a genius about it and he told me that he had seen all sorts of strange hardware behavior and almost all of it was solved by doing a full software reset through iTunes. + +Sure enough that worked and I haven't had any problems since, which I pass along as a potential fix for users with other issues. Even if something seems like a hardware issue, it may still be possible to resolve it with a software restore, saving you a trip to the Apple Store. Just be sure to sync your data before you erase your phone. + +[2]: http://en.wikipedia.org/wiki/Tekken +[1]: http://www.applehound.com/node/104 +[3]: http://portal.spidynamics.com/blogs/spilabs/archive/2007/07/16/SPI-Labs-advises-avoiding-iPhone-feature.aspx
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/iphonebus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/iphonebus.jpg Binary files differnew file mode 100644 index 0000000..c019944 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/iphonebus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/openlogic.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/openlogic.jpg Binary files differnew file mode 100644 index 0000000..398207d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/openlogic.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/openlogic.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/openlogic.txt new file mode 100644 index 0000000..f8bc0aa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/openlogic.txt @@ -0,0 +1,14 @@ +OpenLogic recently released a new tool designed to help IT managers track open source packages. Given the complexity of large corporate networks, which may have thousands of open source packages installed, tracking and managing such networks can be a daunting task. + +OpenLogic's [Discovery application][1] uses "fingerprints" to tracks more than 5,000 versions of the top 900 open source packages. A package's fingerprint is based on file name, file size, checksum, and relative path. + +Each evaluated file on the target system is compared to known files in Discovery's fingerprint database. When a match is found, the tool then determines which open source package the file is from. + +Discovery is free and OpenLogic also offers a companion tool known as Jump Start which can generate graphical inventory analysis for up to 500 machines on a network. Displayed data includes information about package, number of installations and, perhaps most importantly for corporate environments, licensing details for each installed package (see sample report below). + +With more and more large corporations moving toward open source software OpenLogic's Discovery app may prove popular with IT managers feeling overwhelmed by the complexity of keeping track of every installed package on the network. + +[via [DesktopLinux][2]] + +[1]: http://www.openlogic.com/discovery/index.php "OpenLogic Discovery" +[2]: http://www.desktoplinux.com/news/NS3949374437.html "Free app discovers, analyzes open source software"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/openlogicsample.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/openlogicsample.jpg Binary files differnew file mode 100644 index 0000000..f97265d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/openlogicsample.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/whs.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/whs.txt new file mode 100644 index 0000000..e7220d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/whs.txt @@ -0,0 +1,11 @@ +After a lengthy beta testing period with as many as 100,000 testers participating, Microsoft has finally [released Windows Home Server (WHS)][1] to manufacturing. Microsoft partners will receive the final code in the next few weeks which means new products built on WHS will likely to hit the market sometime in September of this year. + +HP, Gateway and others have already announced they will be offering new media systems based on WHS code. + +Even better, Microsoft has decided to offer WHS directly to end users which means you may be able to use that old PC as a media server -- provided it meets the minimum hardware requirements. + +The consumer offering will feature a 4 month trial period and will be available through a number of "OEM Bundles" meaning you can grab a copy with the purchase of new piece of hardware like a hard drive or even a cable. Specific pricing details and release date for the OEM version have yet to be announced. + +Keep an eye on Gadget Lab's hardware reviews in the coming months as the new Windows Home Server products begin to hit the market. + +[1]: http://blogs.technet.com/homeserver/archive/2007/07/16/ship-it.aspx "Windows Home Server Blog: Ship it"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/winhs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/winhs.jpg Binary files differnew file mode 100644 index 0000000..0c2dc85 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Tue/winhs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/farecastmsn.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/farecastmsn.jpg Binary files differnew file mode 100644 index 0000000..90c2bdc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/farecastmsn.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/farecastmsn.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/farecastmsn.txt new file mode 100644 index 0000000..0b92359 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/farecastmsn.txt @@ -0,0 +1,16 @@ +[Farecast][2], the airfare search site that predicts the best time to buy your tickets, has partnered with MSN to provide predictions for [MSN Travel users][1]. The front page of MSN Travel has been redesigned to accommodate the new widget which is featured just below the "top deals" from MSN's Expedia.com. + +The MSN Farecast widget is fully integrated into the main MSN Travel site though clicking through to search a destination will redirect you to Farecast's own domain. However despite the URL, the page retains the MSN Travel navigation bar and looks like it's part of MSN. + +Having saved a bundle of money of air travel this summer thanks to Farecast, I highly recommend it if you're thinking about purchasing air tickets. + +The only thing Farecast seems unable to include in its predictions are random one-day sales by particular airlines, and of course not every airport will generate predictions, but for major travel routes it's tough to beat. + +For the ultimate in air travel savings you could use Farecast in conjunction with [Yapta][3] to track your tickets after purchase and ensure that, if the price does go down, you can get a refund with a minimum of effort. + +[via [Mashable][4]] + +[1]: http://travel.msn.com/default.aspx +[2]: http://www.farecast.com/ +[3]: http://blog.wired.com/monkeybites/2007/05/yapta_a_smarter.html "Yapta: A Smarter Way To Travel" +[4]: http://mashable.com/2007/07/17/farecast-msn/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/firefox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/firefox.txt new file mode 100644 index 0000000..850a18e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/firefox.txt @@ -0,0 +1,13 @@ +Mozilla has pushed out a new version of Firefox 2 that includes a patch for the high-profile vulnerability that allows attackers to use Internet Explorer to [trick Firefox into executing remote code][1]. + +There has been much debate over whether the vulnerability was Firefox's fault or IE's fault, but arguably both browsers were at fault since neither one escaped or sanitised the URLs being passed. + +Whatever the case, Firefox has patched things from its end. + +Several other security fixes are included in Firefox 2.0.0.5 -- the [release notes][2] have more information and specific fixes can be viewed [here][3]. + +Firefox 2.0.0.5 can be downloaded from the Firefox product page. + +[1]: http://www.mozillazine.org/talkback.html?article=22198 +[2]: http://www.mozilla.com/en-US/firefox/2.0.0.5/releasenotes/#whatsnew +[3]: http://www.mozilla.org/projects/security/known-vulnerabilities.html#firefox2.0.0.5
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/ipodk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/ipodk.jpg Binary files differnew file mode 100644 index 0000000..9818216 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/ipodk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/liveworms.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/liveworms.jpg Binary files differnew file mode 100644 index 0000000..93a7202 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/liveworms.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro.jpg Binary files differnew file mode 100644 index 0000000..05569b4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro.txt new file mode 100644 index 0000000..8664d40 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro.txt @@ -0,0 +1,23 @@ +The Participatory Culture Foundation has released the first public beta of Miro, formerly known as Democracy Player. We've looked and Democracy Player a [couple][2] of [times][3] in the past and come away impressed and the new Miro release continues to build on the solid past of Democracy Player. + +Along with a visual makeover, some new icons and a new channel browsing interface, the first release of Miro features improved keyboard shortcuts for easier use with remote controls as well as a number of bug and stability fixes. + +For a complete list of changes, check out the [Miro blog][1], here's few of the highlights: + + +* Keyboard shortcuts on all platforms. This should allow remote controls to be configured to control Miro. +* Improved system tray functionality on Windows, including a context menu. +* Added a new ‘report a bug’ menu item. +* Adds Veoh.com as a search engine. + +Overall the new Miro continues to build on what Democracy Player started and trumps Joost, at least in terms of application and desktop interface, though Joost does offer more "premium" content if that's your thing. + +Miro is well on its way to becoming my favorite way to grab web-based television content. + +I'm also happy to report that the [issue with hidden .DS_store files][3] showing up in your watched folders on the Mac has been solved. + + + +[1]: http://www.getmiro.com/blog/2007/07/whats-new-in-miro-public-preview-1/ +[2]: http://blog.wired.com/monkeybites/2006/10/democracy_gets_.html +[3]: http://blog.wired.com/monkeybites/2007/05/new_watched_fol.html diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro1.jpg Binary files differnew file mode 100644 index 0000000..3a68c37 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro2.jpg Binary files differnew file mode 100644 index 0000000..2a82951 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/miro2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/osxworm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/osxworm.txt new file mode 100644 index 0000000..0fbb796 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.16.07/Wed/osxworm.txt @@ -0,0 +1,17 @@ +An anonymous hacker claims to have created a worm that targets Intel versions of Mac OS X. An unidentified researcher, using the moniker [Information Security Sellout][1] claims that s/he has developed the framework of a worm that [exploits a vulnerability in mDNSResponder][2], which is part of Apple's Bonjour network configuring service. + +Apple recently patched mDNSResponder in a security update but InfoSec Sellout claims the patch did not address the flaw that this particular worm is targeting. + +The worm, named Rape.osx by its author, is thus far unreleased and [the author tells ComputerWorld][3] that he will notify Apple of the vulnerability at some point. + +However, as with many others, the author is reportedly tired of claims that OS X is more secure than other operating systems. "I do believe in being responsible and working with vendors," the author tells ComputerWorld, "but I also feel that some vendors need to be treated like children and learn lessons the hard way." + +He goes on to add that "Apple has a very long way to go when dealing with security issues in their products." + +While that's true (and really, what vendor doesn't have a long way to go when it come to security?), given the manner of announcing the worm and lack of details available, the announcement smacks of a bit of Mac fan-boy baiting. + +Still, when and if the exploit is detailed and confirmed, it should serve as a wake-up call to Apple users who missed the last dozen or so wake-up calls -- no operating system is without flaws and vulnerabilities. + +[1]: http://infosecsellout.blogspot.com/ +[2]: http://www.securityfocus.com/bid/24924 +[3]: http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9027216&source=rss_news50
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/emailadiction.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/emailadiction.txt new file mode 100644 index 0000000..6dfd08f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/emailadiction.txt @@ -0,0 +1,25 @@ +Almost Fifteen years ago I first fired up an application named pine and tried to figure out what the electronic mail concept was all about. Amazing how in such a short period of time we've reached a point where a majority of Americans self-identify with the phrase "addicted to e-mail." + +Or at least that's what [a new survey by AOL][1] would have us believe. The study, which surveyed 4,025 respondents 13 and older in 20 cities around the country to measure e-mail usage, contains some startling statistics, for instance: + +>* 59 percent of you are checking e-mail in bed +* 53 percent in the bathroom +* 37 percent while you drive. +* 12 percent while in church. + +Okay, so maybe that seems a bit obsessive, but it could be that the problem isn't obsession at all, it's simply that we haven't learned to manage our e-mail very well. + +Regina Lewis, AOL Online Consumer Advisor, says in the press release that "e-mail addiction has less to do with curbing an obsession than it does with proper time and e-mail management." + +There's a couple of tips listed, but they aren't going to help anyone but the most casual of users. + +For some real solutions for managing your e-mail, Merlin Mann of 43Folders has the best ideas I've come across. Yesterday Mann posted a video of a recent talk he gave at the GooglePlex about how to deal with e-mail. + +The talk is an outgrowth of a series which appears on 43Folders entitled "[Inbox Zero][2]," which aims to help you deal with your e-mail in an efficient and effective manner. Ordinarily I eschew any kind of formal "life-hacking" productivity tips as overly anal, but in this case Mann's ideas really are useful. + +Here's the video in its entirety, a bit long but worth it. + +<embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=973149761529535925&hl=en" flashvars=""> </embed> + +[2]: http://www.43folders.com/izero/ +[1]: http://press.aol.com/article_display.cfm?article_id=1271
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/etags.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/etags.txt new file mode 100644 index 0000000..1a91aac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/etags.txt @@ -0,0 +1,21 @@ +Earlier this week we noted the [release of YSlow][2], a handy addition to Firebug, the Firefox extension for web developers. YSlow attempts to discern reasons why your webpages are loading slowly. + +As a result of that post I received numerous e-mails asking for more information about two of YSlow's suggestions -- adding ETags and expire headers to the files you're serving. + +I'll confess that I too was bit baffled by both of those tips, in fact I'd never really heard of E-Tags and never bothered to investigate expire headers. + +So, for those readers like me, I thought I'd pass along this [excellent write-up][1] on both over at Clint Ecker’s blog. While the article is focused on serving up both using the [Django web development framework][3], Ecker includes ways to configure both the Apache webserver and Lighttpd server to do the same. + +If you're not using Django on your site, just skip those sections and check out the Apache tips (or Lighttpd if you happen to have it installed). + +For Django the E-tags process is simple, just include some middleware in your settings.py file and you're done. For Apache you'll need to use an .htaccess file. + +For the expire headers in Apache you'll need to check and confirm that your server is using the "mod_expired" package and then it's just a matter of adding some more lines to the .htaccess file. + +And there you have it, ETags and expire header explained. + +[1]: http://phaedo.cx/archives/2007/07/25/tools-for-optimizing-your-website-etag-and-expire-headers-in-django-apache-and-lighttpd/ +[2]: http://blog.wired.com/monkeybites/2007/07/got-slow-web-pa.html "Got Slow Web Pages? Find Out Why With YSlow" +[3]: http://djangoproject.com/ + +Optimizing Your Website With Etag and Expire Headers
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/expired.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/expired.jpg Binary files differnew file mode 100644 index 0000000..758326a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/expired.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/iphonehello.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/iphonehello.jpg Binary files differnew file mode 100644 index 0000000..2af13d1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/iphonehello.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/manninbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/manninbox.jpg Binary files differnew file mode 100644 index 0000000..f67dad7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/manninbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/ubuntu.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/ubuntu.txt new file mode 100644 index 0000000..f21c090 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Fri/ubuntu.txt @@ -0,0 +1,20 @@ +The third alpha for the next revision of Ubuntu, version 7.10, dubbed Gutsy Gibbon, was released into the wild yesterday afternoon. This release packs [a host of new features][1], but it is an alpha, so don't rush out and install this in a production environment. + +Alpha 3 of Gutsy Gibbon is intended for developer testing only and there are still a host of known issues (click through that link and you'll notice that the number on bug, listed as "Critical" with a solution "In Progress," is that "Microsoft has a majority market share"). + +But even if Ubuntu 7.10 isn't ready for prime time, the new features list gives a peak at what you can expect from the final release in October. Among the highlights: + + +>* By popular demand, the various theme, background and other appearance related tools have now been merged into a single dialog, allowing faster access to more settings. + +* The new Rhythmbox 0.11.1 contains gapless playback and better support for visualization. + +* Ebox -- a network services control tool designed to be easy to use even for non-Unix admins. Ebox allows control of a huge number of services from a single web interface. Parts of the 0.9.3 release has been packaged and many Ubuntu-specific changes have been made. + +* AppArmor, a framework for providing "enhanced pro-active security" through mandatory access control -- i. e. minimize the privileges of processes to greatly reduce the potential impact of security vulnerabilities. + +If you'd like to assist the Ubuntu team with finding, reporting or fixing bugs, you can grab a copy of the new alpha from the [Ubuntu 7.10 development site][2]. + + +[1]: http://www.ubuntu.com/testing/tribe3 +[2]: http://cdimage.ubuntu.com/releases/gutsy/tribe-3/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/OPLC.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/OPLC.txt new file mode 100644 index 0000000..eef0055 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/OPLC.txt @@ -0,0 +1,11 @@ +Proof that young boys all around the world are the same: A reporter for the official News Agency of Nigeria claims laptops donated by the One Laptop Per Child (OLPC) project to Nigerian schools have been used to browse and store pornographic images. + +Given that any computer anywhere in the world can be used to "browse and store" pornographic images, we can't help thinking this is some sort of deliberate smear attempt at the OLPC project, which, for some reason, seems to [raise the ire of many people][3]. + +As Wayan Vota of [One Laptop Per Child News][1] (not affiliated with the actual OLPC group) writes "to focus on it this much means that the reporter really wanted a headline grabbing story or is against the project on a personal level." + +We tend to believe the former explanation, but whatever the case the team behind the OLPC says filters will be installed on future version of the machine, which, giving the curiosity of children, is probably how things should have been from the beginning. + +[1]: http://www.olpcnews.com/countries/nigeria/pornographic_image_child.html +[2]: http://africa.reuters.com/wire/news/usnL19821905.html +[3]: http://blog.wired.com/monkeybites/2007/05/negroponte_accu.html "Negroponte Accuses Intel Of Hitting Below The Belt"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/googlephone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/googlephone.txt new file mode 100644 index 0000000..fc76500 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/googlephone.txt @@ -0,0 +1,23 @@ +Google recently expressed its willingness to invest in the Federal Communications Commission's upcoming wireless spectrum 700MHz band auction and the company says it will pay the minimum reserve of $4.6 billion. + +But there's a catch. Google wants the FCC to adopt its licensing recommendations -- open applications for users, open devices that will work with whichever network provider customers choose, open services for third-party resellers and open networks -- regardless of who ultimately wins the bidding process. + +The internet was abuzz over the weekend following Google's official interest in the wireless spectrum, with many concluding that Google wants to take on the cellphone companies. + +At the very minimum, should the FCC adopt Google recommended licensing your mobile device may soon be more like your TV or computer. The device itself would be fully independent of any network access provider -- just as Apple and Dell don't dictate what ISP you choose, cell network companies would no longer be able to tie you down. + +The biggest implication though lies in software. As it stands, if you want to download software on most phones, you're limited to offerings of that network provider. Under Google's plan, AT&T could not, for instance, stop you from downloading a version of Google desktop designed for your phone. And say goodbye to those exclusive YouTube partnerships. + +As the New York TImes [reports][1]: + +>When you go to Best Buy to buy a TV, they don't ask whether you have cable or satellite," said Blair Levin, a former F.C.C. official who is now an analyst at Stifel Nicolaus & Company. "When you buy a computer, they don't ask what kind of Internet service you have, and the computer can run any application or service. That doesn't exist in the wireless world. That's where Google wants to go with this auction." + +As anyone paying attention knows, the telecommunications companies more or less hate Google and with full leased ownership of the 700MHz spectrum, Google is suddenly in a position to effectively cripple the industry. The telecoms' response to Google's announcement was a series of scathing critiques, with Verizon going so far as to call Google's proposal "corporate welfare." + +The announcement has also provided a bit of fire for the long-standing rumors of a Google Phone, but we still think that's unlikely. Why would Google suddenly get into the hardware business when its core income comes from advertising piggy-backed onto free software service? + +In other words why have a Google Phone when an open network with open devices can turn every phone into a Google phone? + +Of course I never believed in the iPhone until it was announced, so clearly I could be wrong. Be sure to let us know what you think in the comments. + +[1]: http://www.nytimes.com/2007/07/21/technology/21google.html?ex=1342670400&en=2a8a51ec5cb4daf2&ei=5090&partner=rssuserland&emc=rss
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/gphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/gphone.jpg Binary files differnew file mode 100644 index 0000000..2602a86 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/gphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/internetsubway.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/internetsubway.jpg Binary files differnew file mode 100644 index 0000000..2abec6d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/internetsubway.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/iphoneajax.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/iphoneajax.jpg Binary files differnew file mode 100644 index 0000000..70e81c6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/iphoneajax.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/iphoneajax.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/iphoneajax.txt new file mode 100644 index 0000000..454ead3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/iphoneajax.txt @@ -0,0 +1,14 @@ +Google has rolled out a search interface optimized for the iPhone. The new page can be found at [google.com/uds/samples/iphone/isearch.html][2]. The new interface relies on the [AJAX Search API][1] and carries with it the limitations of that API -- you can only see the first eight results -- but it's fast and much easier to use on the iPhone. + +There are quick links for News and Image-based searches as well. + +Regrettably clicking "more results" on any page will dump you right back into the normal search page which sort of negates the benefits. + +However if you're the sort of person who typically goes with results on the first page, this app will likely speed up your iPhone Google searching. Just be sure to bookmark the page since inputting a url that long is a horrendous task on the iPhone's keyboard. + +[via [Google Operating System][3]] + +[1]: http://blog.wired.com/monkeybites/2007/04/new_google_api_.html "New Google API Enables Easy RSS Mashups" + +[2]: http://www.google.com/uds/samples/iphone/isearch.html +[3]: http://googlesystem.blogspot.com/2007/07/google-ajax-search-for-iphone.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/iphoneflaw.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/iphoneflaw.txt new file mode 100644 index 0000000..c44f898 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/iphoneflaw.txt @@ -0,0 +1,18 @@ +<img alt="Iphonebus" title="Iphonebus" src="http://blog.wired.com/photos/uncategorized/2007/07/17/iphonebus.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The New York Times reports that a security firm by the name of Independent Security Evaluators, has found a flaw in Apple's iPhone which allows malicious code to "take control of iPhones through a WiFi connection or by tricking users into going to a Web site that contains malicious code." + +[According to the Times][1], this is not a theoretical proof-of-concept, but a working exploit that was demonstrated to the reporter: + +> Dr. Miller, a former employee of the National Security Agency who has a doctorate in computer science, demonstrated the hack to a reporter by using his iPhone’s Web browser to visit a Web site of his own design. + +>Once he was there, the site injected a bit of code into the iPhone that then took over the phone. The phone promptly followed instructions to transmit a set of files to the attacking computer that included recent text messages — including one that had been sent to the reporter's cellphone moments before — as well as telephone contacts and e-mail addresses. + +The exploit appears to take advantage of buffer overflow bug in Safari that has been previously reported to Apple. If the flaw is indeed on the Safari side, it highlights the downside to a phone with a semi-real browser installed on your phone -- it's vulnerable to attack like any other machine. + +There's no need to junk the iPhone, but users should play it safe until Apple offers a fix. Take the same precautions you would in a desktop environment such as only visiting sites you trust, only using WiFi networks you trust and avoid opening web links from e-mails. + +More details on the vulnerability can be found at [exploitingiphone.com][2] (which currently still redirects to another site, but should be live later today). Independent Security Evaluators says they have notified Apple and even proposed a fix. The exploit will be demonstrated at the upcoming BlackHat conference on Aug. 2nd. + + + +[1]: http://www.nytimes.com/2007/07/23/technology/23iphone.html?ex=1342843200&en=36460b41095f0664&ei=5090&partner=rssuserland&emc=rss +[2]: http://www.exploitingiphone.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/library.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/library.jpg Binary files differnew file mode 100644 index 0000000..7e9e2d4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/library.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/linuxdrivers.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/linuxdrivers.txt new file mode 100644 index 0000000..c8a6de7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/linuxdrivers.txt @@ -0,0 +1,15 @@ +After Adobe's failure to provide apps for Linux, perhaps the chief complaint of users is the lack of drivers for third party products, but that might be set to change. Linus Torvalds has rolled patches into the mainline tree of the Linux kernel that implement a stable userspace driver API. + +The stable driver API has been around for some time, Greg Kroah-Hartman [announced it last year][1], but this is first sign that they will indeed be included in the next revision of the Linux kernel. + +The idea behind the API is to make life easier for driver developers, which could in turn lead to more and better drivers for the platform. + +But the really nice part is that closed source drivers now have a way to legally run on top of Linux, which eliminates the much disputed issue of including non-GPL drivers in the Linux kernel. + +The new API will also provide a stable platform for driver developers since it allows the drivers to run outside the kernel, meaning privately developed drivers can be reused even if the kernel changes (assuming the API remains stable, which it should). + + +[via [Slashdot][2]] + +[1]: http://permalink.gmane.org/gmane.linux.kernel/441944 +[2]: http://developers.slashdot.org/article.pl?sid=07/07/22/0442236&from=rss
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/lonelycandidate.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/lonelycandidate.jpg Binary files differnew file mode 100644 index 0000000..973d049 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/lonelycandidate.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/nternemap.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/nternemap.txt new file mode 100644 index 0000000..24fa0dd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/nternemap.txt @@ -0,0 +1,14 @@ +[img][1] + +It seems like everyday there's a new web service crying out for attention and claiming vast amounts of traffic. It can be hard to keep track of how the internet landscape is changing -- sometimes you need a clever map to make sense of it all. + +This latest one is from Information Architects and maps [web trends for 2007][3]. Using a subway map metaphor IA maps the 200 most successful sites on the web, ordering by category, popularity, relative focus and more. For instance the "Social News" line travels from Technorati, through Feedburner, Reddit, Facebook and more before reaching the end of the line -- Digg. + +Call if nerdy, but I love these clever little visualizations (be sure to check out the [map of online communities][2] from a while back). Click the image above to see an interactive version of the map. + + + + +[1]: http://www.informationarchitects.jp/slash/ia_trendmap_start.html +[2]: http://xkcd.com/256/ +[3]: http://www.informationarchitects.jp/ia-trendmap-2007v2
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/penguin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/penguin.jpg Binary files differnew file mode 100644 index 0000000..7885abd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/penguin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/privacy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/privacy.jpg Binary files differnew file mode 100644 index 0000000..33aeaf4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/privacy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/privacy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/privacy.txt new file mode 100644 index 0000000..7a5c54b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/privacy.txt @@ -0,0 +1,23 @@ +Microsoft is jumping on the search privacy bandwagon, issuing a press release Sunday evening that claims the company will "commitment to develop privacy principles that will enhance protections and provide more control for consumers." + +The announcement also sees Microsoft and Ask.com [joining together to call on other search firms][1] to provide users with better privacy controls. Ask.com last week that it will offer users a new tool, dubbed [AskEraser][2], to control what information is stored, and for its part Microsoft has [issued some details][3] on how it plans to enhance user privacy. + +Microsoft has said that it will give people the ability to opt out of ad targeting on third-party sites and that it will allow users to browse its own sites without a personal and unique identifier. + +Google, the undisputed search leader, also [recently announced a change in its cookie policy][4], which are now only stored for eighteen months. + +It would appear that search engines are waking up to users privacy concerns. But lest you think that search engines have suddenly had a change of heart about storing your data, keep in mind that they are increasingly under government pressure to do so. + +The EU is currently investigating Google for possible breaches of EU privacy laws and the FTC is putting Google’s acquisition of DoubleClick under the magnifying glass over privacy concerns in addition to possible anti-trust violation. + +And just because the investigations are targeting Google doesn't mean the rest can't see the writing on the wall. + +Still, while the motivations may be suspect, providing increased privacy controls for users is a welcome change. + +[Photo [credit][5]] + +[1]: http://www.microsoft.com/presspass/press/2007/jul07/07-22MSAskPrivacyPR.mspx?rss_fdn=Press%20Releases +[2]: http://blog.wired.com/monkeybites/2007/07/unlike-google-a.html "Unlike Google, Ask.com To Offer Real Privacy Controls" +[3]: http://www.microsoft.com/presspass/press/2007/jul07/07-22EnhancedPrivacyPrinciplesPR.mspx?rss_fdn=Press%20Releases +[4]: http://blog.wired.com/monkeybites/2007/07/new-google-sear.html +[5]: http://www.flickr.com/photos/hyku/368912557/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/sciencejournals.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/sciencejournals.txt new file mode 100644 index 0000000..9840fff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/sciencejournals.txt @@ -0,0 +1,16 @@ +Our friends over at the Wired Science blog noticed that last friday the House of Representatives approved a bill mandating that all agency-funded research be made freely available within a year of publication. + +While that doesn't necessarily mean it'll all be available for download, it might mean, as Brandon Keim [points out in the post][1] many of those currently expensive, firewalled journals will become public. + +Even better, it's conceivable all the new information could added to Google Scholar which would make that specialized search engine even better. + +Which means maybe I can stop annoying my neighbor for her university network password, which is good because I'm moving. + +The senate is reportedly considering a similar bill which will be up for a vote later this summer. + +[photo [credit][3]] + +[2]: http://scholar.google.com/schhp?tab=ws +[1]: http://blog.wired.com/wiredscience/2007/07/one-small-vote-.html "One Small Vote for House, One Giant Leap for Open Science" + +[3]: http://thenonist.com/index.php/thenonist/permalink/hot_library_smut/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/youtubepolitics.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/youtubepolitics.txt new file mode 100644 index 0000000..bb9f113 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Mon/youtubepolitics.txt @@ -0,0 +1,12 @@ +Tonight marks YouTube's entry into the political spotlight. CNN and YouTube are sponsoring a debate for the Democratic presidential candidates this evening with all of the questions coming [YouTube via homemade videos][1]. + +The candidates will be in Charleston, SC where a giant video screen will project whatever two or three dozen videos CNN selects from the more than 2,000 online videos submitted to YouTube. + +The debate will be broadcast on CNN starting at 7 p.m. Eastern time and one likes to think that those of us without cable will able to catch on YouTube at some point. + +All the candidates have expressed what might be called a "keen" interest in how this here webernets is changing the political and election process in this country, but it remains to be seen how well they do fielding questions that aren't softball lobs from a moderator. Will the people's hard hitting questions cause some real differences to emerge, or will CNN manage to water this down to the same banal feather fluffing of other debates? + +The Republican candidates will have there turn come Sept 17th. + + +[1]: http://www.youtube.com/debates
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/allpeers.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/allpeers.jpg Binary files differnew file mode 100644 index 0000000..2d286cb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/allpeers.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/allpeers.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/allpeers.txt new file mode 100644 index 0000000..6cf05be --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/allpeers.txt @@ -0,0 +1,18 @@ +AllPeers, the private file-sharing extension for Firefox, has added full support for BitTorrent. Although AllPeers has always supported BitTorrent transfers of its own files (i.e. the files you share through your account) the new features effectively make [AllPeers][3] a BitTorrent client. + +AllPeers made our 10 Best [list of Firefox add-ons][4] a while back. The browser extension lets users build ad hoc, private P2P file-sharing networks between groups of friends running the client. + +It's dead simple to use -- you just drag a folder or file you want to share into the extension's sidebar pane, and it's sharable on your private network. There's encrypted chat built in, too, so you can talk privately about what to share next. + +Unlike your standard BitTorrent client, the AllPeers network is completely private with all sharing done between authorized peers. + +Couple that will full BitTorrent support and you effectively have a ready-to-go darknet, which, with more and more torrent trackers facing legal threats, may up the appeal of AllPeers for some users. + +Ars Technica [asked][2] AllPeers co-founder and CTO Matthew Gertner about the darknet potential but Gertner downplayed that aspect saying his company "doesn't encourage customers to share copyrighted content and that longer-term, his vision is to provide a 'viable, legal alternative' for content providers." + +Sounds like a pretty good party line, but as [Digg has discovered][1], users don't always toe the party line the way CTOs do. + +[1]: http://blog.wired.com/gadgets/2007/05/kevin_rose_if_w.html +[2]: http://arstechnica.com/news.ars/post/20070725-full-bittorrent-support-offline-sharing-coming-to-allpeers.html +[3]: http://www.allpeers.com/ +[4]: http://blog.wired.com/wiredphotos37/2007/05/allpeers.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/digg.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/digg.txt new file mode 100644 index 0000000..c92d97c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/digg.txt @@ -0,0 +1,18 @@ +Social News site Digg has [dumped Google in favor of Microsoft][2] to serve up the contextual ads on the site. Financial details of the agreement have not disclosed, but the deal is a three-year contract. + +Kevin Rose [announced the change][1] on his blog saying that the new deal is "similar to the one Facebook signed with Microsoft last year." + +Rose goes on to say that "this move gives us an advertising partner with a larger organization and a more scalable technology platform to keep pace with Digg's growth." + +Digg will also apparently continue working with its other ad partner, Federated Media, on integrated sponsorships in areas like the Digg labs where, for instance, the [Arc project][4] runs FM ads. + +FM's exact role is a little unclear though, FM Chief Executive John Battelle [writes on his blog][3], "It's no secret that Digg is the kind of property--like Facebook--that was bound to get the attention of the 'Big Guys' as they continue to play an evermore fascinating game of Internet chess." + +Google has not commented on Digg's move. + +Rose also writes that more changes and new features for Digg are "coming soon." + +[1]: http://blog.digg.com/?p=89 +[2]: http://www.microsoft.com/Presspass/press/2007/jul07/07-25DiggPR.mspx +[3]: http://www.federatedmedia.net/blog/archives/2007/07/big_news_for_di.php +[4]: http://labs.digg.com/arc/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/ff.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/ff.txt new file mode 100644 index 0000000..c91fca4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/ff.txt @@ -0,0 +1,21 @@ +Yet another vulnerability in Firefox's URL handler component was published earlier this week. As with earlier bugs, the new flaw could allow crackers to run unauthorized software on a victim's machine. + +An earlier bug that exploited the URI handler has already been addressed. Though a patch has not yet been released, the item is [listed as "Resolved Fixed"][2] in the Mozilla bug tracker. + +Firefox's URI handler has caused problems for Mozilla ever since security researcher Thor Larholm [showed][1] that the way Internet Explorer and Firefox pass URIs between them could be exploited to launch software without authorization. + +Mozilla initially claimed the bug lay with Explorer, but later retracted that statement and admitted the Firefox was at least partly fault. + +It's difficult to keep track of all these exploits because they essentially do the same thing, but use different mechanisms to pass through the URI. The basic gist of the attack is that you visit a malicious site in IE which then calls up Firefox 2 and passes through a URI and parameters. + +These parameter strings can be nearly anything. An early proof-of-concept attack created a new Firefox user profile without authorization, but much worse could be achieved. + +Billy Rios, who [reported the latest version of the URI attack][3], says that developers should use caution in allowing their applications to register a URI handler. + +>Developers who intend to (or have already) registered URIs for their applications MUST UNDERSTAND that registering a URI handler exponentially increases the attack surface for that application. Please review your registered URI handling mechanisms and audit the functionality called by those URIs… + +For those of us at the user end of spectrum, Mozilla says that they are working to solve this latest attack and that a patch should be forthcoming. And remember this flaw is only a vulnerability if you're using IE and have Firefox installed. + +[1]: http://blog.wired.com/monkeybites/2007/07/security-flaw-d.html +[2]: https://bugzilla.mozilla.org/show_bug.cgi?id=389580 +[3]: http://xs-sniper.com/blog/2007/07/24/remote-command-execution-in-firefox-2005/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/mtorrent.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/mtorrent.jpg Binary files differnew file mode 100644 index 0000000..c1febf8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/mtorrent.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/utorrentmobile.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/utorrentmobile.txt new file mode 100644 index 0000000..3cb5d69 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/utorrentmobile.txt @@ -0,0 +1,16 @@ +Are you obsessed with the progress of your torrent downloads? So obsessed you want to keep tabs on them from your mobile phone? Well, good news my OCD friends, there's now a [mobile client][2] for the popular µTorrent client. + +The new software, named µTorrent mUI, allows you to remotely control your torrents from just about any mobile browser -- like Opera Mini. + +Although I haven't tested it, reading through the site notes it would see that mUI works a lot like the existing WebUI, but is slightly stripped down to make it more light-weight. + +MUI lets you monitor torrent progress and control torrents running on your desktop PC from your mobile phone, wherever you are. The µTorrent mobile UI ditches most of the graphical elements of the desktop client for plain-text views of the most important µTorrent functions. + +Through the mUI you can start, pause, stop and monitor downloads. The UI also offers some additional information about every Torrent -- number of peers, percent downloaded and more. + +We should not that, despite the name, the µTorrent mUI is not an official part of the µTorrent project and was developed by an outsider who was a fan of the client and wanted a mobile interface. + +[via [TorrentFreak][2]] + +[2]: http://torrentfreak.com/utorrent-mobile-ui-goes-live-tomorrow/ +[1]: http://utorrentmui.com/desktop.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vbs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vbs.jpg Binary files differnew file mode 100644 index 0000000..3945a5f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vbs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vbs1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vbs1.jpg Binary files differnew file mode 100644 index 0000000..2ab62d9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vbs1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vbs2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vbs2.jpg Binary files differnew file mode 100644 index 0000000..33ea4a3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vbs2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vistabattery.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vistabattery.txt new file mode 100644 index 0000000..99cf2f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/vistabattery.txt @@ -0,0 +1,19 @@ +There's no two ways about it, Windows Vista is a drain on laptop batteries. The two greatest energy hogs are the slick Aero interface and the gadget sidebar. It makes sense then, when running on battery power, to disable both of those features. Unfortunately there's no easy way to do so with the default install, but the freeware app Vista Battery Saver, makes the process a snap. + +The [newly released beta version][3] adds the ability to switch between power management settings whenever you unplug. + +Install Vista Battery Saver and every time you unplug your machine it will automatically switch off both the Aero interface and the sidebar. Plugin in again and they're back. + +Once you install and setup Vista Battery Saver you don't have to worry about it again, the software runs in the system tray and does its thing in the background. + +Vista Battery Saver uses about 6 MBs of RAM, but has almost no effect on your CPU usage. + +We've complained about Vista battery life in the past, and even [Microsoft admits][1] that the Aero interface reduces battery life by 1-4 percent (and I'd say that's a very conservative estimate), but thanks to Vista Battery Life you should be able to milk even more precious minutes out of your laptop batteries. + +I should note that Vista Battery Saver 2 is in beta and usual warning apply, but I haven't had any problems. + +[via [Download Squad][2]] + +[1]: http://windowsvistablog.com/blogs/windowsvista/archive/2007/05/14/aero-and-battery-life.aspx +[2]: http://www.downloadsquad.com/2007/07/25/get-better-battery-life-with-vista-battery-saver/ +[3]: http://www.codeplex.com/vistabattery/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/yahoo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/yahoo.txt new file mode 100644 index 0000000..1d062de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/yahoo.txt @@ -0,0 +1,19 @@ + + +Yahoo has [joined][3] Google, Microsoft and Ask in changing its privacy policy and shortening the amount of time it stores user data. Yahoo says it will make all search log data anonymous after 13 months, compared to Google's retention of 18 months. + +One thing to keep in ming though is that Yahoo is applying the time-frame to log data whereas Google's policy applies to cookies and log data. Yahoo's cookie policy was not mentioned in today's announcement. + +Yahoo has not said when the new policy will take effect, but the company hopes to roll it out by the end of the year. + +Perhaps more meaningful for users though, is something that has been largely overlooked in the recent flurry of search engine privacy announcements -- OpenDNS, the free, alternative domain name server, has also changed its data retention policy. + +Kudos to Ryan Singel over at Treat Level for [noticing][2] that OpenDNS has said it will only log data for users without accounts for 48 hours, while users with accounts can delete them at will, view them, or direct the company to not log them at all. + +As Singel writes "What's important about that? Well, your ISP is in a position to know as much about what you do online as any search engine, but as an industry they remain purposefully opaque about what data they monitor and how long they keep data." + +If you're interested in bypassing your ISP in favor of OpenDNS, check out [Singel's earlier write up][1]. + +[1]: http://www.wired.com/science/discoveries/news/2006/07/71345 +[2]: http://blog.wired.com/27bstroke6/2007/07/under-scrutinty.html +[3]: http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9027924&source=rss_news50
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/yahoop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/yahoop.jpg Binary files differnew file mode 100644 index 0000000..38b1e5a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Thu/yahoop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/acer.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/acer.txt new file mode 100644 index 0000000..60d6df0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/acer.txt @@ -0,0 +1,14 @@ +Just a day after analyst firm Net Applications released figures showing that Windows Vista now [enjoys a 5 percent share][2] of the online market, Acer president Gianfranco Lanci criticized Microsoft's new OS saying, "the whole industry is disappointed with Windows Vista." + +Despite the fact that if Vista's adoption trend continues, it should pass Mac OS X by the end of August Lanci is critical of the system. + +[According to PC World][1], Lanci's beef is not about market share but stability and other issues. Lanci says Vista is riddled with problems and gives users and businesses no reason to buy a new PC. + +Lanci also claims that Acer, the four largest manufacturer of PCs, has been inundated with customer requests for XP instead of Vista. + +Lanci's beef with Vista will take on more significance come January 2008 which is when Microsoft says it will no longer offer Windows XP to resellers, which means users who want to stay on XP will need to pony up for an additional copy to replace a new machine's pre-installed copy of Vista. + + + +[1]: http://www.pcworld.com/article/id,134962-pg,1/article.html +[2]: http://marketshare.hitslink.com/report.aspx?qprid=5
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/bbc.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/bbc.txt new file mode 100644 index 0000000..6ce43f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/bbc.txt @@ -0,0 +1,11 @@ +The BBC is [under fire][1] for its new iPlayer media player, which is currently slated to be released in Windows-only form this Friday. Critics have put up an e-petition on the Downing Street website which calls on the British parliament to stop the BBC from launching its iPlayer without support for other platforms. + +Already more than 10,000 people have signed the petition asking the British Parliament to force the BBC to release Mac and Linux compatible versions of the iPlayer. + +The iPlayer is the user-side end of the BBC's on-demand TV service which will launch in a trial form on July 27th. The On-Demand version of the BBC will let viewers store programs for seven days with some available for 30 days. The shows will be streamed live over the internet, but the iPlayer does not work with other broadcasters. + +The BBC has already said a Mac player will be available in autumn, but some people think that's not enough. The Open Source Consortium has already made complaints to the BBC Trust, which oversees the BBC and is threatening to take its complaint to the European Commission. + +Speaking at the launch of the service, Ashley Highfield, director of Future Media and Technology at the BBC, tells the BBC (who else) "this is the approach we have always taken but we have always started with the platform that reaches the most number of people and then rolled it out from there." + +[1]: http://news.bbc.co.uk/2/hi/technology/6913297.stm
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/danglingpointers.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/danglingpointers.txt new file mode 100644 index 0000000..105432e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/danglingpointers.txt @@ -0,0 +1,14 @@ +Security researchers at Watchfire (acquired yesterday by IBM) claim they have discovered a method of [exploiting dangling pointers][1] -- a common programming error -- which allows for remote code execution. The problem of dangling pointers was previously thought to be poor practice and can lead to crashes, but it was not believed to be exploitable. + +Dangling pointers refers to lines of code that do not refer to a valid object. For instance variable that reference an object which has already been deleted. While the object is gone, the reference to it is not. + +Danny Allan, research director at Watchfire, says, "the problem before was, you had to override the exact location that the pointer was pointing to. It was considered impossible." + +The new attack, which will be detailed at the upcoming Black Hat conference, causes a buffer overflow which allows outside code to be injected. "We discovered a way to do this with generic dangling pointers and run our own shell code," says Allan. + +He goes on to say that ""This is a very prevalent problem, especially in low-level languages." Many programming languages, most notably C++, are vulnerable to dangling pointers, but there are numerous ways to avoid dangling pointers, the most obvious of which is make sure your code doesn't create any, but that can be difficult and time-consuming. + +"This is a bit of a Pandora's box and once we open it, it will be just the tip of the iceberg," warns Allan. "A lot of times you might not know there's a dangling pointer." + +[1]: http://searchsecurity.techtarget.com/originalContent/0,289142,sid14_gci1265116,00.html + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/iplayer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/iplayer.jpg Binary files differnew file mode 100644 index 0000000..94d122f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/iplayer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/lanci.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/lanci.jpg Binary files differnew file mode 100644 index 0000000..5dfbd56 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/lanci.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/newsgator.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/newsgator.jpg Binary files differnew file mode 100644 index 0000000..d707c46 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/newsgator.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/newsgator.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/newsgator.txt new file mode 100644 index 0000000..f039713 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/newsgator.txt @@ -0,0 +1,10 @@ +NewsGator has launched an iPhone-optimized version of the popular online RSS service. While the iPhone version of Newsgator is somewhat limited -- pretty much just reading feeds -- it should be welcome news for those who use the popular [NetNewsWire][2] and FeedDemon clients, both of which sync through NewsGator. + +The new site will redirect from the standard mobile site or the main NewsGator page once it identifies the iPhone browser. + +There's already an unofficial Google Reader optimized for the iPhone, but NewsGator remains a popular service -- particularly on the Mac platform where NetNewsWire is the desktop client de rigueur. + +Though you can't add feeds through the new iPhone-optimized version the site, the navigation interface makes browsing on the iPhone smoother and of course your feeds will reflect your read and marked items when you access your account through NetNewsWire or FeedDemon. + +[1]: http://m.newsgator.com/Signon.aspx +[2]: http://blog.wired.com/monkeybites/2007/05/netnewswire_3_a.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/pres-debates.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/pres-debates.txt new file mode 100644 index 0000000..51b13b2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/pres-debates.txt @@ -0,0 +1,12 @@ +If it wasn't a household name already, YouTube's contribution to the Democratic debates will prove the tipping point. Hosted by Anderson Cooper, last night's televised debate featuring questions from YouTube users. + +With questioners ranging from a talking snowman to a man strumming a guitar, the users of YouTube proved once again that the masses are, if nothing else, more unpredictable than your typical debate moderator. + +As for the candidates, they managed to dodge questions, brush off pointed inquires for position statements and generally skate by on vague promises with the same aplomb they've master in more typical debates. + +Highlight reels follow. + +<object width="450" height="370"> + +<param name="movie" value="http://www.youtube.com/p/6EEF90CF5E16C4A3"></param><embed src="http://www.youtube.com/p/6EEF90CF5E16C4A3" type="application/x-shockwave-flash" width="450" height="370"></embed></object> + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/security.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/security.jpg Binary files differnew file mode 100644 index 0000000..6223523 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/security.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/wiki.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/wiki.txt new file mode 100644 index 0000000..1ea47d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/wiki.txt @@ -0,0 +1,24 @@ +Because not all our readers also read the front door, we'd like to point out the Wired has launched the [Wired How-To Wiki][1] this morning. It's powered by SocialText and all content (including yours, should you decide to contribute) is governed by the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 licence. + +As for content, well that's largely your job. We stocked it with a few starter articles though. If you've ever wondered how to back up your [Mac][4] or [PC][5], we've got you covered. Other nice software related entries include [How To Compile Software From Source][2], [Use LinkedIn][3] and [Foil Search Engine Snoops][9]. + +But the Wired How To Wiki isn't just software and web nerdery, there's other stuff as well, like [Get Off a Government Watch List][6], [Bake A Wii Cake][7], [Turn Your Flickr Crush Into Real Romance][10] or [Snap Killer Candid Photos][11]. + +And then there's my personal favorite: [How To Dismantle An Atomic Bomb][12]. + +Most of these are just stubs awaiting your input so check out the [editorial guidelines][13] and the head on over and contribute your DIY know-how. + + +[1]: http://howto.wired.com/wired/index.cgi +[2]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=compile_software_from_source_code;action=display;category=Work +[3]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=use_linkedin;action=display;category=Work +[4]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=back_up_your_data_on_a_mac;action=display;category=Work +[5]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=back_up_your_data_on_a_windows_pc;action=display;category=Work +[6]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=get_off_a_government_watch_list;action=display;category=Live +[7]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=bake_a_wii_cake;action=display;category=Live +[8]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=dismantle_an_atomic_bomb;action=display;category=Live +[9]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=foil_search_engine_snoops;action=display;category=Live +[10]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=turn_your_flickr_crush_into_real_romance;action=display;category=Play +[11]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=snap_killer_candids;action=display;category=Play +[12]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=dismantle_an_atomic_bomb;action=display;category=Live +[13]: http://howto.wired.com/wired/index.cgi?page_name=editorial%20guidelines
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/wiredwiki.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/wiredwiki.jpg Binary files differnew file mode 100644 index 0000000..06922a5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/wiredwiki.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/xo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/xo.txt new file mode 100644 index 0000000..2bb9275 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/xo.txt @@ -0,0 +1,12 @@ +Engadget is [reporting][2] that Quanta computing, the makers of the XO, of OLPC fame, have received the go-ahead to start a mass production run. Even more interesting, Reuters is reporting that some of these may be offered for sale in the western world. + +Reuter's [quotes][1] Mary Lou Jepsen, OLPC chief technology officer, as saying the XO laptop could initially be available to the public for just $350 -- roughly twice its production cost. + +The group is also reportedly considering raising that figure to $525 and using the excess money to fund additional machines for developing countries. + +This is somewhat of a reversal from the OLPC foundation's earlier statements that the XO would not be available to the general public. But the slightly higher price tag does seem like a good way to raise additional funds for the project. + +Especially give that there seems to be a fair amount of pubic interest in the XO, but whether the public's curiosity and fascination with the novelty of the XO will translate into a willingness to buy it is a whole other story. Perhaps at $525 it could be considered a tax-deductible gift to charity? + +[1]: http://www.reuters.com/article/companyNewsAndPR/idUSN2336963020070723 +[2]: http://www.engadget.com/2007/07/23/quanta-begins-olpc-xo-production-ramp-up/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/youtube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/youtube.jpg Binary files differnew file mode 100644 index 0000000..f2e19d5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Tue/youtube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/YSlow.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/YSlow.txt new file mode 100644 index 0000000..446e039 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/YSlow.txt @@ -0,0 +1,29 @@ +Every wonder why your website loads slower than others? Wonder no more. Yahoo has released an [excellent little add-on for the Firefox extension Firebug][1] which analyzes a web page’s performance and offers optimization tips. + +The extension, cleverly dubbed YSlow, adds another pane to the Firebug interface and offers up a bunch of easy to browse options including load times for each page element, both with empty and full caches, as well as various tips, and options. + +Obviously YSlow requires both Firefox and [Firebug][2]. + +Yahoo has put up an FAQ about each of the tips, which range from the reasonably well know -- put your Javascript includes at the bottom of the page -- to the less practical option of using a content delivery network (which is generally very expensive). + +Other suggestions offered by YSlow include: + +>* Make Fewer HTTP Requests +* Add an Expires Header +* Gzip Components +* Put CSS at the Top +* Make JavaScript and CSS External +* Reduce DNS Lookups + + +Although not directly related to performance optimization, there's a really handy view under the "Inspect" tab which lets you see HTML and CSS by element. Hover your cursor over a page element and you'll see not just the HTML, but also all the CSS rules being applied. Also useful is an option to view all styles in one screen, which can be a godsend if your page loads several different CSS files. + +Naturally nothing is perfect and YSlow isn't going to work on every page. For instance, it passes GMail with flying colors, but that's largely because the initial page just loads some Javascript and little else. + +Still for the average user looking to test and potentially optimize their site, YSlow is fantastic addition to the Firebug toolkit. + +[via [Digg][3]] + +[1]: http://developer.yahoo.com/yslow/ +[2]: http://www.getfirebug.com/ +[3]: http://digg.com/programming/Why_is_my_web_page_slow_YSlow_can_tell_you
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/ZZ54B25EC6.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/ZZ54B25EC6.jpg Binary files differnew file mode 100644 index 0000000..f0e2fcd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/ZZ54B25EC6.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/firebug.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/firebug.jpg Binary files differnew file mode 100644 index 0000000..6378aa6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/firebug.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iconfinder.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iconfinder.jpg Binary files differnew file mode 100644 index 0000000..00335c6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iconfinder.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iconfinder.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iconfinder.txt new file mode 100644 index 0000000..c343095 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iconfinder.txt @@ -0,0 +1,12 @@ +At some point in college I signed up for a few art classes and discovered what I already suspected -- I have no talent in that realm. Which is why there are sites like [Iconfinder][1] to help even the most graphic design backward among us find attractive icons for websites and wherever else you need to use them. + +There are of course many sites devoted to icons, but Iconfinder has a nice clean, easy to use interface and returns a plethora of options to suit nearly every taste and design. + +You can search for specific icons and then narrow your results by size or just browse through the most popular options via a tag cloud. + +Every result has handy links to download and, most importantly, the licensing terms of the icon. A random sampling from a series of searches turned up mainly GPL licenses with a few LGPLs as well, which means they're free to use. + +[via [CyberNetNews][2]] + +[1]: http://www.iconfinder.net/ +[2]: http://tech.cybernetnews.com/2007/07/24/iconfinder-the-icon-search-engine/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/intel.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/intel.txt new file mode 100644 index 0000000..692bca4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/intel.txt @@ -0,0 +1,19 @@ +Intel has announced that it will open-source its cross-platform 2.0 (TBB) template library, which is designed to make it easier for programmers to build applications which utilize multi-core processors. + +Most high-end computers (and even many mid-range) ship with multi-core processors, but many popular software packages aren't written to take advantage of the potential speed gains of two processors. + +While the short-term effect of [Intel's announcement][1] will mean little to the average consumer, in the long run the TBB code could enable developers to begin offering more application with multi-core support -- which means better performance for users. + +Intel has previously contributed code to the Linux kernel and developed some drivers which are open source, but today's announcement is the first time Intel has open-sourced a private commercial offering. It is also Intel's largest open-source project. + +With TBB Intel would clearly like to be the standard tool for writing multi-threaded code and the tool is already popular with C++ programmers so now that it's open source its appeal will likely spread within the open source community. + +TBB 2.0 is processor, OS and compiler independent and will be offered under the GPL v2. + +Intel tells [Ars Technica][2] that the company is evaluating the GPL v3, but has yet to make a decision about formally adopting it. + +There's a [new website][3] set up for the open-source portion of TBB 2.0, but Intel will also continue selling a commercial version which is identical, but includes support from Intel. + +[1]: http://www.intel.com/pressroom/archive/releases/20070724fact.htm?iid=pr1_releasepri_20070724fact +[2]: http://arstechnica.com/news.ars/post/20070724-intel-open-sources-multicore-programming-tool.html +[3]: http://osstbb.intel.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/intelopen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/intelopen.jpg Binary files differnew file mode 100644 index 0000000..5c2e2c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/intelopen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iphonecommand.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iphonecommand.jpg Binary files differnew file mode 100644 index 0000000..83f819f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iphonecommand.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iphonehacks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iphonehacks.txt new file mode 100644 index 0000000..38661d8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/iphonehacks.txt @@ -0,0 +1,28 @@ +The remarkable hacker NerveGas and the team at #iphone-shell have managed to find a way to get Dropbear SSH up and running on the iPhone through a bit of [command line trickery][1]. This means you can now install outside apps over SSH. NerveGas and others have already built Apache, Python and other open source apps for the iPhone. + +As NerveGas writes, the hack works by "overwriting an existing binary on the system with chmod, and then calling it with the appropriate arguments to set permissions. The result is a fully functional SSH setup." + +Fully functional SSH is huge; it effectively means you can move any file or program and execute them via the command line. NerveGas and others have [posted some binaries][2] for python and apache and here's some direct links to various command lines tools you can install on your iPhone: + +>* <a href="http://www.gofilego.com/?fileid=3aa438c5efeb84053fb9459c0d6a9cef150b1f08">grep</a> +* <a href="http://www.gofilego.com/?fileid=3a9debfbbad15a11c81f104f72a313b3cc4f229b">ed</a> +* <a href="http://www.gofilego.com/?fileid=27e881b1e21bb96003c2b3bf471c346bac7eacea">vim</a> +* <a href="http://www.gofilego.com/?fileid=6492d1c9dac39bcdefd3ef399a5a0c93f2e4e197">curl</a> +* <a href="http://www.gofilego.com/?fileid=a2a57740af72f7fed554e448c42ef4ae12615042">chmod</a> +* <a href="http://www.gofilego.com/?fileid=0b0851de7d8109230acfa7a5bd1b17c297fec348">ps</a> +* <a href="http://www.gofilego.com/?fileid=98327f212e8d925e566d66ce96b1c1fabd868982">ifconfig</a> + +* <a href="http://www.gofilego.com/?fileid=1c89f731a85fca21b5eb2ca36f3735c6f560cf04">netcat</a> + + +Perhaps the most interesting application of this newfound functionality is the installation of a new SOCKS server to tether your iPhone to your laptop. Now admittedly using EDGE to browse from a laptop is probably going to drive you to fits, but at least it's now possible to use your iPhone's network access via your computer. + +Here's a video demonstration: + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/Io11d0kFGio"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Io11d0kFGio" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +And here's the tutorial on how to [get it working][3]. + +[1]: http://pastebin.com/m7abdb007 +[2]: http://iphone.natetrue.com/ +[3]: http://cre.ations.net/blog/post/tether-your-iphone
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/joost.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/joost.txt new file mode 100644 index 0000000..b06b417 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/joost.txt @@ -0,0 +1,14 @@ +Just in case you had any doubts about the popularity of streaming internet TV, Joost has revealed that they now have [more than one million users][2] -- and keep in mind that the service is still a private beta. + +While we think [Miro offers a superior application][3], Joost certainly has the competition on the ropes when it comes to content. The site continues to add [new channels][1] almost weekly, the latest partnership brings National Lampoon's content to Joost viewers. + +One interesting thing about these numbers is that in my (admittedly somewhat limited) testing I haven't noticed the service getting any slower, which is pretty impressive considering the nature of the service. + +Even Joost co-founder Niklas Zennström admits that as the user base grows, ensuring speedy delivery of content will probably be the sites biggest challenge. + +Joost should be out of its limited beta test phase later this year, though now specific date has been given. + + +[1]: http://www.joost.com/whatson/channels.html +[2]: http://www.apcmag.com/6774/1_million_joost_users_prepare_for_year_end_launch +[3]: http://blog.wired.com/monkeybites/2007/07/miro-builds-on-.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/joostnew.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/joostnew.jpg Binary files differnew file mode 100644 index 0000000..925d7cf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/joostnew.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/oplc.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/oplc.txt new file mode 100644 index 0000000..39c787d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/oplc.txt @@ -0,0 +1,25 @@ +The One Laptop Per Child Foundation's XO computer may not seem like something that's going to revolutionize computing as we know it, but it may end up doing just that. Although it's bright green and white design screams looks like some demented cross between an early iMac and a Fisher Price toy, the machine boasts some impressive specs. + +The primary area in which in XO may change our expectations for even the most high-end computers is power consumption. + +Although I haven't personally used an XO, Jim Rapoza of eWeek recently sat down with one at the OLPC offices and came away impressed: + +>Put simply, the XO is one of the most revolutionary computer systems that I've seen in some time. The entire time I was looking at the XO, I was thinking, why can't my new expensive laptop do this? The technologies that the OLPC's XO are introducing could go a long way towards changing the face of future systems, especially in the area of power consumption. + +Typically, when idling, today's computers use around 14 watts of energy (that's the maximum allowed by the Energy Star requirements). The XO on the other hand uses just 1 watt when idling. + +To pull that off the OLPC team used a very low power display, which somehow still manages to be bright and full color and offers a black and white mode when used in direct sunlight. + +The battery life is also impressive. The XO can use two different batteries, the traditional nickel metal hydride or a newer design which relies on lithium iron phosphate. Because the XO uses an average of just 2 watts and the battery boasts a 20 watt hour charge, the XO can go for 10 hours on a single charge. + +A third standout area for the XO is another battery drainer -- wifi. But thanks to the "wireless mesh" technology (the "rabbit ear" antennas you've seen on the sides of the XO's screen) in the XO, the wireless connection draws just .8 watts of power. + +And then there's the software. The XO runs Sugar, a variant of Fedora Linux optimized for simple applications and learning games. + +While some aspects of the interface strike me as overly simplistic, even for children (in my experience kids are quite adept at learning to use computers and don't need a dumbed down interface with huge icons), there are some novel approaches as well. + +The most interesting of the applications mentioned in Rapoza's review is the "Journal" app, which essentially replaces your standard hierarchical file browser. Rather than folders, Journal allows for tag and even temporal organization and navigation. + +Journal tracks and tags your file and application habits based on time. And while it boast some standard stuff like tag-based navigation, it also allows for time-based navigation -- did you write something interesting on Tuesday, but don't remember where you saved it? Just jump back to the Tuesday group and there it is, ready to go. + +Intriguing to say the least. I highly recommend giving Rapoza's review a read and while it may seem an unlikely source given its emphasis on children, we'd love to hear your thoughts about ways the XO might change the game for laptops. diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/wesabe.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/wesabe.jpg Binary files differnew file mode 100644 index 0000000..f0e2fcd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/wesabe.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/wesabe.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/wesabe.txt new file mode 100644 index 0000000..595eed3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/wesabe.txt @@ -0,0 +1,17 @@ +Wesabe, the personal finance tracking site has [launched a toolbar extension][2] for Firefox users. The Firefox extension makes adding and updating your Wesabe account much easier and will do background syncs any time you use Firefox and are logged in through the toolbar. + +We [looked at Wesabe][1] last year when it launched and came away fans of the money management site, in spite of our lack of money to manage. + +And the new [Firefox toolbar][3] makes the site even easier to use. Rather impressive are the options for getting your back account to send data to Wesabe. According the video below, Wesabe records and stores a small script to grab your bank data if you bank doesn't offer an easy way to export. + +Since the vast vast majority of banking sites are antiquated pieces of crap, this means you can effectively stop using them. For instance I have a credit card at a bank that insists I use Internet Explorer despite the fact the it isn't even offered on the OS I use. + +As for security, if you trust the site, the toolbar isn't adding anything to the mix that the site doesn't already do and if you're really curious, the toolbar is open source so you can peak at the code if you like. + +The demo video below gives a nice overview of the toolbars main features: + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/w7av7jUoCfU"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/w7av7jUoCfU" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://blog.wired.com/monkeybites/2006/11/wesabe_is_new_c.html +[2]: http://blog.wesabe.com/index.php/2007/07/25/the-wesabe-firefox-uploader/ +[3]: https://www.wesabe.com/page/firefox
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/yslow1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/yslow1.jpg Binary files differnew file mode 100644 index 0000000..2f24840 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/yslow1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/yslow2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/yslow2.jpg Binary files differnew file mode 100644 index 0000000..416e555 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.23.07/Wed/yslow2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/amazon.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/amazon.txt new file mode 100644 index 0000000..e935e09 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/amazon.txt @@ -0,0 +1,15 @@ +Though it could be argued that online grocery delivery services were one of the signs of the Apocalypse from the first internet bubble. But that doesn't seem to phase Amazon, the company has announced it will be [getting to the grocery delivery business][1]. + +Of course there are already a handful of grocery delivery services out there, but most are very locally based, something Amazon Fresh, as it's called, could change if it succeeds. + +For the moment Amazon Fresh will be available by invitation only in the Seattle area and will feature pre-dawn deliveries. Use up the last of the greens in last night's dinner? No problem, just finish up the dishes and head over to Amazon.com to order more and they'll be sitting on the porch when you wake up. + +The deliveries will arrive in a "temperature-controlled tote" and there's no delivery charge as long as you meet the $25 minimum, otherwise it's $10 an order for the doorstep convenience. + +If you're in the Seattle area and you'd like an invite, you can sign up [here][3]. If you're not in the Seattle area, Amazon is taking expansion suggestions (apparently using the same form linked in the last sentence). + +While I'm the type who likes to inspect fresh groceries before I buy them, I'll admit that the idea of a delivery service has its appeal -- I've always regretted that I'm too young to have known that [Mayberry][2]-like world of milk delivery. + +[1]: https://fresh.amazon.com/Welcome? +[2]: http://en.wikipedia.org/wiki/Mayberry +[3]: http://fresh.amazon.com/FutureInfo
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/amazonfresh.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/amazonfresh.jpg Binary files differnew file mode 100644 index 0000000..be8fb31 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/amazonfresh.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/blackhat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/blackhat.jpg Binary files differnew file mode 100644 index 0000000..509b433 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/blackhat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/blackhat.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/blackhat.txt new file mode 100644 index 0000000..62fc1b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/blackhat.txt @@ -0,0 +1,17 @@ +Black Hat Report: All Your Wifi Are Belong To Us + +The Black Hat conference is in full swing down in Las Vegas and already there's some scary stuff coming out, the BBC [reports][1] that one demonstrated exploit allows the attacker to see cookies via wifi. + +Robert Graham of Errata Security has created two programs, named "Hamster" and "Ferret," which sniff wifi traffic and grab cookies as people log in to and out of their webmail or social network accounts. + +Although the attack doesn't allow the perpetrator to reset your password, it does allow them near full access to your account. + +Naturally, if you're using say GMail and forcing it to connect via https, then you aren't at risk. If you'd like to force secure connections to GMail and your browser supports Greasemonkey, check out Mark Pilgrim's [handy script][3]. + +If you're not a GMail user, check to see what sort of security options your favorite webmail and other online accounts offer, and remember nearly anything you do on public wifi that isn't to a secure site can be snooped using Graham's tools. + +If you'd like to check out Hamster and Ferret, Graham says they'll be available later this week from the [Errata site][2]. + +[1]: http://news.bbc.co.uk/1/hi/technology/6929258.stm +[3]: http://erratasec.blogspot.com/ +[2]: http://userscripts.org/scripts/show/1404
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/facebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/facebook.txt new file mode 100644 index 0000000..13f8b54 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/facebook.txt @@ -0,0 +1,45 @@ +Social networks initially took the web by storm because they filled a gap in how people wanted to interact over the internet. + +Facebook, MySpace and Bebo all essentially offer the same service: a way to manage your personal data and keep in touch with the people you know. But in order to get any real value out of a social network, you have to put a bunch of data in -- your photos, your contacts, your social calendar, lists of interests and written thoughts. + +Therein lies the rub. By entering that data into Facebook, you're really just sending it on a one way trip. Need to show somebody a video or a picture you posted in Facebook? Unless they have a Facebook account, they can't see it. Your videos, pictures and all the other tidbits of your life are essentially stranded and cut off from the rest of the web. + +Some social networking companies are challenging the closed Facebook model by offering open platforms where data such as personal contacts, videos and photos can be exported and used elsewhere. + +On Monday, the contact management service Plaxo launched a new social network called Pulse. The service gives Plaxo users a way to manage their interpersonal relationships and show off their interests on a customizable profile page. + +In a sense, Pulse offers the same all-your-data-in-one-place approach of Facebook, but with one crucial difference: It's not walled off. Anything you input directly using Plaxo can be retrieved and used elsewhere as you see fit, and any data you make public is accessible to anyone, regardless of whether or not they have an account. The service is rather limited at the moment, but it's a step in the right direction. + +Also, Pulse is no panacea. What the internet needs is a way to take the features of the social network out of the social network and into the larger world. Damn the Facebooks and the MySpaces. The last time we checked, there was this thing called the internet that had 6 billion potential viewers. It's time to take our data out of Mr. McGregor's little garden and put it back where it belongs -- growing free and open on the open web. + +An open platform for social networking is on the horizon. In fact, we're closer than ever before to being able to ditch the locked-in, closed network for good. + +With a little savvy, anyone can create a page that hosts all of the essential stuff one would find on a Facebook profile that can be set up with the same plug-and-play ease. You'll have to store all of your photos, videos, and contacts elsewhere, but at least you'll be able to get to your stuff. + +Start by setting up a blog. Say what's on your mind. Unlike your blog on Facebook or MySpace, everyone will be able to read it. + +From there, you can pull in your photos from Flickr or Zooomr, show off your impeccible musical tastes hosted at iLike or Last.fm, share your favorite web bookmarks from del.icio.us or ma.gnolia and put up a list of your most recent reads using Shelfari or LibraryThing. + +All of these servies have open APIs, making it easy for third-party developers to build widgets for displaying public data stored there. As a result, a dearth of such tools exist. + +Need to keep up to date with your friend's activities? Pull in a feed from their blog or from their Twitter page. The Upcoming event notification service has a dead simple code generator that will create a widget listing all of the events you plan to attend, as well as those your friends are interested in. Like to chat? Meebo offers an embeddable widget for AIM chatting, and Jaxtr does the same for SMS. You can even drop in a Skype button that lets your friends call you with one click. + +One of Facebook's unique features is the "everything in one place" feed, but you can build such a thing yourself. Just create an account at one of the many feed re-mixing sites like Yahoo Pipes, FeedShake or >FeedBlendr. Plug in all the feeds from the various sources you want to track and paste the resulting URL into a widget on your site. Voila. + +The free blogging software from WordPress has all of the functionality to let you embed these widgets and RSS streams. WordPress also has a thriving plug-in ecosystem, so it's likely a developer somewhere has done much of the dirty work for you. + +An even easier option is to use a sharable and customizable start page from Pageflakes or Protopage. Pageflakes in particular allows you to build a customized chunk of cyberspace that aggregates all of your desired content just like Facebook, which you can then publish publicly (Pageflakes calls this a "Pagecast"). And beyond a simple user registration, Pageflakes doesn't lock in any of your personal data. + +It's entirely possible to replicate most of the features of Facebook without getting sucked into its black hole, but there's still something missing. This is where it gets tricky. + +At this point, "friend" relationships remain unique to social networks. The web still lacks a generalized way to convey relationships between people's identities on the internet. The absence of this secret sauce -- an underlying framework that connects "friends" and establishes trust relationships between peers -- is what gave rise to social networks in the first place. While we've largely outgrown the limitations of closed platforms, no one has stepped forward with an open solution to managing your friends on internet at large. + +We would like to place an open call to the web programming community to solve this problem. We need a new framework based on open standards. Think of it as a structure to link individuals sites along familiar lines of friendship, a way of defining micro networks within the larger network of the the web. + +One possibility is the microformat XHTML Friends Network (XFN) which defines the relationship between the linker and the linkee. + +Some developers are beginning to offer easy-to-use tools which can create XFN code (WordPress and Movable Type both offer templating solutions), but use of XFN isn't yet widespread, and the data format doesn't offer any tools for managing friends. While a code snippet placed in a page can convey who you are and how you know who you know, the format doen't provide any way to utilize the information. + +Such a "mirco-network" standard may sound daunting or even impossible, but nearly all the tools we've mentioned so far started small. Blogging grew from a few people trying to easily publish web content on a daily basis. Del.icio.us started with one person looking for a way to manage his bookmarks from any machine. Even Facebook started with a few college friends trying to better plan their social lives. + +Eventually, an open network will emerge. Let's make it happen sooner rather than later. diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/p b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/p new file mode 100644 index 0000000..28b34f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/p @@ -0,0 +1,13 @@ +Plaxo is set to officially launch its new social networking tools, dubbed "Pulse," on Monday, August 6th. With Pulse Plaxo would appear to be gunning for Facebook's all-your-data-in-one-spot status. We looked at the beta version Pulse last month and [found it a bit unstable][1], but one thing Plaxo has going for it that Facebook lacks is openness. + +Plaxo will offer export options for all your data, contrasted with Facebook's so-called API, which really amounts to sending your data on a one-way trip over the event horizon. + +Other than the ability to export and use your data elsewhere, Plaxo's new networking features closely mirror those of Facebook -- you can add various data streams, such as blog posts, Flickr photos or Amazon Wishlists. Hopefully Plaxo will add more services before Monday's launch. + +Like Facebook you can then see your friends’ streams on the site and subscribe to their feeds. + +But despite its openness Plaxo's service is no panacea for those fed up with Facebook's walled garden; the company is still dogged by its reputation for annoying spamming users and many will likely shun the new network on that basis alone. + +There's a beta test version of Pulse up on Plaxo right now, but it has some issues and number of bugs (Google Calendar sync has been disabled), which will hopefully be worked out before Monday's launch. + +[1]: http://blog.wired.com/monkeybites/2007/06/plaxo-one-pim-a.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/parallels.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/parallels.txt new file mode 100644 index 0000000..43692bb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/parallels.txt @@ -0,0 +1,19 @@ +Last week, VMWare announced its Mac virtualization software, Fusion, will be out of [out of beta on August 6][3], and now, not to be outdone, the original Mac virtualization solution -- Parallels has released a new public beta update. + +Unlike the last couple of betas from Parallels this one if free and open to annoy with a Parallels 3.0 license or a trial license which can be obtained by e-mailing the company. + +The new beta features improved integration in Coherence mode including support for Expose, which means you're Windows apps will zoom and stack just like your Mac windows. Other new features include (taken from the [Parallels blog][1]): + + +>* The Image Tool is back at full strength and completely compatible with snapshotted drives. Using the image tool, users can: +* Convert virtual hard drive format (plain to expanding, expanding to plain), +* Enable/disable the "undo disk" option, which will erase all changes made during a session at shutdown. It's ideal for those of you doing a lot of testing or working in school settings), +* Easily enlarge a virtual hard drive if you're running out of space. +* Explorer, the free utility that lets you browse and work with your VM’s hard drive even with the VM is off, now also works with VMs that are suspended. +* iPhone support in XP and Vista. Yes, I realize the irony of syncing an Apple device with Windows running on a Mac, but lots of people need to hook their iPhones up to Outlook. Try not to judge. + +I haven't tested the new features yet, but I'll be taking a look over the weekend. If you'd like to give it try, [grab a copy from the Parallels site][2], but keep in mind that this is a beta offering, don't try to use it on mission critical machines. + +[1]: http://parallelsvirtualization.blogspot.com/2007/08/new-parallels-desktop-beta-starts-today.html +[2]: http://www.parallels.com/en/products/desktop/beta +[3]: http://blog.wired.com/monkeybites/2007/08/vmware-fusion-f.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/suprnova.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/suprnova.jpg Binary files differnew file mode 100644 index 0000000..f034b81 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/suprnova.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/suprnova.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/suprnova.txt new file mode 100644 index 0000000..a3e1390 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/suprnova.txt @@ -0,0 +1,16 @@ +It Lives! Pirate Bay To Re-ignite Suprnova + +Suprnova.org, the king of the early bittorrent trackers, was shut down nearly three years ago after tremendous pressure from the French anti-piracy group RetSpan, but the notorious Pirate Bay has vowed to bring it back. + +The original owner of Suprnova.org, Andrej Preston has reached an agreement with the Pirate Bay to turn over use of the domain name, paving the way for the return of Suprnova. + +Like the Pirate Bay Suprnova was a torrent tracker and search engine for finding movies, TV shows, and more -- some legal, some not. But the rebirth of Suprnova will see the site limited to torrent indexing, rather than tracking. + +The Pirate Bay also says that a new community site will be launched that will be linked to both Suprnova and The Pirate Bay -- [SuprBay.org][2] is the new domain. + +Founded by Preston, who is Slovenian, in late 2000, Suprnova.org paralleled the rise of bittorrent as a file-swapping tool, and in many ways is at least partly responsible for its popularity today. + +For his part, Preston tells [TorrentFreak][1], "I know that domain has some nostalgic value and some people would be more then happy to see it back online. I don’t use it, and TPB is the only team that I know will use it correctly." + +[1]: http://torrentfreak.com/the-pirate-bay-about-to-relaunch-suprnovaorg/ +[2]: http://suprbay.org/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/yelp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/yelp.jpg Binary files differnew file mode 100644 index 0000000..a2e1180 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/yelp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/yelp.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/yelp.txt new file mode 100644 index 0000000..c6a9e51 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Fri/yelp.txt @@ -0,0 +1,31 @@ +Yelp, the social reviews, site has launched a new API which allows developers to query the site and display returned data on their own sites. The API allows developers to create mash-ups using Yelp data and nearly any other source -- so long as it is not review. + +The API features the ability to: + +>* retrieve business review and rating information for a particular geographic region or location. +* display review information for a particular business. +* determine accurate neighborhood name information for a particular location. +* track recent reviews for a particular business. +* display pictures of highly rated local businesses and of the top reviewers for that business. +* determine a particular business' review and rating information based on the phone number for that business. + +However, before you get to excited consider the following restrictions: + +>You May Not: + +* Collect end-user ratings or reviews of local businesses on any website that uses the Yelp API or Yelp Content; +* Aggregate Yelp Content alongside content from other sources (e.g., you will not create aggregate ratings combining ratings from Yelp and other sources); +* Display Yelp Content on any web page or application page that includes local business reviews from another source. + +I can see where Yelp wants to be the one and only source for reviews, but it seems like, it Yelp is really as good as it thinks it is, it wouldn't need to limit the competition. After all Google Maps API, the Flickr API and dozens of other site contain no such restrictions. + +Another drawback: the default format for returned data is [JSON][1] rather than the more standard XML. You can also request that Yelp return its response in "pickle" (serialized python) or PHP, but if you're not down with those three languages you're out of luck. + +For more info, check out the Yelp developer site and be sure to have a look at the great little [Google Maps-Yelp mash-up example][2] for some idea on how you can use the new API. + +Perhaps at some point Yelp will come to its senses and remove the silly restrictions on what is otherwise quite a nice little API. + + +[1]: http://www.json.org +[2]: http://groups.google.com/group/yelp-developer-support/browse_thread/thread/ad36e66bd7bb48d4 +[3]: http://www.waxy.org/links/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/Google.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/Google.txt new file mode 100644 index 0000000..b7e42f2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/Google.txt @@ -0,0 +1,14 @@ +Google could be rolling out some form of copyright detection for YouTube as early as next month. The release timeline comes from one of Google's attorney's who is defending the company against Viacom's $1 billion [copyright infringement lawsuit][2] against YouTube. + +In pretrial hearing Google's attorney told the judge that the company was working "very intensely" on a video recognition technology and hoped to release it sometime in September. + +The AP [reports][1] that the technology in question has been described as a means of fingerprinting digital files, supposedly as "sophisticated as fingerprint technology used by the FBI." + +However Google's CEO, Eric Schmidt, has previously said that the copyright protection technology for YouTube would **not** be designed to filter out and block pirated content, rather it would "somewhat automate" the process by which content owners can flag illegally copied videos. + +So has Google changed its plans for the filtering service? At this point no one outside Google knows for sure, but it certainly sound like what the lawyer described would be capable of blocking uploads. + +When asked for a comment, a Google spokesperson backed off the September release date saying, "we hope to have the testing completed and technology available by some time in the fall, but this is one of the most technologically complicated tasks that we have ever undertaken, and as always with cutting-edge technologies, it's difficult to forecast specific launch dates." + +[1]: http://www.infoworld.com/article/07/07/27/Google-plans-YouTube-antipiracy-tool-for-September_1.html +[2]: http://blog.wired.com/monkeybites/2007/03/the_morning_reb_5.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/appletv.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/appletv.txt new file mode 100644 index 0000000..5727b15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/appletv.txt @@ -0,0 +1,21 @@ +Amid all the hype over the iPhone, the AppleTV hasn't generated much press lately, but that doesn't mean the hackers haven't been busy. AppleTVHacks finally published a patch over the weekend that allows AppleTV users to hook up an external drive for storage. + +One of the chief complaints about the AppleTV was its lack of hard drive storage, originally the AppleTv shipped with a paltry 40 GB, though Apple has since added a built-to-order option with a 160 GB drive. + +Still, before the AppleTV becomes a viable option for HD movies and other large media files, it's going to need external storage options, and that's exactly what [the USB patch does][1]. There are of course some caveats, for one thing the patch only seems to work with the original software, rather than the newer Apple TV software version 1.1. + +To get things working you'll need: + + +<ul> +<li><em>An ssh-enabled Apple TV</em>. If you don’t have that enabled yet, you can refer to this <a href="http://appletvhacks.net/2007/03/24/enable-ssh-and-afp-on-your-apple-tv/">post</a> to get it enabled. For instructions on how to enable ssh without opening the case, refer to this <a href="http://wiki.awkwardtv.org/wiki/Enable_SSH_Without_Opening_the_Apple_TV">wiki page</a>.</li> +<li><em>An Intel-Mac or Intel-based *nix</em>. This is needed to run the script to patch the kernel on the Apple TV remotely. It maybe possible to run the install script under Windows using <a href="http://cygwin.com">cygwin</a>. However, we have not tried this.</li> +<li><em>An installed version of Mac OS X 10.4 Intel</em>. Or a full copy of the contents of the “/System/Library/Extensions” folder from one.</li> +<li><em>An original, unmodified copy of the ‘mach_kernel.prelink’ file from the Apple TV</em>. If the kernel on your Apple TV has not been modified yet, you can just tell the script to get it from there. Otherwise, you can obtain the file from Apple TV Software 1.1 update available <a href="http://mesu.apple.com/data/OS/061-2988.20070620.bHy75/2Z694-5248-45.dmg">here</a>.</li> +<li><em>An external USB drive formatted using “Journaled HFS+”.</em> This is the format the Apple TV expects.</li> +</ul> + +For complete step-by-step instructions head over to AppleTVHacks. And if you'd like to help adapt and modify the patch to work with Apple TV software 1.1, the folks behind AppleTVHacks would [appreciate the helping hand][2]. + +[1]: http://www.appletvhacks.net/2007/07/28/usb-patch-released-hallelujah/ +[2]: http://www.appletvhacks.net/2007/07/29/usb-patch-2-days-later/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/cheaper.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/cheaper.jpg Binary files differnew file mode 100644 index 0000000..0d20a15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/cheaper.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/ip[hone b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/ip[hone new file mode 100644 index 0000000..cac7d6d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/ip[hone @@ -0,0 +1,14 @@ +We mentioned it last week when it was initially released, but the "hello world" app for the iPhone is now available for mere mortals in GUI form. True, it still doesn't do anything more than announce "hello world," that the fact that it's wrapped up in a GUI means that other, actually useful apps will probably start popping up in the very near future. + +Other GUI options for iPhone junkies include [iFuntastic][1], which allows you to install custom ringtones, rearrange the home menu and replace the AT&T logo with any 65 x 18 pixel PNG image. + +Most of the rest of the hacks floating around the internet still require some command line input, though nearly all provide detailed instructions. + +An interesting app/hack from Justin Schwalbe allows you to take any image from the web and [make it the iPhone wallpaper][2]. Yes, you can already do that, but it requires connecting to your computer, downloading and then syncing to include the downloaded images. Schwalbe's hack allows you to download and use any image as a wallpaper, from the actual iPhone. + +Check out the video below: + +[1]: http://www.iphonealley.com/forums/showthread.php?t=523&s=17555c58798ee56246a477ae06e398a4& +[2]: http://finishtherace.net/b2/index.php?p=532&c=1&more=1 + + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/linus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/linus.jpg Binary files differnew file mode 100644 index 0000000..b9800d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/linus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/linux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/linux.txt new file mode 100644 index 0000000..fac7de5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/linux.txt @@ -0,0 +1,15 @@ +With Dell now offering it pre-installed and most of your favorite sites powered by it, it's easy to forget that Linux as we know it is less than thirteen years old. + +In September of 1991 Linus Torvalds e-mailed the comp.os.minix Usenet group to say: "I'm doing a (free) operating system (just a hobby, won't be big and professional like gnu) for 386(486) AT clones. This has been brewing since April, and is starting to get ready." + +Kernel Trap recently had a [nice overview of Linus' early thoughts on the kernel][1] and its development, some of which become quite funny in light of the actual development of Linux. + +Originally Linus didn't think the kernel would port from the original 32-bit i386 chip architecture. And while that is the way Linux 1.0 shipped, by the time 1.2 arrived just under a year later, it had already been ported to 32-bit MIPS, 32-bit SPARC, and the 64-bit Alpha. + +Linus was also pretty adamant that Linux was nothing more than a hobby and probably wouldn't impress many people. + +Of course a quick push of the fast-forward button and you get to today where consumer-friendly distributions of Linux are shipping pre-installed on Dell machines. + +A crazy condensed history to give you a little perspective on a monday morning. + +[1]: http://kerneltrap.org/node/14002
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/msbittorrent.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/msbittorrent.txt new file mode 100644 index 0000000..8a2a286 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/msbittorrent.txt @@ -0,0 +1,27 @@ +Microsoft released a beta of Visual Studio 2008 last week and to go along with it the company has unveiled a new downloading scheme that sounds a lot like bittorrent. The Microsoft Secure Content Downloader (MSCD) as the new protocol is known, is what Microsoft describes as "a peer-assisted download manager." + +Further details make the setup sound even more like bittorrent. From the [MSCD site][1]: + +>* Each client downloads content by exchanging parts of the file they’re interested in with other clients, in addition to downloading parts from the server. + * No matter how great the internet’s demand for the file, you will always be able to make progress downloading. + * MSCD lets you download content quicker than is possible without peer assistance. + + + +Unlike bittorrent though, these files are secure through an unspecified mechanism, but otherwise the system sounds like Microsoft has reinvented bittorrent as a means of downloading software. Or at least is testing the system. + +Here's where it gets interesting though: + +>Some MSCD clients may be connected to each other via peer connections, forming a ‘cloud’ of clients. Pieces of the file you are downloading are sent through these peer connections between clients, as well as through connections with the file server. As a member of the cloud, your computer both serves as a client and server to other members of the cloud. Data destined for the cloud may be routed through your computer and sent to other cloud members. The other cloud members connected to you will be able to access only pieces of the file you are downloading via MSCD – they have no access to any other data on your computer. + +Essentially your bandwidth and connection are being used to distribute Microsoft's software and it remains to be seen how consumers react to this idea. + +Is the potential speed boost and shortened download time enough to take the sting off the fact that you're essentially helping Microsoft cut down on their server costs? Or will consumers revolt as they did when Blizzard released a World of Warcraft [patch via bittorrent][2]? + +Let us know what you think in the comments below. + +[1]: http://www.microsoft.com/downloads/details.aspx?familyid=9a927cf6-16e4-4e21-9608-77f06d2156bb&displaylang=en +[2]: http://www.blizzard.co.uk/wow/faq/bittorrent.shtml + +[Comic From [Penny Arcade][3]] +[3]: http://www.penny-arcade.com/comic/2006/06/21
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/virus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/virus.jpg Binary files differnew file mode 100644 index 0000000..70edeec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/virus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/virus.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/virus.txt new file mode 100644 index 0000000..d9dc079 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Mon/virus.txt @@ -0,0 +1,13 @@ +Chatting is the hot new venue for virus and malware authors. A new study says that malicious attacks over IM networks are up almost 80 percent compared to last year. + +Akonix, which just [released the statistics][1] over the weekend is in the business of developing IM "cleaning" services so you might want to take the numbers with a grain of salt, but still, according to Akonix's survey there have been 226 exploits for IM networks this year, which is just over one a day. + +Compare that with last year's numbers and there's no doubt that IM is finally starting to attract the kind of attacks that other networks have suffered for years. + +Akonix also says that older peer-to-peer networks, such as Kazaa and eDonkey, are increasing beset by malware. The company found 32 attacks just in the month of July. + +With system admins spending so much time and effort clamping down large e-mail networks, it makes sense that hackers would move on to the thus-far soft underbellies of IM and P2P. + +As with everything else in the online world, make sure you trust your IM contacts before clicking a link or downloading any files sent over IM. + +[1]: http://www.akonix.com/press/releases-details.asp?id=138
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/adobe.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/adobe.txt new file mode 100644 index 0000000..4885ce0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/adobe.txt @@ -0,0 +1,15 @@ +Following widespread criticism, Adobe has announced it will remove a menu option in its Acrobat and Reader programs which allowed users to send documents over the Internet to FedEx Kinkos for printing. + +The menu option was [new in Reader 8.1 and Acrobat 8.1][2] and is located under the "File" menu. Adobe agreed to remove the links after meeting with other print companies who saw the feature as an unfair advantage for FedEx Kinkos. + +John Loiacono, Adobe's SVP of the Creative Solutions Business Unit, [writes on his blog][1]: + +>I know that there are a lot of folks who will be asking why we can't do it this afternoon. The answer is we can't just go back to the 8.0 release since the 8.1 release that contains the button included a lot of critical security and quality updates in addition to the new print option. We have determined the best way to move forward is with an 8.1.1 update. + + +FedEx Kinkos will still offer a version of Adobe Reader with the printing option in the File menu, but it will be available only from the FedEx Kinkos site. + +Adobe also says it will be setting up a Print Advisory Council to work with third-party printers on software integration issues. + +[1]: http://blogs.adobe.com/johnnyl/2007/08/adobe_and_fedex_kinkos_update.html +[2]: http://blog.wired.com/monkeybites/2007/07/latest-acrobat-.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/e-mail.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/e-mail.txt new file mode 100644 index 0000000..4290cf5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/e-mail.txt @@ -0,0 +1,28 @@ +<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="675" height="246"> + <param name="movie" value="http://blog.wired.com/monkeybites/files/3-species.swf" /> + <param name="quality" value="high" /> + <embed src="http://blog.wired.com/monkeybites/files/3-species.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="675" height="246"></embed> + </object> + + +It's Merlin Mann's worst nightmare: a full inbox with hundreds of e-mail messages visualized as a bunch of hairy, swimming microbes. + +When Carolin Horn set out to find a metaphor to visualize her e-mail she turned, naturally some would argue, to microbes. The result is a very nice Flash app that displays the status of each e-mail by the size, shape and velocity of microbes. + +The project is part of Horn's MFA thesis "Natural Metaphor For Information Visuzalization." Here's how she explains the project: + +>The emails are categorized in six person groups: family and friends, school, job, e-commerce, unclassified, and spam. For example, all emails I have received from my advisors and fellow students are in the category school. These categories are represented by six species, which are different in color and form. For instance, all received emails from school are blue and look a bit like croissants. + +>How an animal looks and moves depends on the condition of the represented email. The age of an email (when it was received) is shown by the size and opacity of the animal. For instance, a new email is big and opaque, an old email small and transparent. The status of an email (unread, read, responded) is shown by two animal attributes: the number of hair/feet and velocity. An unread email is hairy and swims fast; a read email has less hair and does not swim so fast anymore; a responded email is hairless and barely moves. + +"An unread email is hairy and swims fast." Indeed. Which is why we recommend you [get a handle on your e-mail][2] before you end up in bed with some nasty bug. + +The project code was written by Florian Jenett and it's [available for download][4] if you'd like to play around with it. + +[via Waxy][3]] + +[3]: http://www.waxy.org/links/ +[2]: http://blog.wired.com/monkeybites/2007/07/tips-to-curb-yo.html +[1]: http://carohorn.de/anymails/ +[4]: http://carohorn.de/anymails/Anymails_010_20070801.zip + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/gadget.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/gadget.txt new file mode 100644 index 0000000..cb7bf26 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/gadget.txt @@ -0,0 +1,11 @@ +Gadget Lab is running a March Madness-style tournament to determine the "[Greatest Gadget of All Time][1]." The results won't be tallied until next week, and they've got a great little Flash-interface for the voting, head over and cast yours today. + +Some of the match-ups are bit lopsided (The Sony Walkman versus Mr. Coffee, I mean I like coffee and all, but come on) but it's fun anyway. I expect the iPod to come out on top in the end, or at least in the top three, but then again, it's up against some impressive stuff like the Fender Telecaster and the original Mac Plus -- without which there might not be much use for an iPod. + +Personal pick? The Bic Cristal Ballpoint Pen. + + + + +[1]: http://www.wired.com/special_multimedia/2007/gadget_tournament/ + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/gadgets.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/gadgets.jpg Binary files differnew file mode 100644 index 0000000..5dac3c4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/gadgets.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/hdphoto.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/hdphoto.txt new file mode 100644 index 0000000..9697ca3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/hdphoto.txt @@ -0,0 +1,13 @@ +The JPEG standards group announced today it will consider Microsoft's HD Photo format (also known as Windows Media Photo) as a possible successor to the JPEG standard. If the Microsoft format is approved, it will be renamed JPG XR. + +Geared toward the digital photography market, Microsoft's HD Photo offers a number of advantages over the existing JPEG format, including lossless compression, support for embedded color profiles and the ability to manipulate the compressed data directly. + +Another format, JPEG2000 is also under consideration, but Microsoft claims its format offers speed and size advantages over JPEG2000. + +As part of the submission, Microsoft has also said it will release royalty free versions of all the patents required by HD Photo, should it be approved. + +The JPEG standard committee will make its decision by the end October. Should it be approved HD Photo will probably be published as a completed standard within roughly a year. + +[via [Ars Technica][1]] + +[1]: http://arstechnica.com/news.ars/post/20070801-microsoft-hd-photo-considered-for-standardization-by-jpeg-committee.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/om8.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/om8.jpg Binary files differnew file mode 100644 index 0000000..3baddf9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/om8.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/om8.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/om8.txt new file mode 100644 index 0000000..9b67da9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/om8.txt @@ -0,0 +1,19 @@ +In case the name didn't clue you in, Microsoft has announced its Office for Mac 2008 with new versions of Word, Excel and PowerPoint, will be delayed until January 2008. Despite the name, Office for Mac 2008 was originally scheduled for release in the second half of this year. Microsoft hasn't released a Mac Office update in four years. + +Microsoft says that problems with "product quality" caused the delay, but hopes to have its Mac office suite on the shelves in time for MacWorld which is scheduled for the second week in January 2008. + +Although Microsoft [demoed preview versions of Office for Mac][2] at this year's Macworld, the company has held the software in a private beta phase for the last seven months. + +The 2008 release will be the first Office for Mac version to be built for Intel-based Macs. However, Microsoft has already said that the Mac version of its Office suite will not feature the revamped interface, dubbed "Ribbon," that its Windows counterpart now uses. + +Other likely changes in the new version include the removal of Visual Basic scripting, for macros, which automate commonly used functions (and enable all sort of potential exploits). Microsoft hasn't said one way or the other, but there is the possibility that Office for Mac 2008 could adopt AppleScript, OS X's native scripting language. + +The announcement about Office for Mac's delay comes just two days after the Microsoft MacBU released new betas of its [Office format converters][3], which improve compatibility with the PC version of Office 2007 in the existing version of Office for Mac. + +Meanwhile, the rumor mills suggest that Apple [may release][1] the next revision of its own office suite, iWork, in the very near future. But, although iWork can replace Microsoft Office for the casual user, it still has some compatibility issues and lacks many of the features of Microsoft's offering. + +Pricing details for Office for Mac 2008 have not been announced. Microsoft Office for Mac 2004, the most recent version, costs $400. + +[1]: http://blog.wired.com/monkeybites/2007/07/rumor-next-vers.html +[2]: http://www.wired.com/software/coolapps/news/2007/01/72476 +[3]: http://blog.wired.com/monkeybites/2007/08/microsoft-updat.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb.txt new file mode 100644 index 0000000..37831c5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb.txt @@ -0,0 +1,23 @@ +There's a new open source browser on the block: the ["Origyn Web Browser" (OWB)][2] is based on the open-source WebKit Web browser engine, the same technology behind Apple's Safari. + +OWB was created by a company named Pleyo, and is designed for devices such as mobile phones, portable media players, GPS devices, PVRs and other set-top boxes, but there are builds available for Linux desktop and Mac OS X as well. + +Although OWB is based on Apple's WebKit browser engine, Pleyo has added an abstraction layer, known as the "OWB Abstraction Layer" (OwBal) which is designed to make it easier to integrate the browser into other platforms. + +Instead of having to port the whole browser to a new platform, the OwBal layer allows developers to use their existing libraries which OWB can hook into. + +If you'd like to play around with OWB, you can grab the source from [Sand-labs.org][1]. OWB is governed by the BSD license. + +The suggested development setup is a Gentoo Linux-based environment, which has an installer, but there are other builds for OS X and the Nokia N800 internet tablet. + +The alternative builds require you to compile from source. If you've never done that before, have a looks the [how to compile software][3] tutorial in the new Wired how-to wiki. + +Here's some screenshots of OWB from the press release: + + +[via [DesktopLinux][4]] + +[1]: http://www.sand-labs.org/owb +[2]: http://www.linuxdevices.com/articles/AT5894497943.html +[3]: http://howto.wired.com/wiredhowtos/index.cgi?page_name=compile_software_from_source_code;action=display;category=Work +[4]: http://www.desktoplinux.com/news/NS3111480150.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb1.jpg Binary files differnew file mode 100644 index 0000000..420455b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb2.jpg Binary files differnew file mode 100644 index 0000000..8d4db76 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb3.jpg Binary files differnew file mode 100644 index 0000000..e91beb2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb4.jpg Binary files differnew file mode 100644 index 0000000..8f5a355 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/owb4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/textbook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/textbook.jpg Binary files differnew file mode 100644 index 0000000..5d44cef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/textbook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/textbooks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/textbooks.txt new file mode 100644 index 0000000..d03c288 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/textbooks.txt @@ -0,0 +1,15 @@ +It's back to school time and students know that that means, time to bend over and take one from the textbook publishers. But if long lines and artificially inflated prices aren't your bag, you might want to look at [Textbookflix][1]. + +Textbookflix is a new service that allows students to rent textbooks in the same way your rent movies from Netflix (which explains the horrible name, I think). Textbookflix is the brainchild of Chegg, a classified network where students can buy and sell textbooks. + +In theory Textbookflix will let you search by school, course and professor to find the books you need and then you can rent them for the semester. The service is currently a private beta, but you can [sign up to receive an invite][2]. + +I haven't personally used the service, but if the inventory is any good, it could be a much needed money-saver for cash-strapped college students. + +Of course there's also the Facebook marketplace, which can useful for obtaining cheap used books. + +[via [Mashable][3]] + +[1]: http://www.textbookflix.com/index.php/ +[2]: http://www.textbookflix.com/index.php/WaitingList/?PHPSESSID=59b047b57fb78c44b9a8a0ee550d2fb2 +[3]: http://mashable.com/2007/08/02/textbookflix/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/wmhd.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/wmhd.jpg Binary files differnew file mode 100644 index 0000000..8e9682b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Thu/wmhd.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/bitlet.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/bitlet.jpg Binary files differnew file mode 100644 index 0000000..64d83a1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/bitlet.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/bitlet.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/bitlet.txt new file mode 100644 index 0000000..7a087a8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/bitlet.txt @@ -0,0 +1,19 @@ +The process of downloading bittorrent files continues to baffle many people, despite some pretty easy-to-use options. For those that just can't seem to figure it out, [BitLet][1] offers a dead-simple method of downloading torrent files directly from your browser -- no external programs or browser add-ons needed. + +Feed BitLet the URL of a .torrent file and it will download the file using a web-based interface that opens in a pop-up window. The interface will ask where you'd like to save the file and then the download starts. + +You'll be able to monitor speeds (which were quite good in my testing) and progress, though there's no peer data or any in-depth information. + +It's no replacement for a desktop-based client if you're serious about your torrents, but if you don't want to explain the bittorrent process to your clueless co-worker, sending them a BitLet URL can spare you the pain. It would also be handy for work environments where there might not be a bittorrent client installed. + +BitLet does require that you have the latest Java VM browser plug-in installed on your system, but Vista and OS X ship with everything you'll need. Depending on the last time you updated XP you may need to grab the [latest version of the Java VM plug-in][4]. + +BitLet even includes a [very nice code generator][3] for making links which you can then e-mail or post on your site for others to download. Here's a sample of some BitLet generated code to start downloading the Intel version of <script src="http://www.bitlet.org/javascripts/BitLet.js" type="text/javascript"></script> +<a href="http://www.bitlet.org?torrent=http%3A%2F%2Freleases.ubuntu.com%2F7.04%2Fubuntu-7.04-desktop-i386.iso.torrent" onclick="return BitLet.openDownloadFromAnchor(this);">Ubuntu Desktop 7.0.4</a>. + +[via [TorrentFreak][2]] + +[1]: http://www.bitlet.org/ +[2]: http://torrentfreak.com/bitlet-a-cute-web-based-bittorrent-client/ +[3]: http://www.bitlet.org/more +[4]: http://www.java.com/en/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/firefox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/firefox.txt new file mode 100644 index 0000000..840a88b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/firefox.txt @@ -0,0 +1,14 @@ +Mozilla has pushed out a Firefox update to patch some security issues which we [mentioned last week][4]. The new update, Firefox 2.0.0.6 comes just two weeks after the last security update. + +Firefox 2.0.0.6 fixes a critical vulnerability that would cause the browser to pass on unescaped URIs to external programs, which opened up all sorts of nasty attacks, including a means for hackers to install malware on Windows simply by offering a specially crafted link. + +The new update also addresses a less serious vulnerability involving Firefox add-ons. + +The update can be [downloaded from the Mozilla servers][1]. The [release notes][3] are available and if you'd like more information on the security issues, the patch information can be found [here][2]. + +A security advisor sent out to Mozilla's mailing list also lists new version of Thunderbird 2.0.0.6, 1.0.5.13 and SeaMonkey 1.1.4 which all address the same issues. + +[1]: http://www.mozilla.com/en-US/firefox/all.html +[2]: http://www.mozilla.org/projects/security/known-vulnerabilities.html#firefox2.0.0.6 +[3]: http://www.mozilla.com/en-US/firefox/2.0.0.6/releasenotes/ +[4]: http://blog.wired.com/monkeybites/2007/07/uri-vulnerabili.html "URI Vulnerabilities Continue To Plague Firefox 2"
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/works.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/works.txt new file mode 100644 index 0000000..d6061ca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/works.txt @@ -0,0 +1,25 @@ +Microsoft has released the new version of Microsoft Works. Microsoft Works v9, the red-headed stepchild of Microsoft Office, is a free, ad supported office package offering word processing, spreadsheet and slideshow (Powerpoint) functionality. + +Microsoft Works 9 may also someday be available as a Microsoft-hosted low-end productivity service, possibly through the company's Live services, which would put it head-to-head with Google Docs & Spreadsheets and Zoho. But for the moment, Works 9 will be limited to the desktop. + +Regrettably, although there are some support documents online and a few torrents on Pirate Bay, there doesn't seem to be a way to download Works 9 from the Microsoft site. + +Although I'll reserve judgment until Works is available, here's some interesting tidbits from the [Microsoft support site][2]: + +* The OOXML file formats from Office 2007 will be supported (regrettably so will those archaic Works formats, which could confuse some users) + +* XP 32-bit and 64-bit are both supported, but only the 32-bit version of Vista will work, as is the case with several other recent releases from Microsoft. + +* The [minimum system requirements][3] might raise a few eyebrows. Not the XP version, which requires just 256MB of memory, but you the Vista version apparently needs 1GB in Vista Basic and a massive 1.5GB for Vista Home Premium, Business, or Ultimate. And remember, that's the *mimimum*, not the recommended amount of RAM. That should put Firefox's memory usage in perspective. + +For those that have forgotten about Microsoft Works, it includes an address book, calendar, database, dictionary, PowerPoint Viewer, basic Word, and some templates. Works began life as a Mac application way back in 1985. + +In many respects Works is a stripped down version of the full-fledged Office suite, and has primarily continued its life as a default install on low-end PCs, though many manufacturer's have started following Microsoft's recommendation of pre-installing an Office demo instead. + +We'll be sure to update this post as soon as there's a download link available. + +[via [ZDNet][1]] + +[1]: http://blogs.zdnet.com/microsoft/?p=604 +[2]: http://support.microsoft.com/default.aspx/ph/12025?cid=C_67306 +[3]: http://support.microsoft.com/kb/939451/en-us
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/works8.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/works8.jpg Binary files differnew file mode 100644 index 0000000..0a4e1fa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Tue/works8.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/gmicro.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/gmicro.txt new file mode 100644 index 0000000..ad2094b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/gmicro.txt @@ -0,0 +1,16 @@ +One Giant Leap For Microformats + +The Google Maps team announced yesterday that the popular mapping service will [now support the hCard microformat][1] in search results. The hCard microformat is a way of encoding address information which makes it easier to export address/contact info into other applications. + +Now when you search for a business in Google Maps your browser can recognize the address and contact information in the page, and make it easy to transfer it to an address book or phone. + +For Firefox users there's a there are two add-on that offer microformats support, <a href="https://addons.mozilla.org/en-US/firefox/addon/4106"> Operator</a> or <a href="https://addons.mozilla.org/firefox/2240/">Tails</a>. If you're an IE or Safari user, the microformats wiki has some <a href="http://microformats.org/wiki/bookmarklets"> bookmarklets</a> that enable those browsers to grab and pass on hCard info or convert it to GMail address. + +Also, if you've got some form of Google Maps on your own site, you can do so by making a few slight changes to your HTML. For more info on microformats, [see our earlier tutorial][3] or head over to the [official site][4]. + +Google Maps may not be the first to embrace microformats, but it is definitely one of the largest services and should significantly increase the public's exposure to the usefulness of microformats. + +[1]: http://googlemapsapi.blogspot.com/2007/06/microformats-in-google-maps.html +[2]: http://microformats.org/wiki/hcard-authoring +[3]: http://blog.wired.com/monkeybites/2007/01/tutorial_o_the__2.html +[4]: http://microformats.org/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/iPhone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/iPhone.txt new file mode 100644 index 0000000..924f76b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/iPhone.txt @@ -0,0 +1,16 @@ +Apple has released the first iPhone update with fixes for [vulnerabilities in Safari][2], WebCore and WebKit. The update is available through iTunes when the iPhone is connected. + +IPhone 1.0.1 doesn't add any new features but the update for Safari 3 on the iPhone addresses the serious flaw brought to light shortly after the iPhone was released. The vulnerability gives a website the ability to allow cross-site scripting. + +By combining a flaw in Safari with HTTP redirection malicious site could use JavaScript from one page to modify a redirected page which would allow cookies and pages to be read or arbitrarily modified. + +The patch also addresses another issue in Safari which could lead to arbitrary code execution if you visit a maliciously crafted web page. + +The WebCore fix is for an issue very similar to that of Safari and also allows cross-site requests. The WebKit patch address a vulnerability involving look-alike characters in a URL which could used to trick users into visiting a malicious site which could then be used to execute arbitrary code. + +The researchers who discovered the flaws in Safari were set to reveal the details at the annual Black Hat Conference later this week. Fortunately for users, Apple managed to push out this set of patches before that happened. + +For those with hacked iPhones, the update appears to wipe your mods, but various reports claim that Jailbreak still works and I had no problems using iFuntastic even after applying the update (be sure to [grab the latest version][1] though, I can't vouch for earlier versions). + +[1]: http://iphonealley.com/downloads/applications/ifuntastic-version-2-1-0-b001 +[2]: http://blog.wired.com/monkeybites/2007/07/iphone-flaw-all.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/macoffice.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/macoffice.txt new file mode 100644 index 0000000..4a4bfaa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/macoffice.txt @@ -0,0 +1,22 @@ +Microsoft's MacBU team has rolled out an updated beta of their format converters which feature added compatibility with Microsoft Office's OOXML format documents. Mac users now have a few more options for [working with OOXML formats][1] in Microsoft Office 2004 for Mac and Microsoft Office v. X for Mac. + +The new version of the converter can convert the following Office Open XML file formats: + +>* Word Document (*.docx) +* Word Macro-Enabled Document (*.docm) +* PowerPoint Presentation (*.pptx) +* PowerPoint Show (*.ppsx) +* PowerPoint Template (*.potx) + +The converter is still in beta and may not work perfectly, but until the next version of Office for Mac arrives, this is your best solution (unless you want to use OpenOffice's converters). + +The update announcement cautions users to "review the file carefully to make sure that it contains all of the information that you expect," after conversion. + +Microsoft's MacBU has also released a new [beta version of Microsoft Remote Desktop Connection Client for Mac][2], which allows you to interact with Windows machines over a network connection. + +Version 2.0 of Remote Desktop Connection Client is a Universal Binary and features a number of improvements including better support for Windows Vista, support for multiple sessions, an improved user interface and more. + +At the moment Remote Desktop Connection Client for Mac 2.0 is only available in English, and supports only US English keyboards. + +[1]: http://www.microsoft.com/mac/downloads.aspx?pid=download&location=/mac/download/Office2004/ConverterBeta_0_2.xml&secid=4&ssid=36&flgnosysreq=True +[2]: http://www.microsoft.com/mac/downloads.aspx?pid=download&location=/mac/download/MISC/RDC2.0_Public_Beta_download.xml&secid=80&ssid=11&flgnosysreq=True
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/micro.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/micro.jpg Binary files differnew file mode 100644 index 0000000..6fccd3f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/micro.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/osxupdate.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/osxupdate.txt new file mode 100644 index 0000000..f774adc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/07.30.07/Wed/osxupdate.txt @@ -0,0 +1,16 @@ +The iPhone wasn't the only Apple updated yesterday, the company also [released a security update for OS X][1] which addresses no less than a dozen issues and there's a new version of the Safari 3 beta which fixes the same issues [mentioned in the earlier iPhone update][2]. + +Security Update 2007-007 fixes a number of known vulnerabilities in a variety of OS X components including Core Audio, WebKit, WebCore, bzip2, CFNetwork, Core Audio, cscope, gnuzip, Kerberos, mDNSResponder, PDFKit, PHP, Quartz Composer and samba. + +While a few of those are actual Apple software, the majority are open source tools used by OS X, which is something Apple has not been good about updating. For instance some the PHP issues addressed have been public since March and the Samba flaw has been known since May. + +The WebCore WebKit and updated Safari 3 beta all fix the same [vulnerabilities that affected the iPhone][2]. + +Perhaps the most serious of these patches is the fix for mDNSResponder, which, if left unpatched, can lead to attackers executing arbitrary code via a buffer overflow vulnerability. + +Security Update 2007-007 is available via Software Update or [from the Apple site][4]. The [Safari 3 beta update][3] is also available through Software Update or it can be downloaded [here][4]. + +[1]: http://docs.info.apple.com/article.html?artnum=306172 +[2]: http://blog.wired.com/monkeybites/2007/08/apple-pushes-ou.html +[3]: http://docs.info.apple.com/article.html?artnum=306174 +[4]: http://www.apple.com/support/downloads/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/bootcamp.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/bootcamp.txt new file mode 100644 index 0000000..b2952d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/bootcamp.txt @@ -0,0 +1,17 @@ +Apple has just released a new version of Boot Camp, the company's software for running Windows on your Mac. Boot Camp 1.4 features improved drivers for graphic cards and more. + +Boot Camp is still an unsupported beta, but the Apple says the software will be included in the upcoming release of OS X 10.5 Leopard. + +The new Boot Camp 1.4 includes: + +>* Support for keyboard backlighting (MacBook Pro only) +* Apple Remote pairing +* Updated graphics drivers +* Improved Boot Camp driver installer +* Improved international keyboard support +* Localization fixes +* Updated Windows Help for Boot Camp + +You don't need to repartition to upgrade though you will need to walk through the Boot Camp installer to burn the new drivers CD. + +[1]: http://www.apple.com/macosx/bootcamp/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/drm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/drm.jpg Binary files differnew file mode 100644 index 0000000..508a093 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/drm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/drm.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/drm.txt new file mode 100644 index 0000000..b3d0530 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/drm.txt @@ -0,0 +1,16 @@ +Universal Music Group, the world's largest music label, has announced it will sell a limited selection of its massive catalogue in DRM-free form. Interestingly, Universal is excluding Apple's iTunes Store from the offer. + +The new program will be available through services from Best Buy, Walmart, Amazon and others starting in January. + +So why not sell the new DRM free tracks through iTunes? [According to the LATimes][1], Universal says it excluded Apple so that "iTunes could serve as a 'control group' to make sales comparisons easier." + +The more likely reason is that Universal is simply afraid of giving iTunes any more power than it already has when it comes to online music, DRMed or otherwise. By excluding iTunes and at the same time dropping DRM, Universal is hoping to steal sales away from Apple and bring them back into the Universal fold via partners it can control. + +In essence some sort of power struggle between Jobs and Universal has convinced Universal to do what no amount of consumer complaining and declining sales figures could: drop the DRM. + +Whatever the case, Universal's DRM-free tracks are a win for consumers, the question is are you willing to deal with having to buy them through Walmart or BestBuy? + +[photo [credit][2]] + +[1]: http://www.latimes.com/entertainment/news/business/la-fi-music10aug10,1,3776126.story?coll=la-headlines-business-enter +[2]: http://www.flickr.com/photos/chegs/253988833/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/glogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/glogo.jpg Binary files differnew file mode 100644 index 0000000..fdf5a61 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/glogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/gstore.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/gstore.txt new file mode 100644 index 0000000..54b95ef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/gstore.txt @@ -0,0 +1,23 @@ +With a nod to rhyming poets everywhere, Microsoft has[unveiled Windows Live SkyDrive][2], a new online hard drive storage service. Previously known as Windows Live Folders the service was first [announced earlier this summer as a private beta][1]. + +Today's announcement doesn't remove the beta label, but the service is now open to the public. And the new SkyDrive isn't just about the name change, there's also a revamped UI and some new features as well. Among the changes are support for drag-and-drop file uploads to ease batch transfers, the addition of a "Also on SkyDrive" which shows the folders of other Skydrive users that you've browsed and a new embed option for sharing files on your blog or website -- similar in function to Zoho's new Viewer, which we [reviewed yesterday][4]. + +But SkyDrive isn't really a Zoho Viewer competitor, rather it competes with the likes of Omnidrive, box.net, Google's [new paid options][3] and others in what is already a crowded market. + +As with similar services your account offers public and private folders for storing and sharing and you can also set read/write permissions for folders so other users can upload docs to your account. + +Microsoft describes the service as "a personal hard drive on the internet," but at 500 MB, hard drive isn't exactly the image that comes to mind. Which is too bad because otherwise the service is quite nice, easy-to-use and integrated with your Windows Live account. + +There's also the chance that, at some point, Microsoft will offer an option for Windows users to automatically backup key documents ala the .Mac services from Apple. + +However, until Microsoft adds some more compelling features to the mix, the current storage space limitations make SkyDrive a bit of a cripple in the field -- you're probably better off with other similar, more generous services. + +For more info on how SkyDrive works here's a demo video from Brandon LeBlanc at the Windows Vista Blog: + +<embed src="http://images.soapbox.msn.com/flash/soapbox1_1.swf" quality="high" width="432" height="364" wmode="transparent" name="msn_soapbox" type="application/x-shockwave-flash" pluginspage="http://macromedia.com/go/getflashplayer" flashvars="c=v&v=1e598918-03f0-4a3b-a2d4-a2adb33694f5"></embed> + +[1]: http://blog.wired.com/monkeybites/2007/06/microsoft-ramps.html +[2]: http://skydriveteam.spaces.live.com/blog/cns!977F793E846B3C96!124.entry +[3]: http://blog.wired.com/monkeybites/ +[4]: http://blog.wired.com/monkeybites/2007/08/zoho-viewer-spa.html + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/imov.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/imov.jpg Binary files differnew file mode 100644 index 0000000..6a47f66 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/imov.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/imovie.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/imovie.txt new file mode 100644 index 0000000..9599f2a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/imovie.txt @@ -0,0 +1,16 @@ +Apple's recently announced iMovie '08, part of the [new iLife suite][2], features a radical redesign of a very popular program. In fact, it's not so much a re-write as a completely different program. + +Naturally not everyone is going to be pleased with the new iMovie, which Apple seems to have anticipated. To avoid creating panic among users, the company has made the previous version of iMovie, iMovie 6 HD, [available as a free download][1]. + +In addition, when you install iLife '08, rather than overwriting your existing copy of iMovie, it will be moved to a folder named "iMovie (previous version)." + +Of course there will likely be little or no future for the old version of iMovie, but at least you can upgrade to '08 without fear of losing your existing app (note that this is not true for iDVD or iPhoto which will be overwritten by the update). + +As for what changed in iMovie, the main thing that may bother existing users is the absence of the traditional timeline for arranging clips. There are also major changes to how music and other auxiliary files and clips are edited. + +On the plus side iMovie '08 does have some nice new features including the ability to mix and match video formats and resolutions and support for the AVCHD format used by those hot new hard disk camcorders. + +And I should note that the iMovie 6 download is free to anyone, so even if you never upgraded from earlier version you can now grab it and take advantage of the HD support and other improvements over iMovie 5 and earlier. + +[1]: http://www.apple.com/support/downloads/imovieHD6.html +[2]: http://blog.wired.com/monkeybites/2007/08/apple-debuts-il.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/ituneswidget.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/ituneswidget.jpg Binary files differnew file mode 100644 index 0000000..f04d1f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/ituneswidget.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/ituneswidgets.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/ituneswidgets.txt new file mode 100644 index 0000000..9c86f75 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/ituneswidgets.txt @@ -0,0 +1,15 @@ +Apple has launched three new [embeddable widgets][1] to display your iTunes purchases, reviews and favorites on your blog or social network profile. The widgets don't play the actual music, but they do list the artists and, of course, offer links back to iTunes so others can purchase them as well. + +In addition to music the widgets also list videos, TV shows and movies you've purchased from iTunes. The reviews widget displays your recent 4 or 5-star rated tracks and the favorites widget displays the artists/movies/etc that you've purchased most. + +The widgets are Flash-based and can be embedded in any page where you can paste the generated code. + +There are a number of color options for displaying the widgets though all are limited to the black and blue color spectrum. You can also choose different sizes to fit the layout of your page. + +In order to use the new widgets you'll need to login to the iTunes store and enable "My iTunes," which creates an RSS feed for the widgets to pull data from (naturally you can also subscribe to the address in your favorite reader). + +There are already several other widgets out there leverage iTunes itself to offer similar, and in most cases considerably more advanced, functionality -- both [iLike][2] and [MOG][3] come to mind -- but this is the first time Apple has offered anything of the sort, which is surprising given the free advertising that widgets like this offer. + +[1]: http://www.apple.com/itunes/myitunes/ +[2]: http://blog.wired.com/monkeybites/2006/10/post.html +[3]: http://blog.wired.com/monkeybites/2007/03/mog_relaunches_.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/skydrive.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/skydrive.txt new file mode 100644 index 0000000..0228342 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/skydrive.txt @@ -0,0 +1,19 @@ +Just hours after Microsoft pushed its new [SkyDrive online storage option][2] out the door, Google announced its own [new storage options][1]. There have long been rumors that Google would eventually offer some sort of "GDrive" for online backups of data, and while this may not be what many people had in mind, it's certainly a step in that direction. + +The big catch for many people will be that the new storage options aren't free. In fact they aren't exactly a bargain either. here's a price breakdown: + +>* 6 GB: $20 per year +* 25 GB: $75 per year +* 100 GB: $250 per year +* 250 GB: $500.00 per year + +The average price hovers around $2-$3 per gig per year, which is about $1 more per gigabyte than purchasing an external drive and over a $1 more per gigabyte than Amazon's S3 service. Amazon's S3 service offers storage at about $0.35 per per gigabyte a month (technically it's $0.15 a month for storage with a $0.20 per GB for data transfer, and that additional data transfer fee can add up if you make your documents public). + +But Google's new storage options are really aimed at a different market -- namely users with overflowing Picasa or GMail accounts. Picasa already offered additional storage through fee-based premium accounts, but those will be replaced with this new integrated options + +Google's announcement also promises that the expanded storage options will be available for other services -- like Docs and Spreadsheets -- "soon." + +Google's new storage options may not be the fabled GDrive you've been waiting for, but if you're a GMail or Picasa user with an overflowing account at least you've now got some options (if you already have a Picasa premium account, it will be transferred to this new service). + +[1]: http://googleblog.blogspot.com/2007/08/simple-way-to-get-more-storage.html +[2]: http://blog.wired.com/monkeybites/2007/08/microsoft-skydr.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/skydrivebeta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/skydrivebeta.jpg Binary files differnew file mode 100644 index 0000000..a3809ac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Fri/skydrivebeta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/amie.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/amie.txt new file mode 100644 index 0000000..09f4c28 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/amie.txt @@ -0,0 +1,15 @@ +[AmieStreet][1], the popular music store, has launched a small redesign and picked up some new partners and music labels, including Amazon.com. The redesign adds a new section for registered members, giving them a personalized home page which tracks recommended songs from friends, new releases from bands, and even attempts to recommend songs you may like based on previous purchases. + +Amie Street's novel approach to price also seem to have interested Amazon enough that the company has dropped an undisclosed amount of funding in the Amie Street coffers. Amie Street's DRM-free MP3 downloads feature a pricing structure unique to the site -- all songs start out free and then as demand grows the price increases to a maximum of 98 cents. + +The site also rewards savvy users for recommending their favorite songs to their friends. As a song becomes more popular (after a member has recommended it), Amie Street offers members credits toward the purchase of additional songs. + +Amazon previously [unveiled its own DRM-free download store][2], but Amie Street's price structure, and perhaps its new recommendation engine, appear to be too good for Amazon to ignore. + +In addition to money from Amazon, Amie Street has some new record label partners. RoyaltyShare, Daptone Records, United For Opportunity and a few others are now offering downloads on the site, which has increased Amie Street's catalogue ten-fold. + +[via [CNNMoney][3]] + +[1]: http://blog.wired.com/monkeybites/2007/05/rockin_in_the_f.html +[2]: http://amiestreet.com/ +[3]: http://money.cnn.com/news/newsfeeds/articles/prnewswire/NYM01106082007-1.htm
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/facebookredux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/facebookredux.txt new file mode 100644 index 0000000..894cd55 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/facebookredux.txt @@ -0,0 +1,43 @@ +This morning's article on Facebook versus an open network has generated a fair bit of [discussion][3] [around the web][4] with some [good ideas][5] and [suggestions][6]. To follow up I thought I'd pull in a few comments and point out a couple misconceptions. + +First off, in suggesting that Facebook ought to open up its data to the world I did not mean to imply an either/or distinction. A number of commenters on Wired, [Slashdot][2] and elsewhere seem to think that we're arguing that all your data should be public. + +That's not the case. + +Rather, we think there needs to be an open way of managing friends on the web at large so that you can replicate the privacy controls of Facebook, on any public page. + +Given that Facebook only has three privacy settings, that doesn't seem like it would be hard to accomplish. The best ideas I've seen would involve some combination of OpenID, FOAF and perhaps microformats. + +One of the more thoughtful responses I've seen comes from Dare Obasanjo, a Program Manager at Microsoft, who [points out that "open" means different things to different people][1]. He then lists four things that those of us looking for an open social network typically complain about: + + +>* Content Hosted on the Site Not Viewable By the General Public and not Indexed by Search Engines: +* Inability to Export My Content from the Social Network: +* Full APIs for Extracting and Creating Content on the Social Network +* Being able to Interact with People from Different Social Networks from Your Preferred Social Network + +Building on Dare's ideas, here is what, to my thinking, ought to be goals of a true open social network protocol: + +>* Content access controls. The ability to make some content visible to everyone and at the same time reserve other parts of content only for those visitors I've designated as "friends." To some degree you could do this with OpenID, but OpenID still hasn't reached critical mass. +* Cross interaction for existing Social Networks. Got friends defined on MySpace, Facebook, Flickr and a ton of other sites? Any good solution to this problem will not require you to redefine your relationship, it will incorporate you existing data while providing a way to define new friends without resort to a social network. + + +The ability to export data or use an API are moot points because there would be no centralized site from which you need to grab your data. + +Also, there were a couple of things deemed too nerdy for the general Wired audience which I think might interest Compiler readers. First off, the how-to part glosses over the logistics of attempting to build a Facebook-like page on your own. + +Frameworks like Django and Ruby on Rails are both quite good for this sort of thing. I'll readily admit my ignorance to specifics of Rails, but I know a number of people are starting the release Django apps that are geared toward aggregating data from various social sites. + +One standout example of this is Jeff Croft's site, particularly his ["lifestream"][7] section (the name may be a little cheesy, but the functionality of it is impressive). Jeff pulls in data from Flickr, Ma.gnolia, Upcoming and some other services and integrates them into his site -- and if you read some of his blog entries you'll learn that he's got all the data in his own database. + +The missing link is of course a way for the site to recognize "friends" and show specific content to specific people. + +Perhaps some folks more familiar with Rails could chime in the comments with some suggestions for the DIYers. + +[1]: http://www.25hoursaday.com/weblog/2007/08/06/SomeThoughtsOnOpenSocialNetworks.aspx +[2]: http://slashdot.org/articles/07/08/06/1427214.shtml +[3]: http://www.allfacebook.com/2007/08/give-it-time-facebook-will-open/ +[4]: http://www.allpeers.com/blog/2007/08/06/not-so-opened-social-networks/ +[5]: http://mashable.com/2007/08/06/mashable-supports-the-open-friends-format-off/ +[6]: http://www.centernetworks.com/open-your-social-network-or-face-wireds-wrath +[7]: http://www2.jeffcroft.com/stream/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/gapi.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/gapi.txt new file mode 100644 index 0000000..5d1fa7d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/gapi.txt @@ -0,0 +1,13 @@ +Google has added another API to its ever-growing stable of developer tools. The ["Google Documents List Data API"][1] can be used to upload new documents or to grab a list of existing documents from your Google Documents List. + +The Documents List Data API builds on the GData framework, but offers some more hooks into the Google Docs and Spreadsheets application. Other improvements include full-text search capabilities for grabbing particular documents. + +There's also a separate [Spreadsheets API][2] which offers some impressively fine grained options -- right down to individual spreadsheet cells. + +Google offers some code samples for the new API in both Java and Python. The notable absence of PHP -- probably the most popular web-programming language -- seems to indicate that Google seems this as more of a desktop client tool, though at this point the API is too simplistic to build anything really cool like a Microsoft Word or OpenOffice plug-in. + +[via [Google Blogoscoped][3]] + +[1]: http://code.google.com/apis/docsapis/overview.html +[2]: http://code.google.com/apis/spreadsheets/overview.html +[3]: http://blogoscoped.com/archive/2007-08-06-n59.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/googlelinux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/googlelinux.txt new file mode 100644 index 0000000..bb9016f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/googlelinux.txt @@ -0,0 +1,16 @@ +Google has thrown its weight behind Linux, [joining][1] IBM, Oracle and others in the Open Invention Network (OIN), a group that pools Linux patents as a way of deterring potential patent infringement challenges. + +The OIN was formed two years ago to allow member to share patents with each other and form a unified front should anyone -- namely Microsoft, masters of Linux FUD -- decide to challenge Linux on the patent front. + +Despite Microsoft's frequent blustering about Linux patents, neither it nor any other patent holder has ever sued Linux developers or a Linux distributor. + +Google is the seventh company to join OIN and brings with it an undisclosed amount of patents to add to OIN's current stockpile of over 100 Linux related patents. + +Chris DiBona, Google's open source programs manager says of the recent announcement, "Linux plays a vital role at Google, and we're strongly committed to supporting the Linux developer community." + +The move is also no doubt meant as a message to Microsoft -- don't mess with Linux. + +[via [Digg][2]] + +[1]: http://www.openinventionnetwork.com/press_release08_06_07.php +[2]: http://digg.com/linux_unix/Google_signs_up_to_become_defender_of_Linux
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/lenovo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/lenovo.txt new file mode 100644 index 0000000..7204c7e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/lenovo.txt @@ -0,0 +1,10 @@ +Lenovo, the third largest maker of PCs, announced this morning at the ongoing LinuxWorld conference in San Francisco, that it will start selling laptops preloaded with Linux instead of Windows. + +The new Lenovo laptops will use Novell's Linux distribution and they won't it the market until later this year, but they will be available direct to consumers in addition to business customers. Lenovo hasn't announced any pricing details for the new machines. + +With Dell already [selling PCs with Ubuntu pre-installed][2], two of the top three computer makers in the world are now offering Linux as a pre-built option. + +And the Linux option appears to be spreading, Ubuntu founder Mark Shuttleworth said last month that he is negotiating with "[other large PC makers][1]" interested in offering machines with Ubuntu. + +[1]: http://blog.wired.com/monkeybites/2007/07/more-big-name-p.html +[2]: http://blog.wired.com/monkeybites/2007/05/ubuntu_fiesty_f.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/medium.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/medium.jpg Binary files differnew file mode 100644 index 0000000..0451df6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/medium.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/medium.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/medium.txt new file mode 100644 index 0000000..58ac214 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/medium.txt @@ -0,0 +1,16 @@ +[Me.dium][1], the social browsing service, has launched a [new add-on][3] with full IE7 compatibility. Previously the service was only available through Firefox and its offspring (Flock, Netscape etc). + +As with any social networking tool, Me.dium's usefulness comes down to whether or not your friends are using it, and with the new IE7 add-on that number may suddenly jump a bit. + +To go along with the new IE7 add-on Me.dium has also released a widget that applies Me.dium's "real time" tracking window to blogs and pages. + +The new widget adds support for non-Me.dium users and interested site owners can now watch traffic patters and see how Me.dium users are discovering, moving through and interacting with their sites in real time. + +Though Me.dium may raise some privacy concerns with users (the site essentially tracks and logs all of your browsing history), the new tools may give some fence-sitters a reason to cast caution to the wind. + + +[via [Digg][2]] + +[1]: http://www.me.dium.com/ +[2]: http://digg.com/software/Me_dium_Adds_IE_7_and_A_Twist +[3]: http://www.me.dium.com/medium_registration/download
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/networks.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/networks.jpg Binary files differnew file mode 100644 index 0000000..db63cc9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/networks.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/penguin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/penguin.jpg Binary files differnew file mode 100644 index 0000000..9feda82 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/penguin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/photosynth.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/photosynth.jpg Binary files differnew file mode 100644 index 0000000..49c4cfc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/photosynth.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/photosynth.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/photosynth.txt new file mode 100644 index 0000000..729706a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/photosynth.txt @@ -0,0 +1,16 @@ +Microsoft has announced a new collaboration with NASA designed to five users a 3D photographic tour of the space shuttle Endeavour before its launch this week. The new exhibit which uses Microsoft's [Photosynth technology][1] to create a three-dimensional environment with "views of shuttle Endeavour on the launch pad, interior and surrounding area of the Vehicle Assembly Building, and the return of previous flight Shuttle Atlantis atop a 747." + +You'll need to download the [Photosynth viewer][4] to see the images (sorry Mac users, for now Photosynth is only available for Windows XP and Vista -- running either IE6 or IE7). If you don't meet the minimum requirements or if you'd just like to see an overview, there's a nice [video preview available][3] on the Microsoft Labs site. + +Blaise Aguera y Arcas also gave a talk at the TED festival a while back that shows off some of the remarkable capabilities of Photosynth and SeaDragon, which you can see [here][2]. + +NASA says it hopes this joint project will lead to more collaborative initiatives with Microsoft. And Microsoft is no doubt hoping the same, especially since most recent NASA collaborations have been with rival Google, which gets some of its Google Earth data from NASA. + +Also worth noting is that, near the end of the promotional video linked above, Blaise Aguera y Arcas says that Photosynth with soon offer features which allow users to stitch their own photos together. + +Given that Photosynth relies on image data from a normal SLR camera, it might soon be possible for even you and I to stitch together some impressive 3-D tours, provided you take enough images. + +[1]: http://blog.wired.com/monkeybites/2006/11/microsoft_sets_.html +[2]: http://labs.live.com/photosynth/blogs/Photosynth+At+TED+Conference.aspx +[3]: http://media.labs.live.com/photosynth/NASA/videonasa.html +[4]: http://media.labs.live.com/photosynth/nasa/default.htm
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/rockyourfox.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/rockyourfox.txt new file mode 100644 index 0000000..e228966 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/rockyourfox.txt @@ -0,0 +1,15 @@ +Mozilla has launched a new Facebook application designed to promote the Firefox browser. ["Rock Your Firefox"][2] lets you share your favorite Firefox add-ons and see which add-ons your friends are using, all from within the pristine walls of the Facebook network. + +The content more or less mirrors that of the normal Firefox add-ons directory -- you can browse and search add-ons -- but adds the social aspect which means you can discover new add-ons through your Facebook friends (provided they have the app installed). + +Unfortunately, Rock Your Fox doesn't pull in user reviews or have any way for Facebook members to comment on the apps. Perhaps at some point Mozilla can work out a way to feed in the reviews and comment threads from official add-ons site. + +There's nothing particularly ground breaking about Rock Your Firefox (other than its cheesy name, doubtless meant to appeal to Facebook's younger audience), but it should serve as a nice promotional tool for Firefox. + +Mozilla has stepped up its Firefox evangelism in the past year or so with a number of [branded browsers][1] and outreach programs like the new Facebook app. + +[via [Mashable][3]] + +[1]: http://blog.wired.com/monkeybites/2007/07/firefox-partner.html +[2]: http://www.facebook.com/apps/application.php?id=2255900050 +[3]: http://mashable.com/2007/08/06/firefox-facebook/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/tendays.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/tendays.txt new file mode 100644 index 0000000..6653d9d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/tendays.txt @@ -0,0 +1,17 @@ +Security is a cat and mouse game and which side is cat and which mouse is almost always murky. Many times security researchers, dismayed at a vendor's lack of response to exploits, release details into the wild in an effort to force the vendors to issue a patch. + +Mozilla's Mike Shaver, Director of Ecosystem Development at Mozilla, recently boasted at a Black Hat conference after-party that the Firefox developers could push out a patch for any exploit in "ten fucking days." + +Shaver went so far as to write the bold claim on his business card and give it Robert Hansen of ha.ckers.org. Naturally Hansen [posted a scan of the card on ha.ckers.org][1] which prompted Mozilla to [publish the following retraction][2]: + +>This is the official Mozilla word: This is not our policy. We do not think security is a game, nor do we issue challenges or ultimatums. We are proud of our track record of quickly releasing critical security patches, often in days. We work hard to ship fixes as fast as possible because it keeps people safe. We hope these comments do not overshadow the tremendous efforts of the Mozilla community to keep the Internet secure. + +Obviously, given the context -- late night, party etc -- Shaver did not act in the most appropriate manner, but even Hansen notes in his post that he did not take the statement to be an official policy of Mozilla. + +Of course, that didn't stop the media from treating it as such. The note took on a life of its own and many news outlets tried to spin it as some sort of challenge to the hacking community. + +So, while Mozilla's [recent slew of fixes for Firefox][3], do in fact almost meet this ten day deadline, don't expect that to always be the case. + +[1]: http://ha.ckers.org/blog/20070803/mozilla-says-ten-fucking-days/ +[2]: http://blog.mozilla.com/security/2007/08/06/mike-shaver-ten-days-and-expletives/ +[3]: http://blog.wired.com/monkeybites/2007/07/firefox-update-.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/trans.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/trans.txt new file mode 100644 index 0000000..6e4d273 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/trans.txt @@ -0,0 +1,33 @@ +<img alt="Transicon" title="Transicon" src="http://blog.wired.com/photos/uncategorized/2007/04/19/transicon.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />The folks behind Transmission, an open source torrent client, have just released a new version. The [new version is available][1] for nearly all the platforms Transmission supports -- namely Mac OS X, Linux and FreeBSD. Transmission may well be the only torrent client in existence for the now abandoned BeOS, but the version is not part of the update. + +The new version of Transmission features some much requested features including the ability to selectively download and prioritize files within torrents and new torrent creation tools. Missing from this upgrade are encryption tools, but the rumors in the [Transmission forums][2] are that encryption will arrive with the next revision. + + +Other general fixes/improvements in this version include: + +>* Speed and CPU load improvements +* Fix to UPnP +* Rechecking torrents is now done one-at-a-time to avoid heavy disk load +* Better rechecking of torrents that have many files +* Many miscellaneous improvements and bugfixes +* Partial licensing change + +In addition to those there are also some changes specific to the Mac client: + +>* Overlay when dragging torrent files, URLs, and data files onto window +* Ability to set an amount of time to consider a transfer stalled +* More progress bar colors +* Various smaller interface improvements +* Italian, Korean, and Russian translations + +One word of caution for those looking to upgrade: **complete your existing downloads before upgrading or you will lose data**. + +Actually, I tested that all-caps warning for you and nothing of the sort happened to me. All my existing torrents reloaded just as they were, but considering the all-caps, bold warning on the download page, you might be better off heeding it. + +Transmission remains my favorite Mac torrent client and the new features are great -- particularly the selective download files which allows you to grab a torrent like the SXSW music sampler and only download the few songs your actually want. + +You can grab the update [straight from the Transmission site][3] or existing users will be prompted to upgrade from within the application. + +[1]: http://transmission.m0k.org/index.php +[2]: http://transmission.m0k.org/forum/ +[3]: http://transmission.m0k.org/download.php
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/wwwb-day.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/wwwb-day.txt new file mode 100644 index 0000000..41a9ae1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Mon/wwwb-day.txt @@ -0,0 +1,11 @@ +The World Wide Web can now drive. Sixteen years ago yesterday, in a [short post to the alt.hypertext newsgroup][2], Tim Berners-Lee revealed the first public web pages summarizing his World Wide Web project. + +The first pages represented eleven years of work, beginning with the time Berners-Lee spent at CERN, an international particle physics lab located near Geneva, Switzerland, where he developed, along with Robert Cailliau, the Enquire project, the forerunner to what would become the web. + +The strange thing is that, while the web has become much more powerful and probably far more successful than Berners-Lee could ever have imagined, the underlying technology remains largely as it was when it first launched. + +For more background see, [Tony Long's column][1] in Wired's Discoveries section. + + +[1]: http://www.wired.com/science/discoveries/news/2007/08/dayintech_0807 +[2]: http://groups.google.com/group/alt.hypertext/msg/395f282a67a1916c
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/blueprint.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/blueprint.txt new file mode 100644 index 0000000..8411f97 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/blueprint.txt @@ -0,0 +1,19 @@ +Web designers, it's the moment you've been waiting for -- a CSS grid framework. If you've been wanting to use grids with your CSS-based designs, but don't want to spend the time (and do all the math) that well-done grids require, you need to checkout [Blueprintcss][1]. + +Blueprintcss is a CSS "framework," which features an easy-to-use grid, sensible typography, and even a stylesheet for printing. + +There may well be other thing out there advertising themselves as CSS frameworks, but I haven't seen any that amounted to much more than a template system. Blueprintcss is not a template system, it's a class structure you can apply to nearly any design -- think of it as the skeleton around which you can arrange your own designs. + +For more on the background of Blueprint, check out [this interview][3] with creator Olav Frihagen Bjørkøy. + +There's a few limitation, the first being that your overall container element needs to be 960px wide -- in other words liquid layouts are not possible, though that is a planned enhancement. + +The other drawback is that at the moment Blueprintcss is bit under-tested (some elements didn't seem to render right in IE6 when I played around with it) and probably not suited for production site without some tweaking. But the code is freely available and if nothing else it jump starts your projects considerably. + +In addition to the grid helpers, Blueprintcss features a typographic baseline and some very nice font choices -- though of course you can always customize everything to your liking. + +[via [Daring Fireball][2]] + +[1]: http://code.google.com/p/blueprintcss/ +[2]: http://daringfireball.net/linked/2007/august.php#sun-05-blueprint +[3]: http://www.subtraction.com/archives/2007/0807_the_framewor.php
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/flickr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/flickr.jpg Binary files differnew file mode 100644 index 0000000..ab24a73 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/flickr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/flickr.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/flickr.txt new file mode 100644 index 0000000..23174fb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/flickr.txt @@ -0,0 +1,18 @@ +Flickr has [re-designed][3] its web uploading tools, jettisoning the old, somewhat clunky interface for a slick new upload form that makes it much easier to do bulk uploads. + +There are of course literally hundreds of uploading tool out there from third parties, but sometimes -- like at an internet cafe while on vacation -- uploading through the web interface is the only viable option. And thanks to the [new uploader][1] the process is no longer the clumsy pain-in-the-arse it used to be. + +The old uploader limited you to six photos at a time and you needed to select the one at a time in six form boxes. The new uploader dispenses with that nonsense and allows you to shift-select a batch of photos all from one dialogue box. That said, there do appear to be limits. To test it I threw 383 images at it and it choked. + +Even within more reasonable limits there may be a serious lag time between selecting images in the dialogue box and when they show up in the web form. After playing with it for a while I found that, if you want to upload a lot of files, it's better to select them in batches and then use the "Add More" link. And of course the actual upload time could get rather lengthy if you try to do too much at once. + +Once your images are uploaded, you'll get the option to add descriptions, titles, tags and more including batch apply tags, as well as adding them to an existing set or a new set. + +Naturally you can always hop over to Flickr's batch operations tool, which remains unchanged. If for some reason you aren't a fan of the slick new uploader, the old one is [still available][2]. + +All in all a very nice update and it should make uploading those summer vacation photos even easier. + + +[1]: http://flickr.com/photos/upload +[2]: http://flickr.com/photos/upload/basic/ +[3]: http://blog.flickr.com/en/2007/08/08/improved-web-uploading/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/fupload1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/fupload1.jpg Binary files differnew file mode 100644 index 0000000..ed5ab30 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/fupload1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/fupload2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/fupload2.jpg Binary files differnew file mode 100644 index 0000000..5a1fccf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/fupload2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/gnews.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/gnews.jpg Binary files differnew file mode 100644 index 0000000..45de393 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/gnews.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/googlenews.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/googlenews.txt new file mode 100644 index 0000000..2ea6780 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/googlenews.txt @@ -0,0 +1,28 @@ +In what might be the strangest move yet for Google, the company announced yesterday that it will now allow comments on Google News. But the there's a very odd catch: comments will only be accepted from participants in the story and comments must be submitted via e-mail. + +The whole thing reminds me a little of the old joke pictured above -- [Google circa 1960][4]. The lag time and restrictions on the Google News comments seem to fit with the thinking of that same era. + +As for who can participate, Google News business product manager Josh Cohen [tells Search Engine Land][2]: + +>If the subject or someone related to the organization is mentioned, they can give their comment. If you're mentioned in a story or quoted in it, you're a participant. Even if you’re a reporter writing the story itself, you’re a participant. + +So let me get this straight. If I write a [story on Facebook][2] for Wired News and Mark Zuckerberg were to take the time to e-mail Google and Google were to somehow confirm that the comments were in fact from Zuckerberg and get them posted in something approaching a timely manner, then I could also e-mail Google and wait for them to confirm that I was in fact who I am and then publish my comment and then Zuckerberg could read my comment and e-mail Google who then confirm that he was in fact Zuckerberg.... + +It seems slightly more efficient to just snail mail Zuckerberg a tin can with 4000 miles of yarn attached and transcribe the results. + +Epicenter thinks this is Google's [phase one for a Digg takeover][1]. In this scenario Google wins because the comments have more value than those on Digg because of the verification aspect. + +It's possible I suppose, but I don't think the vast majority of readers care whether the comments on a story are from those involved or not. Nor do I think most would even bother to check who wrote a comment -- the value of a comment is in what's said, not who said it. + +In fact ,it seems like the inherent bias of those involved in a story would make their comments *less* valuable. In the example above for instance, the article takes Facebook to task for its closed nature, would it be valuable to the discussion to learn that Facebook disagrees with that statement (assuming they do) or isn't that just a tad bit obvious? + +The one obvious exception is of course celebrity stories. I'm sure if Britney Spears were to respond to some of the stories about her, it would up the readership of those articles, but for stories of a larger scope it just doesn't seem valuable, let alone practical. + +What, for instance, is Google News going to do when the next big natural disaster strikes and victims want to comment on the news coverage? How would Google verify identity in the midst of situation like Katrina or the Indian Ocean tsunami? + +I'm willing to admit I'm a bit of Luddite. I still prefer my news printed on paper, no matter how out of date it may be, so perhaps I'm wrong about Google's decision. I'm sure readers will set me straight in the comments below -- no verification needed (well, save the CAPTCHA thing to prove you're human). + +[1]: http://blog.wired.com/business/2007/08/diggle-rising-g.html +[2]: http://searchengineland.com/070808-191446.php +[3]: http://www.wired.com/software/webservices/news/2007/08/open_social_net?currentPage=all +[4]: http://fury.com/google-circa-1960.php
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/grid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/grid.jpg Binary files differnew file mode 100644 index 0000000..ebf4c3d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/grid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/iphonecutnpaste.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/iphonecutnpaste.txt new file mode 100644 index 0000000..5947487 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/iphonecutnpaste.txt @@ -0,0 +1,14 @@ +<object type="application/x-shockwave-flash" width="480" height="271" data="http://vimeo.com/moogaloop.swf?clip_id=266383&server=vimeo.com&fullscreen=1&show_title=1&show_byline=1&show_portrait=1&color=00ADEF"> <param name="quality" value="best" /> <param name="allowfullscreen" value="true" /> <param name="scale" value="showAll" /> <param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=266383&server=vimeo.com&fullscreen=1&show_title=1&show_byline=1&show_portrait=1&color=00ADEF" /></object> + +High on the iPhone's list of missing features is some sort of copy-n-paste functionality. While Apple hasn't said anything about adding such features, that didn't stop a user by the name of lonelysandwich from creating the fake "proof-of-concept" video embedded above. + +Lonelysandwich's video makes hilarious use of the iPhone promo spots, but the method itself seems a little awkward. To my thinking, Apple would be better off using a finger drag for selecting, though I can see where it would be difficult to determine if the drag was intended to select or just move the loupe. + +But the clipboard "okay" screen and the pasting method in the video make perfect sense and fit well with the rest of the iPhone's interface. + +Be sure to let us know if you have a better idea. + +[via [Kottke][1]] + +[1]: http://www.kottke.org/remainder/07/08/13996.html + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/movielink.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/movielink.jpg Binary files differnew file mode 100644 index 0000000..34dcf60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/movielink.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/movielink.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/movielink.txt new file mode 100644 index 0000000..65b3a72 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/movielink.txt @@ -0,0 +1,18 @@ +Blockbuster, in what could a last gasp for the once king of movie rentals, has acquired Movielink, the video on demand service started by some of the top movie studios. The terms of the deal were not disclosed, which tends to mean they were not all that spectacular and given Movielink's dismal performance thus far, that isn't surprising. + +Movielink will continue to exist as a standalone service, but eventually elements of the service will become available through Blockbuster.com. + +Blockbuster's interest in Movielink no doubt stems from the fact that, with 3,000+ titles, it is the web's largest digital movie archive. Yet even with a massive catalogue the service has never really caught on with users. + +Part of Movielink's failure stems from the fact that its downloads cost roughly the same as a a regular DVD, which can be played anywhere whereas Movielink downloads are DRM encumbered and trapped on your PC. + +Yesterday we mentioned that Netflix "Watch Now" video on demand service had been [hacked to allow users to download and save movies][1]. In pointing out that the limitations of the service were driving this sort of hacking, we asked readers to list their favorite streaming rental sites. It's far from scientific or objective, but so far there's 40 comments and only one mention of Movielink. + +That said, perhaps Blockbuster can fix Movielink. In-store promotions could raise consumer awareness and it does position Blockbuster to be the only 3-in-1 service with mail-in, online and in-store movie rental options. + +But that may not help since, in a field already crowded with Netflix, iTunes, Amazon and more, Blockbuster is the only one with high operating costs -- namely rent on all those brick and mortar stores. + +[via [the WSJ][2] (paid wall link)] + +[1]: http://blog.wired.com/monkeybites/2007/08/netflix-hack-en.html +[2]: http://online.wsj.com/article/SB118661923587492440.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/viewer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/viewer.jpg Binary files differnew file mode 100644 index 0000000..9420329 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/viewer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/vieweremail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/vieweremail.jpg Binary files differnew file mode 100644 index 0000000..ae6505a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/vieweremail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/viewerembed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/viewerembed.jpg Binary files differnew file mode 100644 index 0000000..b85e211 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/viewerembed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/zohoviewer.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/zohoviewer.txt new file mode 100644 index 0000000..0ab353d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Thu/zohoviewer.txt @@ -0,0 +1,20 @@ +The latest addition to Zoho's ever-growing suite of online office applications wants to make oversized e-mail attachments a thing of the past. [Zoho Viewer][2], as it's called, is a handy way to upload documents and share them with others via the web. Rather than clogging your friends' email boxes with weighty attachments, you can upload them to Zoho Viewer and just send a link. + +Viewer supports Microsoft Word, Excel and Powerpoint files as well as PDF, RTF, ODF and OpenOffice documents, which means even if your intended recipient doesn't have a particular program installed, they'll still be able to view it through Zoho Viewer. (Here's a [link to one of Zoho's sample docs][1], which is a .pps file) + +Using Viewer is simple, just head to the page and upload your file (or files using the "bulk" option). Once Zoho has your document Zoho it will display it at the new permalink. By default all documents are private. + +Zoho Viewer has options to share your uploads via e-mail from the site, cut-n-paste links for sending via your e-mail client, embed code for blogs, site and even BB posts. Naturally you can also print or download the original file. + +If the file is editable (i.e. not a PDF or the like) there will be an additional link at the top of the page to edit the document using the appropriate tool in the Zoho suite. Unfortunately trying to directly import a document from Viewer into Zoho Writer via the Viewer URL didn't work for me. + +With more people turning to online office suites (like Zoho or GDocs) it makes sense to start thinking of your documents as URLs rather than files. Zoho Viewer is not the first app to emphasize this shift -- Scribd for instance offers some similar options -- but it's very well done and makes sharing files a snap. And now a note to all my friends: Stop Sending Me Weird Proprietary Files. Just send links instead. + +For more info, check out the demo video from Zoho: + + +[1]: http://viewer.zoho.com/docs/abQcg +[2]: http://viewer.zoho.com/ + + +<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="370" id="viddler"><param name="movie" value="http://www.viddler.com/player/71f721e0/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/71f721e0/" width="437" height="370" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler" ></embed></object>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/amie.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/amie.jpg Binary files differnew file mode 100644 index 0000000..750e8a5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/amie.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/docspread.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/docspread.jpg Binary files differnew file mode 100644 index 0000000..78efea1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/docspread.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/netflix.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/netflix.jpg Binary files differnew file mode 100644 index 0000000..37ee158 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/netflix.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/nextcube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/nextcube.jpg Binary files differnew file mode 100644 index 0000000..91afc8e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/nextcube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/rockyourfox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/rockyourfox.jpg Binary files differnew file mode 100644 index 0000000..3b79e34 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/rockyourfox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/shaver.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/shaver.jpg Binary files differnew file mode 100644 index 0000000..2887fda --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Tue/shaver.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/gstreet.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/gstreet.txt new file mode 100644 index 0000000..ca5eb46 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/gstreet.txt @@ -0,0 +1,11 @@ +Google has expanded its Street View imagery with Google Maps to include views of downtown San Diego, Los Angeles, Houston and Orlando. The [new cities][2] bring the Street View service, which [launched earlier this year][3], to a total of nine metropolitan areas -- with many more said to be in the works. + +Of the new additions only San Diego has high-resolution imagery, but the others aren't too bad. + +And as with a original release, armies of bored internet junkies are out looking for people caught in humorous or compromising situations. Be sure to check out the submissions and vote for your favorite in Wired's [gallery over on the Threat Level blog][1]. + +You can submit your own images if you like, but it's going to be hard to top the dark irony of the image above -- a knife sharpening van parked outside OJ Simpson's old house. + +[1]: http://blog.wired.com/27bstroke6/2007/08/request-for-la-.html +[2]: http://google-latlong.blogspot.com/2007/08/more-street-view-cities.html +[3]: http://blog.wired.com/monkeybites/2007/05/google_maps_str_1.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/netflix.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/netflix.jpg Binary files differnew file mode 100644 index 0000000..37ee158 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/netflix.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/netflixhack.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/netflixhack.txt new file mode 100644 index 0000000..094e0a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/netflixhack.txt @@ -0,0 +1,28 @@ +Microsoft has officially released two "hot fix" updates for Windows Vista which address a number of issues in the new operating system. While these don't yet constitute a true service pack release, they are expected to be included in the as-yet-unannounced Vista SP1 expected sometime later this year. + +Though both of today's releases been floating around in unauthorized form for a week now, the [Vista performance fix pack][1] and the [Vista reliability fix pack][2] are not betas and are now official releases. + +Neither update is available through Windows Windows Update just yet, though Microsoft says they will be at a "later date" (our money is on Tuesday, Aug 14, Microsoft's next "Patch Tuesday"). + +If you'd like to grab the updates before that, you can do so using the links above, just be sure to grab the right version (both 32-bit and 64-bit updates are available). + +The Vista reliability and performance updates address quite a few bugs, including: + +>* The computer stops responding or restarts unexpectedly when you play video games or perform desktop operations. +* The screen goes blank after an external display device that is connected to the computer is turned off. For example, this problem may occur when a projector is turned off during a presentation. +* A computer that has NVIDIA G80 series graphic drivers installed stops responding. +* Windows Calendar exits unexpectedly after you create a new appointment, create a new task, and then restart the computer. + +* A memory leak occurs when you use the Windows Energy screen saver. +* When you copy or move a large file, the "estimated time remaining" takes a long time to +* After you resume the computer from hibernation, it takes a long time to display the log-on screen. +* fix for data loss when editing an image file that uses the RAW image format from the Canon EOS 1D and the Canon EOS 1DS + +Microsoft has also quietly released pre-beta version of Windows XP SP3 to testers. I managed to dig up a forum post on AeroXP.org which claims to have [screenshots of the XP update][3], though they may well be fake. So far there have been no details on what XP SP3 will fix, nor any timeline for a final release. + +[via [WindowsNow][4]] + +[1]: http://support.microsoft.com/?kbid=938979 +[2]: http://support.microsoft.com/?kbid=938194 +[3]: http://www.aeroxp.org/board/index.php?showtopic=9749&pid=110368&st=0&#entry110368 +[4]: http://www.windows-now.com/blogs/robert/archive/2007/08/07/windows-vista-pre-sp1-performance-and-reliability-updates-released.aspx
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/netflixhack2.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/netflixhack2.txt new file mode 100644 index 0000000..734fc1b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/netflixhack2.txt @@ -0,0 +1,17 @@ +Earlier this year Netflix threw its hat the video download/streaming ring with the [Netflix "Watch Now" option][1]. The problem is the Watch Now option comes laden with DRM, only works on Windows and confined to a machine using the IE browser. In other words you watch completely on Netflix's terms (or possible the movie studios terms depending on how you look at it). + +Well bad news for Netflix, hackers have [discovered][2] a means of downloading the file, stripping the DRM and otherwise wrecking havoc on Netflix's carefully constructed restrictions. + +The hack is a fair bit of work -- you need to find the video URL, download the file, acquire the license key and then strip the DRM -- but it does free up the movie for playback via just about any video software, something Netflix needs to work out on its own if they ever want the idea to catch on. + +Before you run out and try this probably illegal and decidedly against the Netflix TOS, keep in mind that if you get caught your Netflix account is likely to be deletes and quite possibly worse things will happen to you. Beside which Netflix will probably address the issue pretty soon, rendering this hack useless. + +I mention the hack not to encourage you to try it, but because it highlights some of the serious shortcomings of video rental/streaming via the net, there has to be a better way. I've been enjoying Joost for TV, but I still don't know of a decent movie streaming service. + +The Netflix Watch Now service has potential and it's basically free since I already use the service for snail mail rentals, but limiting playback to Windows/IE is asinine. Let me know your favorite video streaming service in the comments below. + +[via [Hackszine][3]] + +[1]: http://blog.wired.com/monkeybites/2007/01/netflix_debuts_.html +[2]: http://forum.rorta.net/showthread.php?t=1134 +[3]: http://www.hackszine.com/blog/archive/2007/08/rip_netflix_watch_now_movies.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/op2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/op2.jpg Binary files differnew file mode 100644 index 0000000..5096f2d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/op2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/op3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/op3.jpg Binary files differnew file mode 100644 index 0000000..c7c0b60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/op3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/op4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/op4.jpg Binary files differnew file mode 100644 index 0000000..e000ec8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/op4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/openproj.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/openproj.txt new file mode 100644 index 0000000..9f2ae06 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/openproj.txt @@ -0,0 +1,22 @@ +[Projity][1], a software-as-service (SaaS) firm announced a new free, open source version recently at LinuxWorld. OpenProj as the new offering is called is designed to be a free and open source replacement of Microsoft Project. + +Microsoft Project is part of the company's Office Suite, however it's not bundled in Office 2007 and sells for $1,000 as a stand-alone app. + +OpenProj is capable of reading Microsoft Project files and is available in Java which makes it cross-platform, something Microsoft Project is not. + +Project management software is primarily geared at large enterprise companies and until recently, Microsoft Project was largely unchallenged in the field. But already Projity says that talks are also underway with OpenOffice about integrating the new OpenProj into that suite. + +The Projity team was kind enough to send me a demo version to play with and while I won't pretend to understand everything OpenProj is capable of, I can say this -- it's fast. For a program of this bulk, written in Java I was expecting it to be dog slow, but it's not. + +Creating and assigning tasks is intuitive and straightforward and there's a wealth of tracking options and views. Tasks can be filtered, prioritized and managed from just about any view. + +Once you have your tasks set up, you can allocate "resources" to each task and even assign what percentage of the resource is applied to the task. Say you have a four day task with two people working on it. OpenProj assumes an 8-hour workday so that task would take two days to complete. + +But what if one of those people is only working on the task half of the time? OpenProj allows you set each resource at a percentage and then recalculates the duration based on that information. + + +For the initial release, Projity will be offering English, French and Spanish versions of OpenProj but the company says it will have an additional 12+ languages available soon. + + + +[1]: http://www.projity.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/projity.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/projity.jpg Binary files differnew file mode 100644 index 0000000..2b828b2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/projity.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/spock.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/spock.jpg Binary files differnew file mode 100644 index 0000000..7b086ff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/spock.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/spock.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/spock.txt new file mode 100644 index 0000000..cf25cb6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/spock.txt @@ -0,0 +1,19 @@ +[Spock][1], a new people oriented search engine unveiled its public beta today, but the test seems to off to a shaky start. At the moment the site times out for most requests, probably due to the massive amount of press and inbound links the release has generated. + +With a bit of patience you might be able to get the site to load, or bookmark it for later because Spock already has the gushers gushing. + +Like Wink and other people-oriented search sites, Spock isn't so much interested in documents about people, as you would get when searching Google, but the actual people themselves. Spock's spiders attempt to crawl the net and then its algorithms aggregate all the data about you into one spot. + +The result, in those cases where Spock makes a correct match, are simultaneously impressive -- a complete portrait of your total web presence -- and thoroughly creepy. When Spock was first announced earlier this year a number of people snickered that *stalk* would be a better name. + +But the truth is, that's killing messenger. All the data Spock crawls is already out there, but you may be in for a shock the first time you see it all in one place. + +Pulling data from social networks -- MySpace, Facebook, LinkedIn and others -- Spock then condenses and extracts what it considers the most important information about you -- namely your occupation and age, though depending on what you've listed on your various accounts, it may have even more details. + +From the search results profiles you can then click through to vote for whether or not the information is correct, click through the relevant page or add tags to people. Just about anyone can edit information on just about any entry. + +If you sign up for Spock, you can claim and manage your own entry or create one if Spock doesn't yet know about you. + +Aside from the slow servers, Spock looks as though it might be genuinely useful -- if nothing else it might serve as a wake call for those who don't realize how little privacy they have left themselves. + +[1]: http://www.spock.com/ diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/streetviews.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/streetviews.jpg Binary files differnew file mode 100644 index 0000000..5af282e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/streetviews.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/zillafuzzy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/zillafuzzy.txt new file mode 100644 index 0000000..51f2603 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.06.07/Wed/zillafuzzy.txt @@ -0,0 +1,13 @@ +Mozilla recently announced at the Black Hat security conference in Las Vegas that it would [release a series of security tools][3], known as fuzzers, which have previously only been used internally, to the internet at large. + +The move is designed to give outside hackers easier ways to test for security flaws in Firefox and other web browsers. Fuzzers are tools that poke, prod and sometimes outright attack a piece of software to test its robustness and identify potential vulnerabilities. + +Mozilla has thus far released a [Javascript fuzzer][2] and already Claudio Santambrogio of Opera Software [reports][3] that, using the new tool, Opera was able to find four bugs "one of which might have some security implications." + +For those concerned that these tools might be used in the wrong way by some, Mozilla says that it has worked with Microsoft, Apple, and Opera to make sure they were okay with the release. "All of these browser vendors reviewed the tool and let us know that they were okay with the release," says the Mozilla blog. + +The truth is, the really nefarious crackers have their own fuzzers anyway and, as the Opera announcement testifies, these tools are far more likely to help end-users in the form of patches than cause problems. + +[1]: http://blog.mozilla.com/security/2007/08/02/javascript-fuzzer-available/ +[2]: https://bugzilla.mozilla.org/show_bug.cgi?id=jsfunfuzz +[3]: http://my.opera.com/desktopteam/blog/2007/08/03/fun-with-the-fuzzer diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Fri/skype.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Fri/skype.txt new file mode 100644 index 0000000..13fbf96 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Fri/skype.txt @@ -0,0 +1,20 @@ +Yesterday, while testing the new Skype of Mac beta, we noticed that the service was experiencing some server problems and the Skype posted a note admitting as much and claiming the issue would be resolved in twenty-four hours. + +While Skype isn't completely back up for all users, it appears that a significant portion of the network is back up and running, though what went wrong is still a little unclear. + +Yesterday, George Ou at ZDNet posted a [message][4] from Valery Marchuk of SecurityLab.ru which claimed that a code exploit published by an anonymous user could have been the culprit in the Skype outage, a charge Skype denies. + +There's a new note up on the Skype "Heartbeat" page [which reads][2]: + +>Apologies for the delay, but we can now update you on the Skype sign-on issue. As we continue to work hard at resolving the problem, we wanted to dispel some of the concerns that you may have. The Skype system has not crashed or been victim of a cyber attack. We love our customers too much to let that happen. This problem occurred because of a deficiency in an algorithm within Skype networking software. This controls the interaction between the user’s own Skype client and the rest of the Skype network. + +Although Skype has [not responded][3] to most media inquires, Skype representatives [tell the New York Times][1]: "This problem occurred because of a deficiency in an algorithm within Skype networking software. This controls the interaction between the user's own Skype client and the rest of the Skype network." + +They also went on to say that the service may not be fully restored for a little while. "There is a chance this could go on beyond tomorrow, but it’s our hope that it’s going to be resolved," said Kurt Sauer, Skype’s chief security officer. + +Apparently Skype knows what the problem is, but can't seem to find a way to fix it. So far the outage has affected an estimated 220 million users. + +[1]: http://www.nytimes.com/2007/08/17/business/17ebay.html?ex=1345003200&en=cccaa6da8a8347fb&ei=5090&partner=rssuserland&emc=rss +[2]: http://heartbeat.skype.com/2007/08/the_latest_on_the_skype_signon.html +[3]: http://blog.wired.com/business/2007/08/skype-wont-comm.html +[4]: http://blogs.zdnet.com/Ou/?p=683
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/Facebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/Facebook.txt new file mode 100644 index 0000000..2f90e88 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/Facebook.txt @@ -0,0 +1,15 @@ +Owing to a misconfigured server, Facebook exposed its homepage code to what the company called "a handful of users" over the weekend. The leaked code was promptly posted on a new blog, [Facebook Secrets][1], for all of the internet to see. + +Although Facebook hasn't specified what exactly was wrong with the server, it seem reasonable to conclude that some sort of mod_php error caused apache to serve the code as an ordinary text file rather than processing it as PHP. + +The code leak does not constitute a security breach and there's probably no immediate reason to be concerned about your data. However, given the number of listed includes and auxiliary files listed, hackers now have a much better idea of how Facebook works and where potential vulnerabilities may lie. And it's hardly comforting that such an amateur programming mistake is happening at a site the size Facebook. + +PHP is notorious for just this sort of thing -- serving code as text -- but there are ways you prevent it from happening on your own site. The easiest and most effective way is to use the Apache module mod_security, which can detect and stop PHP source code from being sent at plain text. + +Regrettably for it, Facebook apparently wasn't using mod_security on the particular server that was misconfigured. + +One group that should be quite happy with the leak is ConnectU the company currently embroiled in a lawsuit with Facebook which alleges that the later stole code from the former. If the alleged code happened to be on Facebook's front page, ConnectU's case just got a whole lot stronger, though ConnectU hasn't said anything to that effect. + +Given the amount of personal data that many people have dumped into Facebook, an outside security breach would likely lead to an identity theft nightmare, should it ever happen. And if this weekend's code leak is any indication, Facebook doesn't seem to be operating at the security level you would expect from a site of that size. + +[1]: http://facebooksecrets.blogspot.com/2007/08/facebook-home-page-code.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/adium.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/adium.txt new file mode 100644 index 0000000..e251015 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/adium.txt @@ -0,0 +1,20 @@ +Adium, the popular Mac OS X IM client has reached version 1.1. Although Adium just released a new version about a month ago, the team behind the app [claims][1] that 1.1 has been in the works for over a year. + +[Adium][4] is an open source, multi-protocol IM client popular with Mac users because it allows you to have all your conversations in a single application, regardless of what IM network your friends use, unlike Apple's iChat with is limited to AIM or Jabber. + +New features in Adium 1.1 include greatly improved tabs, support for "nudge" on MSN and "buzz" on Yahoo and improvements to the tool which allows you to hide your contact list at the edge of the screen (similar to Mac OS X's Dock application). + +There's lengthy list of [additional changes][2] you can peruse on the Adium site. + +In limited testing this morning, I found the new tabs to quite a bit improved (the support for vertical tabs is nice given that I tend to have a very narrow window in Adium, making horizontal tabs awkward). The application also feels a bit snappier. + +Adium still lacks support for video chat, but otherwise it remains the best multi-protocol IM app for Mac users. + +Adium 1.1 is free and requires OS X 10.4 (Tiger). + +[via [Digg][3]] + +[1]: http://www.adiumx.com/blog/2007/08/adium-11.php +[2]: http://trac.adiumx.com/wiki/AdiumVersionHistory +[3]: http://digg.com/apple/Adium_1_1_released +[4]: http://www.adiumx.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/adiumvtabs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/adiumvtabs.jpg Binary files differnew file mode 100644 index 0000000..037ac2c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/adiumvtabs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/facebookcode.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/facebookcode.jpg Binary files differnew file mode 100644 index 0000000..3fa98f6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/facebookcode.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/ff3.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/ff3.txt new file mode 100644 index 0000000..6eb7aeb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/ff3.txt @@ -0,0 +1,17 @@ +Mozilla Links has posted an [inside look][1] at the new download manager which will become part of Firefox 3. Although Firefox 3 hasn't even hit the beta stage yet, the new download manager is available via the nightly builds. + +As you can see the the screenshot above, the old text links have been replaced with icon buttons and the list is divided into active and complete downloads. There's also a search bar for the heavy downloaders who may need it. + +Not pictured in the screenshot is the familiar "clean up" button, but rest assured it will be there in the final release of Firefox 3. + +The new information icon looks to be the handiest of the improvements -- clicking it reveal details such as the originating website, the location of the downloaded file and more. + +Also under consideration is the inclusion of an option to show the download manager in the status bar or sidebar, something users have requested for some time. + +While the download manager looks to offer a number of improvements, it still lacks some of the nice features found in Camino, which is based on Firefox. + +For instance, in Camino, not only can you clear the list of downloaded files, but you can also move those files to the trash from the same dialogue. + +Since the download manager is a work in progress we'll withhold judgment for the time being. The final version of Firefox is due to be released later this year. + +[1]: http://mozillalinks.org/wp/2007/08/first-look-to-firefox-3s-new-download-manager/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/ffdownload.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/ffdownload.jpg Binary files differnew file mode 100644 index 0000000..aefa4e8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/ffdownload.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/gpack.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/gpack.jpg Binary files differnew file mode 100644 index 0000000..8f1de73 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/gpack.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/gpack.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/gpack.txt new file mode 100644 index 0000000..8128447 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/gpack.txt @@ -0,0 +1,23 @@ +Google Pack, Google's software download package has been expanded to now offer StarOffice, Sun's competitor to Microsoft Office. [StarOffice][2], which Sun normally sells for $70 is free through [Google Pack][3] (Win only). + +If StarOffice strike you as an odd choice given that OpenOffice is free and open source, which would seem to put it in line with other Google Pack offerings, you're not alone. Google likely chose StarOffice over OpenOffice as part of the company's nearly two year old deal with Sun. + +The software distribution agreement between Google and Sun was first announced back in 2005, but even then the [press release][4] primarily touted OpenOffice, which is built on the same code that runs StarOffice. + +StarOffice 8, the version offered through Google Pack, is a full-fledged office suite with a word processor, a spreadsheet app, presentation tools, database and some math and drawing tools. StarOffice supports most Microsoft Office formats, though not the new OOXML formats included in Office 2007. + +In fact, the main difference between the two is that StarOffice includes proprietary clip art graphics, fonts, and templates as well as some additional Microsoft Office conversion tools. + +Google has made no secret of the fact that it intends StarOffice to compete directly with Microsoft Office -- the help page for the new download says, "with StarOffice, you can easily view, edit, and save Microsoft Office compatible files." + +The Google Pack version of StarOffice also integrates a Google Search toolbar in all of the StarOffice applications. + +At the moment there's no integration with Google Docs & Spreadsheets, the company's online office suite, but it seem reasonable to assume that some sort of synchronization plugin will be available eventually. + + +[via [Google Operating System][1]] + +[1]: http://googlesystem.blogspot.com/2007/08/google-pack-adds-staroffice.html +[2]: http://www.sun.com/software/star/staroffice/index.jsp +[3]: http://pack.google.com/ +[4]: http://www.google.com/press/pressrel/sun_toolbar.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/unhack.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/unhack.jpg Binary files differnew file mode 100644 index 0000000..f7a607c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/unhack.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/unhack.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/unhack.txt new file mode 100644 index 0000000..80ca4a7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Mon/unhack.txt @@ -0,0 +1,9 @@ +Facebook wasn't the only site with security troubles this weekend. The United Nations website was attacked by "hacktivists," who replaced speeches by secretary-general Ban Ki-Moon with pacifist messages. + +As with the [Facebook code breach][3], the U.N. site left itself open to attack by failing implement industry standard security measures. In the case of the U.N., hackers gained access via a well-documented SQL injection flaw (passing unescaped strings, which allowed the attacker to inject their own SQL). + +While the site was quickly restored and the injected content removed, Hackademix, a security blog, [captured the attack in some screenshots][1]. Hackademix also [notes][2] that the U.N. site is likely not yet protected against similar attacks in future. + +[1]: http://hackademix.net/wp-content/uploads/2007/08/un-ss2.png +[2]: http://hackademix.net/2007/08/12/united-nations-vs-sql-injections +[3]: http://blog.wired.com/monkeybites/2007/08/amatuer-program.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/appleworks.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/appleworks.jpg Binary files differnew file mode 100644 index 0000000..e6b8074 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/appleworks.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/appleworks.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/appleworks.txt new file mode 100644 index 0000000..3dfbe1b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/appleworks.txt @@ -0,0 +1,12 @@ +Long live AppleWorks. The long time office suite has finally been put out to pasture. As Macworld [notes][1] the URL for Appleworks now redirects to Apple's new iWork suite and a search for AppleWorks returns iWork as the top hit. + +Of course the demise of Appleworks shouldn't come as much of a surprise. The office application suite never saw a universal binary update, which should have alerted users to its "abandonware" state. + +AppleWorks has been around some 23 years, beginning life as ClarisWorks before being taken over by Apple and renamed AppleWorks. FileMaker Pro, the database app also originally developed by Claris appears to still be under development at Apple. + +Given that iWork is already a couple of years old, it seem safe to assume that Apple has been wanting to ditch AppleWorks for some time. Arguably the missing sauce in iWorks was a spreadsheet application, but with [Numbers now a part of the iWork suite][2], AppleWorks lost its one secure foothold over iWork. + +Although iWork is faster and more robust than AppleWorks, there doesn't appear to be any upgrade discounts on iWork for existing AppleWorks customers, which is too bad. + +[1]: http://www.macworld.com/news/2007/08/15/appleworks/index.php +[2]: http://blog.wired.com/monkeybites/2007/08/apple-completes.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/facebooksecrets.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/facebooksecrets.txt new file mode 100644 index 0000000..d758b86 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/facebooksecrets.txt @@ -0,0 +1,33 @@ +Google has shut down Facebook Secrets the Blogger Blog that was posting code from the recent Facebook server snafu. The mysterious owner of Facebook Secrets is not going without a fight though, s/he has posted a new site Facebook Secrets Again, though the Facebook code is not included. + +Instead there are two DMCA notices from Google. The second, which appears to be a response to some sort of challenge of the site removal reads: + + +>As mentioned in our previous email, we work with a third party to post +DMCA notices we receive. The notice we received because of the content on +your site can be found here (once the notice has been posted): + +>[http://www.chillingeffects.org/notice.cgi?sID=3836][1] + +>We have had to remove the content mentioned in the complaint from your +blog. If we did not do so, we would be subject to a claim of copyright +infringement, regardless of its merits. + +The link above leads to a page on Chilling Effect, a site that tracks DMCA notices, which reads: "DMCA (Copyright) Complaint to Google. The notice is not available." + +But Facebook Secrets isn't the only site that's been served with a DMCA, Digg also received a [takedown notice][2] and [complied][3] (apparently Digg users aren't as interested in Facebook code as they are in [DVD unlock codes][4]). + +Earlier this week Facebook contacted Wired News to give an official statement about the code leak, which read: + +>A small fraction of the code that displays Facebook web pages was exposed to a small number of users due to a single misconfigured web server that was fixed immediately. It was not a security breach and did not compromise user data in any way. Because the code that was released only powers the Facebook user interface, it offers no useful insight +into the inner workings of Facebook. **The reprinting of this code violates several laws and we ask that people not distribute it further.** (emphasis mine) + +Requests for clarification from Facebook regarding what specific laws were broken have gone unanswered. The complaint filed against Digg cites copyright violations, which isn't exactly "several laws," though it is enough to file a DMCA complaint. + +For what it's worth an anonymous Compiler reader posted most of the code in the [comments of the previous entry][5]. + +[1]: http://www.chillingeffects.org/notice.cgi?sID=3836 +[2]: http://www.chillingeffects.org/linking/notice.cgi?NoticeID=14134 +[3]: http://digg.com/tech_news/Facebook_Source_Code_Leaked_Actual_PHP_Code?t=8452977#c8452977 +[4]: http://blog.wired.com/business/2007/05/kevin_rose_conc.html +[5]: http://blog.wired.com/monkeybites/2007/08/amatuer-program.html#comment-79380419
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/iephone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/iephone.jpg Binary files differnew file mode 100644 index 0000000..481d33f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/iephone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/limewire.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/limewire.jpg Binary files differnew file mode 100644 index 0000000..c811f7f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/limewire.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/meeboiphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/meeboiphone.jpg Binary files differnew file mode 100644 index 0000000..6c6d4f6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/meeboiphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/quicken.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/quicken.jpg Binary files differnew file mode 100644 index 0000000..4e1f742 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/quicken.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/skype.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/skype.jpg Binary files differnew file mode 100644 index 0000000..aad18a6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/skype.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/skype1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/skype1.jpg Binary files differnew file mode 100644 index 0000000..8939433 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Thu/skype1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/ZZ0E42FEE8.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/ZZ0E42FEE8.jpg Binary files differnew file mode 100644 index 0000000..6ab0971 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/ZZ0E42FEE8.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/blackhat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/blackhat.jpg Binary files differnew file mode 100644 index 0000000..7ac1c6e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/blackhat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/ghealth.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/ghealth.jpg Binary files differnew file mode 100644 index 0000000..c60128d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/ghealth.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/googlehealth.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/googlehealth.txt new file mode 100644 index 0000000..19b1e17 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/googlehealth.txt @@ -0,0 +1,20 @@ +The New York Times <a href="http://www.nytimes.com/2007/08/14/technology/14healthnet.html?ex=1344744000&en=3117f81f6565f45b&ei=5090&partner=rssuserland&emc=rss">reports</a> that both Google and Microsoft may soon be entering the online health care market. Will there be a link to "Google Health" at the top of the company's home page? According to the Times, the project is still an internal prototype and unlikely to be available even as a beta for some time. + +The article does, however, offer a tantalizing glimpse at what Google Health could look like: + +>A presentation of screen images from the prototype — which two people who received it showed to a reporter — then has 17 other Web pages including a "health profile" for medications, conditions and allergies; a personalized "health guide" for suggested treatments, drug interactions and diet and exercise regimens; pages for receiving reminder messages to get prescription refills or visit a doctor; and directories of nearby doctors. + +>Google executives would not comment on the prototype, other than to say the company plans to experiment and see what people want. "We'll make mistakes and it will be a long-range march," said Adam Bosworth, a vice president of engineering and leader of the health team. "But it's also true that some of what we're doing is expensive, and for Google it's not." + +Also worth noting in the Times piece is the way that the web has already changed how many of us approach health care. Of particular interest is the future-of-health-care portrait painted by John D. Halamka, a doctor and the chief information officer of the Harvard Medical School, who sees the future of health care on the web. + +With more and more people using [WebMD][1] or Google to research symptoms before they see a professional, Halamka tells the Times that "the doctor is becoming a knowledge navigator... in the future, health care will be a much more collaborative process between patients and doctors." + +And that image probably won't be limited to your symptoms, but may well extend to patient records. "Patients will ultimately be the stewards of their own information," says Halamka who believes that eventually we will control our records rather than the institutions that provide the care. + +Halamka's vision might be a bit utopian given the nature of the health care industry and it also raises some additional questions -- who hosts the records? And do you want Microsoft or Google in on the management of your health history? + +[via [Google Operating System][2]] + +[1]: http://www.webmd.com/ +[2]: http://googlesystem.blogspot.com/2007/08/google-health-prototype.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/lightsoff.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/lightsoff.jpg Binary files differnew file mode 100644 index 0000000..38a168d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/lightsoff.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/lightsoff.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/lightsoff.txt new file mode 100644 index 0000000..1a544d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/lightsoff.txt @@ -0,0 +1,15 @@ +The first native iPhone game has landed. [Lights Off][2], which was developed by Lucas Newman and Adam Betts (Newman is one of the programmers behind [Delicious Monster][3]), is a puzzle game that takes advantage of the iPhone's touch screen interface. + +The game appears to based on the Lights Out game from Tiger Electronics which has inspired other offshoots in the past (there's an online flash version [here][1]). + +Here's a description of Lights Off from the host site: + +>The objective is to switch all of the lights out. Tapping a light toggles it, along with the four adjacent lights. Once you switch all of the lights out, you'll advance to the next level + +And mind you this isn't just a web-based game, this is a native iPhone app. Unfortunately that also means installation requires some fairly complicated steps and it could void your warranty or conceivably brick your phone. + +We doubt you'll end up bricking your phone, but do keep in mind the Light Off disclaimer: "Lights Off is provided on an 'as is' basis, without warranty of any kind. If your iPhone breaks, don't cry on our shoulders." + +[2]: http://www.deliciousmonster.org/ +[1]: http://www.rit.edu/~jmc2385/idm/projects/lightsout/ +[3]: http://www.delicious-monster.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/nohacking.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/nohacking.txt new file mode 100644 index 0000000..63ec1cb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/nohacking.txt @@ -0,0 +1,22 @@ +A new law that just went into effect in Germany has many in the hacking community pulling their software and exploits from the web. The law, known as Paragraph 202C, makes it illegal to possess, use, produce, or distribute a "hacker tool" in Germany. + +As Bre Pettis over at the [MAKE Blog][3] notes, the term "hacker tool" is very vague. "<a href="http://insecure.org/nmap/">Nmap</a> or other network monitoring systems could fall into this category." + +Already the makers of the excellent [KisMAC][1], a Mac wifi sniffing and hacking software have pulled the app code and stopped developments owing to the law. KisMAC, which, like any hacking tool, can be used for good or nefarious purposes, is still the best means of demonstrating how uselessly weak WEP encryption is and convincing people to go with WPA for wireless security. + +The KisMac site says the software will be reborn "soon" with a new team of hacker in the netherlands. + +Naturally the law has no practical effect on security either inside Germany or out, it simply drives hackers and innovation out of the country, similar to the way U.S. export law drove many companies that wanted to export strong cryptography to foreign shores (the U.S. laws have since been greatly relaxed, though it's still considered an "[extraordinary threat to the national security][4]"). + +However, the German government is not satisfied with even this semi-deranged law, and [according to TidBits][2], plans more, ignorant, short-sighted and downright scary laws for the future. + +>There's a further, broader set of changes to German law coming in 2008, too, which don't specifically deal with hacking, but which raise similar concerns. The potential new policy covering Vorratsdatenspeicherung - loosely: the retention of stored data - includes all mobile and fixed telephony and data transfers. It has an incredibly overarching effect in requiring firms to retain records about the origin, destination, and location of parties involved in calling, emailing, text messaging, and other activities. A demonstration against the law is scheduled for 22-Sep-07 in Berlin. + +As a commenter over at MAKE notes, "it would be nice if politicians actually had to know something about what they were making decisions on." Indeed it's not hard to see how, if you knew nothing about the internet and hacking, this law would seem to make at least some sense, but of course politicians the world over continue to make ill-conceived laws about things they only dimly understand at the risk of crippling entire industries. + +So what's a hacker to do? Apparently the only real option is to get out of Germany. Or take up knitting instead. + +[1]: http://kismac.de/ +[2]: http://db.tidbits.com/article/9112 +[3]: http://www.makezine.com/blog/archive/2007/08/the_hacker_tool_law_in_ef.html +[4]: http://news.com.com/8301-10784_3-5817718-7.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/satisfaction.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/satisfaction.txt new file mode 100644 index 0000000..f378604 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/satisfaction.txt @@ -0,0 +1,15 @@ +Yahoo customer satisfaction topped Google for the first time ever according to new figures from the American Customer Satisfaction Index (ACSI). The ACSI which is run out of the University of Michigan, found that Yahoo's search portal [topped the field][1] for the first time, gaining almost four percent over last year while Google fell almost the same amount. + +Other interesting tidbits from the survey include Ask which tops Microsoft, though rather confusingly ranks just below "all others." Also worth noting is that Alta Vista, the one time leader of search engine traffic is no longer reported in the ACSI index, though the last time it was, in 2004, it ranked dead last. + +According to ASCI the means of measuring customer satisfaction is a "set of causal equations that link customer expectations, perceived quality, and perceived value to customer satisfaction (ACSI). Satisfaction, in turn, is linked to key outcomes, defined as customer complaints and customer loyalty." + +One thing that's unclear in the ASCI's notes on the figures is what exactly is defined by the term "Internet Portals/Search Engines." For instance it's hard to tell if the ASCI is including figures from Yahoo properties, like Flickr or del.icio.us, or just that main search directory site. + +Still, either way it isn't good news for Google who has topped the index since 2002. Google has taken some flack this year for its [privacy policies][3], which may have hurt consumer perception of the company. + +[via [CNet][2] (which I should note, has a much better looking graphic than the one from the ACSI).] + +[1]: http://www.theacsi.org/index.php?option=com_content&task=view&id=147&Itemid=155&i=Internet+Portals%2FSearch+Engines +[2]: http://news.com.com/2300-1011_3-6202355-1.html?part=rss&tag=6202355&subj=news +[3]: http://blog.wired.com/monkeybites/2007/06/privacy_group_c.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/searchsatisfaction.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/searchsatisfaction.jpg Binary files differnew file mode 100644 index 0000000..071b182 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Tue/searchsatisfaction.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/facebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/facebook.txt new file mode 100644 index 0000000..3f6a3f9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/facebook.txt @@ -0,0 +1,15 @@ +Both Facebook and Netvibes launched new iPhone-optimized versions of their sites yesterday. Netvibes, the customizable homepage widget site, offers a slightly more spare version for the iPhone with slimmed-down text-only widgets to speed load times on the EDGE network. + +The Netvibes iPhone site is still in beta, but point your iPhone to [m.nv1.netvibes.com][1] and check out the RSS reader which is one of the fastest we've used on the iPhone. + +The [Facebook iPhone][2] site is also very well done and indeed it's possibly the best iPhone site we've seen -- in many ways its better than the main Facebook site. + +Four tabs across the top of the screen give one click access to your main page, your profile, friends and e-mail. A series of buttons below each tab provide most of the options for each section. The only slightly disorienting aspect of the navigation is that clicking a tab tiggers the familiar sideways navigation -- panels slide to the left. Typically tabs don't relate to horizontal responses, but perhaps that's too nit-picky for an iPhone UI. + +Whatever the case, the interface is fast (the EDGE network has been having issues this morning so I only tested it on wifi) and the overall experience is much better than trying to use the main site on the iPhone's diminutive screen. + +For a detailed look at the various Facebook screens check out the [extensive photo tour][3] that Chris Messina put up on Flickr (which is where the above screenshot comes from). + +[1]: http://m.nv1.netvibes.com/ +[2]: http://iphone.facebook.com/ +[3]: http://flickr.com/photos/factoryjoe/sets/72157601448859006/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/facebookiphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/facebookiphone.jpg Binary files differnew file mode 100644 index 0000000..9d9a851 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/facebookiphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/gtalk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/gtalk.jpg Binary files differnew file mode 100644 index 0000000..7adbd60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/gtalk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/imhack.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/imhack.txt new file mode 100644 index 0000000..bd071dd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/imhack.txt @@ -0,0 +1,13 @@ +The world of Instant Messaging is a mess. Countless protocols, friends on different networks and other complications make IM a potential hassle. Which is why we've always recommended the multi-protocol, all-in-one IM apps, [Adium][1] for Mac and [Pidgin][2] for Windows. + +But desktop apps aren't for everyone, which is why I thought I'd point out a great little tutorial over on Lifehacker that walks through the steps necessary to [set up the Google Talk widget in GMail as a multi-protocol messaging client][3]. + +If you're thinking that sounds too go to be true, you're half right. It does work, though some people have reported problems un-installing the hack, but the main problem is that you'll need to rely on a third party Jabber client to do some forwarding for you. That means your IMs will be visible to a third party. Depending on your paranoia levels and the nature of your chats, that may be a problem. + +However, if that doesn't bother you (and if you're already sending unencrypted e-mail through GMail I can't see why it would) setting up GTalk to handle other IM services is surprisingly simple. + +You'll need to grab cross platform Jabber client Psi, though you only need to use it once. You'll also need to set up a Jabber transport server, but otherwise the process is pretty straightforward. See Lifehacker for the full details. + +[1]: http://blog.wired.com/monkeybites/2007/08/adium-11-featur.html +[2]: http://blog.wired.com/monkeybites/2007/05/pidgin_formerly.html +[3]: http://lifehacker.com/software/hack-attack/chat-with-aim-msn-yahoo-and-other-contacts-over-google-talk-289097.php
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/iphone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/iphone.txt new file mode 100644 index 0000000..c3ee7e7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/iphone.txt @@ -0,0 +1,29 @@ +Facebook, Netvibes and Meebo all launched new iPhone-optimized versions of their sites this week and all three of them are very nice, but wasn't one of the points of the iPhone that it offered "a real web browser?" So why all the iPhone optimized sites? And why iPhone, why not just "mobile optimized?" + +The iPhone is Internet Explorer 4 all over again. + +Inflammatory I know, but I'm not the first person to suggest at much. Last month Scott McNulty over at The Unofficial Apple Weblog <a href="http://www.tuaw.com/2007/07/18/the-strange-case-of-made-for-iphone-websites/">floated the same idea</a> and commenters here on Compiler have said as much as well. + +At the time I would have argued that most the iPhone sites were actually "applications" given that websites are essentially the only SDK software developers have for the iPhone (if you'd like to see why web-apps as iPhone apps are less then ideal, have a look at <a href="http://furbo.org/2007/08/15/benchmarking-in-your-pants/">these benchmarks</a>). + +But none of the sites announced this week are "applications" exactly. They offer the same content as the normal sites, just optimized for the iPhone. + +And the more I've been thinking about that argument the more I realize that that's exactly how Microsoft spun the proprietary, non-standard HTML features in IE 4. + +In suggesting that developers use the web to build iPhone applications, what Apple has done (perhaps inadvertently, perhaps not) is force the creation of a subset of the mobile web that only works with the iPhone's unique features -- namely the touch-screen interface. + +So how about the argument that the EDGE network requires a slimmed down site? Okay, true EDGE lags, but all mobile sites are optimized for speed, even 3G networks aren't that spectacularly fast. + +Ironically, some of the best performing, easy-to-use sites on a mobile device are the very 1998-looking sites that just display content in a long list. But obviously desktop users don't want the web to revert to 1998, which is why designers find themselves caught in the middle and forced to design two separate sites -- one mobile, one normal. + +Which was working until the iPhone came along and created a 3rd space -- iPhone-optimized sites. + +The iPhone has created a division in the mobile-optimized web which is eerily similar to the days of IE 4 when many sites simply didn't work in Netscape. + +Imagine for a minute if Microsoft had put out a Zune phone and encouraged developers to subdivide the mobile web into those sites that worked with the Zune phone, and then everything else. I can almost hear the deafening roar of protest from the blogosphere... But for some reason designers aren't decrying Apple's device-specific optimization the way the once decried browser specific optimization. + +In essence Apple has forced a third tier of websites on the world by failing to provide developers with an alternative means of creating applications on the iPhone. + +But while that may explain the explosion of iPhone-only sites it doesn't justify them. + +Perhaps this is merely the mobile web stumbling through the same painful growth steps that the world wide web once went through (have we learned nothing?), the difference is this time the "cool" company is leading the way and no one is complaining.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/meebo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/meebo.txt new file mode 100644 index 0000000..3476437 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/meebo.txt @@ -0,0 +1,18 @@ +Meebo the free, web-based chat system has rolled out an [iPhone app][2], bringing multi-protocol chat to the iPhone -- finally. We've looked at a few other iPhone chat clients in the past, but even the best of them, [FlickIM][1], only supports the AIM network, whereas Meebo offers AIM, MSN, Yahoo, ICQ, Jabber and Google Talk. + +Meebo's iPhone app is well thought out and includes niceties like browser auto-detection. Just point your iPhone to Meebo.com and you'll be automatically rerouted to the mobile, iPhone-optimized URL. As iPhone users know, there's nothing more annoying than having to type in a long URL. + +Once you login (and you don't need a Meebo account to use the site, just login as you normally would on whatever network you prefer), you'll be dropped into your contacts list. Select a contact and start a chat just as you would in a normal IM app. Buddies you're actively chatting with will appear at the top of the list so you get a quick preview from the buddy list. + +Once you're logged in and chatting I recommend switching to the horizontal interface since it gives you the iPhone's much easier to use horizontal keyboard. I found that the contacts list works best in vertical mode, though both parts of Meebo will work in either orientation. + +The chat interface for Meebo is pretty minimalist and not nearly as nice looking at FlickIM's slick UI, but it does the job. Meebo has minimized the graphics which is nice for those times you're stuck on the EDGE network. + +The big catch, which is not Meebo's fault, but the iPhone's, is that if you get a call or a text message or otherwise close the browser, you're auto logged out of Meebo. This is, as I understand it, a security feature of the iPhone and certainly there are times when it's handy (for instance when you're done with a chat, just hit the home button and you're logged out), but other times it's a pain. +Would a native IM app for the iPhone be better? Of course, but since Apple doesn't show any signs of providing such functionality, for now Meebo is your best bet. + + + +[1]: http://blog.wired.com/monkeybites/2007/07/flickim-launche.html + +[2]: http://blog.meebo.com/?p=346
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/mt4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/mt4.jpg Binary files differnew file mode 100644 index 0000000..feeadcd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/mt4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/mt4.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/mt4.txt new file mode 100644 index 0000000..d7e0bed --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/mt4.txt @@ -0,0 +1,16 @@ +Six Apart's latest release, Movable Type 4, is out of beta and into the wild. [Movable Type 4][2] features a completely redesigned admin interface and some 50 new features. For full details on [what's new in MT4][3] check out our [earlier coverage of the beta][4]. + + +Perhaps the most notable feature of MT4 which we didn't discuss in our earlier review is the move to a component-based architecture where paid extensions and additional functionality run on top of the same code base. In other words the enterprise version of MT4 can be laid on top of an existing MT4 installation. + +The more modular approach should make it easier to upgrade and migrate your installation should you decide that the features merit the price. + +To go along with the release of MT4 there's an entirely new plug-in directory available so even if 50 new features doesn't satiate your blogging desires you can always drop in the latest and greatest plugins from the MT community or developers. + + +Another notable element of MT4 is the much touted [open-source version][1], which will offer most of MT4 under the GPL, but you'll have to wit for that. The open source version is slated for release later this quarter. + +[1]: http://www.movabletype.org/opensource/ +[2]: http://www.movabletype.com/ +[3]: http://www.movabletype.org/whatsnew.html +[4]: http://blog.wired.com/monkeybites/2007/06/movable_type_40.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/patchtues.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/patchtues.txt new file mode 100644 index 0000000..82012a9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/patchtues.txt @@ -0,0 +1,12 @@ +Yesterday was Microsoft's monthly "Patch Tuesday" and the company delivered a slew of updates, including a kernel update to address a particularly nasty issue that allowed malicious code to be injected into the kernel via unsigned drivers. + +The [kernel exploit][1] affects all 64 bit versions of Windows, and, while Microsoft is trying to downplay it, comes in response to hacking tools freely available on the web. Purple Pill as one tool was known, could be used to load unsigned drivers into the Windows kernel thanks to a flaw in one of Vista's video drivers. Purple Pill's maker pulled the software after realizing no patch was available. + +Other fixes in this month's batch of patches include six listed as critical. Of the six only one is Vista specific, which plugs an exploit in Windows Gadgets which could allow remote code execution. + +The rest of the critical patches apply to nearly all Windows systems and fix flaws in Windows Media Player, Microsoft Excel, XML Core Services and more. + +You can grab the security patches for Windows via Microsoft Update or directly from the [downloads site][2]. + +[1]: http://www.microsoft.com/technet/security/advisory/932596.mspx +[2]: http://www.microsoft.com/technet/security/bulletin/ms07-aug.mspx
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/virgilgriffith.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/virgilgriffith.jpg Binary files differnew file mode 100644 index 0000000..2d27762 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/virgilgriffith.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/wikiedits.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/wikiedits.txt new file mode 100644 index 0000000..22fc017 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/wikiedits.txt @@ -0,0 +1,16 @@ +Threat Level is running a poll where you can track and vote on the most shameful and/or disturbing Wikipedia edits found with Virgil Griffith's new Wikipedia search tool. For those that missed the story, Griffith created a [tool that unmasks the anonymous edits made to Wikipedia][4] pages. + +The long and short of it is that corporations, celebrities and other egomaniacs concerned with negative Wikipedia entries can no longer hide behind the anonymous edits. Here's an excerpt from [John Borland's full story on Wired News][2]. + +>Some of this appears to be transparently self-interested, either adding positive, press release-like material to entries, or deleting whole swaths of critical material. + +>Voting-machine company Diebold provides a good example of the latter, with someone at the company's IP address apparently deleting long paragraphs detailing the security industry's concerns over the integrity of their voting machines, and information about the company's CEO's fund-raising for President Bush. + +Give Griffith's tools a try and then head on over to [Threat Level][3] and submit and vote for your favorite abusers. So far Diebold continues to lead, but Scientology, Disney and even the NSA are climbing up the list. + +Personal fav: It would appear that Fox News has [edited Al Franken's entry][1] with all the zealot of an angry sixth grader. We all know Fox News is as low as it gets, but who knew they went this low? For shame. + +[1]: http://en.wikipedia.org/w/index.php?title=Al_Franken&diff=prev&oldid=25221039 +[2]: http://www.wired.com/politics/onlinerights/news/2007/08/wiki_tracker +[3]: http://blog.wired.com/27bstroke6/wikiwatch/ +[4]: http://wikiscanner.virgil.gr/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/win.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/win.jpg Binary files differnew file mode 100644 index 0000000..bdeef10 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.13.07/Wed/win.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/blockads.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/blockads.txt new file mode 100644 index 0000000..3945d59 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/blockads.txt @@ -0,0 +1,15 @@ +Yesterday's note about user backlash against YouTube's new in-stream video ads promoted a number of reader to ask, "is there a way to block YouTube's new ads?" The answer is yes, provided you're a Firefox user. + +The extension TubeStop will replace all the video players on the YouTube site with the embedded player, which thus far [do not support the in-stream ads][3]. + +It's worth noting that blocking in-stream ads was not the point of TubeStop. As its name hints the plugin was originally developed to stop videos from auto-playing. In order to do that, TubeStop simply swaps out the site player for the embed player, the ad-blocking feature is really just a happy coincidence. + +Of course at some point YouTube will probably include the in-stream ads in the embeddable player which means this method won't work, but for the time being you're covered. + +Grab the latest version of TubeStop from [developer Chris Finke's site][1]. The extension is compatible with Firefox 1.5 - 2.0.0.x, the latest Flock builds, and Netscape Navigator 9.0. + +[via [Mashable][2]] + +[2]: http://mashable.com/2007/08/23/tubestop/ +[1]: http://www.chrisfinke.com/addons/tubestop/ +[3]: http://www.chrisfinke.com/category/tubestop/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/installerapp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/installerapp.jpg Binary files differnew file mode 100644 index 0000000..04c1372 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/installerapp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/iphonegui.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/iphonegui.txt new file mode 100644 index 0000000..0aaa6cf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/iphonegui.txt @@ -0,0 +1,16 @@ +Hacking the iPhone just got a lot easier. There's now a GUI package installer available that aims to make it dead simple to get the coolest new "native" apps running on your iPhone. The appropriately named [Installer.app][1] works just like other package managers, once installed it lists the various packages available and clicking any of them will start the installation from the phone. + +Of course not only is Installer.app a beta, hacking the iPhone is potential risky and quite possible a good way to lose your data, void your warranty and otherwise bring a plague upon your house. Consider the following warning on the official site: + +>WARNING: This software comes with absolutely no warranty of any kind. If it should cause any harm to your iPhone or data, we shall not be held responsible. Such is the nature of preview (Beta) software. + +I have not used Installer.app so I can't comment on its stability, but I will say that having a package management system for iPhone apps seems much better than just downloading and installing things willy-nilly. + +If you'd like to learn more check out #installer.app on IRC. + +If you decide to give it a try be sure to let us know your experiences in the comments below. + +[via [Hackszine][2]] + +[1]: http://iphone.nullriver.com/beta/ +[2]: http://www.hackszine.com/blog/archive/2007/08/installerapp_beta_for_iphone.html?CMP=OTC-7G2N43923558
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/mscompare.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/mscompare.jpg Binary files differnew file mode 100644 index 0000000..e471f8d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/mscompare.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/opera.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/opera.jpg Binary files differnew file mode 100644 index 0000000..c538202 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/opera.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/safari.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/safari.jpg Binary files differnew file mode 100644 index 0000000..dfc8163 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/safari.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/yahoo.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/yahoo.txt new file mode 100644 index 0000000..0e30027 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/yahoo.txt @@ -0,0 +1,10 @@ +A quick note for fans of Yahoo Messenger: the company has released an update which [patches a vulnerability][1] in Yahoo's webcam video chat feature. This is the second time Yahoo has updated Messenger in recent months. + +The exploit, which was revealed last week and already exists in the wild, triggers a heap overflow if you accepts a webcam invitation from a malicious party. + +Once initiated the remote attacker could execute malicious code your machine. + +If you use Yahoo Messenger and haven't [downloaded the latest version][2], we recommend doing so, though we can't help wondering just who exactly accepts an unsolicited video chat request in the first place? + +[1]: http://messenger.yahoo.com/security_update.php?id=082107 +[2]: http://messenger.yahoo.com/download.php
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/yahoomes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/yahoomes.jpg Binary files differnew file mode 100644 index 0000000..416518f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Fri/yahoomes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/comcast.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/comcast.jpg Binary files differnew file mode 100644 index 0000000..8436621 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/comcast.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/comcast.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/comcast.txt new file mode 100644 index 0000000..a64f7c5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/comcast.txt @@ -0,0 +1,27 @@ +Bandwidth throttling and traffic shaping are nothing new in the world of ISPs, but rumors are making the rounds that Comcast is taking it to the next level with regards to bittorrent. + +TorrentFreak is claiming that Comcast users are finding their torrent uploads throttled whenever they connect to non-Comcast users, which means you can't seed torrents outside the network. It would seem that only seeding peers is being prevented, most users are able to upload to others as long as their download is still going, but once the download is finished the upload is throttled. + +Michael mentioned this on Friday and says that he's noticed it getting worse in the last couple of months. I don't have Comcast so I can't say one way or the other. Here's what TorrentFreak has to say: + +>Unfortunately, these more aggressive throttling methods can't be circumvented by simply enabling encryption in your BitTorrent client. It is reported that Comcast is using an application from Sandvine to throttle BitTorrent traffic. Sandvine breaks every (seed) connection with new peers after a few seconds if it's not a Comcast user. + +A commenter on the TorrentFreak post raises another interesting point, with regard to Comcast in particular: + +>Comcast sells internet access. They also sell video subscriptions, charging extra for on-demand and PPV movies. + +If I'm paying to DL a movie from a legal subscription service that uses the bittorrent protocol, and it's blocked, that's anticompetitive behavior designed to get me to use Comcast's services instead of the competitors. + +I'm not a lawyer so I can't say for sure if that's the case, but I included it here because it isn't something I've seen brought up before. + +It's no secret that ISPs don't like bittorrent or other traffic-clogging peer-to-peer technologies. The ISPs argument runs something like this: just because you pay for a connection at 3mbps doesn't mean you can use whatever protocols you want and potential clog the network for other users by using all 3mbps. + +Of course, the natural reaction from many people has been: actually I thought that's exactly what I was paying for. Many users feel the burden of handling the traffic is on the ISPs who, the argument says, need to ensure that the network can handle the traffic. + +In an ideal world, I'd tend to agree with that logic, but the truth is most networks simply could not handle the amount of traffic that would result from widespread torrent usage. Which is why ISPs are up in arms about services like Joost or the BBC's new internet video options. + +Others would argue that ISPs are a business and are free to charge and shape traffic as they see fit. + +And that's the heart of the debate -- should internet access be treated as a private enterprise with the market dictating what sort of traffic shaping is acceptable or should it be treated more like a public utility such as water service? + +It's always a lively debate, so feel free to jump in and have your say. Also if you're a Comcast customer and have seen your torrent's throttled let us know about it.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/djangoiphone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/djangoiphone.txt new file mode 100644 index 0000000..e40fc15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/djangoiphone.txt @@ -0,0 +1,24 @@ +Back when the hackers first broke into the IPhone and managed to get [Apache and Python installed][6], we knew it was only a matter of time before someone installed one of our favorite web frameworks -- Django. And yes it has been done, with [Flickr photos to prove it][1]. + +Jacob Kaplen Moss, Python guru and one of the [developers behind Django][5], got the framework installed and used Django's inspectdb to [load the iPhone's call log][4] into the Django admin application. Inspectdb is a handy Django tool that basically reverse engineers an existing database structure and then creates a Django application using that information. + +And to prove you don't need to be a Django developer to pull this off, it's worth noting that another Django user, Jay Baird, also has some [photos of Django running on an iPhone][2]. + +For the moment you'll have to content yourself with the Flickr images as it doesn't seem that anyone has posted a tutorial on the process (if you know of one, stick it in the comments and I'll update this post). + +Here's a few hints though, based on my own digging around: First off you're going to need Jailbreak and then install Apache and Python (presumably mod_python as well which I haven't been able to find anyone who's done that... perhaps they're running Django under WCGI). + +Next you'll need to install Django and point your browser to localhost to make sure it worked. Then if you want to pull out the call data you'll need to find the iPhone's CoreData files, which, as I understand it, are essentially SQLite databases. Once you have those, run Django's inspectdb function and you've got a web interface capable of viewing and editing anything on the iPhone. + +While Jacob's call data application isn't particularly useful, the fact that you can get Django up and running on an IPhone certainly is -- imagine locally hosted iPhone webapps without the speed drag of the EDGE network. That's an iPhone webapp we can finally get behind. + +I imagine similar efforts are underway in the Rails world and other web frameworks, be sure to let us know in the comments. + +[via the [Django Roundup][3]] + +[3]: http://www.djangoproject.com/weblog/2007/aug/19/djangoroundup/ +[2]: http://www.flickr.com/photos/skatterbean/1173984622/ +[1]: http://www.flickr.com/photos/jacobian/1160698795/in/photostream/ +[4]: http://www.flickr.com/photos/jacobian/1161717658/in/photostream/ +[5]: http://www.djangoproject.com/documentation/faq/#who-s-behind-this +[6]: http://blog.wired.com/monkeybites/2007/07/third-party-app.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/ffstudents.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/ffstudents.txt new file mode 100644 index 0000000..5cee854 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/ffstudents.txt @@ -0,0 +1,29 @@ +Continuing its string of branded version of Firefox, Mozilla is set to release a "Campus Edition" aimed at students headed back to school. Firefox Campus is a little different that the previous branded versions we've covered (notably [AllPeers][6] and [EBay][5]) in that there's no specific company involved, rather the campus edition of Firefox comes bundled with a number of add-ons students might find helpful. + +The featured add-on in the campus edition are [Zotero][7], [FoxyTunes][8] and [StumbleUpon][9]. Zotero is a research tool which helps collect, manage and cite research sources while FoxyTunes lets you control various media players from within Firefox. + +The StumbleUpon toolbar seems of dubious usefulness for students, though it is no doubt an excellent time waster and a fun way to find random, engaging websites. + +The campus edition page should be [available for download][11] sometime later today. + +While the student bundle is primarily a PR move on Mozilla's part, and a good one at that, we can't help thinking they left out some of the more useful plugins for students. + +For instance, [Research Word][2] gives Firefox a handy contextual menu item to look up words and phrases in a variety of sources. Select the word to lookup and right-click the selection to access definitions from Wikipedia, Google Definitions, IMDb and more. + +For the science majors there's [Biotech][1], which offers some links and tools for people wanting to research the field of Biotechnology. + +Other cool tools for students include [Diigo][3], a web highlighter and sticky note extension and the [Sirsi Library System][4] add-on which is great if your university or school uses the Sirsi Library System. + +[via [Digg][10]] + +[1]: https://addons.mozilla.org/en-US/firefox/addon/4473 +[2]: https://addons.mozilla.org/en-US/firefox/addon/3803 +[3]: https://addons.mozilla.org/en-US/firefox/addon/2792 +[4]: https://addons.mozilla.org/en-US/firefox/addon/2460 +[5]: http://blog.wired.com/monkeybites/2007/07/firefox-partner.html +[6]: http://blog.wired.com/monkeybites/2007/06/firefox_and_all.html +[7]: http://www.zotero.org/ +[8]: http://www.foxytunes.com/ +[9]: http://www.stumbleupon.com/ +[10]: http://www.digg.com/software/Firefox_Campus_Edition_Launching_Today +[11]: http://www.firefox.com/backtoschool
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/fitzpartick.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/fitzpartick.txt new file mode 100644 index 0000000..5eafed2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/fitzpartick.txt @@ -0,0 +1,28 @@ +Brad Fitzpatrick, creator of LiveJournal and OpenID among others, posted an interesting look at what he call [the social graph][1] -- a decentralized means of handling social data. As we hinted in our [call for an open social network][2], the tools to pull this off simply don't exist. + +Fitzpatrick writes: "Unfortunately, there doesn't exist a single social graph (or even multiple which interoperate) that's comprehensive and decentralized. Rather, there exists hundreds of disperse social graphs, most of dubious quality and many of them walled gardens." + +And end users are increasingly sick of registering and re-declaring their friends on every new social networking site. And rightly so, there has to be a better way. + +Fitzpatrick outlines the steps necessary to begin building an open network and even claims to have working prototypes of some elements. But even he knows it won't be easy. + +>The world won't switch en masse to anybody's "social networking interop protocol", pet XML format, etc. It simply won't happen. This must all work supporting any and all ways of data collection, change notification, etc. Cute new protocols and XML/YAML/JSON formats for cooperative sites will help (and have already started to be deployed with a few early cooperative sites), but by and large, most sites won't be cooperative at first, and some (e.g. MySpace) might not ever ever support this. This is going to happen one site at a time and without everybody speaking the same protocols. + +But perhaps the most interesting part of his plan is that he wants to create a non-profit and open source software "which collects, merges, and redistributes the graphs from all other social network sites into one global aggregated graph." + +The centralized data would then be made available to other sites (or users) via both "public APIs (for small/casual users) and downloadable data dumps, with an update stream / APIs, to get iterative updates to the graph (for larger users)" + +He goes on to say that while this server needs to be centralized in the beginning it also need to "ensure that the design is such that others can run their own instances, sharing data with each other. Think '<a href="http://en.wikipedia.org/wiki/Git_(software)">git</a>', not '<a href="http://en.wikipedia.org/wiki/Subversion_(software)">svn</a>.'" + +One of the complaints in about my Facebook article was that many people assumed I meant you should open up and share your data with the world, which is not at all what we mean here. However because public data is easiest to work with that's generally where the concept takes off. As Fitzpatrick notes: + +>The social graph contains a combination of public nodes, private nodes, public edges, and private edges. The focus is only on public data for now, as that's all you can spray around the net freely to other parties. While focusing on public data doesn't solve 100% of the problem, it does solve, say, 90% of the problem at 10% of the complexity. Private data can be added later, perhaps at a higher layer. For now, only public data. + +There's also no need to get rid of sites like Facebook, MySpace and other networks. Though, as Fitzpatrick notes this is far more likely to begin with smaller sites. + +>There are both cooperative sites and uncooperative sites. Almost universally every small site I've talked to wants to cooperate, realizing their graphs are incomplete and that's not their speciality... they just need the social graph to do their thing. They don't care where it comes from and they don't mind contributing their relatively small amount of data to making the global shared graph better. + +I would interested to see what prototypes Fitzpatrick has come up with, but so far he doesn't have anything publicly available. I'd also be interested to know what Compiler readers think about this plan -- is it a good idea? Does it solve the main problems of isolated social networks? Let us know your thoughts. + +[1]: http://bradfitz.com/social-graph-problem/ +[2]: http://www.wired.com/software/webservices/news/2007/08/open_social_net
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/flashh264.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/flashh264.txt new file mode 100644 index 0000000..00bf3c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/flashh264.txt @@ -0,0 +1,16 @@ +Adobe has announced a new version of its ubiquitous Flash media player with support for H.264 video, the compression component of MPEG 4 which is also found in HD media like Blu-Ray and HD-DVD. Along with the H.264 support, Flash Player 9 will also support High Efficiency AAC (HE-AAC), which Adobe claims allows audio tracks to be encoded at lower bit rate without sacrificing quality. + +The new Flash Player 9, dubbed Moviestar, will also take advantage of hardware acceleration in graphics cards and dual-core processors for improved performance -- particularly in fullscreen playback. + +The new version of Adobe Flash Player 9 will be available as a beta later today on Adobe +Labs. The final version is set to arrive "later in the fall," according to Adobe. + +With Flash already the de facto standard for online video -- it powers YouTube and other video sharing sites -- the addition of H.264 support could make high resolution video a reality on the web. + +Since Moviestar will be integrated into other Adobe other products like AIR (and apps built with AIR) and the upcoming Adobe Media Player, there's a good chance we'll soon see H.264 video flooding the market. Apple's Quicktime media player also supports H.264 encoding. + +With H.264 encoding already available in Adobe's desktop video editing software -- Premiere Pro and After Effects -- the company is clearly hoping to deliver video creators with a complete workflow, from camera all the way to the web. John Loiacono, senior vice president of Creative Solutions at Adobe, writes in a press release that Adobe wants to "allow creatives and developers to produce video and rich-media once, and then deploy that content across the widest array of distribution and playback environments." + +With Apple's new iMovie '08 frustrating many long-time video users who see the new version as a significant step backwards, Adobe could be poised to grab some people in the burgeoning "prosumer" video production market. + +For the rest of us, who content ourselves with being video consumers, the addition of H.264 to Flash Player 9, means that soon YouTube videos might not look so bad on that HD TV after all.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/grandcentral.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/grandcentral.txt new file mode 100644 index 0000000..1276d18 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/grandcentral.txt @@ -0,0 +1,19 @@ +GrandCentral has taken some heat in last few days for informing a limited number of users that their phone number will change on August 25. The e-mail some users received from GrandCentral cites "quality standards" as the reason behind the change, but for a company whose slogan is "one number for life" forcing number changes is bound to raise people's ire. + +In GrandCentral's defense, the service loudly proclaimed itself as a beta and openly warned users not to use their numbers for critical services. GrandCentral says the change effected 434 unlucky users. + +Here's GrandCentral's response to the recent number changes and customer complaints: + +>(1) One of our smaller underlying carriers (which we had been using prior to the Google acquisition), which had been reliably providing similar services for years (and provided numbers and connectivity to lots of other providers) sent us a notice that they'd be exiting certain markets and disconnecting some phone numbers in 30 days. This caught us by surprise and although we were not happy about this, there was no way we could stop them from doing this. + +>(2) We immediately began porting all of these numbers to a one of our larger carrier partners and we were able to get nearly all of these numbers ported successfully. + +>(3) Unfortunately, 434 phone numbers could not be ported over. + +>(4) Once we found this out, we immediately sent an email to these users letting them know that we had to change their numbers to another one in the same area code and we automatically added these numbers to their accounts. We provided a direct email link to help them with any issues or concerns they may have, let users choose alternative numbers more to their liking, and offered any other assistance that would help them. + +We review a lot of beta software, though we try to also point out the beta status in our reviews, but with many sites (GMail comes to mind) carrying the beta label far past the point of critical mass, sometimes it's easy to forget that beta really does mean things can go wrong and the software or web service really is "not ready for prime time use." + +For instance, The Consumerist writes: "we have recommended GrandCentral before, and we use it ourselves; but for Google to change user's phone numbers without consent defeats the entire purpose of GrandCentral." + +While that's true, and no doubt the move has done some serious damage to GrandCentral's image, it also goes to show how often we all ignore the beta warnings in a rush to embrace useful new services.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/handbrake.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/handbrake.jpg Binary files differnew file mode 100644 index 0000000..2effafb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/handbrake.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/handbrake.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/handbrake.txt new file mode 100644 index 0000000..2ebbc2a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/handbrake.txt @@ -0,0 +1,23 @@ +HandBrake, the multithreaded DVD to MPEG-4 ripper/converter, has been updated for Mac OS X and Windows. The new version, HandBrake v.09, features a redesigned interface on both platforms with the Windows version featuring a complete, ground-up rewrite. Curiously missing from the update is any mention of the Linux version, which appears to still be stuck at v.08. + +HandBrake's specialty is one-click conversion of DVDs to iPod and AppleTV compatible formats like MPEG4. + +Other changes [listed on the HandBrake site][3] include: + +>* User experience is improved through a re-envisioned Mac interface and a Windows interface that’s been rebuilt from the ground up. +* Picture quality is improved through better image scaling, better deinterlacing, new filters for denoising, deblocking, inverse telecine, and new presets devoted to high quality settings. +* Speed improvements due to updated copies of x264 and ffmpeg. This includes improved multi-threaded encoding for the iPod. +* Compatibility is improved through new presets for devices like the iPhone and PSP. As well, HandBrake now supports DTS as an audio source and has limited support for .VOB and .TS file containers as input. Most excitingly, HandBrake can now output to the Matroska (MKV) file container. +* Stability has been improved due to countless bug fixes. (Including audio drop and mp2 issues). HandBrake also has optional support for MP4 files larger than 4 gigabytes. + +For complete details about all the changes, see the [HandBrake Timeline][1]. + + + +HandBrake is indispensable for the heavy iPod video user and the update adds some welcome features in addition to those listed above. Particularly nice is a ability to set a default preset, which means you can set up your preferred conversion preferences and HandBrake will automatically apply them the next time you rip a movie. + +HandBrake is a must have for iPod video and AppleTV fans and the new update brings more the enough improvements -- recommended for all users, grab it from the [HandBrake site][2]. + +[1]: http://HandBrake.m0k.org/trac/timeline?from=08%2F19%2F07&daysback=120&changeset=on&update=Update +[2]: http://handbrake.m0k.org/?page_id=8 +[3]: http://handbrake.m0k.org/?p=53
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/handbrake1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/handbrake1.jpg Binary files differnew file mode 100644 index 0000000..4686c3f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/handbrake1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/iPhoneDjango.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/iPhoneDjango.jpg Binary files differnew file mode 100644 index 0000000..f33ce15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/iPhoneDjango.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/linus.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/linus.txt new file mode 100644 index 0000000..a6b00a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/linus.txt @@ -0,0 +1,38 @@ +The EFYTimes has posted a great interview with Linux founder Linus Torvalds with questions pulled from the Linux community around a the world. Torvalds is never one to shy from bold statements, in fact in the interview he mentions that he like "making strong statements, because I find the discussion interesting." + +But surprisingly this interview is fairly tame, with the notable exception of the discussion around the GPL v3 which Linus doesn't seem to like, saying "in the absence of the GPLv2, I could see myself using the GPLv3. But since I have a better choice, why should I?" + +However, despite a shortage of fireworks, the interview is a nice peak behind the scenes of kernel development and the Linux community in general. Here's some brief excerpts of some more notable questions, though I would encourage readers to click through and read them in context as well. + +>Q: Linux is free of cost and secure; yet, it has failed to become popular among desktop users. What are the reasons behind this? And what are your suggestions to make Linux more popular among the masses? + +Linus: I think that's just mainly an issue of inertia. It's really hard to make people change their behavior, and you shouldn't expect it to happen overnight. Linux has made huge inroads over the years, and if I actually think back how things were ten years ago -- where we are today is just incredible. And I think that will continue, just because open source really ends up being good for everybody. + +So I think a lot of it ends up being about education, in the sense of making people aware of the choices, and while that won't necessarily make people change on its own, it means that eventually they, at least, won't be afraid of Linux (because they've heard of it), and they might try it. And no, not everybody will be ready to switch, but I think we've seen that a lot of people do end up enjoying the advantages of open source. + +>Q: Is having so many distros a good or bad idea? Choice is fine, but one does not need to be pampered with choices. Instead of so many man hours being spent in building hundreds of distros, wouldn't it be easier to get into the enterprise and take on the MS challenge if people could come together and support fewer distros (1 for each use maybe)? What's your view on that? + +Linus: I think having multiple distros is an inevitable part of open source. And can it be confusing? Sure. Can it be inefficient? Yes. But I'd just like to compare it to politics: 'democracy' has all those confusing choices, and often none of the choices is necessarily what you 'really' want either, and sometimes you might feel like things would be smoother and more efficient if you didn't have to worry about the whole confusion of voting, different parties, coalitions, etc. + +But in the end, choice may be inefficient, but it's also what keeps everybody involved at least 'somewhat' honest. We all probably wish our politicians were more honest than they are, and we all probably wish that the different distros sometimes made other choices than they do, but without that choice, we'd be worse off. + +Q: ''Is this what computers have become,'' is the famous question Nokia has started asking in its N-series campaign. Is there any technology roadmap to make Linux rule the market of the next wave of computing devices, i.e., handhelds and mobiles? + +Linus: I do think that if there is something that will displace the traditional desktop computer, it will be mobile computing. Whether it will be just laptops (still the same basic architecture, just mobile), or the smaller handheld that will take over, I don't know. + +But it's definitely an area where Linux has the undeniable advantage of scaling across a much wider spectrum than any other operating system (i.e., Linux is on about 75 per cent of the top-500 supercomputers at the same time as it's being used by Nokia and Motorola in a cell phone form factor). + + +Q: The soon to be released Windows Longhorn is touted to be Microsoft's answer to the Linux threat, as Windows NT was for Novell in the 90s. Are there any improvements planned in Linux, keeping the technology advancements of Longhorn in mind? + +Linus: I actually don't worry about MS at all. Their strength is in their marketing, and in the (obvious) market share they have. They've never been all that interesting from a 'technical' angle. And since all I personally care about is the technology, I don't end up being all that interested in what MS does. + + + +Q: What do you think about Microsoft's efforts to sign cross-licensing deals with Linux distros like Novell, Xandros and Linspire? How is this going to affect the development of the kernel? + +Linus: I don't really have a hugely strong opinion on it. Business is business, and I don't get involved with it; I worry about the technology. Yes, software patents are certainly worrisome, but I also tend to think that people just overreact a bit whenever MS is involved, and that some of the shrill reactions on the Internet have been a bit over the top. + +Let's see what happens. + + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/skype.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/skype.txt new file mode 100644 index 0000000..2f0174d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/skype.txt @@ -0,0 +1,15 @@ +Skype is finally back online after a massive two-day outage which began on Thursday, August 16th and rendered the VoIP service useless for an estimated 220 million users. As we [reported on Friday][1], Skype has denied charges that the outage was the result of an attack, but the company delayed an official explanation until today. + +According to Skype the outage was caused by a massive number of users restarting their machines, which flooded the Skype network with login requests. Skype blames the restarts on Windows Update, presumably large numbers of users rebooting after installing this month's "Patch Tuesday" [Windows patches][2]. + +However, while the restarts may have triggered the problem, they were not in fact the problem. The issue that caused to outage was Skype's own software. According to a [statement on the Skype blog][3]: + +>The high number of restarts affected Skype’s network resources. This caused a flood of log-in requests, which, combined with the lack of peer-to-peer network resources, prompted a chain reaction that had a critical impact. + +>Normally Skype’s peer-to-peer network has an inbuilt ability to self-heal, however, this event revealed a previously unseen software bug within the network resource allocation algorithm which prevented the self-healing function from working quickly. Regrettably, as a result of this disruption, Skype was unavailable to the majority of its users for approximately two days. + +Skype has apologized for the outage, but it remains to be seen how the disruption will effect user's faith in the service. + +[1]: http://blog.wired.com/monkeybites/2007/08/skype-outage-bl.html +[2]: http://blog.wired.com/monkeybites/2007/08/patch-tuesday-m.html +[3]: http://heartbeat.skype.com/2007/08/what_happened_on_august_16.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/torvalds.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/torvalds.jpg Binary files differnew file mode 100644 index 0000000..27cde1e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/torvalds.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/wikipedialocal.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/wikipedialocal.txt new file mode 100644 index 0000000..705f3a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/wikipedialocal.txt @@ -0,0 +1,20 @@ + +Wikipedia is undeniably the most readily available encyclopedia, not to mention the fact that it's free, but despite being readily available it isn't always available -- no internet access, no wikipedia. Which is why Wikipedia periodically dumps its content so you can load it on your laptop and have a local copy. + +But building a local copy is a time consuming process involving the need for a local database and server set up. If you want to build a search index on that database it can take several days -- surely there's a better way. + +In fact, now there is. Wikipedia fan Thanassis Tsiodras has come up with a much more efficient way of installing and indexing a local Wikipedia dump. As tsiodras writes: + + Wouldn't it be perfect, if we could use the wikipedia "dump" data JUST as they arrive after the download? Without creating a much larger (space-wize) MySQL database? And also be able to search for parts of title names and get back lists of titles with "similarity percentages"? + +Why yes it would. And fortunately Tsiodras has already done the heavy lifting. Using Python, Perl, or Php, along with the Xapian search engine and Tsiodras' package, you can have a local install of Wikipedia (2.9 GB) with a lightweight web interface for searching and reading entries from anywhere. + +Complete instructions can be found [here][2]. I should note that this does require some command line tinkering, but the size and speed more than warrant wading through the minimal code necessary to get it up and running. + +Also, if you're a big Wikipedia fan, be sure to check out [our review of WikipediaFS][3] from earlier this year. + +[via [Hackzine][1]] + +[1]: http://www.hackszine.com/blog/archive/2007/08/wikipedia_offline_reader_put_a.html?CMP=OTC-7G2N43923558 +[2]: http://www.softlab.ntua.gr/~ttsiod/buildWikipediaOffline.html +[3]: http://blog.wired.com/monkeybites/2007/05/mount_wikipedia.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/zoho.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/zoho.txt new file mode 100644 index 0000000..e381f4e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Mon/zoho.txt @@ -0,0 +1,26 @@ +Zoho Writer, part of the popular Zoho Office suite, is now offering offline support. For the time being [offline mode in Zoho Writer][1] is limited to read-only mode, but Zoho says it's working on adding more features, including offline editing capabilities, "in the coming weeks." + +Zoho Writer's new offline functionality is built with Google Gears so users will need to have the [Google Gears browser plugin][4] installed. Once the plugin is running an option will appear in the Zoho menu to "Go Offline." The offline features work with Internet Explorer 6+ and with Firefox 1.5+. + +By default Zoho Writer will download fifteen documents, though clicking the arrow next to the "Go Offline" option will let you increase that number up to twenty five. The documents downloaded are determined by your sort order. + +Once the documents are downloaded you'll be redirected to the offline url. To access the offline content direct when you aren't connected to the internet, just point your browser to [http://writer.zoho.com/offline][1]. The offline work screen contains a link back to the online version. + +One of the frequent concerns from people using online office tools like the Zoho suite or Google Docs and Spreadsheets is that, without an Internet connection, they aren't accessible. But as this Zoho announcements demonstrates, tools like Google Gears are quickly removing the access limitations of online apps. + +While Zoho's offline functionality is currently limited and thus not all that useful, when offline editing capabilities are added Zoho will be well ahead of Google Docs and Spreadsheets and leaps and bounds beyond desktop offerings for those that value portability and collaborative editing. + +As for how Zoho managed to beat Google's own office suite to the market with offline functionality (albeit limited) using Google's own tools -- it's anybody's guess. Zoho says it plans to support and contribute to the open source [Google Gears project][5]. + +Google Gears, which we [wrote about back in May][3] when it launched, enables online software services like Zoho Writer to be used offline by adding the online component and its associated data to an offline cache on your PC. Google Reader features offline functionality through Google Gears. + +For more details on the Zoho Writer offline functionality and to see how it works, check out the video from Zoho: + +[1]: http://writer.zoho.com/offline +[2]: http://blogs.zoho.com/general/offline-support-comments-in-zoho-writer +[3]: http://blog.wired.com/monkeybites/2007/05/google_gears_br.html +[4]: http://gears.google.com/ +[5]: http://code.google.com/apis/gears/index.html + + +<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="370" id="viddler"><param name="movie" value="http://www.viddler.com/player/4889fb24/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/4889fb24/" width="437" height="370" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler" ></embed></object>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/Facebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/Facebook.txt new file mode 100644 index 0000000..3a75714 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/Facebook.txt @@ -0,0 +1,17 @@ +Facebook plans to unveil a new advertising scheme later this fall. According to a recent Wall Street Journal [report][1], Facebook is planning a system that will target ads based on the wealth of information people have placed in their Facebook profiles. + +The WSJ says that Facebook plans to target ads somewhat like Google's AdSense tool, but take advantage of user profile data such as "favorite activities and preferred music." Facebook tells the WSJ that its ad technology will "point the ads to the selected groups of people without exposing their personal information to the advertisers." + +The ads will apparently be inserted into the user's "news feed," and will run in addition to the various banners that surround the page. + +But here's where it gets really creepy, the WSJ's source say that Facebook's ad system will be able to "predict what products and services users might be interested in even before they have specifically mentioned an area." + +Essentially it sounds like Facebook plans to mine your profile for interesting tidbits of data which can be used to serve relevant ads and then compile that into its own profile that the system can use to predict what additional ads you might click. + +Back when I wrote that Facebook should [open up its walled garden][3], the number one response from readers was that they liked the fact that Facebook pages are limited in viewing scope, which makes me wonder how they'll react to having that walled garden opened up and extracted for the purposes of advertising. + +While Facebook may claim that the private data won't be revealed to advertisers, somehow that doesn't seem very comforting. Facebook users already have a [history of revolting][2] when things don't go their way, which leads us to predict the new ads will enjoy all the success of a lead balloon. + +[1]: http://online.wsj.com/article/SB118783296519606151.html +[2]: http://blog.wired.com/monkeybites/2006/09/facebook_yields.html?entry_id=1553092 +[3]: http://www.wired.com/software/webservices/news/2007/08/open_social_net
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/Streetviews.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/Streetviews.jpg Binary files differnew file mode 100644 index 0000000..a9aa48c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/Streetviews.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/cert.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/cert.jpg Binary files differnew file mode 100644 index 0000000..072188b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/cert.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/getthefacts.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/getthefacts.txt new file mode 100644 index 0000000..32d881e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/getthefacts.txt @@ -0,0 +1,16 @@ +Microsoft has taken down its controversial anti-Linux site, "Get The Facts" and replaced it with a [new kinder, gentler version][2] that only slags Linux distros which haven't bowed to the company's patent threats -- namely RedHat. + +The old site garnered a good deal of publicity when it was revealed that Microsoft tried to influence the analysts hired to perform "impartial" studies comparing Windows and Linux in order to show Microsoft offerings in a more favorable light. + +The new site, which is now called simply, Windows Server Compare, tones down the anti-Linux rhetoric, perhaps in deference to Microsoft's agreements with Novell, Xandros and others. + +Naturally the new site still paints Microsoft as clearly the winner in head-to-head comparisons, but really, who expects an impartial answer from Microsoft? + +Kudos to Microsoft for recognizing that the old site was a dinosaur and spread more ill-will in the Linux world than it did good cheer in the Microsoft world, but we can't help wonder what the point of the new site is? + +If you want impartial information about the pros and cons of open source versus Microsoft try a search engine. Or, even better, download some open source software and try it yourself, after all, it's free and you can always throw it away if it doesn't suit your needs. + +[via [ZDNet][2]] + +[1]: http://www.microsoft.com/windowsserver/compare/default.mspx +[2]: http://blogs.zdnet.com/microsoft/?p=670
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/iMovie.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/iMovie.txt new file mode 100644 index 0000000..b6fe0ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/iMovie.txt @@ -0,0 +1,28 @@ +Apple has released an update for the [recently announced iMovie '08][4]. Apple hasn't given many details about [the update][1], but the company says it solves some problems with iMovie's integration into .Mac's new Web Gallery feature. + +The update does not, however, address the complaints of many users that iMovie 08 is a step backwards from its predecessor. + +IMovie '08 (version wise it's iMovie 7) was a complete redesign of the iMovie program and has seen its fair share of user disappointment. David Pogue recently slammed the new iMovie in his review, saying "I can't remember any software company pulling a stunt like this before: throwing away a fully developed, mature, popular program and substituting a bare-bones, differently focused program under the same name." + +Similar sentiments can be found in Apple's [iMovie discussion forums][2] and numerous readers have e-mailed Compiler to tell us how much they dislike the new version. + +Judging by my experiments with both iMovie 7 and iMovie 6, I will agree that the new iMovie is more or less not iMovie at all, but an entirely new program designed for very a different set of tasks and audience. + +Apple says the iMovie is designed primarily for quickly throwing together a movie and some new features, like one-click export to YouTube, clearly indicate iMovie is not for the sophisticated video producer looking to fine tune edits and add extras like music. At the same time Michael tells me he was able to go from camera to YouTube in 15 minutes. Clearly iMovie 7 is good as at some things. + +The problem is, iMovie 7 *isn't* capable of many of the things. Based on comments here, posts in the Apple forums and e-mails sent to us, the three main contention points most users have with iMovie 7 are: + +>* No timeline. IMovie is (so far as I know) the only video editing software on the market that doesn't use a timeline metaphor for editing and arranging your clips. Consequently it's difficult to determine basic things like where you are in terms of the overall movie at any given point. + +* Audio editing is virtually non-existent. There's no multi track audio support, no manual audio controls in a scene, no ability to extract audio from a clip and the fade-out at the end of an audio clip can't be controlled. + +* iMovie 7 can't even import projects created with previous version. + +* And finally, no plugin support. There are dozens, possibly even hundreds of plugins from third part developers for iMovie 6, none of which work in iMovie 7. + +The good news though is that if you purchased iMovie '08, you can still get the previous version, as we've [mentioned before][3]. Or you could always go super old school, as one witty reader has suggested: "if I was living in Des Moines, Iowa in 1939 I would have more precise editing capabilities with my Kodak movies and some rusty farm tools." + +[1]: http://www.apple.com/support/downloads/imovie701.html +[2]: http://discussions.apple.com/forum.jspa?forumID=1194&start=0 +[3]: http://blog.wired.com/monkeybites/2007/08/apple-is-giving.html +[4]: http://blog.wired.com/monkeybites/2007/08/apple-debuts-il.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/streetviews.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/streetviews.txt new file mode 100644 index 0000000..6dc498e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/streetviews.txt @@ -0,0 +1,14 @@ +Google Maps Street View is a stunning display of highly detailed 360 degree views of American cities and hordes of people have poured over it looking for funny and sometimes disturbing things in the backgrounds of the images. But ever since its launch some privacy advocates have been criticizing Google for showing photographs of faces and license plate numbers. + +Yesterday, Google quietly changed it's policy on how the company deals with privacy complaints in Street Views. To address privacy concerns, shortly after the launch of Street Views, Google said that anyone who could identify themselves could ask for the image to be removed. + +Of course, that's not easy given the massive amount of data you'd have to sift through, which is why Google has quietly changed its policy -- now anyone can alert the company and have an image of a license plate or a recognizable face removed even if it isn't you. + +Google says the move is intended not just to protect privacy, but also the "clarify the intent of the product," as vice president of search products and user experience at Google, Marissa Mayer, put it recently at the ongoing Search Engine Strategies conference. + +CNet [reports][1] that Mayer says Google "looked at it and we thought that's really silly because that's not the point of this product. The purpose is to show what the stores look like, what houses look like, if someone says, 'Hey, there's a face here,' ... it doesn't matter whose face it is." + +While it may not have been Google's intent, that doesn't mean users don't love to dig through Street Views, for some highlights check out our earlier collection of the [best of Google Street Views][1]. + +[1]: http://blog.wired.com/27bstroke6/2007/05/request_for_urb.html +[2]: http://news.com.com/8301-10784_3-9764512-7.html?part=rss
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafiti.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafiti.txt new file mode 100644 index 0000000..8437ea0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafiti.txt @@ -0,0 +1,17 @@ +Microsoft recently released an experimental search product, dubbed [Tafiti][2], which combines the company's Live Search offering with Silverlight. According to Microsoft Tafiti, which means "do research" in Swahili, is "designed to help people use the Web for research projects that span multiple search queries and sessions by helping visualize, store, and share research results." + +Primarily Microsoft seems to intend Tafiti as a means of showing off Silverlight and indeed, Tafiti has a gorgeous and slick front end. Search results occupy the main portion of the frame and the right hand side holds a "shelf" where you can save search results via drag-and-drop. + + +On the left is a carousel which allows you to cycle through the various search result options -- Web, Images, etc -- which can also be saved. All of your saved search results can be shared through Windows Live Spaces. + +Tafiti has a great interface and actually makes Silverlight seem like a compelling platform, which is ostensibly the purpose of the project. But unfortunately Tafiti is tied to Live Search, which, let's face it, is a pretty poor search engine next to Google. In my tests Tafiti was dog slow and didn't return nearly as many relevant results as Google or Yahoo. + +And while Tafiti certainly delivers on the eye candy and interface design level, as Google has so decisively demonstrated, users just don't care about fancy interfaces when it comes to searching for things on the web -- we want speed and simplicity. + +Still, Tafiti is a nice preview of Silverlight and we're looking forward to seeing what else developers come up with. + +[via [Liveside][1]] + +[1]: http://www.liveside.net/blogs/main/archive/2007/08/21/microsoft-launches-tafiti-search-and-silverlight-experiment.aspx +[2]: http://www.tafiti.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafiti1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafiti1.jpg Binary files differnew file mode 100644 index 0000000..0fbc491 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafiti1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafitihead.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafitihead.jpg Binary files differnew file mode 100644 index 0000000..97b7c7c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafitihead.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafititree.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafititree.jpg Binary files differnew file mode 100644 index 0000000..303078f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/tafititree.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/youtube.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/youtube.txt new file mode 100644 index 0000000..a4e8c15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Thu/youtube.txt @@ -0,0 +1,16 @@ +<img border="0" alt="Youtube_logo_8" title="Youtube_logo_8" src="http://blog.wired.com/photos/uncategorized/youtube_logo_8.png" style="margin: 0px 0px 5px 5px; float: right;" />Predictably, YouTube's announcement about its new [in-stream video ad format][2] did not go over well with users. Responses to a post on the [company's blog][1] range from the typical "you've ruined your service" comments, to users wondering about revenue sharing options. + +Much of ire seems to be directed at this statement from YouTube: "If you choose not to click on the overlay, it will simply disappear, so that you're in full control of your YouTube experience." + +As a number of people point out, involuntarily being subjected to video ads is not "full control" over one's YouTube "experience." + +It would seem that many people prize ad-less content as one of the keys to the YouTube experience. User taminhthien writes: + +>Every crappy video site that has these ads sucks, I always thought great that YouTube doesn't have them. Good job, you just turned YouTube in yet another crappy video site. + +But despite some attempts at clever analogies like user PHPerik who writes, "it's like putting a billboard on Mona Lisa," most users seem to miss the part of the announcement where the ads are opt-in for the content producers and limited to YouTube's various content partners. + +Despite the initial outrage we believe most users will accept the new ads in the long run, though several competing video sites did claim to see a significant jump in new user registration following the YouTube announcement. + +[1]: http://www.youtube.com/blog?entry=rQpNsTzbgqM +[2]: http://blog.wired.com/monkeybites/2007/08/google-brings-n.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/bradfitz.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/bradfitz.jpg Binary files differnew file mode 100644 index 0000000..4e93f41 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/bradfitz.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/ffcampus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/ffcampus.jpg Binary files differnew file mode 100644 index 0000000..4bc35c8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/ffcampus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/flash.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/flash.jpg Binary files differnew file mode 100644 index 0000000..64b37e2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/flash.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/grandcentral.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/grandcentral.jpg Binary files differnew file mode 100644 index 0000000..9c7ed94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/grandcentral.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/zohooff.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/zohooff.jpg Binary files differnew file mode 100644 index 0000000..6471519 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/zohooff.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/zohooffline.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/zohooffline.jpg Binary files differnew file mode 100644 index 0000000..99ebc3d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/zohooffline.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/zohowriter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/zohowriter.jpg Binary files differnew file mode 100644 index 0000000..ee9a55e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Tue/zohowriter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/Streetviews.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/Streetviews.jpg Binary files differnew file mode 100644 index 0000000..a9aa48c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/Streetviews.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gearth.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gearth.txt new file mode 100644 index 0000000..d44c5b3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gearth.txt @@ -0,0 +1,29 @@ +It used to be if you panned up in Google Earth you saw pixelated sky and clouds, but no more, now the heavens are just a mouse click away. Google Earth has [unveiled][4] a new feature dubbed Google Sky, that brings constellations, star maps, Hubble telescope imagery and more. + +The new layers can be found in the latest version of Google Earth where you'll see a new button "Switch between Sky and Earth" in the toolbar. + +Sky layers are listed in the left side menu and include options like, Constellations, Backyard Astronomy, Hubble Showcase, The Moon, The Planets, User's Guide to Galaxies and Life of a Star. There's even some animations of planetary orbits. + +All in all the new Google Sky in an astounding amount of data packed into an easy to navigate interface -- well worth upgrading the Google Earth 4.2. + +But Google Earth doesn't have its head entirely in the clouds, there's two other noteworthy new layers. The first is Google Books, which mines the Google Books project data for geographical references and overlays Google Earth with little book icons which bring up the quotes and citation information. + +The [Google Lat Long Blog][2] describes it thusly: + +>For example, let's say that you're interested in Detroit, Michigan. After flying there in Google Earth, you'll find that one of the book icons is for "The Writings of Thomas Jefferson." Clicking on the book icon brings up the pop-up balloon with the following text snippet: + +>"With respect to the unfor-tunate loss of Detroit and our army, I with pleasure see the animation it has inspired through our whole country, ..." + +Regrettably, due to an overlap in place-names between the U.S. in Europe many of the books included clearly aren't referring to the areas Google's algorithms think they are (see screenshot below). + +But wait, that's not all. There's also a new [live traffic overlay][5] which draw on the same data used in Google Maps [recently unveiled traffic features][1]. Once you’ve turned on the traffic overlays, you'll have links to real-time traffic and conditions in select cities. + +Both the books and traffic overlays are available in previous versions of Google Earth, but for the Google Sky features you'll need to upgrade to the latest version. + + + + +[2]: http://google-latlong.blogspot.com/2007/08/google-book-search-in-google-earth.html +[1]: http://blog.wired.com/monkeybites/2007/02/google_maps_add.html +[4]: http://www.google.com/intl/en/press/pressrel/earthsky_20070822.html +[5]: http://google-latlong.blogspot.com/2007/08/real-time-traffic-in-google-earth.html diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gearthbooks.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gearthbooks.jpg Binary files differnew file mode 100644 index 0000000..75978d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gearthbooks.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gearthtraffic.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gearthtraffic.jpg Binary files differnew file mode 100644 index 0000000..06f75ed --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gearthtraffic.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gmapsembed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gmapsembed.jpg Binary files differnew file mode 100644 index 0000000..ae8b11a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gmapsembed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gsky.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gsky.jpg Binary files differnew file mode 100644 index 0000000..404ed0f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/gsky.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/iPhone.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/iPhone.txt new file mode 100644 index 0000000..2aadd0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/iPhone.txt @@ -0,0 +1,9 @@ +The iPhone has received another small update, which brings the current software up to version 1.0.2. The latest update includes in the illuminating words of Apple: "Bug Fixes." No further details are available. + +To update just connect your iPhone and fire up iTunes which will offer to download and install the new software. + +But keep in mind that, as with the previous update, v1.0.2 validates the current iPhone software, which means if you've installed any cool hacks you'll be forced to do a complete restore, wiping out the hacked functions. On the bright side all the hacks seem to still function, which means Apple isn't actively blocking them, at least so far. + +Another gotcha to watch out for -- make sure you download or otherwise back up any images you've taken with the iPhone's camera before you restore otherwise they'll be lost. + +As for what the update does, no one seems to have identified anything noteworthy, which may well be why Apple hasn't said anything. diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/iphoneupdate.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/iphoneupdate.jpg Binary files differnew file mode 100644 index 0000000..b501e36 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/iphoneupdate.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/mapsembed.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/mapsembed.txt new file mode 100644 index 0000000..3751895 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/mapsembed.txt @@ -0,0 +1,19 @@ +Google Maps is now offering some YouTube-style embed code which finally gives non-programmers an easy way to add maps to nearly any webpage. The [new code][1] can be found under the "Link to this page" option at the top of any map on the site. + +The resulting map is fully interactive with pan and zoom controls as well as map, satellite and hybrid view options. Each embedded map also contains a link back to the original Google Maps page. The embedded maps can be customized to any size and if you have markers on your map, they will show up in the embedded version as well. + +The only catch is that the Google Maps code uses an iFrame to load content which doesn't work on nearly as many sites as YouTube's Flash embed code. Many hosted pages -- like MySpace -- often don't allow content that use iframes, which means this new embed code isn't going to help you. + +Still, for many, this opens up a whole new way to use maps. Previously embedding Google maps in your page required some programming skills and you needed to register for an API key, which prevent casual users from embedding maps in blogs and other places. + +Interestingly, Yahoo, which uses Flash for the latest version of its mapping service, and could -- at least theoretically -- offer an embeddable Flash movie that would work anywhere, thus far hasn't offered anything of the kind. + +Here's an example of the the Google Maps embed code in action: + + +<iframe width="425" height="350" frameborder="no" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&hl=en&geocode=&q=Wired+San+Francisco&ie=UTF8&om=1&cid=37781066,-122395523,9473187990209702968&s=AARTsJrTuwtWb_DgPWxhe8cEbXUX5taOhA&ll=37.790727,-122.3913&spn=0.02374,0.036478&z=14&iwloc=A&output=embed"></iframe><br/><a href="http://maps.google.com/maps?f=q&hl=en&geocode=&q=Wired+San+Francisco&ie=UTF8&om=1&cid=37781066,-122395523,9473187990209702968&ll=37.790727,-122.3913&spn=0.02374,0.036478&z=14&iwloc=A&source=embed" style="color:#0000FF;text-align:left;font-size:small">View Larger Map</a> + +[Sidenote for the nerds amoung us: if you look at the code below you'll see the URL that the iframe is pulling in, with a little cut-n-paste you can create a link to a pure map page [like this][2].] + +[1]: http://www.google.com/intl/en/press/annc/embed_maps.html +[2]: http://maps.google.com/maps?f=q&hl=en&geocode=&q=Wired+San+Francisco&ie=UTF8&om=1&cid=37781066,-122395523,9473187990209702968&ll=37.790727,-122.3913&spn=0.02374,0.036478&z=14&iwloc=A&source=embed
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/supr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/supr.jpg Binary files differnew file mode 100644 index 0000000..8e42289 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/supr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/suprnova.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/suprnova.txt new file mode 100644 index 0000000..fdb004f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/suprnova.txt @@ -0,0 +1,15 @@ +The Pirate Bay has made good on its promise to bring back the wildly popular bittorrent site Suprnova.org -- Suprnova is indeed [back up and running][2] with some one million torrents already in its database. + +Interestingly, where most torrent sites include a quick link to download popular torrent clients, the newly re-launched Suprnova offers a link to download your torrent via BitLet, which we looked at a while back. + +BitLet is a Java-based in-browser torrent client that makes it easy for the uninitiated the download a torrent and BitLet is certainly getting some high profile exposure thanks the Suprnova. + +As part of the relaunch there's also a new site, [Suprbay][3], which is hosting a sort of cross-site forum for both Suprnova and Pirate Bay fans. + +As is typical of them, the Pirate Bay team is never one to let a press release out without some choice words for the music industry. The relaunch of Suprnova [includes the following taunt][1]: + +>This is how it works. Whatever you sink, we build back up. Whomever you sue, ten new pirates are recruited. Wherever you go, we are already ahead of you. You are the past and the forgotten, we are the internet and the future. y'arr! + +[1]: http://suprnova.org/news +[2]: http://suprnova.org +[3]: http://suprbay.org/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/youtubeads.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/youtubeads.txt new file mode 100644 index 0000000..8d206c8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.20.07/Wed/youtubeads.txt @@ -0,0 +1,17 @@ +Google is rolling out a new ad scheme for YouTube videos which the company claims is far more effective than the ads currently in use. The new YouTube ads, which have been running in limited test form for several months, feature a semi-transparent animated "overlay" at the bottom of the player window. + +The ads show up for about 10 seconds and clicking inside the ad box will insert an "in-video" ad over the top of the current movie. If you decide to watch the ad the original video is paused until the ad finishes or you dismiss it with the close button. + +For the time being Google says the adverts will be limited to the videos produced by Youtube's various content partners -- user-generated content will remain ad-free. + +Arguably much of YouTube's popularity stems from the fact that it was fast and had no ads, which Google seems to recognize given its hesitation to put ads in user uploaded content. So while your movies may be safe for now, don't expect that to last forever. + +However, were Google to begin running ads in user videos, it seems likely that users could expect some sort of revenue sharing model similar to those offered by other video hosting sites that insert ads into your content. + +Another thing that may cause Google some pause when adding ads to user clips is that advertisers could find their content running inside clips they don't want to be associated with -- something that recently plagued Facebook's ad service. + +In other YouTube news, Google is now using YouTube as the primary source of video included in Google News. Bringing YouTube content from partners like CBS into Google News is part of Google's continued efforts to integrate the video service with other Google offerings. + +[via [NYTimes][1]] + +[1]: http://www.nytimes.com/2007/08/22/technology/22google.html?ex=1345435200&en=0625d3df747e5b63&ei=5090&partner=rssuserland&emc=rss
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/flickrsync.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/flickrsync.jpg Binary files differnew file mode 100644 index 0000000..094624a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/flickrsync.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/flickrsync.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/flickrsync.txt new file mode 100644 index 0000000..4257e2e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/flickrsync.txt @@ -0,0 +1,22 @@ +[FlickrSync][5] is a free, open source application for monitoring and uploading photos to Flickr. We've looked at various means of syncing a folder with your Flickr account, including Flickr's own [improved web uploader][4], a [Firefox extension][2] and a [Python script][1], but FlickrSync provides a nice GUI interface. + +Perhaps the nicest feature in FlickrSync is the ability to match a local folder to a Flickr set, which means you can auto-add images to existing set as well as create new sets from local folders. + +Other useful features include the ability to define Flickr permissions for each folder, previews of your uploads before applying them and the ability to synchronize image metadata like title, description, tags and geo data (it appears that this support extends to Vista’s built-in tagging and caption system, though I haven't tested that). + +Using FlickrSync is fairly straightforward. Once you've installed it, you'll need to authorize it to access your Flickr account and then select the folders on your computer that you want to synchronize with Flickr. Once you've selected the photos and folders you want to +synchronize and set the permissions and metadata just hit sync and you're done. + +FlickrSync is Windows only (it works on Vista and XP) and can be downloaded [here][6] (note that it is a beta, but I haven't had any problems). + +If the Flickr hounds out there know of something similar for Mac or Linux users drop a link in the comments. + +[via [CyberNetNews][3]] + + +[1]: http://blog.wired.com/monkeybites/2007/05/auto_upload_ima.html +[2]: http://blog.wired.com/monkeybites/2007/06/upload_to_flick.html +[3]: http://cybernetnews.com/2007/08/30/cybernotes-synchronize-photos-with-flickr/ +[4]: http://blog.wired.com/monkeybites/2007/08/flickrs-new-web.html +[5]: http://flickrsync.freehostia.com/ +[6]: http://www.codeplex.com/flickrsync/Release/ProjectReleases.aspx?ReleaseId=6319
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/gadgets.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/gadgets.jpg Binary files differnew file mode 100644 index 0000000..c6836ac --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/gadgets.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/google.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/google.txt new file mode 100644 index 0000000..ed393a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/google.txt @@ -0,0 +1,15 @@ +Google is quietly adding new features to Google Gadgets. The company recently [announced][1] a new developer feature called PubSub which allow Gadgets to share information between them. PubSub is a beta release and so far there aren't many gadgets using it (just Google's example actually). + +Part of the appeal of widgets (or Gadgets as Google insists on calling them) is that they're small applications which encapsulate and present small chunks of data. But sometimes data models don't lend themselves to a single widget. A Search widget, for instance, would be a good place for a single data stream to be broken into multiple widgets, say, a search box and then a widget with video results, one with photos, etc. + +Google claims the new PubSub feature will allow developers to "split up various pieces of information amongst multiple gadgets and allow them to communicate with each other to paint a bigger picture." + +The release is a beta and if you play around with Google's sample gadget you'll notice some bugs, there's a full list available [here][1] and the developer documentation can be found [here][2]. For the time being Pubsub only works with gadgets in iGoogle and lacks support for Safari though they should work in Firefox or IE. + +To be honest I'm not sure I see this contributing much to the growth of Google gadgets, but perhaps I'm wrong. If you have ideas about possible use cases for this feel free to drop them in the comments. + +[via [Google Operating System][3]] + +[1]: http://groups.google.com/group/Google-Gadgets-API/browse_thread/thread/accca944f8347630/a8688b6a52a141f2 +[2]: http://www.google.com/apis/gadgets/pubsub.html +[3]: http://googlesystem.blogspot.com/2007/08/google-gadgets-that-talk-with-each.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/kickstart.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/kickstart.jpg Binary files differnew file mode 100644 index 0000000..23d4408 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/kickstart.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/kickstart.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/kickstart.txt new file mode 100644 index 0000000..e72701d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/kickstart.txt @@ -0,0 +1,18 @@ +The rumors mills are reporting that Yahoo may launch a new social networking service for college students dubbed "KickStart." Rather than go after the dominance of Facebook, Yahoo appears to trying to create a LinkedIn-style network for recent graduates looking for a fast track to viable employment. + +Harrison Hoffman over at CNet, who got a [look a the potential new service][2], seems impressed by what Yahoo has done in trying to offer students a way to present themselves to employers. + +Yahoo's idea is three-fold. First, connect students with alumni of their schools who work for the company the student is interested in -- that's the main social networking aspect. + +The second portion of KickStart is a usual profile page, but in this case the profile is tweaked to act as an informal resume. The final part of KickStart is the University page, which, as CNet notes, is a bit like a Facebook "network" page. + +Not having seen the site I can't really comment, but the concept certainly sounds good -- particularly the idea of connecting graduating students with alumni who want to help them get an in with companies (note to the kids, skills and smarts are part of it, but people you know will open more doors than any degree ever will). + +The question is can Yahoo make this work? The company has struggled in the social networking realm (remember [Yahoo 360][1]? Didn't think so.), all of Yahoo's successful social site tend to be acquired (think Flickr and del.icio.us) rather than homegrown. + +There is also the chance that this idea will never see the light of day. A Yahoo representative tells CNet: + +>We're continually checking the pulse on customer response to potential concepts on a case-by-case basis. Sometimes our research leads to the development of new product offerings, but not all concepts we research are formally developed and rolled out to our larger audience. + +[1]: http://360.yahoo.com/login.html?.done=http%3A%2F%2F360.yahoo.com%2F&.src=360 +[2]: http://blogs.cnet.com/8301-13515_1-9768418-26.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/knight.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/knight.jpg Binary files differnew file mode 100644 index 0000000..9c4af8c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/knight.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/ncb.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/ncb.txt new file mode 100644 index 0000000..8476047 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/ncb.txt @@ -0,0 +1,15 @@ +NBC Universal has decided not to renew its contract with Apple, meaning that come December popular NBC shows like Battlestar Galactica and The Office will no longer be available via the iTunes Store. NBC is currently the number one supplier of digital videos to the iTunes Store with more than 40 percent of downloads. + +The NBC announcement follows an earlier decision by Universal music to also [shun the iTunes Store][1]. [According to the New York Times][2], NBC is unhappy with the iTunes price structure and wants to offer bundled deal, i.e. buy a movie you want and get a free TV show you don't care about. For some reason NBC believes bundles are what consumers really want. + +However, it's also likely that NBC Universal wants to ensure that Apple doesn't gain the same dominance over television and video downloads that it currently enjoys with music. + +What NBC seems to fail to understand is that a large part of the iTunes Store success comes from its dead simple pricing structure -- you don't have to buy overpriced bundles full of content you don't care about just to get the content you want. + +If you still need those last few episodes of Heroes, better grab them soon. Of course there's still ninety days for NBC Universal and Apple to work out their differences, but with the upcoming release of [Hulu][3], NBC Universal's own stab (in partnership with Fox) at online television it seems unlikely that NBC will change its mind. + +Neither NBC nor Apple have commented on the decision. Anybody want to bet torrents for NBC shows are about to see a huge jump in traffic? + +[1]: http://blog.wired.com/monkeybites/2007/08/universal-hates.html +[2]: http://www.nytimes.com/2007/08/31/technology/31NBC.html?ex=1346212800&en=fef607b6154e6135&ei=5090&partner=rssuserland&emc=rss +[3]: http://www.hulu.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/office.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/office.jpg Binary files differnew file mode 100644 index 0000000..74a9d02 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/office.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/viacom.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/viacom.txt new file mode 100644 index 0000000..32bd81a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Fri/viacom.txt @@ -0,0 +1,19 @@ +Viacom recently decided to take hypocrisy to untold new levels when it decided to file a DMCA takedown notice against a YouTube user after using the users clip without permission. Periodically the Viacom owned VH1 runs a show where it pulls in top clips from YouTube, without, mind you, asking the users permission or even notifying them that it is using the clip. + +Of course Viacom can claim fair use for the clips since they add commentary and use the clips to illustrate it. The irony is Viacom almost always tries to deny fair use rights when others do the exact same thing to Viacom content. + +Typically most people are happy for the exposure the VH1 show provides. One user was so happy he taped the show and uploaded it to YouTube, prompting Viacom to file a cease and desist letter to YouTube claiming that they own the clip. + +The clip in question is from user Christopher Knight and is part of Knight's campaign for the Board of Education. + +The question is, was Knights posting of the video also fair use? Knight posted the video to YouTube and then [embedded it on his blog with commentary][2], arguably also qualifying as fair use. The point of contention will likely end up being that the YouTube posting does not include commentary. + +This is hardly the first time copyright "defenders" have quite possibly violated copyrights themselves. An RIAA website used plagiarized code, more recently a site defending against the open access movement was[discovered using images from the Getty Database with the watermarks still on them][1], and the list goes on. + +Hopefully the Electronic Frontier Foundation will take up the cause at some point and perhaps this can help Google who's currently embroiled in a nasty $2 billion lawsuit with Viacom. + +For the curious, Political Soup is [hosting the banned VH1 clip][3]. + +[1]: http://yro.slashdot.org/article.pl?sid=07/08/27/2228203 +[2]: http://theknightshift.blogspot.com/2007/07/clip-of-vh1s-web-junk-20-featuring-my.html +[3]: http://politicalsoup.tv/rockinghamradio/chrisknightvsviacom.wmv
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/WGA.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/WGA.jpg Binary files differnew file mode 100644 index 0000000..3a5929e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/WGA.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/bloglines.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/bloglines.jpg Binary files differnew file mode 100644 index 0000000..206fc53 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/bloglines.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/bloglines.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/bloglines.txt new file mode 100644 index 0000000..84fcd07 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/bloglines.txt @@ -0,0 +1,9 @@ +<p>Bloglines, one of the earliest online RSS readers has just launched a <a href="http://beta.bloglines.com/">new beta version</a> with a revamped interface and some very nice Ajax features that give it the feel of the desktop application.</p> + +<p>The most useful of the flashy new features is the drag-and-drop feed management. Organizing your feeds in the right hand column is no a matter of simply dragging them where you want them, all without a page refresh or heading into the setting panel as you would in Google Reader.</p> + +<p>Also new are some different reading layouts — Quick view, much like Google Readers List view, Full view, like Google Readers expanded view, and a unique view dubbed three pane which organizes your reading experience much like the three-pane view of an e-mail client.</p> + +<p>When Google Reader first launched it was widely accused of borrowing its feature set from Bloglines, but while Google Reader quickly expanded its initial offerings with unique features, Bloglines has remained largely unchanged for some time.</p> + +<p>That said the service offers several key features not found in Google Reader, most notably a search function, but also recommendations, e-mail subscriptions and public profiles. And together with the improved interface, Bloglines could be a compelling competitor once again.</p> diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/contentaware.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/contentaware.txt new file mode 100644 index 0000000..ac5179b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/contentaware.txt @@ -0,0 +1,9 @@ +Content Aware Image Resizing. + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/qadw0BRKeMk"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/qadw0BRKeMk" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +Here's your Monday video fix, a presentation on some content aware image resizing software which has some truly jaw-dropping capabilities. Dr. Ariel Shamir and Dr. Shai Avidan (of Adobe) have developed a way to resize images using something they call "seam carving" which lowers distortion in images. + +Granted, it sounds kind of boring, but the results are stunning. As Arrington [writes][1] in a post on Techcrunch, I want this to make its way into Photoshop, though personally I'm willing to wait. + +[1]: http://www.techcrunch.com/2007/08/27/i-want-this-in-photoshop-immediately/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/fullview.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/fullview.jpg Binary files differnew file mode 100644 index 0000000..2d04450 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/fullview.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/georgeholtz.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/georgeholtz.jpg Binary files differnew file mode 100644 index 0000000..70c2955 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/georgeholtz.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/iSubway.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/iSubway.jpg Binary files differnew file mode 100644 index 0000000..5d330fb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/iSubway.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/iphoneunlocking.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/iphoneunlocking.txt new file mode 100644 index 0000000..b0d9e37 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/iphoneunlocking.txt @@ -0,0 +1,24 @@ +The iPhone unlocking game heated up considerable over the weekend with no less than three people/groups claiming to have unlocked the coveted Apple device. The first and [most impressive iPhone unlock][1] comes from a New Jersey teenager and involves soldering, but most definitely works. + +Shortly after that came word from Engadget that the somewhat questionable outfit iPhone Sim Free had [succeeded with a software only SIM unlock][2] (Engadget claims to have an iPhone that was successfully unlocked). + +Engadget has also reported that iphoneunlocking.com has a [software SIM unlock solution][4], though personally I think this one is a scam. For one thing iphoneunlocking.com is thrown together Wordpress blog that looks like it took about thirty seconds to set up. But most tellingly the group has failed to release their software when they said they would. + +The group claims: "The sale of unlocking codes is on hold after the company received a telephone call from a Menlo Park, California, law firm at approximately 2:54 a.m. this morning (GMT)." + +The idea that a lawyer would be so concerned about the software as to call at three is doubtful. Couple this with the fact that there is very little legal ground for suing over unlocking software and you have all the makings of a good scam. + +The DMCA doesn't cover unlocking phones, in fact it explicitly okays the practice which means AT&T would have little legal ground to stand on and the company is probably aware of that. + +Among the exemptions added to the DMCA last year is one that covers: "Computer programs in the form of firmware that enable wireless telephone handsets to connect to a wireless telephone communication network, when circumvention is accomplished for the sole purpose of lawfully connecting to a wireless telephone communication network." + +What about the iPhone Sim Free hack? Engadget is pretty adamant that it works, the iPhone Sim Free folks unlocked one of their iPhones, which led Engadget to throw some bold tags around this statement: "Again: we can confirm with 100% certainty that iPhoneSIMfree.com's software solution completely SIM unlocks the iPhone, is restore-resistant, and should make the iPhone fully functional for users outside of the US." + +Engadget also claims it survives software updates and even a full restore, which would make it impressive, but for the time being, iPhone Sim Free don't have anything publicly available for testing -- in other news, we hear the new Duke Nukem Forever is going to kick ass. + +If you're looking to unlock your iPhone today, you'll have to grab a soldering iron and give George Holt's SIM cracking method a try. + +[1]: http://hosted.ap.org/dynamic/stories/I/IPHONE_UNLOCKED?SITE=WIRE&SECTION=HOME&TEMPLATE=DEFAULT +[2]: http://www.engadget.com/2007/08/24/iphone-unlocked-atandt-loses-iphone-exclusivity-august-24-2007/ +[3]: http://blog.iphoneunlocking.com/?p=15 +[4]: http://www.engadget.com/2007/08/24/iphone-software-unlock-competition-begins-to-heat-up/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/neooffice.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/neooffice.txt new file mode 100644 index 0000000..e687706 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/neooffice.txt @@ -0,0 +1,14 @@ +NeoOffice, a native OS X port of the popular OpenOffice suite, has been updated to version 2.2.1 with new features including support for OS X's native Spell Checker and Address Book programs. + +Also new in this release is experimental support for Microsoft Office 2007 Excel and PowerPoint file formats, which gives you the ability to open, edit, and save most files in the Office 2007 Word, Excel, and PowerPoint formats. The new Excel and PowerPoint support uses the open source [ODF add-on][4] behind the scenes to work its conversion magic, but it isn't perfect. Your results will depend on the complexity of the document in question. + +NeoOffice, which we [looked at in some detail][2] when version 2.0 came out earlier this year, offers Mac users all the functionality of OpenOffice without having to run the X11 environment or spend tons of money on Microsoft's Office for Mac 2004. + +With the next version of Office for Mac [delayed until at least January 2008][3] it's worth giving NeoOffice a try. Unless you're an incredibly demanding user, NeoOffice will probably hand your office suite needs with ease. + +NeoOffice is free and open source. You can grab the latest version from [the NeoOffice site][1]. + +[1]: http://www.neooffice.org/neojava/en/download.php +[2]: http://blog.wired.com/monkeybites/2007/01/mac_month_neoof.html +[3]: http://blog.wired.com/monkeybites/2007/08/microsoft-offic.html +[4]: http://odf-converter.sourceforge.net/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/quickview.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/quickview.jpg Binary files differnew file mode 100644 index 0000000..26b93a9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/quickview.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/three-pane.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/three-pane.jpg Binary files differnew file mode 100644 index 0000000..cda995b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/three-pane.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/torrentspy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/torrentspy.jpg Binary files differnew file mode 100644 index 0000000..3a186a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/torrentspy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/wga.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/wga.txt new file mode 100644 index 0000000..3119f17 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/wga.txt @@ -0,0 +1,16 @@ +Microsoft is blaming a server error for inadvertently labeling legitimate copies of Windows XP and Vista as pirated software. Thousands of users found their purchased copies of Windows labeled as pirated software by Microsoft's Windows Genuine Advantage validation system over the weekend. + +Any Vista system fingered during the episode was stripped of some features, including the operating system's Aero graphical interface and DirectX support. + +After the issue cropped up, Microsoft's WGA program manager, Phil Liu, posted a note to the WGA forums announcing a fix, though the cause of the issue remains a mystery. + +If you were hit by the glitch, head to the [WGA site][1] and click the "Validation Now" link to restore your copy of Windows to full functionality. + +Understandably customers were somewhat miffed at the disruption and the [WGA forums][2] are littered with irate posts we can't reprint here. Still, it seems somewhat remarkable that, if WGA is relying on a centralized server set up, as it appears it is, that this hasn't happened before. + +And perhaps the WGA team should consider setting up a better way for customers to respond to potential outages and invalidation, something a bit more sophisticated than forum posts seems like a good idea. + + +[1]: http://www.microsoft.com/genuine/ +[2]: http://forums.microsoft.com/Genuine/ShowForum.aspx?ForumID=1004&SiteID=25 +[3]: http://forums.microsoft.com/Genuine/ShowPost.aspx?PostID=2054756&SiteID=25
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/ymail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/ymail.jpg Binary files differnew file mode 100644 index 0000000..fd2d124 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/ymail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/ymail.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/ymail.txt new file mode 100644 index 0000000..172d5fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Mon/ymail.txt @@ -0,0 +1,13 @@ +The new version of Yahoo Mail has officially dropped the beta status and offers a number of new features like the ability to send text messages to a cell phone making it the first major web-based e-mail service offer such functionality. + +Under the "Compose" option at the top of the Yahoo Mail sidebar there will be a new option to sent your message via SMS to number in India, Canada, the Philippines and the United States. To use it you enter a contact's name, type in the mobile phone number, and the send the message. SMS threads appear in talk bubbles next to your chat avatar in the Yahoo Mail window. + +As with large scale upgrades of this sort, Yahoo will be rolling things out gradually over the next six weeks so, like me, you may not see the new features on your account for a little while. + +In addition to the SMS, the out-of-beta version of Yahoo Mail features some much need keyboard shortcuts (n for new message, c for chat, etc). Other changes include support for IM chats with people using Windows Live Messenger as well as better search options and speed improvements. + +So how does the the new Yahoo Mail stack up against GMail? It depends what you're looking for, at this point, aside from interface design, the main differences are that Yahoo offers the SMS option and GMail offers free POP access and e-mail forwarding (Yahoo offers POP and forwarding, but you'll have to pony up $20 for the privilege). + +If you're a heavy SMS user Yahoo Mail is the way to go, if you're looking to centralize all your e-mail addresses in one spot I'd recommend GMail. + + diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/hplinux.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/hplinux.jpg Binary files differnew file mode 100644 index 0000000..0c4586e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/hplinux.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/hplinux.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/hplinux.txt new file mode 100644 index 0000000..14f74f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/hplinux.txt @@ -0,0 +1,14 @@ +The world's largest PC manufacturer, Hewlett-Packard, has reportedly announced it will start selling Linux-based PCs aimed at the consumer market. For the time being it appears the HP Linux models will only be available in Australia, with prices starting at $AU600 (just under $500 USD). + +The new machines will use AMD Athlon 64 X2 dual-core processors and come equipped with Red Hat Enterprise Linux 5 Desktop, which comes with OpenOffice, Firefox and Evolution (e-mail) pre-installed. + +Max McLaren, General Manager at Red Hat in Australia, [tells APC Mag][1], who broke the news, that "with the cost of proprietary systems continuing to rise, Red Hat Enterprise Linux 5 Desktop minimizes acquisition and ongoing deployment costs, leaving more money and resources for other high-value projects and tasks." Which is corporate-speak for "Linux is cheaper than Vista." + +The tech support will come from Red Hat's end in a variety of options, though HP hasn't said whether additional support for the included free software will be part of the package. + +With Dell already on the Linux bandwagon by popular customer demand (Ubuntu Linux in that case) Linux seems to finally be making in-roads on the desktop, not just with the nerds, but everyday consumers as well. + +[via [Desktop Linux][2]] + +[1]: http://www.apcmag.com/7034/hp_launches_red_hat_linux_pc +[2]: http://www.desktoplinux.com/news/NS2655594862.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/mswga.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/mswga.txt new file mode 100644 index 0000000..ab48e3d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/mswga.txt @@ -0,0 +1,18 @@ +Microsoft has released more details about the recent [Windows Genuine Advantage server problems][2] that left as many as 12,000 legitimate users unable to validate their software. Microsoft says outage is not the correct term, rather the validation failure was the result of human error. + +Alex Kochis, a Microsoft senior product manager for WGA, writes in [a post to the WGA blog][1] that preproduction code was accidentally released into the wild. + +>First, activations and validations were both affected when preproduction code was accidentally sent to production servers. Second, while the issue affecting activations was fixed in less than thirty minutes (by rolling back the changes) the effect of the preproduction code on our validation service continued after the rollback took place. + +As for the outage, not being an outage, it would seem that had the servers simply failed the problem would not have occurred. Kochis says the WGA system is designed to default to genuine if the service is disrupted or unavailable. "In other words," he writes, "we designed WGA to give the benefit of the doubt to our customers... if our servers are down, your system will pass validation every time." + +However, since the servers were still up and running, albeit on the wrong software, they began to responded incorrectly, thus knocking out Vista's Aero features as well as some anti-virus protections and other programs. + +While Kochis stopped short of an official apology he does write: "I also want everyone to know that I am personally very disappointed that this event occurred. As an organization we've come a long way since this program began and it's difficult knowing that this event confused, inconvenienced, and upset our customers." + + + + + +[1]: http://blogs.msdn.com/wga/archive/2007/08/28/so-what-happened.aspx +[2]: http://blog.wired.com/monkeybites/2007/08/server-error-la.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/operamini.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/operamini.txt new file mode 100644 index 0000000..440aad9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/operamini.txt @@ -0,0 +1,19 @@ +Opera has rolled out a new beta of Opera Mini version 4. Beta 2 adds a wealth of new features and will install without alongside beta 1 without overwriting any files (which is nice touch, I wish more beta software would do that). + +<a href="http://www.operamini.com/beta/features/">Opera Mini</a> is the smallest browser in the Opera family. The company also makes the more robust <a href="http://www.opera.com/products/mobile/">Opera Mobile</a> for Symbian S60 and Windows Mobile handsets, as well as its flagship product, the full-featured <a href="http://www.opera.com/">Opera for desktops</a>. We looked at the first beta a couple months back and found it offered some nice features and the new version only adds to the list. + +Here's a brief rundown on what's new in beta 2: + +>* NEw full screen mode +* Browse in landscape mode. Jealous of the iPhone? Opera Mini may not rotate when you turn your phone, but a quick shortcut key ('#' and '*') makes it easy to change the screen orientation +* Add the search engine of your choice to the start page, just like the Opera desktop browser. +* A number of optimizations for BlackBerry phones including a native menu +* Supports SSL connections for banking sites, Amazon and more (though we would advise caution nonetheless) +* Improved support for small fonts, cookies and more. + +The new beta also features a number of bug fixes and speed improvements. If you aren't in the mood to drop $500 on an iPhone, but you want a full fledged browser on your phone check out Opera Mini, it just might be what you're looking for (of course if you have a Windows Mobile or Symbian device you'll want use Opera Mobile. + + + +[1]: http://blog.wired.com/monkeybites/2007/06/opera_mini_4_be.html +[2]: http://www.operamini.com/beta/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/resizingvid.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/resizingvid.txt new file mode 100644 index 0000000..9a434c5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Thu/resizingvid.txt @@ -0,0 +1,15 @@ +Earlier this week we posted a [remarkable video][3] of an intelligent method of resizing images and joked that we'd love to see it in the next version of Photoshop. Now Adobe Photoshop Senior Product Manager John Nack [writes on his blog][1] that Adobe has in fact hired Shai Avidan, the co-developer of the resizing technology. + +Of course, as Nack cautions, that doesn't mean the features will be in the next revision of the Adobe suite, but it does mean the potential is there. + +Adobe has also grabbed a number of other researchers working on some fascinating photography technology including Wojciech Matusik, who has helped develop a camera lens system that can photograph an image [simultaneously at four different apertures][2]. + +So when will these technologies make it into Photoshop? Naturally Adobe is non-committal, but certainly it has the talent in place to bring some cool new features to already pretty impressive Photoshop package. + +Here's the video again in case you missed it: + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/qadw0BRKeMk"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/qadw0BRKeMk" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://blogs.adobe.com/jnack/2007/08/imaging_heavy_h.html +[2]: http://people.csail.mit.edu/green/multiaperture/ +[3]: http://blog.wired.com/monkeybites/2007/08/stunning-video-.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/digg.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/digg.txt new file mode 100644 index 0000000..e32baa7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/digg.txt @@ -0,0 +1,14 @@ +Social News site Digg has revamped its interface and now includes video submissions on the front page. The redesign includes streamlined navigation, some new icons and more customization features. + +Overall Digg's new look seems a bit toned down and a little softer with some of the colors in the (gasp) pastel range. The new navigation makes finding your way around the site a little easier, especially for newcomers. + +Among the small changes is the ability to bury a story with a single click (rather than two) and without citing a reason for the bury. A post on the [Digg blog][1] says this change is designed to "help us get more feedback from people about what they don’t like (by making it easier to bury) so we can make more accurate determinations about unpopular content." + +There have also been some subtle changes to the page and story summary layouts and one not so subtle change -- there are now much bigger more prominent ads on the page. + +Missing from the redesign is the much requested "Images" section, which Digg founder Kevin Rose has [previously promised][2] will go live sometime in October. + +In the absence of the dedicated Images section, the new Digg design is primarily just that -- a design tweak. Videos are now part of the front door, but otherwise the makeover is largely skin deep. Still, the new look is cleaner and could help make Digg more appealing to a wider audience. + +[1]: http://blog.digg.com/?p=92 +[2]: http://blog.digg.com/?p=93
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/diggnew.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/diggnew.jpg Binary files differnew file mode 100644 index 0000000..c32673d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/diggnew.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/face.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/face.jpg Binary files differnew file mode 100644 index 0000000..56016ff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/face.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/facebook.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/facebook.txt new file mode 100644 index 0000000..0e638ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/facebook.txt @@ -0,0 +1,11 @@ +The Facebook F8 platform is still young and thus has some kinks to work out. Already abusive applications have been developed that spam both you and your friends should you add them to your profile. Facebook is beginning to take steps to prevent such behavior with some changes to the F8 platform. + +A blog post from Dave Morin on the Facebook developers site claims "with the upcoming changes, we hope to shift the balance more in favor of good apps." He goes on to add "we will continue to block applications which behave badly and we will continue to iterate on our automated spam detection tools." + +Under the updated platform, apps will no longer be able to put an "Add this app" button in the users profile without the developer's agreement to it being displayed. Additionally, email functionality is being removed from the notifications.send method of the Facebook API in an attempt to eliminate misleading notifications and spam. For the time being Facebook says developers will have to do without e-mail functionality, though Facebook intends to add a safer version back in at some point. + +Other changes include making it impossible for applications to hide things from profile owners. Some mischievous developers had been using this features to serve ads to your friends when they view your profile page, but then hide the ads from you when you look at the same page. + +The other major change is new interface for inviting your friends to use an app. Under the changes the invite friends portion of an application will offer more fine-grained controls over which friends the app sends requests to. + +Regrettably the changes still provide an API to pull your data out of Facebook and use it elsewhere.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/gFace.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/gFace.txt new file mode 100644 index 0000000..2a2cd14 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/gFace.txt @@ -0,0 +1,13 @@ +Google has rolled out a Facebook application that lets you share your search results with friends. The [new app][2] puts a Google search page in your Facebook account and whenever you search each result has a "Share" link next to it. + +By default your search queries are automatically included in your Facebook mini-feed so your friends can see what you've been looking up. + +The new app makes use of Google's AJAX Search API, which we've [written about before][1]. + +Unfortunately, as of this writing, the new Google app appears to be broken. The app page has the usual warning for non-working Facebook apps -- "there are still a few kinks Facebook and the makers of Google are trying to iron out." + +[via [Google Operating System][3]] + +[1]: http://blog.wired.com/monkeybites/2007/02/google_books_se.html +[2]: http://apps.facebook.com/google/ +[3]: http://googlesystem.blogspot.com/2007/08/google-facebook-app.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/ms.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/ms.txt new file mode 100644 index 0000000..66cc9c4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/ms.txt @@ -0,0 +1,18 @@ +Microsoft has revealed a few more details on the [Windows Genuine Advantage server failure][3] over the weekend, which left users of legitimate copies of Windows without access to Aero, ReadyBoost, Windows Defender or Windows Update. + +Microsoft is now reporting that the outage affected less than 12,000 users, which is just a small fraction of worldwide users, but still a healthy amount of peeved customers and many more undoubtedly less sure about the system. + +Alex Kochis, a Microsoft senior product manager for WGA, [writes in a post to the WGA blog][1] that Microsoft first learned of the outage "through a combination of posts to our forum and customer support." That Microsoft learned of the problem from users rather than from its own system would seem to indicate that the WGA servers lack proper system monitoring tools. + +It would seem that Microsoft's did not have a backup in place for the WGA servers, which makes it all the more remarkable that this hasn't happened before. + +In addition to possible shortcomings in the WGA server setup, the incident has highlighted another issue with WGA, which is the means by which users can get help. With its current setup, users are limited to reporting issues through the general customer support lines and the WGA forums. + +Interestingly while Kochis writes that Microsoft wants to "emphasize that one bad customer experience is one too many and that we're committed to learning from this experience and working to prevent this type of event from occurring again," the company doesn't seem to have offered an apology to users. It might be meaningless, but it would be nice if Microsoft could at least admit they screwed up, the way Skype did when [its network recently went down][4]. + +As we mentioned yesterday, if your system was affected by the WGA outage, be sure to [head over to the WGA site][2] and click "Validate Now." + +[1]: http://blogs.msdn.com/wga/archive/2007/08/27/update-on-validation-issues.aspx +[2]: http://www.microsoft.com/genuine/ +[3]: http://blog.wired.com/monkeybites/2007/08/server-error-la.html +[4]: http://blog.wired.com/monkeybites/2007/08/windows-update-.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/scplugin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/scplugin.jpg Binary files differnew file mode 100644 index 0000000..6c07d60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/scplugin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/subv.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/subv.jpg Binary files differnew file mode 100644 index 0000000..abe4ec7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/subv.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/svn.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/svn.txt new file mode 100644 index 0000000..a034c23 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/svn.txt @@ -0,0 +1,14 @@ +Mac users jealous of the excellent Subversion support in the Windows-only app [TortoiseSVN][4], need covet no longer. [SCPlugin][1] does for the Mac OS X Finder what TortoiseSVN does for Windows -- provides easy-to-use access to Subversion repositories without the need to jump over to a separate application. + +I've been looking for something that would apply the Mac user experience to Subversion for some time (currently I use BBEdit for accessing Subversion files, it works but it's a little cumbersome) and SCPlugin, while not perfect, is the closest I've seen. + +The site claims that v0.7, is "now ready to be your one-and-only Subversion interface." Whether or not that's true for everyone depends on your working habits, but it does provide any easy way to access files from the Finder. + +Worth noting is that SCPlugin has the addition of a repository browser listed as one of its possible future developments, which could help make Subversion on a Mac even more Mac-like. Of course, depending on how it's setup, the coming Time Machine features in OS X 10.5 could eliminate the need for an outside versioning software. + +[via [Lifehacker][2], who also have an excellent [guide to setting up a personal home Subversion server][3] if you've never taken the plunge.] + +[1]: http://scplugin.tigris.org/ +[2]: http://lifehacker.com/software/featured-mac-download/integrate-subversion-with-finder-with-scplugin-293854.php +[3]: http://lifehacker.com/software/subversion/hack-attack-how-to-set-up-a-personal-home-subversion-server-188582.php +[4]: http://tortoisesvn.net/about
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/torrentspy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/torrentspy.jpg Binary files differnew file mode 100644 index 0000000..3a186a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/torrentspy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/torrentspy.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/torrentspy.txt new file mode 100644 index 0000000..069bba6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/torrentspy.txt @@ -0,0 +1,25 @@ +TorrentSpy, a bittorrent search engine, has decided to block U.S. IP addresses from using the site. The move come in response to TorrentSpy's ongoing lawsuit with the MPAA. Back in June a judge ordered the site to begin logging user information and turn it over to the MPAA. Because doing so violates TorrentSpy's privacy policy, the company has [elected to ban affected users][3] rather than track them on the site. + +Visiting TorrentSpy from a U.S. IP address will pull up a page with the following note: + +>Sorry, but because you are located in the USA you cannot use the search features of the Torrentspy.com website.Torrentspy's decision to stop accepting US visitors was NOT compelled by any Court but rather an uncertain legal climate in the US regarding user privacy and an apparent tension between US and European Union privacy laws. + +TorrentSpy is appealing the court ruling, but for the time being it has decided to block US users rather than give up any user personal data to the MPAA. + +Savvy users will of course note that by using a proxy service like [anonymouse.org][4] U.S. users can still access TorrentSpy content. + +But the issue is not so much access to the site, rather, the potential long term effects of the case. The data harvesting requested by the MPAA and okayed by the judge could set a precedent that compels your ISP, search engine and a whole host of other services to log your activities as well. + +As Fred von Lohmann of the Electronic Frontier Foundation [writes][2], "A court would never think to force a company to record telephone calls, transcribe employee conversations, or log other ephemeral information. There is no reason why the rules should be different simply because a company uses digital technologies." + +EFF Staff Attorney Corynne McSherry also adds that "this unprecedented ruling has implications well beyond the file sharing context. Giving litigants the power to rewrite their opponent's privacy policies poses a risk to all Internet users." + +When the TorrentSpy case was first announced over a year ago, von Lohmann [warned][1] that its implications extended well beyond just one bittorrent tracker and could have a chilling effect on the internet as a whole. + +>The important question raised by the TorrentSpy lawsuit: what's the difference between a "good" index and a "bad" index, and is that a distinction that copyright law can effectively make? In 1998, when Congress passed the DMCA's "safe harbor" provisions, it seemed to be saying that indexes should be shielded from copyright claims, so long as they implemented a "notice-and-takedown" procedure. The TorrentSpy suit (as well as the MP3Board.com lawsuit) suggests that the entertainment industry wants to renegotiate that bargain in court. The result could have important implications not just for torrent indexes, but for all online index and search services. + + +[1]: http://www.eff.org/deeplinks/archives/004518.php +[2]: http://www.eff.org/news/archives/2007_06.php +[3]: http://tspy.blogspot.com/2007/08/torrentspy-acts-to-protect-privacy.html +[4]: http://anonymouse.org
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/vistasp1.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/vistasp1.txt new file mode 100644 index 0000000..ccea638 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/vistasp1.txt @@ -0,0 +1,13 @@ +Yes Virginia it's true, there is a Vista SP1 and, according to CMP Channel, David Zipkin, senior product manager in the Windows Client group at Microsoft, says a beta will be available "in a few weeks." + +The announcement brings to an end months of speculation and leaked software on bittorrent (where supposed betas of Vista SP1 have been circulating for several weeks). + +Although Microsoft has updated Vista, many users continue to wait for SP1 before taking the upgrade plunge. According to the CMP article SP1 will address problems with device drivers and application compatibility issues, though there was no specific mention of the Vista audio bug that's affected many people. + +And don't expect Vista SP1 to be like an XP service pack -- packed with new features. Zipkin says, "Windows XP SP1 was a departure from what we like service packs to be. Vista SP1 is about improvements to the user experience and enhancing existing capabilities." + +The show stopping quote in the article though is Zipkin's admission that some users are having problems with Vista. Taking euphemisms to a new level, Zipkin says: "we're aware that people are having some variety in their experiences with Windows Vista." + +So what can you expect from SP1? So far there aren't many details available, but Vista SP1 will expand the coverage of the Bitlocker drive encryption and feature some changes to Patchguard, the security tool that's designed to stop malicious code from operating at the kernel level. + +Beyond that Microsoft isn't talking. You'll just have to wait a few weeks for the beta release to get more details.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/youtube.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/youtube.txt new file mode 100644 index 0000000..a33756d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/youtube.txt @@ -0,0 +1,16 @@ +Attention mash-up hounds, the youTube API has been changed. Google has [converted the YouTube API][2] to use the Google data protocol (GData) so you can now access YouTube using the same toolbox as other GData services. + +The new [YouTube GData API][1] replaces to the old REST/XML-RPC methods, though Google says the old API will continue to be supported for the next year. + +Similar to the old, the new API offers read-only access to user profiles, videos uploaded and videos bookmarked by user. In addition to that you can now access subscriptions, video comments, related videos, playlists and search results. + +The default output of GData is an Atom feeds so its possible to use the new API to subscribe to just about anything in your favorite RSS/Atom reader. However, if you prefer there are some other return formats including JSON. + +Perhaps the best news for developers is that with GData behind YouTube, you now have access to all the [GData Client libraries][3], including those for PHP, Java, Python and more. + +Though the old REST/XML-RPC API will continue to work through August 30th, 2008, Google recommends upgrading your application sooner, rather than later. Check out the handy [migration guide][4] for more details. + +[1]: http://code.google.com/apis/youtube/developers_guide_protocol.html +[2]: http://apiblog.youtube.com/2007/08/new-youtube-api-released-into-wild.html +[3]: http://code.google.com/apis/gdata/clientlibs.html +[4]: http://code.google.com/apis/youtube/migration.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/zoho.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/zoho.txt new file mode 100644 index 0000000..075a4ab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Tue/zoho.txt @@ -0,0 +1,15 @@ +Zoho has taken the first steps toward integrating the various applications in the online office suite into a single cohesive whole. [Zoho Start][1], as the new integrated setup is known, creates a common page from which you can easily access all your Zoho apps. + +Previously with Zoho if you wanted to move from Writer to Notebook or any other app, you needed to head to a different URL, but Zoho Start lets you get at everything from a single page. + +By default Zoho Start opens with a 'My Documents' tab listing all the files you've uploaded or created with Zoho -- documents, spreadsheets and presentations. You can organize these by folder, tag share and export them, all the features of most Zoho apps in one centralized interface. + +On the far right side of the page is a drop down menu that allows you to open the various Zoho apps in new tabs. The right hand portion of the page can be filled up with horizontal tabs for the various Zoho apps, making it easy to move between apps, documents and even your contacts list without ever opening a new URL. + +From what I can tell the apps are loaded into the page via an iFrame. + +Zoho Start essentially encapsulates what savvy users probably already did with browser tabs -- that is, open the apps they needed, one per tab. The only thing missing in the new setup are some keyboard shortcuts for jumping between tabs. + +It would also be nice if there were an option to have Zoho Start remember which tabs you had open, which doesn't seem to be possible at the moment. + +[1]: http://start.zoho.com/
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/fare.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/fare.jpg Binary files differnew file mode 100644 index 0000000..b47d0e5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/fare.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/farecast.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/farecast.jpg Binary files differnew file mode 100644 index 0000000..1dc4598 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/farecast.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/farecast.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/farecast.txt new file mode 100644 index 0000000..bb1b248 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/farecast.txt @@ -0,0 +1,13 @@ +Farecast, the airfare price prediction site, has expanded its coverage and price prediction tools to a [new beta service for hotels][1]. For the launch the new hotel price prediction work in the top 30 U.S. destinations and pull on data from partner sites like Orbitz, Cheaptickets, and ReserveTravel, as well as Farecast's own data. + +The results for a hotel search are displayed on a color-coded map with price and other details. Red pins indicate good deals, while blue one stand for over-priced results. Clicking on a hotel will display a graph of prices over time -- particularly the fluctuation on either end of your intended stay. The data is a nice Ajax overlay that also provides photos and reviews (when available). + +One thing to keep in mind when using the new hotel service, Farecast's definition of the best deal, does not always mean the cheapest price. For instance, if a normally $500 a night hotel is offering rooms at $250 while a normal room at another hotel has no discount, but is $150 a night Farecast will flag the $250/night hotel as the better "deal." + +Unlike the airfare component of the service, Farecast's hotel listing aren't so much predictions as they are indication of the local market. Much of the time it's difficult, if not impossible, to tell when you're paying too much for a room since you generally don't know the local market. + +But with Farecast's new tool you can get an idea of the market at a glance and when combined with more traditional tools -- like a hotel reviews -- Farecast's hotel price finder should help you save money on the rooms you need. + +Now if they would just expand their airfare predictions to the international market, they would be my one-stop reservations destination on the web. + +[1]: http://www.farecast.com/hotels diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/faredetails.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/faredetails.jpg Binary files differnew file mode 100644 index 0000000..afbeaf9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/faredetails.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/iphoto.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/iphoto.txt new file mode 100644 index 0000000..fc29493 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/iphoto.txt @@ -0,0 +1,8 @@ +Apple pushed out a minor update to its [recently released iPhoto '08][2] yesterday afternoon. Apple says [the update addresses][1] "issues associated with publishing to .Mac Web Gallery, rebuilding thumbnails, and editing books." There are also a a number of other unspecified minor issues fixed in the new release. + +I noticed the update this morning and went ahead and applied it, but so far I haven't seen anything noticible. The app does seem a bit faster, but I suspect that has more to do with the fact that my iPhoto Library is limited to iPhone images rather than the massive (and very slow) library I once had. + +Still, if you're a .Mac user or were thinking of creating a book in iPhoto I recommend the upgrade. + +[1]: http://www.apple.com/support/downloads/iphoto702.html +[2]: http://blog.wired.com/monkeybites/2007/08/apple-debuts-il.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/iphoto08.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/iphoto08.jpg Binary files differnew file mode 100644 index 0000000..bda4961 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/iphoto08.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/s.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/s.jpg Binary files differnew file mode 100644 index 0000000..6ac96de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/s.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/zohostart.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/zohostart.jpg Binary files differnew file mode 100644 index 0000000..9423921 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/08.27.07/Wed/zohostart.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/deliciouspre.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/deliciouspre.jpg Binary files differnew file mode 100644 index 0000000..0c66b77 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/deliciouspre.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/gbook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/gbook.jpg Binary files differnew file mode 100644 index 0000000..2f3974a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/gbook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/iToner.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/iToner.jpg Binary files differnew file mode 100644 index 0000000..39b8267 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/iToner.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/ipodtouch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/ipodtouch.jpg Binary files differnew file mode 100644 index 0000000..3c8b81c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/ipodtouch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/mylibrary1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/mylibrary1.jpg Binary files differnew file mode 100644 index 0000000..0cb3978 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/mylibrary1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/mylibrary2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/mylibrary2.jpg Binary files differnew file mode 100644 index 0000000..b2f5327 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/mylibrary2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/psx_screenshot.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/psx_screenshot.jpg Binary files differnew file mode 100644 index 0000000..17e1151 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/psx_screenshot.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/scvmm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/scvmm.jpg Binary files differnew file mode 100644 index 0000000..ffda21a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/scvmm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus.jpg Binary files differnew file mode 100644 index 0000000..e3c4e88 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus1.jpg Binary files differnew file mode 100644 index 0000000..46fa9df --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus2.jpg Binary files differnew file mode 100644 index 0000000..81fdd0a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus3.jpg Binary files differnew file mode 100644 index 0000000..2473bec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Fri/zohobus3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/greadericon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/greadericon.jpg Binary files differnew file mode 100644 index 0000000..c516db6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/greadericon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/grfeedcount.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/grfeedcount.jpg Binary files differnew file mode 100644 index 0000000..ae4b863 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/grfeedcount.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/grsearchoptions.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/grsearchoptions.jpg Binary files differnew file mode 100644 index 0000000..6c696aa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/grsearchoptions.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/grsearchresults.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/grsearchresults.jpg Binary files differnew file mode 100644 index 0000000..3f8fa74 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/grsearchresults.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/itunes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/itunes.jpg Binary files differnew file mode 100644 index 0000000..5f915c6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Thu/itunes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/ZZ790F1F87.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/ZZ790F1F87.jpg Binary files differnew file mode 100644 index 0000000..af3125e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/ZZ790F1F87.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/cert.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/cert.txt new file mode 100644 index 0000000..cdd507d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/cert.txt @@ -0,0 +1,26 @@ +Vint Cert On Bandwidth and the Future of Internet Television. + +Echoing what almost everyone is thinking these days, [Vint Cerf][3], one of the founders of the internet, and now Google's vice president, thinks that television is dead and internet video delivery will soon be the norm. + +However, unlike many, Cerf doesn't think the bandwidth issues, frequently stated as a potential stumbling block for video over the web, will be a problem. Cerf thinks that a combination of faster connections, improved network technology and not "streaming" content will alleviate any issues. + +With every new IPTV type of service at least one broadband provider protests it saying their networks can't handle the strain (the latest are Tiscali, BT and Carphone Warehouse, all British ISPs that don't like the BBC's plan to stream content). + +But as Cerf points out streaming is only one small, and perhaps not even important, part of delivering video over the internet. In fact, and I would tend to agree, what most people want is a download now, watch later system, not streaming content. + +We want to download and store content just as we did with a TiVo, or, in the old days, a VCR. + +The chief problem with this scheme is that the current content distributers (networks) don't want you to download and store their content. But as Fake Steve Jobs recently [noted][1] in wake of the recent NBC Apple fallout, the days of networks are numbered: + +>It's over now. Your business model was a historical anomaly built on scarcity of a valuable resource and the willingness of a small group of network operators to not slit each other's throats and to collaborate in exploiting the content producers. + +Fake Steve or not, the argument is valid. So perhaps it's a question of who is more likely to come around to the idea of widespread video downloads -- the ISPs or the Networks? My bet is the former. + +Below is a video of Cerf speaking at a recent conference and [here's a link][2] to an interview with the Guardian where he talks specifically about the bandwidth issue. + + +<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/04sBy3_B3hE"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/04sBy3_B3hE" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> + +[1]: http://fakesteve.blogspot.com/2007/09/boring-rant.html +[2]: http://www.guardian.co.uk/technology/video/2007/sep/03/vint.cerf?gusrc=rss&feed=technology +[3]: http://en.wikipedia.org/wiki/Vinton_Cerf
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/eudora.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/eudora.jpg Binary files differnew file mode 100644 index 0000000..d7d15f2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/eudora.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/eudora.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/eudora.txt new file mode 100644 index 0000000..eafcd4f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/eudora.txt @@ -0,0 +1,24 @@ +Eudora, one of the earliest and much revered desktop e-mail clients, has been reborn under the Mozilla Thunderbird umbrella. The new beta version of Eudora 8 and the Penelope add-on are [available for download from the Mozilla site][2]. + +The new Eudora/Penelope project is the result if Qualcomm's decision to open source the code for Eudora when the company announced it would no longer continue development of the e-mail client. At the moment the Eudora client is essentially Thunderbird with an Eudora skin and keyboard shortcuts, but the roadmap promises to bring additional features over from Eudora in the future. + +Existing Eudora users will be happy to see that the new client should be able to import your mail store without issue and the interface and menu layout should look more or less similar to the last version of Eudora. + +The [Penelope extension][1] (which works with Eudora and Thunderbird) provides new icons and sound files as well as familiar key mapping, icons, toolbar layout and column layout. + +If you're a Thunderbird user, Eudora 8 has some features you might appreciate, such as the ability to add any menu item to the toolbar. Also note that if you do use Thunderbird, Eudora will recognize and user your existing Thunderbird settings. Eudora 8 also supports Thunderbird add-ons or at least it should. I had some problems using the Lightning extension -- YMMV. + +Eudora 8 works with both POP and IMAP e-mail accounts, but, like Thunderbird, doesn't support Microsoft Exchange (though there are some plug-ins the purport to do the job). + +The developers of Eudora/Penelope would like everyone to know that Eudora isn't an attempt to compete with Thunderbird, rather it's meant to compliment it. + +>Whereas "Eudora" is a branded version of Thunderbird with some extra features added by the Eudora developers, "Penelope" is an extension (also called an "add-on") that can be used with either Eudora or Thunderbird. The Eudora installer includes the corresponding version of Penelope along with it so there is no need to install Penelope if you are installing Eudora. Most features in Penelope can be accessed when used with Thunderbird, but there are a few that require Eudora in order to work correctly and it's not something that gets tested. + + +For many Eudora was the first real GUI-based e-mail client and it's nice to see it continue in a new open source form, but at the same time many of those same people may have moved on to popular web-based clients. Still, for desktop e-mail users missing the golden days of Eudora, you're solution has arrived. + +Keep in mind that the new Eudora 8 is a beta release so, as always, proceed with caution. + + +[1]: http://wiki.mozilla.org/Penelope +[2]: http://wiki.mozilla.org/Penelope_Releases
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/eudoraicon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/eudoraicon.jpg Binary files differnew file mode 100644 index 0000000..6792b9c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/eudoraicon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/gearthflight1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/gearthflight1.jpg Binary files differnew file mode 100644 index 0000000..50d4d67 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/gearthflight1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/gearthflight2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/gearthflight2.jpg Binary files differnew file mode 100644 index 0000000..6805e19 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/gearthflight2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/geeasteregg.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/geeasteregg.txt new file mode 100644 index 0000000..7a8cc1d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/geeasteregg.txt @@ -0,0 +1,21 @@ +It would seem that the latest version of Google Earth, which, [as we mentioned][5], includes the new Google Sky features, also includes a huge [Easter Egg][4] -- a flight simulator. + +To activate the simulator you'll need the latest version of Google Earth. Open the app (be sure to check out Google Sky if you haven't), click somewhere in the main map window and press Crtl+Alt+A (Mac users Apple+Option+A) and you should see the dialogue window pictured below. + +To use the Flight simulator just choose an aircraft and select an airport from the drop down list. A new window will open and you'll have a cockpit view of your chosen aircraft. + +To actually fly it would help to have a joystick, though you can control the aircraft with these [keyboard shortcuts][1]. That said, it's really hard to control the aircraft (unless you happen to adept at flight simulators). + +Marco Gallotta, who discovered the Easter egg, has [some tricks in his post][3]: + +>Moving on though, you can get a quick start by holding Page Up for a few seconds to increase to maximum thrust (thrust meter is the left bar of the lower-left meters). Once you've accelerated to a sufficient velocity use the arrow keys to take-off. The keys are in reverse as one would expect with any flight simulator, so use the down arrow to take-off. When you've gained enough altitude then stabalise the aircraft to a straight flight path. It can be rather tricky to get the hang of as the controls are quite sensitive." + +Once you're activated flight simulator you can return to it at any time using a new "Enter Flight Simulator" item in the Tools menu. + +[via [Digg][2]] + +[1]: http://earth.google.com/intl/en/userguide/v4/flightsim/index.html +[2]: http://digg.com/software/Google_Earth_Flight_Simulator_2 +[3]: http://marco-za.blogspot.com/2007/08/google-earth-flight-simulator.html +[4]: http://en.wikipedia.org/wiki/Easter_egg_%28virtual%29 +[5]: http://blog.wired.com/monkeybites/2007/08/space-the-final.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/opera95.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/opera95.jpg Binary files differnew file mode 100644 index 0000000..00b9b2d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/opera95.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/opera95.txt b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/opera95.txt new file mode 100644 index 0000000..ca4ac5c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Tue/opera95.txt @@ -0,0 +1,29 @@ +Opera has taken the wraps of the new version 9.5, with an alpha preview release that boasts some impressive new features including the much improved Kestrel rendering engine. Kestrel, the new version of the rendering engine behind Opera 9.5, is already in the wild as part of [Opera Mini][4], as well as the Wii's Internet Channel browser. + +Kestrel is significantly faster than any other browser I've used. I don't have any official benchmarks to compare, but [go ahead and test the 9.5 alpha][3] -- it's fast, damn fast. + +But the new release isn't just about speed, there's a [host of new features][2], both in the UI and behind the scenes, that promises the next version of Opera will be an impressive release. + +Perhaps most notable for web developers is much improved CSS rendering capabilities including support of CSS 3 features that have yet to make it into other popular browsers (for what it's worth, Opera is only browser I have that passes all the [CSS 3 selectors test][1]). + +The complete list of changes and new features can be found for each system (<a href="http://snapshot.opera.com/windows/w950a1.html">Windows</a><br /><a href="http://snapshot.opera.com/mac/m950a1.html">Mac</a><br /><a href="http://snapshot.opera.com/unix/u950a1.html" >UNIX</a>), but the highlights include: + +>* Performance +* Full history search +* Improved site compatibility +* Access for everyone +* Improved platform integration +* Preview of bookmark and Speed Dial synchronization +* Improved Content blocking options +* Mac GUI changes/improvements. Opera 9.5 looks much better on a Mac, and conforms to the Apple Human Interface Guidelines. + +The full history search is perhaps the most immediately useful of the new features and one of those things you'll wonder how you did without once you experience it. Unlike most browser history searches, which look at the URLs and sometimes titles of the pages you have visited, Opera's full history search searches the actual content of the Web pages you have visited to pull up relevant results. + +Other notable new features include a context menu option to open the current page in any other browsers on your system and some significant improvements to the built-in mail client such as faster IMAP performance and an improved indexing and storage back end. + +The new alpha release is meant merely for testing and you shouldn't overwrite your existing copy of Opera, but it provides a nice preview of what's to come. So far Opera has not released any information about when the final version of 9.5 will arrive. + +[1]: http://www.css3.info/selectors-test/test.html +[2]: http://my.opera.com/desktopteam/blog/2007/09/04/go-and-get-opera-9-5-alpha-3 +[3]: http://www.opera.com/products/desktop/next/ +[4]: http://blog.wired.com/monkeybites/2007/08/new-opera-mini-.html
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/facebook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/facebook.jpg Binary files differnew file mode 100644 index 0000000..4d6ff16 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/facebook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/iToner.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/iToner.jpg Binary files differnew file mode 100644 index 0000000..792b383 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/iToner.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/mars1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/mars1.jpg Binary files differnew file mode 100644 index 0000000..9dd4d9e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/mars1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/mars2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/mars2.jpg Binary files differnew file mode 100644 index 0000000..3fab91d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/mars2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/marsediticon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/marsediticon.jpg Binary files differnew file mode 100644 index 0000000..4d4067a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/marsediticon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/podworks.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/podworks.jpg Binary files differnew file mode 100644 index 0000000..334bc40 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.03.07/Wed/podworks.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/almost.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/almost.jpg Binary files differnew file mode 100644 index 0000000..dd4de6a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/almost.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/gimp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/gimp.jpg Binary files differnew file mode 100644 index 0000000..d7df56e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/gimp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/mediadefender.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/mediadefender.jpg Binary files differnew file mode 100644 index 0000000..b58c3ec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/mediadefender.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/minimap.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/minimap.jpg Binary files differnew file mode 100644 index 0000000..aed6fae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/minimap.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/minimap1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/minimap1.jpg Binary files differnew file mode 100644 index 0000000..4546a42 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/minimap1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/minimap2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/minimap2.jpg Binary files differnew file mode 100644 index 0000000..ca01e15 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/minimap2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/roatan.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/roatan.jpg Binary files differnew file mode 100644 index 0000000..995b33d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Mon/roatan.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/ccc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/ccc.jpg Binary files differnew file mode 100644 index 0000000..c5ac270 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/ccc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/ccc1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/ccc1.jpg Binary files differnew file mode 100644 index 0000000..6c43d90 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/ccc1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/eclipse.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/eclipse.jpg Binary files differnew file mode 100644 index 0000000..66cfb4f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/eclipse.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/omac2008.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/omac2008.jpg Binary files differnew file mode 100644 index 0000000..a4a11af --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/omac2008.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/smiley.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/smiley.jpg Binary files differnew file mode 100644 index 0000000..8500074 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/Wed/smiley.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ZZ4C990F77.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ZZ4C990F77.jpg Binary files differnew file mode 100644 index 0000000..e87f340 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ZZ4C990F77.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/adober.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/adober.jpg Binary files differnew file mode 100644 index 0000000..5279cca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/adober.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/amdad.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/amdad.jpg Binary files differnew file mode 100644 index 0000000..46f86bb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/amdad.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-malware.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-malware.jpg Binary files differnew file mode 100644 index 0000000..dad5530 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-malware.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-malware.tiff b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-malware.tiff Binary files differnew file mode 100644 index 0000000..e4d53c3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-malware.tiff diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-siteidenity.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-siteidenity.jpg Binary files differnew file mode 100644 index 0000000..793e768 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-siteidenity.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-siteidenity.tiff b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-siteidenity.tiff Binary files differnew file mode 100644 index 0000000..e31887e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8-siteidenity.tiff diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8autocomplete.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8autocomplete.jpg Binary files differnew file mode 100644 index 0000000..4d4b9e3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8autocomplete.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8autocomplete.tiff b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8autocomplete.tiff Binary files differnew file mode 100644 index 0000000..6c9331e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8autocomplete.tiff diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8download.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8download.jpg Binary files differnew file mode 100644 index 0000000..3fc3d3e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/ffa8download.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/firefoxlogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/firefoxlogo.jpg Binary files differnew file mode 100644 index 0000000..eecebb9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/firefoxlogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/phone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/phone.jpg Binary files differnew file mode 100644 index 0000000..3b6639c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/phone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/phone2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/phone2.jpg Binary files differnew file mode 100644 index 0000000..71bcdc2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/phone2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/screen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/screen.jpg Binary files differnew file mode 100644 index 0000000..f9beed5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/screen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/scriv.tiff b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/scriv.tiff Binary files differnew file mode 100644 index 0000000..ed629bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/scriv.tiff diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/stallman.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/stallman.jpg Binary files differnew file mode 100644 index 0000000..2be1650 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/fri/stallman.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/abc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/abc.jpg Binary files differnew file mode 100644 index 0000000..a822080 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/abc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/mint.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/mint.jpg Binary files differnew file mode 100644 index 0000000..fd7b68e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/mint.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/mt.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/mt.jpg Binary files differnew file mode 100644 index 0000000..949251d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/mt.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/nbc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/nbc.jpg Binary files differnew file mode 100644 index 0000000..fe7bdf5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/nbc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/shared.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/shared.jpg Binary files differnew file mode 100644 index 0000000..aab9aa8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/thu/shared.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/cs3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/cs3.jpg Binary files differnew file mode 100644 index 0000000..a92a9da --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/cs3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/cs3leopard.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/cs3leopard.jpg Binary files differnew file mode 100644 index 0000000..82e1add --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/cs3leopard.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/flock.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/flock.jpg Binary files differnew file mode 100644 index 0000000..4bfc3d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/flock.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/gdoc-presentations.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/gdoc-presentations.jpg Binary files differnew file mode 100644 index 0000000..29d654b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/gdoc-presentations.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/gdocs-presentations2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/gdocs-presentations2.jpg Binary files differnew file mode 100644 index 0000000..4f7a80f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/gdocs-presentations2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/greader.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/greader.jpg Binary files differnew file mode 100644 index 0000000..147297b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/greader.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/iphoneuk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/iphoneuk.jpg Binary files differnew file mode 100644 index 0000000..c9c8769 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/iphoneuk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/leopard.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/leopard.jpg Binary files differnew file mode 100644 index 0000000..9f0ba72 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/leopard.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/nyt.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/nyt.jpg Binary files differnew file mode 100644 index 0000000..501ebd6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.17.07/tue/nyt.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/adobelements.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/adobelements.jpg Binary files differnew file mode 100644 index 0000000..d0e2cf8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/adobelements.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/firefoxlogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/firefoxlogo.jpg Binary files differnew file mode 100644 index 0000000..eecebb9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/firefoxlogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/iworklife.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/iworklife.jpg Binary files differnew file mode 100644 index 0000000..f49e29f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/iworklife.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/leopard.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/leopard.jpg Binary files differnew file mode 100644 index 0000000..e3b481b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/leopard.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/linuxfilemap.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/linuxfilemap.jpg Binary files differnew file mode 100644 index 0000000..0ab9ae2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/linuxfilemap.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/phone2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/phone2.jpg Binary files differnew file mode 100644 index 0000000..62cbe25 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Mon/phone2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/amazonmp3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/amazonmp3.jpg Binary files differnew file mode 100644 index 0000000..17b0150 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/amazonmp3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/demonoid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/demonoid.jpg Binary files differnew file mode 100644 index 0000000..9b277a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/demonoid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/gmobile.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/gmobile.jpg Binary files differnew file mode 100644 index 0000000..debe3a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/gmobile.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/hidelinks.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/hidelinks.jpg Binary files differnew file mode 100644 index 0000000..cb473e5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/hidelinks.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/iphonegcal.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/iphonegcal.jpg Binary files differnew file mode 100644 index 0000000..95c21c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/iphonegcal.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/officemac12.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/officemac12.jpg Binary files differnew file mode 100644 index 0000000..3c28007 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/officemac12.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/shipley.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/shipley.jpg Binary files differnew file mode 100644 index 0000000..88a9e46 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/shipley.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/vistabox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/vistabox.jpg Binary files differnew file mode 100644 index 0000000..f7623a3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Tue/vistabox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ056B8D6A.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ056B8D6A.jpg Binary files differnew file mode 100644 index 0000000..596fa38 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ056B8D6A.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ407691DD.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ407691DD.jpg Binary files differnew file mode 100644 index 0000000..bc2604a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ407691DD.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ5CFC10C6.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ5CFC10C6.jpg Binary files differnew file mode 100644 index 0000000..01b6db0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ5CFC10C6.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ68BF828C.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ68BF828C.jpg Binary files differnew file mode 100644 index 0000000..56bed89 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ZZ68BF828C.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/aol.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/aol.jpg Binary files differnew file mode 100644 index 0000000..f462daa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/aol.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/excel.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/excel.jpg Binary files differnew file mode 100644 index 0000000..bfd6314 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/excel.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/galert.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/galert.jpg Binary files differnew file mode 100644 index 0000000..cf44567 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/galert.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/gwtreader.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/gwtreader.jpg Binary files differnew file mode 100644 index 0000000..29a7e24 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/gwtreader.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/livesearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/livesearch.jpg Binary files differnew file mode 100644 index 0000000..5b42d2c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/livesearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/sox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/sox.jpg Binary files differnew file mode 100644 index 0000000..ccd2268 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/sox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ubuntu.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ubuntu.jpg Binary files differnew file mode 100644 index 0000000..c5f382b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/ubuntu.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/vistamediac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/vistamediac.jpg Binary files differnew file mode 100644 index 0000000..915b872 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/vistamediac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/wordpresslogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/wordpresslogo.jpg Binary files differnew file mode 100644 index 0000000..ab1def8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/wordpresslogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/xpdesktop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/xpdesktop.jpg Binary files differnew file mode 100644 index 0000000..6551932 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/09.24.07/Wed/xpdesktop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/aim.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/aim.jpg Binary files differnew file mode 100644 index 0000000..9a62efc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/aim.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ashare.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ashare.jpg Binary files differnew file mode 100644 index 0000000..949f6bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ashare.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/avenir.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/avenir.jpg Binary files differnew file mode 100644 index 0000000..9ee6940 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/avenir.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/bootcamp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/bootcamp.jpg Binary files differnew file mode 100644 index 0000000..2570e78 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/bootcamp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/buzzword.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/buzzword.jpg Binary files differnew file mode 100644 index 0000000..5fccfb1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/buzzword.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/capslock.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/capslock.jpg Binary files differnew file mode 100644 index 0000000..c7347ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/capslock.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/demonoidonline.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/demonoidonline.jpg Binary files differnew file mode 100644 index 0000000..55c4015 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/demonoidonline.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/fmail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/fmail.jpg Binary files differnew file mode 100644 index 0000000..8ae62d8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/fmail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gapps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gapps.jpg Binary files differnew file mode 100644 index 0000000..e1847af --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gapps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gcal.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gcal.jpg Binary files differnew file mode 100644 index 0000000..273dbae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gcal.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gcalcli.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gcalcli.jpg Binary files differnew file mode 100644 index 0000000..81e7084 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gcalcli.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gcalclidesk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gcalclidesk.jpg Binary files differnew file mode 100644 index 0000000..7ea5ff6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gcalclidesk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gmaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gmaps.jpg Binary files differnew file mode 100644 index 0000000..0181bee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/gmaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ie7.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ie7.jpg Binary files differnew file mode 100644 index 0000000..bf0b250 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ie7.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/joost1.0.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/joost1.0.jpg Binary files differnew file mode 100644 index 0000000..3df2532 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/joost1.0.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/livemaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/livemaps.jpg Binary files differnew file mode 100644 index 0000000..5798de8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/livemaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/menufela.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/menufela.jpg Binary files differnew file mode 100644 index 0000000..f52e828 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/menufela.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/officelive.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/officelive.jpg Binary files differnew file mode 100644 index 0000000..f27d757 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/officelive.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/opensusekde.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/opensusekde.jpg Binary files differnew file mode 100644 index 0000000..1c07f45 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/opensusekde.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/pathfindericon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/pathfindericon.jpg Binary files differnew file mode 100644 index 0000000..bb9d18a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/pathfindericon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/phishing.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/phishing.jpg Binary files differnew file mode 100644 index 0000000..626926f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/phishing.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/photoshopexpress.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/photoshopexpress.jpg Binary files differnew file mode 100644 index 0000000..5f00406 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/photoshopexpress.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/pshopex.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/pshopex.jpg Binary files differnew file mode 100644 index 0000000..bf04e94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/pshopex.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/puppy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/puppy.jpg Binary files differnew file mode 100644 index 0000000..121b90c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/puppy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv.jpg Binary files differnew file mode 100644 index 0000000..de33a35 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv1.jpg Binary files differnew file mode 100644 index 0000000..a15fe1a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv2.jpg Binary files differnew file mode 100644 index 0000000..7b888e5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv3.jpg Binary files differnew file mode 100644 index 0000000..26bbbc3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scriv3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scrivner.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scrivner.jpg Binary files differnew file mode 100644 index 0000000..8cd1339 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/scrivner.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/seamcarve.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/seamcarve.jpg Binary files differnew file mode 100644 index 0000000..c7dba42 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/seamcarve.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/skypelinux.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/skypelinux.jpg Binary files differnew file mode 100644 index 0000000..7642d80 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/skypelinux.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ulysses.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ulysses.jpg Binary files differnew file mode 100644 index 0000000..8feb545 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ulysses.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ulysses1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ulysses1.jpg Binary files differnew file mode 100644 index 0000000..f93f62c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/ulysses1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/wifimac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/wifimac.jpg Binary files differnew file mode 100644 index 0000000..b40b54b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/wifimac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/wordperfect.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/wordperfect.jpg Binary files differnew file mode 100644 index 0000000..c648927 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/wordperfect.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/yahoosearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/yahoosearch.jpg Binary files differnew file mode 100644 index 0000000..45f7352 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/yahoosearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/zohodb.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/zohodb.jpg Binary files differnew file mode 100644 index 0000000..9b8cf23 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.01.07/zohodb.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ZZ02B5072D.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ZZ02B5072D.jpg Binary files differnew file mode 100644 index 0000000..582324d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ZZ02B5072D.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ZZ5394CCF1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ZZ5394CCF1.jpg Binary files differnew file mode 100644 index 0000000..e119efa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ZZ5394CCF1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ZZ57C939B7.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ZZ57C939B7.jpg Binary files differnew file mode 100644 index 0000000..02924e4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ZZ57C939B7.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/adsense.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/adsense.jpg Binary files differnew file mode 100644 index 0000000..f2b586d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/adsense.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ballmer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ballmer.jpg Binary files differnew file mode 100644 index 0000000..58d259e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ballmer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/burma.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/burma.jpg Binary files differnew file mode 100644 index 0000000..0699705 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/burma.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/dragonfly.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/dragonfly.jpg Binary files differnew file mode 100644 index 0000000..52dd92d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/dragonfly.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ebay.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ebay.jpg Binary files differnew file mode 100644 index 0000000..427ca41 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ebay.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/email.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/email.jpg Binary files differnew file mode 100644 index 0000000..1b6015b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/email.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/faviconcc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/faviconcc.jpg Binary files differnew file mode 100644 index 0000000..c74bad1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/faviconcc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ff3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ff3.jpg Binary files differnew file mode 100644 index 0000000..94c44a7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/ff3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/gearthyoutube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/gearthyoutube.jpg Binary files differnew file mode 100644 index 0000000..97807ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/gearthyoutube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/googlekeyboardsc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/googlekeyboardsc.jpg Binary files differnew file mode 100644 index 0000000..b36928b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/googlekeyboardsc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/gtalkface.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/gtalkface.jpg Binary files differnew file mode 100644 index 0000000..ae9ef77 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/gtalkface.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/internetmap.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/internetmap.jpg Binary files differnew file mode 100644 index 0000000..69c4968 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/internetmap.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/jaikugoog.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/jaikugoog.jpg Binary files differnew file mode 100644 index 0000000..f6d03fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/jaikugoog.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/jobs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/jobs.jpg Binary files differnew file mode 100644 index 0000000..d94955f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/jobs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/mojopac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/mojopac.jpg Binary files differnew file mode 100644 index 0000000..91adb78 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/mojopac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/mythbuntu.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/mythbuntu.jpg Binary files differnew file mode 100644 index 0000000..22dae33 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/mythbuntu.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/newsvine.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/newsvine.jpg Binary files differnew file mode 100644 index 0000000..331f15c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/newsvine.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/osilogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/osilogo.jpg Binary files differnew file mode 100644 index 0000000..6b53710 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/osilogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/osslogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/osslogo.jpg Binary files differnew file mode 100644 index 0000000..6b53710 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/osslogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/rogers.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/rogers.jpg Binary files differnew file mode 100644 index 0000000..fc51e92 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/rogers.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/torrentspy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/torrentspy.jpg Binary files differnew file mode 100644 index 0000000..cdd9b4e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/torrentspy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/trackpad.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/trackpad.jpg Binary files differnew file mode 100644 index 0000000..32257d8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/trackpad.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/trillian.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/trillian.jpg Binary files differnew file mode 100644 index 0000000..28175b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/trillian.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/virus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/virus.jpg Binary files differnew file mode 100644 index 0000000..dd3d410 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/virus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/zefrank.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/zefrank.jpg Binary files differnew file mode 100644 index 0000000..9040376 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.08.07/zefrank.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/askwiki.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/askwiki.jpg Binary files differnew file mode 100644 index 0000000..a155934 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/askwiki.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/comments.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/comments.jpg Binary files differnew file mode 100644 index 0000000..b70da7e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/comments.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/cs3box.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/cs3box.jpg Binary files differnew file mode 100644 index 0000000..25dba38 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/cs3box.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ff3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ff3.jpg Binary files differnew file mode 100644 index 0000000..94c44a7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ff3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/friendstervp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/friendstervp.jpg Binary files differnew file mode 100644 index 0000000..0606635 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/friendstervp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gcaloffline.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gcaloffline.jpg Binary files differnew file mode 100644 index 0000000..b76fb31 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gcaloffline.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gdocsmobile.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gdocsmobile.jpg Binary files differnew file mode 100644 index 0000000..cba2b26 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gdocsmobile.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gmailimap.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gmailimap.jpg Binary files differnew file mode 100644 index 0000000..3edd4d3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gmailimap.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gmapssocial.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gmapssocial.jpg Binary files differnew file mode 100644 index 0000000..404eb3d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gmapssocial.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gnote.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gnote.jpg Binary files differnew file mode 100644 index 0000000..5fcf9a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/gnote.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/greasekit.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/greasekit.jpg Binary files differnew file mode 100644 index 0000000..c204fd4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/greasekit.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/huluscreen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/huluscreen.jpg Binary files differnew file mode 100644 index 0000000..14f5ca0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/huluscreen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ibird.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ibird.jpg Binary files differnew file mode 100644 index 0000000..febe1c6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ibird.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ifpi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ifpi.jpg Binary files differnew file mode 100644 index 0000000..2e4909b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ifpi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/instantbird.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/instantbird.jpg Binary files differnew file mode 100644 index 0000000..0dda384 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/instantbird.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ishot-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ishot-1.jpg Binary files differnew file mode 100644 index 0000000..1aaf766 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ishot-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ishot-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ishot-2.jpg Binary files differnew file mode 100644 index 0000000..b19910a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ishot-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/iso.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/iso.jpg Binary files differnew file mode 100644 index 0000000..caebe32 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/iso.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/itouchnphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/itouchnphone.jpg Binary files differnew file mode 100644 index 0000000..72d8715 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/itouchnphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/itunes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/itunes.jpg Binary files differnew file mode 100644 index 0000000..4355581 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/itunes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/jot.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/jot.jpg Binary files differnew file mode 100644 index 0000000..f37dcce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/jot.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/leopardbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/leopardbox.jpg Binary files differnew file mode 100644 index 0000000..401ad7b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/leopardbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/leoparddock.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/leoparddock.jpg Binary files differnew file mode 100644 index 0000000..15220de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/leoparddock.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/lightroom.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/lightroom.jpg Binary files differnew file mode 100644 index 0000000..fa9f22d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/lightroom.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/linuxtimeline.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/linuxtimeline.jpg Binary files differnew file mode 100644 index 0000000..d6adc90 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/linuxtimeline.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/marbleofdoom.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/marbleofdoom.jpg Binary files differnew file mode 100644 index 0000000..788263f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/marbleofdoom.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/mccrea.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/mccrea.jpg Binary files differnew file mode 100644 index 0000000..bfc321f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/mccrea.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/meebo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/meebo.jpg Binary files differnew file mode 100644 index 0000000..7592af8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/meebo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/meeboff.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/meeboff.jpg Binary files differnew file mode 100644 index 0000000..1d79cff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/meeboff.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/msofficemac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/msofficemac.jpg Binary files differnew file mode 100644 index 0000000..c30bf92 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/msofficemac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/myspaceim.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/myspaceim.jpg Binary files differnew file mode 100644 index 0000000..99e3ed8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/myspaceim.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/napster.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/napster.jpg Binary files differnew file mode 100644 index 0000000..b986de1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/napster.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/operalink.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/operalink.jpg Binary files differnew file mode 100644 index 0000000..06637a5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/operalink.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ortiz.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ortiz.jpg Binary files differnew file mode 100644 index 0000000..b963f94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/ortiz.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/pipesphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/pipesphone.jpg Binary files differnew file mode 100644 index 0000000..5ea711b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/pipesphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/sdfire.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/sdfire.jpg Binary files differnew file mode 100644 index 0000000..9578842 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/sdfire.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/skype.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/skype.jpg Binary files differnew file mode 100644 index 0000000..fe772f3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/skype.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/songbird.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/songbird.jpg Binary files differnew file mode 100644 index 0000000..643850f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/songbird.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/television.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/television.jpg Binary files differnew file mode 100644 index 0000000..f0eac2c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/television.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/thepiratebay.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/thepiratebay.jpg Binary files differnew file mode 100644 index 0000000..38bfe43 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/thepiratebay.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/vimeo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/vimeo.jpg Binary files differnew file mode 100644 index 0000000..0bd7e1f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/vimeo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/vistawin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/vistawin.jpg Binary files differnew file mode 100644 index 0000000..e4c7c0d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/vistawin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/vmail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/vmail.jpg Binary files differnew file mode 100644 index 0000000..bbf3b0c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/vmail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/yahooim.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/yahooim.jpg Binary files differnew file mode 100644 index 0000000..b6b5651 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/yahooim.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/youtubetakedown.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/youtubetakedown.jpg Binary files differnew file mode 100644 index 0000000..a0cab36 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/10.16.07/youtubetakedown.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/europeatnight.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/europeatnight.jpg Binary files differnew file mode 100644 index 0000000..6fe085f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/europeatnight.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/gmail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/gmail.jpg Binary files differnew file mode 100644 index 0000000..3ef8a6c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/gmail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/iphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/iphone.jpg Binary files differnew file mode 100644 index 0000000..41f9a53 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/iphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/ringtones.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/ringtones.jpg Binary files differnew file mode 100644 index 0000000..4fa8228 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/ringtones.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/windows.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/windows.jpg Binary files differnew file mode 100644 index 0000000..148a315 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Fri/windows.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/canon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/canon.jpg Binary files differnew file mode 100644 index 0000000..e23626f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/canon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/edsel.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/edsel.jpg Binary files differnew file mode 100644 index 0000000..047e4c6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/edsel.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/iphonetypad.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/iphonetypad.jpg Binary files differnew file mode 100644 index 0000000..b037d56 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/iphonetypad.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/mcbride.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/mcbride.jpg Binary files differnew file mode 100644 index 0000000..01be7c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/mcbride.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/photoflex.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/photoflex.jpg Binary files differnew file mode 100644 index 0000000..f1b9515 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/photoflex.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/skypeworm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/skypeworm.jpg Binary files differnew file mode 100644 index 0000000..ebed12e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/skypeworm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/veoh.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/veoh.jpg Binary files differnew file mode 100644 index 0000000..0022d50 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/veoh.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/wintrans.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/wintrans.jpg Binary files differnew file mode 100644 index 0000000..8c9bb25 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Mon/wintrans.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/ZZ316B0C84.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/ZZ316B0C84.jpg Binary files differnew file mode 100644 index 0000000..082a873 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/ZZ316B0C84.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/ZZ3293C21D.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/ZZ3293C21D.jpg Binary files differnew file mode 100644 index 0000000..31b2c53 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/ZZ3293C21D.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/ZZ520076E2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/ZZ520076E2.jpg Binary files differnew file mode 100644 index 0000000..b512a2a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/ZZ520076E2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/appleinvite.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/appleinvite.jpg Binary files differnew file mode 100644 index 0000000..08b8a7b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/appleinvite.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/cupid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/cupid.jpg Binary files differnew file mode 100644 index 0000000..d11b0be --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/cupid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/greaderskin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/greaderskin.jpg Binary files differnew file mode 100644 index 0000000..027abf8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/greaderskin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/mapmixer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/mapmixer.jpg Binary files differnew file mode 100644 index 0000000..acd6167 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/mapmixer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/opendnsupdater.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/opendnsupdater.jpg Binary files differnew file mode 100644 index 0000000..f09bc9b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/opendnsupdater.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/penguin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/penguin.jpg Binary files differnew file mode 100644 index 0000000..9feda82 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/penguin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/timesfacebook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/timesfacebook.jpg Binary files differnew file mode 100644 index 0000000..5edb3fd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Thu/timesfacebook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/1999.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/1999.jpg Binary files differnew file mode 100644 index 0000000..d649103 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/1999.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/cclean1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/cclean1.jpg Binary files differnew file mode 100644 index 0000000..40eaf0b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/cclean1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/cclean2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/cclean2.jpg Binary files differnew file mode 100644 index 0000000..deaac03 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/cclean2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/cclean3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/cclean3.jpg Binary files differnew file mode 100644 index 0000000..c1a894d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/cclean3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/ccleaner.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/ccleaner.jpg Binary files differnew file mode 100644 index 0000000..760a69b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/ccleaner.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/goodreads.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/goodreads.jpg Binary files differnew file mode 100644 index 0000000..cb67d47 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/goodreads.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/goodreadss.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/goodreadss.jpg Binary files differnew file mode 100644 index 0000000..e5ca2af --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/goodreadss.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/iph.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/iph.jpg Binary files differnew file mode 100644 index 0000000..2ec8219 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/iph.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/photoflex.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/photoflex.jpg Binary files differnew file mode 100644 index 0000000..f1b9515 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/Tue/photoflex.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/ZZ2B82ABE4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/ZZ2B82ABE4.jpg Binary files differnew file mode 100644 index 0000000..ea5c1f7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/ZZ2B82ABE4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/msoffice.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/msoffice.jpg Binary files differnew file mode 100644 index 0000000..4e66ac5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/msoffice.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/outlookrules.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/outlookrules.jpg Binary files differnew file mode 100644 index 0000000..f65935e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/outlookrules.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/propeller.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/propeller.jpg Binary files differnew file mode 100644 index 0000000..1b7a656 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/propeller.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/quicktime.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/quicktime.jpg Binary files differnew file mode 100644 index 0000000..e5c6911 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/quicktime.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/sfd.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/sfd.jpg Binary files differnew file mode 100644 index 0000000..74857a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/9.10.07/WEd/sfd.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidO.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidO.jpg Binary files differnew file mode 100644 index 0000000..e185277 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidO.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidff.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidff.jpg Binary files differnew file mode 100644 index 0000000..c23a136 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidff.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidie.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidie.jpg Binary files differnew file mode 100644 index 0000000..ff1cab5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidie.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidtest.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidtest.jpg Binary files differnew file mode 100644 index 0000000..4b734de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/acidtest.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/alcoholprogramming.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/alcoholprogramming.jpg Binary files differnew file mode 100644 index 0000000..d8abe1d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/alcoholprogramming.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/amazon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/amazon.jpg Binary files differnew file mode 100644 index 0000000..6319c9e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/amazon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/askeraser.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/askeraser.jpg Binary files differnew file mode 100644 index 0000000..397cc3d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/askeraser.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/autocomplete.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/autocomplete.jpg Binary files differnew file mode 100644 index 0000000..4a4b711 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/autocomplete.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/cgmail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/cgmail.jpg Binary files differnew file mode 100644 index 0000000..3a316f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/cgmail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/correo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/correo.jpg Binary files differnew file mode 100644 index 0000000..74ae605 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/correo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2-downloads.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2-downloads.jpg Binary files differnew file mode 100644 index 0000000..c190ae4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2-downloads.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2-locationbar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2-locationbar.jpg Binary files differnew file mode 100644 index 0000000..6753f00 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2-locationbar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2.jpg Binary files differnew file mode 100644 index 0000000..6753f00 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2places.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2places.jpg Binary files differnew file mode 100644 index 0000000..585ac65 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ff3b2places.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/fficons.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/fficons.jpg Binary files differnew file mode 100644 index 0000000..063064f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/fficons.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/firewall.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/firewall.jpg Binary files differnew file mode 100644 index 0000000..b1a788a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/firewall.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/flickrpicnik.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/flickrpicnik.jpg Binary files differnew file mode 100644 index 0000000..5812a39 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/flickrpicnik.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/flickrstats.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/flickrstats.jpg Binary files differnew file mode 100644 index 0000000..e611085 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/flickrstats.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/fluid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/fluid.jpg Binary files differnew file mode 100644 index 0000000..7b432f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/fluid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gearthlayer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gearthlayer.jpg Binary files differnew file mode 100644 index 0000000..6b68e8e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gearthlayer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gknols.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gknols.jpg Binary files differnew file mode 100644 index 0000000..cd4d1d4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gknols.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gmaillabels.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gmaillabels.jpg Binary files differnew file mode 100644 index 0000000..14d79f1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gmaillabels.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gmaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gmaps.jpg Binary files differnew file mode 100644 index 0000000..3958cf7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gmaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gmapsboston.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gmapsboston.jpg Binary files differnew file mode 100644 index 0000000..54e9692 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gmapsboston.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gnomedo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gnomedo.jpg Binary files differnew file mode 100644 index 0000000..2a14951 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gnomedo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/googleprofile.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/googleprofile.jpg Binary files differnew file mode 100644 index 0000000..e217fb4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/googleprofile.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/greaderfriends.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/greaderfriends.jpg Binary files differnew file mode 100644 index 0000000..aa7618c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/greaderfriends.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gtalkaim.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gtalkaim.jpg Binary files differnew file mode 100644 index 0000000..fd7a9bd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gtalkaim.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gtoolbar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gtoolbar.jpg Binary files differnew file mode 100644 index 0000000..758f25d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gtoolbar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gtrans.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gtrans.jpg Binary files differnew file mode 100644 index 0000000..0c29ead --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gtrans.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gvideo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gvideo.jpg Binary files differnew file mode 100644 index 0000000..1ecf2ba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/gvideo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/hongkong.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/hongkong.jpg Binary files differnew file mode 100644 index 0000000..c2b0e83 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/hongkong.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ideagen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ideagen.jpg Binary files differnew file mode 100644 index 0000000..c6a6290 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/ideagen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/linuxreader.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/linuxreader.jpg Binary files differnew file mode 100644 index 0000000..8ae42cf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/linuxreader.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/livejournal.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/livejournal.jpg Binary files differnew file mode 100644 index 0000000..0dd9a17 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/livejournal.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/openid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/openid.jpg Binary files differnew file mode 100644 index 0000000..882888d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/openid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/perl.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/perl.jpg Binary files differnew file mode 100644 index 0000000..0201117 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/perl.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/picasa.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/picasa.jpg Binary files differnew file mode 100644 index 0000000..4300a41 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/picasa.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/plaxopulse.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/plaxopulse.jpg Binary files differnew file mode 100644 index 0000000..9b3863c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/plaxopulse.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/porn2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/porn2.jpg Binary files differnew file mode 100644 index 0000000..48f65d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/porn2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/pornforgirls1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/pornforgirls1.jpg Binary files differnew file mode 100644 index 0000000..16a602d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/pornforgirls1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/powncemobile.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/powncemobile.jpg Binary files differnew file mode 100644 index 0000000..d3c7eae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/powncemobile.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/rubyonrails.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/rubyonrails.jpg Binary files differnew file mode 100644 index 0000000..bd21608 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/rubyonrails.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/timebridge.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/timebridge.jpg Binary files differnew file mode 100644 index 0000000..724178b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/timebridge.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/tripit.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/tripit.jpg Binary files differnew file mode 100644 index 0000000..98fffe7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/tripit.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/w3c.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/w3c.jpg Binary files differnew file mode 100644 index 0000000..37af703 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/w3c.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/wdnas.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/wdnas.jpg Binary files differnew file mode 100644 index 0000000..0ac1017 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/wdnas.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/wheels2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/wheels2.jpg Binary files differnew file mode 100644 index 0000000..cf55e86 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/wheels2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/yahoomess.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/yahoomess.jpg Binary files differnew file mode 100644 index 0000000..a1dbde7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/yahoomess.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/yapta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/yapta.jpg Binary files differnew file mode 100644 index 0000000..befb461 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/yapta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/zohoshow2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/zohoshow2.jpg Binary files differnew file mode 100644 index 0000000..24c36fa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/dec/zohoshow2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/macbookupg.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/macbookupg.jpg Binary files differnew file mode 100644 index 0000000..45ca50b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/macbookupg.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ODF.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ODF.jpg Binary files differnew file mode 100644 index 0000000..6d3cf9a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ODF.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/androidphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/androidphone.jpg Binary files differnew file mode 100644 index 0000000..8749ca3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/androidphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/boxbe.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/boxbe.jpg Binary files differnew file mode 100644 index 0000000..11cd452 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/boxbe.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/buzzword.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/buzzword.jpg Binary files differnew file mode 100644 index 0000000..a4c3307 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/buzzword.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/chen.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/chen.jpg Binary files differnew file mode 100644 index 0000000..23e6fbf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/chen.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/colossus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/colossus.jpg Binary files differnew file mode 100644 index 0000000..d30b881 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/colossus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/cumulus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/cumulus.jpg Binary files differnew file mode 100644 index 0000000..de9f439 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/cumulus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/datejs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/datejs.jpg Binary files differnew file mode 100644 index 0000000..9a80aff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/datejs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/datejs2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/datejs2.jpg Binary files differnew file mode 100644 index 0000000..c8357c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/datejs2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/digg.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/digg.jpg Binary files differnew file mode 100644 index 0000000..07f97cd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/digg.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/fbookbeacon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/fbookbeacon.jpg Binary files differnew file mode 100644 index 0000000..d0d5500 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/fbookbeacon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/fce4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/fce4.jpg Binary files differnew file mode 100644 index 0000000..049ffd1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/fce4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ff-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ff-2.jpg Binary files differnew file mode 100644 index 0000000..8d94c39 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ff-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ff1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ff1.jpg Binary files differnew file mode 100644 index 0000000..1befd87 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ff1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffaddons.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffaddons.jpg Binary files differnew file mode 100644 index 0000000..1a2d0de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffaddons.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffbookmark.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffbookmark.jpg Binary files differnew file mode 100644 index 0000000..b9837cf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffbookmark.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffdownloads.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffdownloads.jpg Binary files differnew file mode 100644 index 0000000..04c6e6f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffdownloads.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffnewlook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffnewlook.jpg Binary files differnew file mode 100644 index 0000000..59e7aa6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffnewlook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffplaces.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffplaces.jpg Binary files differnew file mode 100644 index 0000000..3946cca --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffplaces.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffsecurity.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffsecurity.jpg Binary files differnew file mode 100644 index 0000000..535660b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffsecurity.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffsidebar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffsidebar.jpg Binary files differnew file mode 100644 index 0000000..92bedcc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffsidebar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffwhere.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffwhere.jpg Binary files differnew file mode 100644 index 0000000..ec323db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ffwhere.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/fireeagle.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/fireeagle.jpg Binary files differnew file mode 100644 index 0000000..1eac13a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/fireeagle.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flock1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flock1.jpg Binary files differnew file mode 100644 index 0000000..ef2889d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flock1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flock1.tiff b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flock1.tiff Binary files differnew file mode 100644 index 0000000..11d10ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flock1.tiff diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flockbug.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flockbug.jpg Binary files differnew file mode 100644 index 0000000..5290e45 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flockbug.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flockmediastream.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flockmediastream.jpg Binary files differnew file mode 100644 index 0000000..b800f9a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/flockmediastream.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gedit.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gedit.jpg Binary files differnew file mode 100644 index 0000000..be2b473 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gedit.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gexdigg.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gexdigg.jpg Binary files differnew file mode 100644 index 0000000..3e38e53 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gexdigg.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmailscript.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmailscript.jpg Binary files differnew file mode 100644 index 0000000..0378fc8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmailscript.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapscollab.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapscollab.jpg Binary files differnew file mode 100644 index 0000000..8e48907 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapscollab.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapshybrid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapshybrid.jpg Binary files differnew file mode 100644 index 0000000..91fdfb2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapshybrid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapsterrain.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapsterrain.jpg Binary files differnew file mode 100644 index 0000000..c708baf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapsterrain.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapsterrain2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapsterrain2.jpg Binary files differnew file mode 100644 index 0000000..988cc68 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/gmapsterrain2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/google.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/google.jpg Binary files differnew file mode 100644 index 0000000..bef8f9e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/google.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/googlereader.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/googlereader.jpg Binary files differnew file mode 100644 index 0000000..82338d9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/googlereader.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/googlereader1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/googlereader1.jpg Binary files differnew file mode 100644 index 0000000..c44f40f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/googlereader1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/googlereader2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/googlereader2.jpg Binary files differnew file mode 100644 index 0000000..5e156db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/googlereader2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/greasemonkey.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/greasemonkey.jpg Binary files differnew file mode 100644 index 0000000..639cb79 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/greasemonkey.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/hugeurl.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/hugeurl.jpg Binary files differnew file mode 100644 index 0000000..fc6f22e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/hugeurl.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/isitchristmas.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/isitchristmas.jpg Binary files differnew file mode 100644 index 0000000..6e98d22 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/isitchristmas.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/java.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/java.jpg Binary files differnew file mode 100644 index 0000000..9a88527 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/java.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/joost.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/joost.jpg Binary files differnew file mode 100644 index 0000000..52bc3bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/joost.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/linuxappfinder.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/linuxappfinder.jpg Binary files differnew file mode 100644 index 0000000..6de5436 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/linuxappfinder.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/mac4lin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/mac4lin.jpg Binary files differnew file mode 100644 index 0000000..9cd33b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/mac4lin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/minimail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/minimail.jpg Binary files differnew file mode 100644 index 0000000..9c4975d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/minimail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/miro1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/miro1.jpg Binary files differnew file mode 100644 index 0000000..48cae8b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/miro1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/mysql.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/mysql.jpg Binary files differnew file mode 100644 index 0000000..2d0232d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/mysql.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/netflix.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/netflix.jpg Binary files differnew file mode 100644 index 0000000..20d1276 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/netflix.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/olpc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/olpc.jpg Binary files differnew file mode 100644 index 0000000..35821a9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/olpc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/olpcxo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/olpcxo.jpg Binary files differnew file mode 100644 index 0000000..6925268 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/olpcxo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ourdumbworld.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ourdumbworld.jpg Binary files differnew file mode 100644 index 0000000..1e3275f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ourdumbworld.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/pandoraextras.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/pandoraextras.jpg Binary files differnew file mode 100644 index 0000000..58957e2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/pandoraextras.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/paranoidandroid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/paranoidandroid.jpg Binary files differnew file mode 100644 index 0000000..0a78e48 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/paranoidandroid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/photoshop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/photoshop.jpg Binary files differnew file mode 100644 index 0000000..bc9eb59 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/photoshop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/piratebay.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/piratebay.jpg Binary files differnew file mode 100644 index 0000000..2be04bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/piratebay.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/qlookplugin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/qlookplugin.jpg Binary files differnew file mode 100644 index 0000000..ad877a8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/qlookplugin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ramback.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ramback.jpg Binary files differnew file mode 100644 index 0000000..149a51a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/ramback.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/refactor.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/refactor.jpg Binary files differnew file mode 100644 index 0000000..03a562c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/refactor.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/sidebar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/sidebar.jpg Binary files differnew file mode 100644 index 0000000..2683259 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/sidebar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/sixapart.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/sixapart.jpg Binary files differnew file mode 100644 index 0000000..915d1d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/sixapart.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/stupidfilter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/stupidfilter.jpg Binary files differnew file mode 100644 index 0000000..b072751 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/stupidfilter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/twitter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/twitter.jpg Binary files differnew file mode 100644 index 0000000..018d4cd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/twitter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/twobillion.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/twobillion.jpg Binary files differnew file mode 100644 index 0000000..7c01eff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/twobillion.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/vista.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/vista.jpg Binary files differnew file mode 100644 index 0000000..7ebfadf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/vista.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/vistavsxp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/vistavsxp.jpg Binary files differnew file mode 100644 index 0000000..4fd44e0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/vistavsxp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/walmartlinux.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/walmartlinux.jpg Binary files differnew file mode 100644 index 0000000..3aef6df --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/walmartlinux.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/winfeatures.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/winfeatures.jpg Binary files differnew file mode 100644 index 0000000..506bdf7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/winfeatures.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/xp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/xp.jpg Binary files differnew file mode 100644 index 0000000..226d99f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/xp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/youtube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/youtube.jpg Binary files differnew file mode 100644 index 0000000..0ec2ed7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/youtube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zohooffline.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zohooffline.jpg Binary files differnew file mode 100644 index 0000000..60c88db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zohooffline.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zohopagination.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zohopagination.jpg Binary files differnew file mode 100644 index 0000000..54d1662 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zohopagination.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zohosync.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zohosync.jpg Binary files differnew file mode 100644 index 0000000..9391d63 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zohosync.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zonealarm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zonealarm.jpg Binary files differnew file mode 100644 index 0000000..b482ad8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/nov/zonealarm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/songbird.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/songbird.jpg Binary files differnew file mode 100644 index 0000000..38be849 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/songbird.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2007/wikipediavision.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2007/wikipediavision.jpg Binary files differnew file mode 100644 index 0000000..e896baf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2007/wikipediavision.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ab.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ab.jpg Binary files differnew file mode 100644 index 0000000..e3acfa1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ab.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/abmeta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/abmeta.jpg Binary files differnew file mode 100644 index 0000000..e9b8186 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/abmeta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/adobe.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/adobe.jpg Binary files differnew file mode 100644 index 0000000..52f410d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/adobe.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/applesoftup.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/applesoftup.jpg Binary files differnew file mode 100644 index 0000000..9f9afd2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/applesoftup.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/basero.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/basero.jpg Binary files differnew file mode 100644 index 0000000..f035ee0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/basero.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/beermenus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/beermenus.jpg Binary files differnew file mode 100644 index 0000000..261e9e3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/beermenus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/blogit.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/blogit.jpg Binary files differnew file mode 100644 index 0000000..7d09e9d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/blogit.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/bountii.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/bountii.jpg Binary files differnew file mode 100644 index 0000000..a94417e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/bountii.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/cssvar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/cssvar.jpg Binary files differnew file mode 100644 index 0000000..cd2fb41 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/cssvar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/digsby.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/digsby.jpg Binary files differnew file mode 100644 index 0000000..2199e71 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/digsby.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/drm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/drm.jpg Binary files differnew file mode 100644 index 0000000..24c85af --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/drm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/facebookminifeed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/facebookminifeed.jpg Binary files differnew file mode 100644 index 0000000..fd98e79 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/facebookminifeed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/flickrcode.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/flickrcode.jpg Binary files differnew file mode 100644 index 0000000..7c8ab6a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/flickrcode.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/freemyfeed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/freemyfeed.jpg Binary files differnew file mode 100644 index 0000000..82658bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/freemyfeed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gearth.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gearth.jpg Binary files differnew file mode 100644 index 0000000..b85ef5f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gearth.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gearthnew.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gearthnew.jpg Binary files differnew file mode 100644 index 0000000..ae9ea99 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gearthnew.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gimp2.5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gimp2.5.jpg Binary files differnew file mode 100644 index 0000000..3ef2d96 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gimp2.5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gnomedesktop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gnomedesktop.jpg Binary files differnew file mode 100644 index 0000000..59a5bfd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gnomedesktop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/golive.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/golive.jpg Binary files differnew file mode 100644 index 0000000..1fe5d9f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/golive.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/googtraffic.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/googtraffic.jpg Binary files differnew file mode 100644 index 0000000..d4940bd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/googtraffic.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gstreetviewdir.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gstreetviewdir.jpg Binary files differnew file mode 100644 index 0000000..2bdd30f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/gstreetviewdir.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/igoogle.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/igoogle.jpg Binary files differnew file mode 100644 index 0000000..f343e6e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/igoogle.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/macheist.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/macheist.jpg Binary files differnew file mode 100644 index 0000000..cb65b72 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/macheist.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/mesh.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/mesh.jpg Binary files differnew file mode 100644 index 0000000..0f9c124 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/mesh.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/messenger7.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/messenger7.jpg Binary files differnew file mode 100644 index 0000000..12fa5c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/messenger7.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/nytgooglearth.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/nytgooglearth.jpg Binary files differnew file mode 100644 index 0000000..c16c355 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/nytgooglearth.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/oper95.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/oper95.jpg Binary files differnew file mode 100644 index 0000000..46513dd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/oper95.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/rip.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/rip.jpg Binary files differnew file mode 100644 index 0000000..51163f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/rip.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ripgolive.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ripgolive.jpg Binary files differnew file mode 100644 index 0000000..ad78c24 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ripgolive.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/services.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/services.jpg Binary files differnew file mode 100644 index 0000000..c4fcf3e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/services.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/sqltablesattack.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/sqltablesattack.jpg Binary files differnew file mode 100644 index 0000000..c197268 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/sqltablesattack.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/timeframe.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/timeframe.jpg Binary files differnew file mode 100644 index 0000000..9f7bea7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/timeframe.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/twttearth.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/twttearth.jpg Binary files differnew file mode 100644 index 0000000..8c63300 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/twttearth.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ubuntu804.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ubuntu804.jpg Binary files differnew file mode 100644 index 0000000..dfa04b9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ubuntu804.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ubuntucheatsheet.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ubuntucheatsheet.jpg Binary files differnew file mode 100644 index 0000000..2a0c60e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/ubuntucheatsheet.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/vmware.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/vmware.jpg Binary files differnew file mode 100644 index 0000000..199f97e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/vmware.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/wheels.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/wheels.jpg Binary files differnew file mode 100644 index 0000000..a9fda94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/wheels.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/whoshould.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/whoshould.jpg Binary files differnew file mode 100644 index 0000000..3d985fb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/whoshould.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/wordicon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/wordicon.jpg Binary files differnew file mode 100644 index 0000000..b0df842 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/wordicon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/zohovba.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/zohovba.jpg Binary files differnew file mode 100644 index 0000000..6bbde7c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/apr/zohovba.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/8track.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/8track.jpg Binary files differnew file mode 100644 index 0000000..b3f46b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/8track.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/adium13.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/adium13.jpg Binary files differnew file mode 100644 index 0000000..f9bc605 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/adium13.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/adobelogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/adobelogo.jpg Binary files differnew file mode 100644 index 0000000..bdeac6f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/adobelogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/backtype.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/backtype.jpg Binary files differnew file mode 100644 index 0000000..1a8b906 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/backtype.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-auto-complete.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-auto-complete.jpg Binary files differnew file mode 100644 index 0000000..57514c8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-auto-complete.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-project-view.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-project-view.jpg Binary files differnew file mode 100644 index 0000000..f4546ad --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-project-view.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-search-old.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-search-old.jpg Binary files differnew file mode 100644 index 0000000..0de267f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-search-old.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-search.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-search.jpg Binary files differnew file mode 100644 index 0000000..13ee539 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/bbedit-search.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/blueprinticon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/blueprinticon.jpg Binary files differnew file mode 100644 index 0000000..f8a4c90 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/blueprinticon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/chrome.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/chrome.jpg Binary files differnew file mode 100644 index 0000000..b2bd0d8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/chrome.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/codedrunk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/codedrunk.jpg Binary files differnew file mode 100644 index 0000000..13557f4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/codedrunk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/doh.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/doh.jpg Binary files differnew file mode 100644 index 0000000..ddf5573 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/doh.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/elementsbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/elementsbox.jpg Binary files differnew file mode 100644 index 0000000..98a84d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/elementsbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/ff31js.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/ff31js.jpg Binary files differnew file mode 100644 index 0000000..5bf3287 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/ff31js.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/ffnew.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/ffnew.jpg Binary files differnew file mode 100644 index 0000000..22181dc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/ffnew.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/ffsecurity.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/ffsecurity.jpg Binary files differnew file mode 100644 index 0000000..c308f8a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/ffsecurity.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/flashicon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/flashicon.jpg Binary files differnew file mode 100644 index 0000000..7e14e48 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/flashicon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/freewifi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/freewifi.jpg Binary files differnew file mode 100644 index 0000000..6142a17 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/freewifi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/gearssafari.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/gearssafari.jpg Binary files differnew file mode 100644 index 0000000..43a9874 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/gearssafari.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/good_magazine_wanderlust.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/good_magazine_wanderlust.jpg Binary files differnew file mode 100644 index 0000000..323d5c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/good_magazine_wanderlust.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/muxtape.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/muxtape.jpg Binary files differnew file mode 100644 index 0000000..0ffcfe2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/muxtape.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/openclip.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/openclip.jpg Binary files differnew file mode 100644 index 0000000..5e02b31 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/openclip.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/opentape.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/opentape.jpg Binary files differnew file mode 100644 index 0000000..9b9b1ea --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/opentape.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/photoshopmobile.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/photoshopmobile.jpg Binary files differnew file mode 100644 index 0000000..1430871 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/photoshopmobile.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/regex.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/regex.jpg Binary files differnew file mode 100644 index 0000000..0417d05 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/regex.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/songbirdbeta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/songbirdbeta.jpg Binary files differnew file mode 100644 index 0000000..01c344e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/songbirdbeta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/tux.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/tux.jpg Binary files differnew file mode 100644 index 0000000..12a8a13 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/tux.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/windows.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/windows.jpg Binary files differnew file mode 100644 index 0000000..2f75f71 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/windows.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/zohoshare.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/zohoshare.jpg Binary files differnew file mode 100644 index 0000000..6e40459 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/aug/zohoshare.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/adobestockphotos.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/adobestockphotos.jpg Binary files differnew file mode 100644 index 0000000..175b0e1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/adobestockphotos.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/aperture.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/aperture.jpg Binary files differnew file mode 100644 index 0000000..5842a20 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/aperture.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/avg.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/avg.jpg Binary files differnew file mode 100644 index 0000000..2533a84 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/avg.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/cansecwest.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/cansecwest.jpg Binary files differnew file mode 100644 index 0000000..bdf8fd7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/cansecwest.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/changesection.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/changesection.jpg Binary files differnew file mode 100644 index 0000000..f1a8125 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/changesection.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/cheatsheets.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/cheatsheets.jpg Binary files differnew file mode 100644 index 0000000..4e67f7d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/cheatsheets.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/commuterfeed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/commuterfeed.jpg Binary files differnew file mode 100644 index 0000000..027c07b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/commuterfeed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/controlc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/controlc.jpg Binary files differnew file mode 100644 index 0000000..ec962d7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/controlc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/downthemall.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/downthemall.jpg Binary files differnew file mode 100644 index 0000000..af10f8c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/downthemall.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/eeepc.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/eeepc.jpg Binary files differnew file mode 100644 index 0000000..f35521b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/eeepc.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/fancyzoom.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/fancyzoom.jpg Binary files differnew file mode 100644 index 0000000..ee7f3ef --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/fancyzoom.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/fbook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/fbook.jpg Binary files differnew file mode 100644 index 0000000..1bc1180 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/fbook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/forumwarz.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/forumwarz.jpg Binary files differnew file mode 100644 index 0000000..756196a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/forumwarz.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/fotoflexer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/fotoflexer.jpg Binary files differnew file mode 100644 index 0000000..4ec67a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/fotoflexer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/friendfeed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/friendfeed.jpg Binary files differnew file mode 100644 index 0000000..79e92e9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/friendfeed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/gdocsforms.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/gdocsforms.jpg Binary files differnew file mode 100644 index 0000000..f4b9bc6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/gdocsforms.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/gmapsblogging.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/gmapsblogging.jpg Binary files differnew file mode 100644 index 0000000..4bf16be --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/gmapsblogging.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/googleearth.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/googleearth.jpg Binary files differnew file mode 100644 index 0000000..1babf03 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/googleearth.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/googlenews.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/googlenews.jpg Binary files differnew file mode 100644 index 0000000..639e822 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/googlenews.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/googlesites.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/googlesites.jpg Binary files differnew file mode 100644 index 0000000..db33583 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/googlesites.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/grandcentral.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/grandcentral.jpg Binary files differnew file mode 100644 index 0000000..771d77a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/grandcentral.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/gtoolbar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/gtoolbar.jpg Binary files differnew file mode 100644 index 0000000..9bd0a64 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/gtoolbar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/haiku.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/haiku.jpg Binary files differnew file mode 100644 index 0000000..66eedd6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/haiku.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ibex.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ibex.jpg Binary files differnew file mode 100644 index 0000000..ab36fdb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ibex.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/iminta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/iminta.jpg Binary files differnew file mode 100644 index 0000000..f65dda5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/iminta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/insertlink.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/insertlink.jpg Binary files differnew file mode 100644 index 0000000..2620d92 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/insertlink.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ipaper.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ipaper.jpg Binary files differnew file mode 100644 index 0000000..3f66105 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ipaper.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/iphonefacebook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/iphonefacebook.jpg Binary files differnew file mode 100644 index 0000000..7add559 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/iphonefacebook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/iphoto.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/iphoto.jpg Binary files differnew file mode 100644 index 0000000..563c987 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/iphoto.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ishot-1.tiff b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ishot-1.tiff Binary files differnew file mode 100644 index 0000000..a5ba606 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ishot-1.tiff diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/lemondechart.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/lemondechart.jpg Binary files differnew file mode 100644 index 0000000..9eb24b4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/lemondechart.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/linuxfoundation.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/linuxfoundation.jpg Binary files differnew file mode 100644 index 0000000..90851da --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/linuxfoundation.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/medium.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/medium.jpg Binary files differnew file mode 100644 index 0000000..6a91940 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/medium.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mobileff1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mobileff1.jpg Binary files differnew file mode 100644 index 0000000..e893018 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mobileff1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mobileff2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mobileff2.jpg Binary files differnew file mode 100644 index 0000000..1a152c0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mobileff2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mobileffround2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mobileffround2.jpg Binary files differnew file mode 100644 index 0000000..6eb35f7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mobileffround2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/multisidebar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/multisidebar.jpg Binary files differnew file mode 100644 index 0000000..3a999d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/multisidebar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mybloglog.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mybloglog.jpg Binary files differnew file mode 100644 index 0000000..c413332 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mybloglog.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mymapsviewer.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mymapsviewer.jpg Binary files differnew file mode 100644 index 0000000..7ec2307 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/mymapsviewer.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/myspaceflock.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/myspaceflock.jpg Binary files differnew file mode 100644 index 0000000..fcf06dc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/myspaceflock.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/newsglobe.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/newsglobe.jpg Binary files differnew file mode 100644 index 0000000..a4a241a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/newsglobe.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/office4mac2004.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/office4mac2004.jpg Binary files differnew file mode 100644 index 0000000..04e91d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/office4mac2004.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/olpcwin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/olpcwin.jpg Binary files differnew file mode 100644 index 0000000..d0dd6b4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/olpcwin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/piclens.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/piclens.jpg Binary files differnew file mode 100644 index 0000000..65ee158 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/piclens.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/postgresql.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/postgresql.jpg Binary files differnew file mode 100644 index 0000000..7724211 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/postgresql.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/seriesoftubes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/seriesoftubes.jpg Binary files differnew file mode 100644 index 0000000..0822ff2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/seriesoftubes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/socialgraphapi.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/socialgraphapi.jpg Binary files differnew file mode 100644 index 0000000..09d3a94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/socialgraphapi.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/staticmaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/staticmaps.jpg Binary files differnew file mode 100644 index 0000000..1d0f9cc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/staticmaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/stealthchat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/stealthchat.jpg Binary files differnew file mode 100644 index 0000000..69ac6c1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/stealthchat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/summerofocde.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/summerofocde.jpg Binary files differnew file mode 100644 index 0000000..60a2083 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/summerofocde.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/superduper.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/superduper.jpg Binary files differnew file mode 100644 index 0000000..c57814b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/superduper.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/triptouch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/triptouch.jpg Binary files differnew file mode 100644 index 0000000..8505e9c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/triptouch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/truecrypt.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/truecrypt.jpg Binary files differnew file mode 100644 index 0000000..32720e0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/truecrypt.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ubuntubrainstorm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ubuntubrainstorm.jpg Binary files differnew file mode 100644 index 0000000..10b200b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ubuntubrainstorm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/webkiticon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/webkiticon.jpg Binary files differnew file mode 100644 index 0000000..64f0f7b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/webkiticon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/win.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/win.jpg Binary files differnew file mode 100644 index 0000000..e26373e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/win.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/win7.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/win7.jpg Binary files differnew file mode 100644 index 0000000..5db6e43 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/win7.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/winlinux.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/winlinux.jpg Binary files differnew file mode 100644 index 0000000..9a7d13b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/winlinux.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/wordpress.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/wordpress.jpg Binary files differnew file mode 100644 index 0000000..9adda58 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/wordpress.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/wp-2.5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/wp-2.5.jpg Binary files differnew file mode 100644 index 0000000..999f022 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/wp-2.5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/wpforum.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/wpforum.jpg Binary files differnew file mode 100644 index 0000000..118fa0d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/wpforum.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/xkcd.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/xkcd.jpg Binary files differnew file mode 100644 index 0000000..c26e264 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/xkcd.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/yahooopensearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/yahooopensearch.jpg Binary files differnew file mode 100644 index 0000000..ca9b8b8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/yahooopensearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ybuzz.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ybuzz.jpg Binary files differnew file mode 100644 index 0000000..8363e40 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/ybuzz.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/zimbra.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/zimbra.jpg Binary files differnew file mode 100644 index 0000000..f7041c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/zimbra.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/zohowriter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/zohowriter.jpg Binary files differnew file mode 100644 index 0000000..9f911cc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/feb/zohowriter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/acid3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/acid3.jpg Binary files differnew file mode 100644 index 0000000..bcdc135 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/acid3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/apple.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/apple.jpg Binary files differnew file mode 100644 index 0000000..dfb35eb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/apple.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/avchd.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/avchd.jpg Binary files differnew file mode 100644 index 0000000..29c4d4a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/avchd.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/azaraskin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/azaraskin.jpg Binary files differnew file mode 100644 index 0000000..a795fff --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/azaraskin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/baby.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/baby.jpg Binary files differnew file mode 100644 index 0000000..cd19849 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/baby.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/backsoon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/backsoon.jpg Binary files differnew file mode 100644 index 0000000..57d468d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/backsoon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/bento.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/bento.jpg Binary files differnew file mode 100644 index 0000000..31d3c7d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/bento.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/cocoakuler.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/cocoakuler.jpg Binary files differnew file mode 100644 index 0000000..cdd4b2a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/cocoakuler.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/dapper.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/dapper.jpg Binary files differnew file mode 100644 index 0000000..64a6724 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/dapper.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/dataport.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/dataport.jpg Binary files differnew file mode 100644 index 0000000..12351b7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/dataport.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/drop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/drop.jpg Binary files differnew file mode 100644 index 0000000..a9c39e1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/drop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/ducati.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/ducati.jpg Binary files differnew file mode 100644 index 0000000..078945f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/ducati.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/element6.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/element6.jpg Binary files differnew file mode 100644 index 0000000..0d3bb3f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/element6.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/elementsmac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/elementsmac.jpg Binary files differnew file mode 100644 index 0000000..fbf859f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/elementsmac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/emacs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/emacs.jpg Binary files differnew file mode 100644 index 0000000..88497fb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/emacs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/everyblock.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/everyblock.jpg Binary files differnew file mode 100644 index 0000000..75e8a63 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/everyblock.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flickr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flickr.jpg Binary files differnew file mode 100644 index 0000000..ebad7bf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flickr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flickrcommon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flickrcommon.jpg Binary files differnew file mode 100644 index 0000000..a8e85f2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flickrcommon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flickrms.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flickrms.jpg Binary files differnew file mode 100644 index 0000000..ef0c2a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flickrms.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flock.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flock.jpg Binary files differnew file mode 100644 index 0000000..31bd425 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/flock.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/gappsiphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/gappsiphone.jpg Binary files differnew file mode 100644 index 0000000..294a023 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/gappsiphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/gcalmashup.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/gcalmashup.jpg Binary files differnew file mode 100644 index 0000000..3b3dcf4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/gcalmashup.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/gdocs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/gdocs.jpg Binary files differnew file mode 100644 index 0000000..7f370bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/gdocs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/grabfs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/grabfs.jpg Binary files differnew file mode 100644 index 0000000..5bd8557 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/grabfs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/icab.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/icab.jpg Binary files differnew file mode 100644 index 0000000..5b881da --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/icab.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/instapaper.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/instapaper.jpg Binary files differnew file mode 100644 index 0000000..c2348f6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/instapaper.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/interarchy9.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/interarchy9.jpg Binary files differnew file mode 100644 index 0000000..8065c16 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/interarchy9.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/iphonepulse.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/iphonepulse.jpg Binary files differnew file mode 100644 index 0000000..728657f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/iphonepulse.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/kde.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/kde.jpg Binary files differnew file mode 100644 index 0000000..8182c2f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/kde.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/kde4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/kde4.jpg Binary files differnew file mode 100644 index 0000000..d91d092 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/kde4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/lightzone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/lightzone.jpg Binary files differnew file mode 100644 index 0000000..df6ef16 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/lightzone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/logos2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/logos2.jpg Binary files differnew file mode 100644 index 0000000..ffd6108 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/logos2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/lost-logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/lost-logo.jpg Binary files differnew file mode 100644 index 0000000..3d4c888 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/lost-logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/macheist.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/macheist.jpg Binary files differnew file mode 100644 index 0000000..db10491 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/macheist.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/macworldiphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/macworldiphone.jpg Binary files differnew file mode 100644 index 0000000..88af147 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/macworldiphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/mobilefox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/mobilefox.jpg Binary files differnew file mode 100644 index 0000000..f50689e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/mobilefox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/mtactionstreams.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/mtactionstreams.jpg Binary files differnew file mode 100644 index 0000000..56d2274 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/mtactionstreams.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/myspace.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/myspace.jpg Binary files differnew file mode 100644 index 0000000..670474f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/myspace.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/netscape.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/netscape.jpg Binary files differnew file mode 100644 index 0000000..f24c094 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/netscape.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/netvibesginger.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/netvibesginger.jpg Binary files differnew file mode 100644 index 0000000..c933e02 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/netvibesginger.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/newsgator.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/newsgator.jpg Binary files differnew file mode 100644 index 0000000..a6813d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/newsgator.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/newyears.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/newyears.jpg Binary files differnew file mode 100644 index 0000000..e102838 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/newyears.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/openid-connector.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/openid-connector.jpg Binary files differnew file mode 100644 index 0000000..8b0766b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/openid-connector.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/openidyahoo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/openidyahoo.jpg Binary files differnew file mode 100644 index 0000000..7f907f9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/openidyahoo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/p2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/p2.jpg Binary files differnew file mode 100644 index 0000000..c4e3300 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/p2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pandora.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pandora.jpg Binary files differnew file mode 100644 index 0000000..d0b0d7e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pandora.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/parallels.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/parallels.jpg Binary files differnew file mode 100644 index 0000000..e86fd3d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/parallels.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pdf.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pdf.jpg Binary files differnew file mode 100644 index 0000000..91ba169 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pdf.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/perl.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/perl.jpg Binary files differnew file mode 100644 index 0000000..10fd8ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/perl.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/picasa.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/picasa.jpg Binary files differnew file mode 100644 index 0000000..e5e8993 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/picasa.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/picnik.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/picnik.jpg Binary files differnew file mode 100644 index 0000000..86e9b1f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/picnik.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pionner.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pionner.jpg Binary files differnew file mode 100644 index 0000000..98140e8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pionner.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pirates.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pirates.jpg Binary files differnew file mode 100644 index 0000000..1c8f4dc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pirates.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pixel.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pixel.jpg Binary files differnew file mode 100644 index 0000000..ede6745 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pixel.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pownce.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pownce.jpg Binary files differnew file mode 100644 index 0000000..67bb3e9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pownce.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pulsemac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pulsemac.jpg Binary files differnew file mode 100644 index 0000000..5c67046 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/pulsemac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/reddit.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/reddit.jpg Binary files differnew file mode 100644 index 0000000..da74ab1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/reddit.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/slim.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/slim.jpg Binary files differnew file mode 100644 index 0000000..acdb486 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/slim.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/spicebird.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/spicebird.jpg Binary files differnew file mode 100644 index 0000000..294019d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/spicebird.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/sunmysql.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/sunmysql.jpg Binary files differnew file mode 100644 index 0000000..9b36bc5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/sunmysql.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/textwrangler.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/textwrangler.jpg Binary files differnew file mode 100644 index 0000000..2e96986 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/textwrangler.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/transmission.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/transmission.jpg Binary files differnew file mode 100644 index 0000000..ca00c57 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/transmission.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/urbanmapping.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/urbanmapping.jpg Binary files differnew file mode 100644 index 0000000..b3e0785 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/urbanmapping.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/wikia-search.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/wikia-search.jpg Binary files differnew file mode 100644 index 0000000..e7cd2e7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/wikia-search.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/wikiasearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/wikiasearch.jpg Binary files differnew file mode 100644 index 0000000..98cac8d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/wikiasearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/xscope.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/xscope.jpg Binary files differnew file mode 100644 index 0000000..b893822 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/xscope.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/yahoo-openid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/yahoo-openid.jpg Binary files differnew file mode 100644 index 0000000..4250ce2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/yahoo-openid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/yahoo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/yahoo.jpg Binary files differnew file mode 100644 index 0000000..79b73bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/yahoo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/yahoojavascriptwidget.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/yahoojavascriptwidget.jpg Binary files differnew file mode 100644 index 0000000..a202dc0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jan/yahoojavascriptwidget.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ala.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ala.jpg Binary files differnew file mode 100644 index 0000000..ce70119 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ala.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/blowup.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/blowup.jpg Binary files differnew file mode 100644 index 0000000..0905822 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/blowup.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/favtape.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/favtape.jpg Binary files differnew file mode 100644 index 0000000..05503bb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/favtape.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ff3a1-abar.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ff3a1-abar.jpg Binary files differnew file mode 100644 index 0000000..8192c65 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ff3a1-abar.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ff3a1-tab.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ff3a1-tab.jpg Binary files differnew file mode 100644 index 0000000..5707f31 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ff3a1-tab.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/gcal.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/gcal.jpg Binary files differnew file mode 100644 index 0000000..89397fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/gcal.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/gdocstemplates.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/gdocstemplates.jpg Binary files differnew file mode 100644 index 0000000..7a8f748 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/gdocstemplates.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/headtattoo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/headtattoo.jpg Binary files differnew file mode 100644 index 0000000..2bfe31e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/headtattoo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ilife.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ilife.jpg Binary files differnew file mode 100644 index 0000000..19462a1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ilife.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/kde41.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/kde41.jpg Binary files differnew file mode 100644 index 0000000..b3251d4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/kde41.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/lastfm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/lastfm.jpg Binary files differnew file mode 100644 index 0000000..0f33b1a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/lastfm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/lightroom2box.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/lightroom2box.jpg Binary files differnew file mode 100644 index 0000000..e1a4a5e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/lightroom2box.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/openweb.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/openweb.jpg Binary files differnew file mode 100644 index 0000000..713719e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/openweb.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/osxwind.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/osxwind.jpg Binary files differnew file mode 100644 index 0000000..523b94e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/osxwind.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/pandoraiphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/pandoraiphone.jpg Binary files differnew file mode 100644 index 0000000..705eece --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/pandoraiphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/securegmail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/securegmail.jpg Binary files differnew file mode 100644 index 0000000..7185cce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/securegmail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/softwarevulnerablities.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/softwarevulnerablities.jpg Binary files differnew file mode 100644 index 0000000..8feca60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/softwarevulnerablities.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/summize.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/summize.jpg Binary files differnew file mode 100644 index 0000000..6b26aa0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/summize.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/twitter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/twitter.jpg Binary files differnew file mode 100644 index 0000000..e1a0b3f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/twitter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/twittersummize.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/twittersummize.jpg Binary files differnew file mode 100644 index 0000000..e543bf7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/twittersummize.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ubuntutheme.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ubuntutheme.jpg Binary files differnew file mode 100644 index 0000000..47e1bae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/ubuntutheme.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/whatskeepingme.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/whatskeepingme.jpg Binary files differnew file mode 100644 index 0000000..09704ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/whatskeepingme.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/yousuckatphotoshop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/yousuckatphotoshop.jpg Binary files differnew file mode 100644 index 0000000..9f4b134 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jul/yousuckatphotoshop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/acrobat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/acrobat.jpg Binary files differnew file mode 100644 index 0000000..92a91c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/acrobat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/baganburma.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/baganburma.jpg Binary files differnew file mode 100644 index 0000000..ce58299 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/baganburma.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/bansheelastfm.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/bansheelastfm.jpg Binary files differnew file mode 100644 index 0000000..211a686 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/bansheelastfm.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/blogit.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/blogit.jpg Binary files differnew file mode 100644 index 0000000..c96f816 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/blogit.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/bsod.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/bsod.jpg Binary files differnew file mode 100644 index 0000000..238e6a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/bsod.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/citysense.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/citysense.jpg Binary files differnew file mode 100644 index 0000000..69c6cd8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/citysense.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/django.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/django.jpg Binary files differnew file mode 100644 index 0000000..92e5439 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/django.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ffbestof.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ffbestof.jpg Binary files differnew file mode 100644 index 0000000..96de9ee --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ffbestof.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ffextensions.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ffextensions.jpg Binary files differnew file mode 100644 index 0000000..9cf8eab --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ffextensions.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/fireworks.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/fireworks.jpg Binary files differnew file mode 100644 index 0000000..a0dd7cd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/fireworks.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/flickr_snow_leopard_mannequin-.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/flickr_snow_leopard_mannequin-.jpg Binary files differnew file mode 100644 index 0000000..19da9a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/flickr_snow_leopard_mannequin-.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/gaierror.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/gaierror.jpg Binary files differnew file mode 100644 index 0000000..75af461 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/gaierror.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ggadgets.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ggadgets.jpg Binary files differnew file mode 100644 index 0000000..5b3201d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ggadgets.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/google.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/google.jpg Binary files differnew file mode 100644 index 0000000..10fdc4c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/google.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/jobs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/jobs.jpg Binary files differnew file mode 100644 index 0000000..6ee3dae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/jobs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/kulerflickr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/kulerflickr.jpg Binary files differnew file mode 100644 index 0000000..0c7ca35 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/kulerflickr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/myspaceceespit.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/myspaceceespit.jpg Binary files differnew file mode 100644 index 0000000..442ce4d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/myspaceceespit.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/netneutral.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/netneutral.jpg Binary files differnew file mode 100644 index 0000000..638a5cf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/netneutral.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/pando-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/pando-1.jpg Binary files differnew file mode 100644 index 0000000..cafe954 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/pando-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/parallels.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/parallels.jpg Binary files differnew file mode 100644 index 0000000..a493d32 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/parallels.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/redditfree.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/redditfree.jpg Binary files differnew file mode 100644 index 0000000..900a62a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/redditfree.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/scriptvnoscript.gif b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/scriptvnoscript.gif Binary files differnew file mode 100644 index 0000000..a201392 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/scriptvnoscript.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/sproutcore.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/sproutcore.jpg Binary files differnew file mode 100644 index 0000000..34aa3e6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/sproutcore.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/squirrelfish.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/squirrelfish.jpg Binary files differnew file mode 100644 index 0000000..73c27de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/squirrelfish.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/tilestack.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/tilestack.jpg Binary files differnew file mode 100644 index 0000000..5dfb3b9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/tilestack.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ubuntu_netbook_remix_flickr_njpatel.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ubuntu_netbook_remix_flickr_njpatel.jpg Binary files differnew file mode 100644 index 0000000..e45bae1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/ubuntu_netbook_remix_flickr_njpatel.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/vmware.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/vmware.jpg Binary files differnew file mode 100644 index 0000000..48aae52 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/vmware.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/vmwarevsparallels.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/vmwarevsparallels.jpg Binary files differnew file mode 100644 index 0000000..cb80f78 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/vmwarevsparallels.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/wikia.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/wikia.jpg Binary files differnew file mode 100644 index 0000000..4d94124 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/wikia.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/yahoodeveloper.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/yahoodeveloper.jpg Binary files differnew file mode 100644 index 0000000..e14e65f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/yahoodeveloper.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/youtubeannotations.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/youtubeannotations.jpg Binary files differnew file mode 100644 index 0000000..0731ce2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/jun/youtubeannotations.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/acid.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/acid.jpg Binary files differnew file mode 100644 index 0000000..860f60f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/acid.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/acid3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/acid3.jpg Binary files differnew file mode 100644 index 0000000..6f38198 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/acid3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/adobe10.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/adobe10.jpg Binary files differnew file mode 100644 index 0000000..38eb4bb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/adobe10.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/adobe5.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/adobe5.jpg Binary files differnew file mode 100644 index 0000000..6d43462 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/adobe5.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/adobe6.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/adobe6.jpg Binary files differnew file mode 100644 index 0000000..8906c41 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/adobe6.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/applelogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/applelogo.jpg Binary files differnew file mode 100644 index 0000000..63abd1e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/applelogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/automattic.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/automattic.jpg Binary files differnew file mode 100644 index 0000000..bf0dea4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/automattic.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/cartoonapp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/cartoonapp.jpg Binary files differnew file mode 100644 index 0000000..54ac3f7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/cartoonapp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/dobe7.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/dobe7.jpg Binary files differnew file mode 100644 index 0000000..bcf5be2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/dobe7.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/dottunes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/dottunes.jpg Binary files differnew file mode 100644 index 0000000..16bc96c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/dottunes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/dropbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/dropbox.jpg Binary files differnew file mode 100644 index 0000000..22ddc79 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/dropbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/evernote.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/evernote.jpg Binary files differnew file mode 100644 index 0000000..b49f3bd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/evernote.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/evernote2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/evernote2.jpg Binary files differnew file mode 100644 index 0000000..fafdea1 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/evernote2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/express-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/express-1.jpg Binary files differnew file mode 100644 index 0000000..23f16b6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/express-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/express-2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/express-2.jpg Binary files differnew file mode 100644 index 0000000..31d5017 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/express-2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/express-3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/express-3.jpg Binary files differnew file mode 100644 index 0000000..94efcf9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/express-3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/fedoralogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/fedoralogo.jpg Binary files differnew file mode 100644 index 0000000..6d07a7c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/fedoralogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ff3memorytests.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ff3memorytests.jpg Binary files differnew file mode 100644 index 0000000..2a192a7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ff3memorytests.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ff3robot.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ff3robot.jpg Binary files differnew file mode 100644 index 0000000..2816ba2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ff3robot.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/finderpop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/finderpop.jpg Binary files differnew file mode 100644 index 0000000..5d7a680 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/finderpop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flickr4party.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flickr4party.jpg Binary files differnew file mode 100644 index 0000000..f35dad9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flickr4party.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flip.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flip.jpg Binary files differnew file mode 100644 index 0000000..54d22e9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flip.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flip1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flip1.jpg Binary files differnew file mode 100644 index 0000000..33a454e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flip1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flip2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flip2.jpg Binary files differnew file mode 100644 index 0000000..040be49 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flip2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flocksmall.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flocksmall.jpg Binary files differnew file mode 100644 index 0000000..6e21a48 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/flocksmall.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/friendfeedlogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/friendfeedlogo.jpg Binary files differnew file mode 100644 index 0000000..0956fa7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/friendfeedlogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/friendfeedtwitter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/friendfeedtwitter.jpg Binary files differnew file mode 100644 index 0000000..e74b5f7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/friendfeedtwitter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gadmanager.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gadmanager.jpg Binary files differnew file mode 100644 index 0000000..3f64d1e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gadmanager.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gcalsync.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gcalsync.jpg Binary files differnew file mode 100644 index 0000000..b8f31fa --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gcalsync.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gdocsinterface.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gdocsinterface.jpg Binary files differnew file mode 100644 index 0000000..b2de4b9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gdocsinterface.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/geotwitter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/geotwitter.jpg Binary files differnew file mode 100644 index 0000000..0187535 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/geotwitter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmailcontacts.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmailcontacts.jpg Binary files differnew file mode 100644 index 0000000..77e4a63 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmailcontacts.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmapedits.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmapedits.jpg Binary files differnew file mode 100644 index 0000000..1cdad43 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmapedits.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmaps.jpg Binary files differnew file mode 100644 index 0000000..f98e665 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmapsstreet.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmapsstreet.jpg Binary files differnew file mode 100644 index 0000000..187f994 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gmapsstreet.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gsky.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gsky.jpg Binary files differnew file mode 100644 index 0000000..733a28a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/gsky.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ie8activities.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ie8activities.jpg Binary files differnew file mode 100644 index 0000000..9f55ab6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ie8activities.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/lightroom.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/lightroom.jpg Binary files differnew file mode 100644 index 0000000..75405fd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/lightroom.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mapquest.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mapquest.jpg Binary files differnew file mode 100644 index 0000000..83553c6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mapquest.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mapsedits.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mapsedits.jpg Binary files differnew file mode 100644 index 0000000..f411282 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mapsedits.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mt.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mt.jpg Binary files differnew file mode 100644 index 0000000..48f3e94 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mt.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mtvwp.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mtvwp.jpg Binary files differnew file mode 100644 index 0000000..eab266a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/mtvwp.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/myspaceapps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/myspaceapps.jpg Binary files differnew file mode 100644 index 0000000..856bbae --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/myspaceapps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/newsfire.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/newsfire.jpg Binary files differnew file mode 100644 index 0000000..d28430b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/newsfire.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/officeliveworkspace.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/officeliveworkspace.jpg Binary files differnew file mode 100644 index 0000000..99c83d5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/officeliveworkspace.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/opensocial.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/opensocial.jpg Binary files differnew file mode 100644 index 0000000..448984e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/opensocial.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/opera.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/opera.jpg Binary files differnew file mode 100644 index 0000000..d3815e7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/opera.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/philproj.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/philproj.jpg Binary files differnew file mode 100644 index 0000000..35c9e43 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/philproj.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/pipesbadge.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/pipesbadge.jpg Binary files differnew file mode 100644 index 0000000..e3b7b77 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/pipesbadge.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/prismaddon.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/prismaddon.jpg Binary files differnew file mode 100644 index 0000000..52834de --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/prismaddon.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/pselements.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/pselements.jpg Binary files differnew file mode 100644 index 0000000..56490b0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/pselements.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/safari.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/safari.jpg Binary files differnew file mode 100644 index 0000000..8c2ad95 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/safari.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/safariWINE.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/safariWINE.jpg Binary files differnew file mode 100644 index 0000000..d2b033c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/safariWINE.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/safariupdate.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/safariupdate.jpg Binary files differnew file mode 100644 index 0000000..996bb40 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/safariupdate.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/sketch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/sketch.jpg Binary files differnew file mode 100644 index 0000000..22ab485 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/sketch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/t9.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/t9.jpg Binary files differnew file mode 100644 index 0000000..95f4852 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/t9.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/toast9.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/toast9.jpg Binary files differnew file mode 100644 index 0000000..71f9e71 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/toast9.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/twitter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/twitter.jpg Binary files differnew file mode 100644 index 0000000..e8a8620 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/twitter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/twitterbroken.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/twitterbroken.jpg Binary files differnew file mode 100644 index 0000000..e90d862 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/twitterbroken.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ubuntu804.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ubuntu804.jpg Binary files differnew file mode 100644 index 0000000..62e1556 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/ubuntu804.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wikimapsmashup.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wikimapsmashup.jpg Binary files differnew file mode 100644 index 0000000..d7dc79a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wikimapsmashup.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wikipedialogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wikipedialogo.jpg Binary files differnew file mode 100644 index 0000000..7889db0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wikipedialogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/winxplogo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/winxplogo.jpg Binary files differnew file mode 100644 index 0000000..8b6c9ba --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/winxplogo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wordpress.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wordpress.jpg Binary files differnew file mode 100644 index 0000000..e94dbf3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wordpress.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wp25.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wp25.jpg Binary files differnew file mode 100644 index 0000000..900baa7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/wp25.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/youtube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/youtube.jpg Binary files differnew file mode 100644 index 0000000..0bc9a14 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/youtube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/yslow.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/yslow.jpg Binary files differnew file mode 100644 index 0000000..9dfd040 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/yslow.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/zohooffline.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/zohooffline.jpg Binary files differnew file mode 100644 index 0000000..86fe4ce --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/zohooffline.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/zohopeople.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/zohopeople.jpg Binary files differnew file mode 100644 index 0000000..7fc5f63 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/mar/zohopeople.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/OO.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/OO.jpg Binary files differnew file mode 100644 index 0000000..2b5e8b3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/OO.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/addart.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/addart.jpg Binary files differnew file mode 100644 index 0000000..c72a8fc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/addart.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/addart1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/addart1.jpg Binary files differnew file mode 100644 index 0000000..6522ce4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/addart1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/addart2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/addart2.jpg Binary files differnew file mode 100644 index 0000000..c82e567 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/addart2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/adobebetas.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/adobebetas.jpg Binary files differnew file mode 100644 index 0000000..418d22e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/adobebetas.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/appleupdate.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/appleupdate.jpg Binary files differnew file mode 100644 index 0000000..dbfbcb0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/appleupdate.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/clearcontext.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/clearcontext.jpg Binary files differnew file mode 100644 index 0000000..ccf7e81 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/clearcontext.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/clipboards.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/clipboards.jpg Binary files differnew file mode 100644 index 0000000..129e1db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/clipboards.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/dl2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/dl2.jpg Binary files differnew file mode 100644 index 0000000..6185e26 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/dl2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/dragonfly.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/dragonfly.jpg Binary files differnew file mode 100644 index 0000000..e1468a7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/dragonfly.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flash10.gif b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flash10.gif Binary files differnew file mode 100644 index 0000000..83518b6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flash10.gif diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flash10.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flash10.jpg Binary files differnew file mode 100644 index 0000000..726fc37 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flash10.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flash10a.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flash10a.jpg Binary files differnew file mode 100644 index 0000000..5e98d06 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flash10a.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flickr_hownowdesign_clipboards.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flickr_hownowdesign_clipboards.jpg Binary files differnew file mode 100644 index 0000000..2cf65a5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/flickr_hownowdesign_clipboards.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/fusion.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/fusion.jpg Binary files differnew file mode 100644 index 0000000..cc3cc4d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/fusion.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/fusionbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/fusionbox.jpg Binary files differnew file mode 100644 index 0000000..5429889 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/fusionbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gcode.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gcode.jpg Binary files differnew file mode 100644 index 0000000..860c2d0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gcode.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gearthnews.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gearthnews.jpg Binary files differnew file mode 100644 index 0000000..8d01d10 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gearthnews.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gmailcube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gmailcube.jpg Binary files differnew file mode 100644 index 0000000..b8622d2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gmailcube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gmaps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gmaps.jpg Binary files differnew file mode 100644 index 0000000..c88965b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/gmaps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/googlesites.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/googlesites.jpg Binary files differnew file mode 100644 index 0000000..b3431bd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/googlesites.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/greaderiphone.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/greaderiphone.jpg Binary files differnew file mode 100644 index 0000000..fbad4c2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/greaderiphone.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/greadernotes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/greadernotes.jpg Binary files differnew file mode 100644 index 0000000..883b34c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/greadernotes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/helloworld.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/helloworld.jpg Binary files differnew file mode 100644 index 0000000..f29c6c5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/helloworld.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/ical.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/ical.jpg Binary files differnew file mode 100644 index 0000000..64d4f9c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/ical.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/kde41.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/kde41.jpg Binary files differnew file mode 100644 index 0000000..adf26bb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/kde41.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mirino2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mirino2.jpg Binary files differnew file mode 100644 index 0000000..30e8367 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mirino2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mirino3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mirino3.jpg Binary files differnew file mode 100644 index 0000000..56fbeb6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mirino3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mirino4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mirino4.jpg Binary files differnew file mode 100644 index 0000000..50d0500 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mirino4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mscashback.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mscashback.jpg Binary files differnew file mode 100644 index 0000000..d94c02f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/mscashback.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/myspacetwitter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/myspacetwitter.jpg Binary files differnew file mode 100644 index 0000000..7dcc6c8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/myspacetwitter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/obessing.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/obessing.jpg Binary files differnew file mode 100644 index 0000000..f22fbc6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/obessing.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/office4mac2008.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/office4mac2008.jpg Binary files differnew file mode 100644 index 0000000..583fbd4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/office4mac2008.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/opensolaris.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/opensolaris.jpg Binary files differnew file mode 100644 index 0000000..d11bb68 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/opensolaris.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/opera.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/opera.jpg Binary files differnew file mode 100644 index 0000000..a453866 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/opera.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/operawidgetsdk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/operawidgetsdk.jpg Binary files differnew file mode 100644 index 0000000..ff57093 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/operawidgetsdk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/processing.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/processing.jpg Binary files differnew file mode 100644 index 0000000..e481cf9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/processing.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/processing1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/processing1.jpg Binary files differnew file mode 100644 index 0000000..76a3a31 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/processing1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/processing2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/processing2.jpg Binary files differnew file mode 100644 index 0000000..c5d2cb2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/processing2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/scn.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/scn.jpg Binary files differnew file mode 100644 index 0000000..0fd174e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/scn.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/songbird.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/songbird.jpg Binary files differnew file mode 100644 index 0000000..1127969 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/songbird.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/thunderbird3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/thunderbird3.jpg Binary files differnew file mode 100644 index 0000000..2b6ad07 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/thunderbird3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/typepadantispam.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/typepadantispam.jpg Binary files differnew file mode 100644 index 0000000..479a359 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/typepadantispam.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wheels.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wheels.jpg Binary files differnew file mode 100644 index 0000000..c35e5a2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wheels.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wheels3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wheels3.jpg Binary files differnew file mode 100644 index 0000000..4d4e90b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wheels3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/whels2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/whels2.jpg Binary files differnew file mode 100644 index 0000000..e880df6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/whels2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wine.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wine.jpg Binary files differnew file mode 100644 index 0000000..e1c2836 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wine.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wwt.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wwt.jpg Binary files differnew file mode 100644 index 0000000..92ba7f0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/wwt.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/xobni.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/xobni.jpg Binary files differnew file mode 100644 index 0000000..5c8abcf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/xobni.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/zohoimport.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/zohoimport.jpg Binary files differnew file mode 100644 index 0000000..ae08185 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/zohoimport.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/may/zohosignin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/zohosignin.jpg Binary files differnew file mode 100644 index 0000000..e7c9ee5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/may/zohosignin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/content-aware.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/content-aware.jpg Binary files differnew file mode 100644 index 0000000..9b2fa61 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/content-aware.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/firefox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/firefox.jpg Binary files differnew file mode 100644 index 0000000..8651f14 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/firefox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/flickrpanda.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/flickrpanda.jpg Binary files differnew file mode 100644 index 0000000..fd2668c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/flickrpanda.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/friendfeedpush.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/friendfeedpush.jpg Binary files differnew file mode 100644 index 0000000..be39d60 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/friendfeedpush.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/glabs.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/glabs.jpg Binary files differnew file mode 100644 index 0000000..02cb1b7 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/glabs.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/gmailgadgets.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/gmailgadgets.jpg Binary files differnew file mode 100644 index 0000000..8d13390 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/gmailgadgets.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/gmailimap.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/gmailimap.jpg Binary files differnew file mode 100644 index 0000000..2d8ae3c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/gmailimap.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/hirst-finance.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/hirst-finance.jpg Binary files differnew file mode 100644 index 0000000..83e18a5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/hirst-finance.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/inquisitorfirefox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/inquisitorfirefox.jpg Binary files differnew file mode 100644 index 0000000..25841c9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/inquisitorfirefox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/list.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/list.jpg Binary files differnew file mode 100644 index 0000000..d2a29e5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/list.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/macbook.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/macbook.jpg Binary files differnew file mode 100644 index 0000000..0fe81a6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/macbook.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/macbookfirefox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/macbookfirefox.jpg Binary files differnew file mode 100644 index 0000000..2f4dfe8 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/macbookfirefox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/menufight.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/menufight.jpg Binary files differnew file mode 100644 index 0000000..c8af33b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/menufight.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/monkey1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/monkey1.jpg Binary files differnew file mode 100644 index 0000000..ee058a5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/monkey1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/monkey2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/monkey2.jpg Binary files differnew file mode 100644 index 0000000..428cbec --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/monkey2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/mosttraveled.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/mosttraveled.jpg Binary files differnew file mode 100644 index 0000000..8ff1119 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/mosttraveled.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/northwestpassage.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/northwestpassage.jpg Binary files differnew file mode 100644 index 0000000..0f6506c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/northwestpassage.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/oofail.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/oofail.jpg Binary files differnew file mode 100644 index 0000000..f6a3b3a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/oofail.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/oomac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/oomac.jpg Binary files differnew file mode 100644 index 0000000..e5e41fe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/oomac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/oosplash.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/oosplash.jpg Binary files differnew file mode 100644 index 0000000..969a4b2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/oosplash.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/photocopy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/photocopy.jpg Binary files differnew file mode 100644 index 0000000..b34d0a0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/photocopy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/pie.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/pie.jpg Binary files differnew file mode 100644 index 0000000..262b0fe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/pie.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/readitlater.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/readitlater.jpg Binary files differnew file mode 100644 index 0000000..8f45d4d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/readitlater.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/seamcarving.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/seamcarving.jpg Binary files differnew file mode 100644 index 0000000..358a5cc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/seamcarving.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/songbird.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/songbird.jpg Binary files differnew file mode 100644 index 0000000..bfa337a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/songbird.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/sumopaint.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/sumopaint.jpg Binary files differnew file mode 100644 index 0000000..7ea44db --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/sumopaint.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/webwithoutwords.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/webwithoutwords.jpg Binary files differnew file mode 100644 index 0000000..8a79922 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/webwithoutwords.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/youtube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/youtube.jpg Binary files differnew file mode 100644 index 0000000..a474a7d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/youtube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/youtubesearch.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/youtubesearch.jpg Binary files differnew file mode 100644 index 0000000..0b70a01 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/oct/youtubesearch.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/amazonwebservices.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/amazonwebservices.jpg Binary files differnew file mode 100644 index 0000000..45af72c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/amazonwebservices.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/attachment_warning.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/attachment_warning.jpg Binary files differnew file mode 100644 index 0000000..405f29c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/attachment_warning.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/berners-lee.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/berners-lee.jpg Binary files differnew file mode 100644 index 0000000..04964bc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/berners-lee.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/dfw.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/dfw.jpg Binary files differnew file mode 100644 index 0000000..fc9ebc2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/dfw.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/dropbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/dropbox.jpg Binary files differnew file mode 100644 index 0000000..cec224f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/dropbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/google.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/google.jpg Binary files differnew file mode 100644 index 0000000..3ebe885 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/google.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/html5small.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/html5small.jpg Binary files differnew file mode 100644 index 0000000..79766e0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/html5small.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ike.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ike.jpg Binary files differnew file mode 100644 index 0000000..fbd1a0f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ike.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/joost.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/joost.jpg Binary files differnew file mode 100644 index 0000000..808c50e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/joost.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/jumpbox.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/jumpbox.jpg Binary files differnew file mode 100644 index 0000000..ae4d625 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/jumpbox.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/marcopolo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/marcopolo.jpg Binary files differnew file mode 100644 index 0000000..6822cbd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/marcopolo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ministry.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ministry.jpg Binary files differnew file mode 100644 index 0000000..df6c8c0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ministry.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/msadsmac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/msadsmac.jpg Binary files differnew file mode 100644 index 0000000..ad65ec9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/msadsmac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/nope.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/nope.jpg Binary files differnew file mode 100644 index 0000000..8e08145 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/nope.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/podcaster.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/podcaster.jpg Binary files differnew file mode 100644 index 0000000..faa60e9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/podcaster.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/robotskillkitten.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/robotskillkitten.jpg Binary files differnew file mode 100644 index 0000000..11d21f2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/robotskillkitten.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/sfx.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/sfx.jpg Binary files differnew file mode 100644 index 0000000..ee415cc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/sfx.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/testing.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/testing.jpg Binary files differnew file mode 100644 index 0000000..f4b3ebf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/testing.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ubunti-1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ubunti-1.jpg Binary files differnew file mode 100644 index 0000000..4076665 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ubunti-1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ubuntu2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ubuntu2.jpg Binary files differnew file mode 100644 index 0000000..32289b3 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ubuntu2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ubuntu3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ubuntu3.jpg Binary files differnew file mode 100644 index 0000000..e2d8385 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/ubuntu3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/windows_stats.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/windows_stats.jpg Binary files differnew file mode 100644 index 0000000..1503e84 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/windows_stats.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/youtube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/youtube.jpg Binary files differnew file mode 100644 index 0000000..767fdb6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/youtube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/zohocreator.jpg b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/zohocreator.jpg Binary files differnew file mode 100644 index 0000000..68437be --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/2008/sept/zohocreator.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/blue2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/blue2.jpg Binary files differnew file mode 100644 index 0000000..c2bd439 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/blue2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/bluetrip.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/bluetrip.jpg Binary files differnew file mode 100644 index 0000000..645bef2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/bluetrip.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/boxee.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/boxee.jpg Binary files differnew file mode 100644 index 0000000..6d164a9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/boxee.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/brightkite.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/brightkite.jpg Binary files differnew file mode 100644 index 0000000..9d98a49 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/brightkite.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/choosy.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/choosy.jpg Binary files differnew file mode 100644 index 0000000..bf1770b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/choosy.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/chrome.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/chrome.jpg Binary files differnew file mode 100644 index 0000000..674312a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/chrome.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/citysearchnbeta.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/citysearchnbeta.jpg Binary files differnew file mode 100644 index 0000000..395866f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/citysearchnbeta.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/coda16.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/coda16.jpg Binary files differnew file mode 100644 index 0000000..2fcbc48 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/coda16.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/configurator.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/configurator.jpg Binary files differnew file mode 100644 index 0000000..7ab5764 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/configurator.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/couchsurfing.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/couchsurfing.jpg Binary files differnew file mode 100644 index 0000000..4bedc9b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/couchsurfing.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/facebookverified.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/facebookverified.jpg Binary files differnew file mode 100644 index 0000000..3565109 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/facebookverified.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31mockup.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31mockup.jpg Binary files differnew file mode 100644 index 0000000..9560cd9 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31mockup.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31private.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31private.jpg Binary files differnew file mode 100644 index 0000000..aa12d68 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31private.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31privatemenu.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31privatemenu.jpg Binary files differnew file mode 100644 index 0000000..3c85041 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31privatemenu.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31privatemessage.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31privatemessage.jpg Binary files differnew file mode 100644 index 0000000..5972233 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31privatemessage.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31restore.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31restore.jpg Binary files differnew file mode 100644 index 0000000..406d33a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff31restore.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/ff3logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff3logo.jpg Binary files differnew file mode 100644 index 0000000..02275d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/ff3logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/ffchat.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/ffchat.jpg Binary files differnew file mode 100644 index 0000000..58f5aa0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/ffchat.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/flickr.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/flickr.jpg Binary files differnew file mode 100644 index 0000000..f271768 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/flickr.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/gflu.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/gflu.jpg Binary files differnew file mode 100644 index 0000000..a627750 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/gflu.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/glue1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/glue1.jpg Binary files differnew file mode 100644 index 0000000..0407751 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/glue1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/glue3.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/glue3.jpg Binary files differnew file mode 100644 index 0000000..f140466 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/glue3.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/gluebottom.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/gluebottom.jpg Binary files differnew file mode 100644 index 0000000..e5adafd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/gluebottom.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/gluetop.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/gluetop.jpg Binary files differnew file mode 100644 index 0000000..56ca4fb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/gluetop.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/gmailtasks.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/gmailtasks.jpg Binary files differnew file mode 100644 index 0000000..95c8a9f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/gmailtasks.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/gmailthemes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/gmailthemes.jpg Binary files differnew file mode 100644 index 0000000..e46a9cc --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/gmailthemes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/gmailthemes2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/gmailthemes2.jpg Binary files differnew file mode 100644 index 0000000..42a2e8c --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/gmailthemes2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/google_logo.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/google_logo.jpg Binary files differnew file mode 100644 index 0000000..8815607 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/google_logo.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/gtranslate.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/gtranslate.jpg Binary files differnew file mode 100644 index 0000000..8ff97fe --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/gtranslate.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/hdyoutube.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/hdyoutube.jpg Binary files differnew file mode 100644 index 0000000..a1cb46e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/hdyoutube.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/hotmailredes.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/hotmailredes.jpg Binary files differnew file mode 100644 index 0000000..a9031cb --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/hotmailredes.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/ikeepadiary.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/ikeepadiary.jpg Binary files differnew file mode 100644 index 0000000..962c1a4 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/ikeepadiary.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/koobface.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/koobface.jpg Binary files differnew file mode 100644 index 0000000..940985b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/koobface.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/lifephoto.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/lifephoto.jpg Binary files differnew file mode 100644 index 0000000..18ad22b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/lifephoto.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/lightroomgps.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/lightroomgps.jpg Binary files differnew file mode 100644 index 0000000..175b2ed --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/lightroomgps.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/macvirus.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/macvirus.jpg Binary files differnew file mode 100644 index 0000000..0a25792 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/macvirus.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/nativeclientdemos.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/nativeclientdemos.jpg Binary files differnew file mode 100644 index 0000000..b855a1b --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/nativeclientdemos.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/ogvtalk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/ogvtalk.jpg Binary files differnew file mode 100644 index 0000000..ec9a188 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/ogvtalk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/operamini42.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/operamini42.jpg Binary files differnew file mode 100644 index 0000000..5e0274e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/operamini42.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/parallels4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/parallels4.jpg Binary files differnew file mode 100644 index 0000000..9f1f091 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/parallels4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/piemenu.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/piemenu.jpg Binary files differnew file mode 100644 index 0000000..d26bcd5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/piemenu.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/piemenutake2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/piemenutake2.jpg Binary files differnew file mode 100644 index 0000000..b940da0 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/piemenutake2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/playlist.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/playlist.jpg Binary files differnew file mode 100644 index 0000000..630e910 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/playlist.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/processingwatercolor.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/processingwatercolor.jpg Binary files differnew file mode 100644 index 0000000..7bc6694 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/processingwatercolor.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/pshopcs4.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/pshopcs4.jpg Binary files differnew file mode 100644 index 0000000..8cf4e9f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/pshopcs4.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/represent.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/represent.jpg Binary files differnew file mode 100644 index 0000000..439f131 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/represent.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/searchcloudlet.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/searchcloudlet.jpg Binary files differnew file mode 100644 index 0000000..dfa2fb2 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/searchcloudlet.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/searchwiki1.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/searchwiki1.jpg Binary files differnew file mode 100644 index 0000000..c8301d6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/searchwiki1.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/searchwiki2.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/searchwiki2.jpg Binary files differnew file mode 100644 index 0000000..0f01067 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/searchwiki2.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/searchwikino.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/searchwikino.jpg Binary files differnew file mode 100644 index 0000000..4f59797 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/searchwikino.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/songbirdimport.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/songbirdimport.jpg Binary files differnew file mode 100644 index 0000000..ad53456 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/songbirdimport.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/songbirdmainwin.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/songbirdmainwin.jpg Binary files differnew file mode 100644 index 0000000..b80538d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/songbirdmainwin.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/songbirdweb.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/songbirdweb.jpg Binary files differnew file mode 100644 index 0000000..215a35d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/songbirdweb.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/streetviewnew.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/streetviewnew.jpg Binary files differnew file mode 100644 index 0000000..9ce2e8a --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/streetviewnew.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/twitterfriendfeed.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/twitterfriendfeed.jpg Binary files differnew file mode 100644 index 0000000..8927f63 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/twitterfriendfeed.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/twittervote.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/twittervote.jpg Binary files differnew file mode 100644 index 0000000..d5aeee5 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/twittervote.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/typepadconnect.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/typepadconnect.jpg Binary files differnew file mode 100644 index 0000000..d32fbfd --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/typepadconnect.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/utorrentmac.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/utorrentmac.jpg Binary files differnew file mode 100644 index 0000000..f252d98 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/utorrentmac.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/vista.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/vista.jpg Binary files differnew file mode 100644 index 0000000..f1c474e --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/vista.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/vtalk.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/vtalk.jpg Binary files differnew file mode 100644 index 0000000..eb7f48d --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/vtalk.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/wifirouter.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/wifirouter.jpg Binary files differnew file mode 100644 index 0000000..92d0cda --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/wifirouter.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/wordpress.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/wordpress.jpg Binary files differnew file mode 100644 index 0000000..a77c999 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/wordpress.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/worldswirl.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/worldswirl.jpg Binary files differnew file mode 100644 index 0000000..5d7154f --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/worldswirl.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/xobni.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/xobni.jpg Binary files differnew file mode 100644 index 0000000..25f8094 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/xobni.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/youtubehd.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/youtubehd.jpg Binary files differnew file mode 100644 index 0000000..ea17943 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/youtubehd.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/nov/youtubewide.jpg b/wired/old/published/Webmonkey/Monkey_Bites/nov/youtubewide.jpg Binary files differnew file mode 100644 index 0000000..6e68560 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/nov/youtubewide.jpg diff --git a/wired/old/published/Webmonkey/Monkey_Bites/slydial.txt b/wired/old/published/Webmonkey/Monkey_Bites/slydial.txt new file mode 100644 index 0000000..8b001cf --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/slydial.txt @@ -0,0 +1,25 @@ +It would be sterotyping to say that all nerds seek to avoid human interaction, but let's face all of us, even non-nerds have at least one friend we avoid calling. Perhaps they talk too long, perhaps they're simply phone-awkward. Whatever the case, Slydial, the phone service that allows you to go straight to voicemail, as rolled out a slew of mobile apps to make the task a bit easier. + +Previously you needed to call Slydial and then enter the destination phone number, but that extra step has been eliminated thanks to Slydial's new [iPhone app (also available for BlackBerry, and Windows Mobile platforms). + +Much like the Fring VOIP app we looked at earlier this year, the Slydial app is a separate keypad app that dials out through Slydial's web service. To use it just install the app, launch it and choose from your contacts list. your call will then go straight to that person's voicemail. + +Slydial notes that some modile carrier may show a missed call, but most simply pop up a voicemail, which lets you get to the point without having to wade through your friends' long-winded tales of vacation in Aruba (that's what blogging is for people, making the boring story optional). + +All the Slydial apps are free, you can grab them from the [Slydial site][3], and the iPhone version can be found here (App Store link). + +[via [Techcrunch][1]] + +[1]: http://www.techcrunch.com/2008/11/17/slydial-makes-it-even-easier-to-avoid-awkward-human-interaction/ +[2]: http://www.slydial.com/ +[3]: http://www.slydial.com/apps.php + +<strong>See Also:</strong><br/> +<ul> +<li><a href=""></a></li> +<li><a href=""></a></li> + +<li><a href=""></a></li> + +<li><a href=""></a></li> +</ul>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Monkey_Bites/squeezecenter.txt b/wired/old/published/Webmonkey/Monkey_Bites/squeezecenter.txt new file mode 100644 index 0000000..7ebddd6 --- /dev/null +++ b/wired/old/published/Webmonkey/Monkey_Bites/squeezecenter.txt @@ -0,0 +1,52 @@ +Want streaming music throughout your house? Well, if you're the DIY type, you can install one of the many Windows or Linux-based music servers, hook it into your wireless router and then configure some sort of wifi receiver to transfer the signal to your stereo. + +It isn't impossible, but it also requires some technical chops. + +Fortunately, if you don't mind paying a little money, there's a much easier way, Logictech's Squeezebox media player. + +The [http://www.slimdevices.com/pi_squeezebox.html Squeezebox Classic] and the slightly newer [http://www.slimdevices.com/pi_duet.html Squeezebox Duet] remove the tedious details of software hacking and make it easy to stream music from your PC, Mac or dedicated server to any garden variety stereo receiver. + +Even better, [http://www.slimdevices.com/pi_features.html SqueezeCenter], the software that powers the Squeezebox should work with any software MP3 player and it supports MP3, AAC, WMA, FLAC, Ogg Vorbis, WAV and more, so you aren't format-limited like you are with iTunes. + +Today we'll take a look at what the Squeezebox does and walk you through setting up your own home audio network. + +== What you need == + +A Squeezebox or Duet, obviously. + +A wireless router. + +A PC, DAS or NAS device to store your music and run the SqueezeCenter software. Because The SqueezeCenter, which powers the Squeezebox and provides a web interface to control your Squeezebox, is just a bundled web server and collection of Perl scripts it doesn't require special hardware. Just about any reasonably powered network storage device will work and of course you can always use your PC. + +SqueezeCenter software (available for Win, Mac and Linux) + +== Set up == + +Once you have your new Squeezebox, just plug it in and hook it up to your stereo. The device will walk you through the necessary steps to connect to your home wifi network. If your router happens to be next to your stereo, skip the wifi and plug directly into the ethernet port for more speed. + +Once the Squeezebox is on your network, use the remote to select SqueezeNetwork. This will connect you to thousands of internet radio stations, music services like Pandora (free 90 trial for Squeezebox users) Rhapsody and more. Use your Squeezebox remote to explore all the internet radio options. + +I'm a big Pandora fan and spend most of time on the Squeezebox listening to my Pandora radio stations. + +To use Pandora through the Squeezebox you'll need to head to the [http://www.squeezenetwork.com/user/login Squeeze Network homepage] and create a free account. When you connect your account with your Pandora.com account (you'll do this from your account page at the Squeezenetwork website) Pandora will automatically upgrade you to a 90-day-free subscription -- no credit card required. Of course if you enjoy Pandora and want to keep using it you'll need to pay the $36/year fee once your 90 days are up. + +== Serving your own music == + +The internet radio and streaming features are all nice, but what about your own music collection? How do we get that into the Squeezebox? + +The answer is simple, just install the SqueezeCenter software on your PC, Mac or NAS device. If you use iTunes to manage your music, SqueezeCenter can even read the same library and import all your existing playlists. + +To get started head over to SqueezeCenter site and [http://www.slimdevices.com/su_downloads.html download the latest version] of the open source software. Just run the installer and then point SqueezeCenter to your music collection. If you use iTunes, don't for get to choose that option in the setup dialog. + +Once SqueezeCenter is running, head back over to your Squeezebox and choose "SqueezeCenter" and you'll have access to all your music, as well as the radio options we explored earlier. + + +== Plugins == + +Here's where SqueezeCenter gets really fun. There are [http://wiki.slimdevices.com/index.php/SqueezeCenter_Plugins hundreds of third party plugins available] for SqueezeCenter. Want to send your current track to last.fm? No problem, just use the last.fm plugin. Want to change the look of SqueezeCenter? Plenty of skins available. How about [http://www.mavit.org.uk/demuxtape/ streaming music from your friends' muxtape mixes]? + +Because the SqueezeCenter software is open source and there's a plugin SDK, the sky's the limit when it come to plugins. If you have ideas, head over to the [http://wiki.slimdevices.com/index.php/PluginIdeas suggestions page and add them in, who knows, maybe someone will build what you're looking for. + +== Conclusion == + +The Squeezebox/SqueezeCenter may not be the cheapest option when it comes to streaming music through your house, but it's certainly one of the easiest. If you'd rather spend your time listening to music than upgrading software and fiddling with your network, then the Squeezebox is for you.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/OpenDNS.txt b/wired/old/published/Webmonkey/OpenDNS.txt new file mode 100644 index 0000000..20a060c --- /dev/null +++ b/wired/old/published/Webmonkey/OpenDNS.txt @@ -0,0 +1,59 @@ +Few of us spend much time thinking about the internet's domain name system: the architecture that invisibly translates a browser's request for, say, wired.com into the numeric IP address where the site is hosted. + +Yet, despite being largely transparent, the DNS system is not without its problems. Security researcher Dan Kaminsky recently [http://www.wired.com/politics/security/commentary/securitymatters/2008/07/securitymatters_0723 discovered critical a vulnerability] in some DNS servers. Despite trying to keep the information under wraps until a patch could be released, the attack leaked out and venders scrambled to patch their servers. + +The DNS flaw that Kaminsky discovered allows a hacker to conduct a "cache poisoning attack" that could be accomplished in about ten seconds, allowing an attacker to fool a DNS server into redirecting web surfers to malicious web sites. + +The problem is, how do you know your ISP has applied the patch? There's really no way you can know, short of watching for an e-mail update or press release. But the news isn't something most venders would want to advertise -- uh, sorry, but it turns out our servers are insecure and might make you vulnerable to very simple attacks you'll never notice. + +Fortunately there is a solution -- just bypass your ISP's DNS server and use a service like OpenDNS, which was one of the few DNS venders [http://blog.OpenDNS.com/2008/07/08/OpenDNS-keeping-you-safe/ not affected by this latest bug]. Because OpenDNS uses a number of security enhancements above and beyond what your common ISP is likely to employ (like source port randomization) it wasn't affected by the bug Kaminsky discovered. + +Not only does OpenDNS offer a more secure setup, you get a host of advanced features and it just might be significantly faster as well. + +== Introducing OpenDNS == + +Put simply, OpenDNS is safer and faster DNS replacement. Set up is not much more difficult than setting up a POP e-mail account and you get quite a few extra features as an added bonus. + +OpenDNS provides niceties like spelling correction -- type wordpres.org when you meant, wordpress.org? OpenDNS automatically corrects and redirects. OpenDNS also caches IP addresses so it doesn't have to do a fresh look up every time you request a page, which results in faster load times. + +Other power user features include the ability to set network-wide keyboard shortcuts (always heading to the Webmonkey homepage? Set up a keyword shortcut and all you need to type is say, "m" and OpenDNS will take you straight to webmonkey.com), phishing blacklists to keep you out of trouble and IP blocking to prevent users from accessing sites you don't want them visiting. + +== Getting Started == + +There are two main ways to set up OpenDNS. First off you can set it up for just a single computer -- if you've only got one PC plugged directly into your cable/DSL modem this would be the way to go. + +However, these days most of us probably have some sort of router between the modem and our PCs. Let's take a look at how to set up OpenDNS with a router. + +The first step is to sign up with OpenDNS -- don't worry, it's painless and free. Once you have an account you need to configure your router to use the OpenDNS DNS servers rather than the defaults your ISP provides. + +Most routers have some kind of web-based configuration panel, for instance, Linksys routers can be accessed at [http://192.168.1.1 http://192.168.1.1]. Check your router's documentation to see where the config screen lives, or consult the OpenDNS site which provides [https://www.OpenDNS.com/start specific instructions] for about a dozen different routers. + +Once you've logged into your router's config panel, the settings you want to look for are the Static DNS Server settings. Chances are those fields are currently blank, but if not write down your current DNS settings before switching them over OpenDNS, in case you want to return to your old settings for any reason. + +Now just plug in OpenDNS's addresses, which are 208.67.222.222 and 208.67.220.220. If your router has space for more than two addresses just leave the extra spaces blank. + +Now save your settings. Your router will most likely reboot and once it's done you should head to the [http://www.OpenDNS.com/welcome/ OpenDNS test page] and make sure that you are in fact using the OpenDNS servers. + +And that's it, you're done. + +== Advanced options == + +Now you're safe from the DNS bug and you can login to your OpenDNS account to configure some advanced options (just click the Dashboard link at the top of the site). + +The OpenDNS dashboard has links to all the cool features -- setup keyword shortcuts, block domains, see network statistics and even enable dynamic IP updating. + +You maybe wondering how OpenDNS makes any money giving all this stuff away. The answer is that every time you encounter a DNS error, in other words the site doesn't exist, OpenDNS dumps you on a custom error page complete with, you guessed it, Google ads (and a customized Google search page which can be used to search for whatever site you're looking for). + +If you like you can customize that error page with your company's logo or any other branding you want. There are also controls for customizing blocked site messages, phishing block pages and more. + +== Custom router setups == + +While OpenDNS is pretty easy to set up and the site has great instructions for most stock routers, what if you're using a custom router firmware like [http://www.polarcloud.com/tomato Tomato] or [http://www.dd-wrt.com/dd-wrtv3/index.php DD-WRT]? In that case setup can be a little more difficult. With the DD-WRT firmware in particular you may have a little trouble getting it to play nice with OpenDNS. + +Fortunately there are some [http://www.dd-wrt.com/wiki/index.php/OpenDNS DD-WRT forum posts] on the subject and a couple of tips on [http://www.OpenDNS.com/support/article/120 the OpenDNS site] as well. The solution depends on what version of DD-WRT you're using so be sure to have that info on hand before you start searching. + +== Conclusion == + +OpenDNS provides an easy way to sidestep the latest DNS bug. Of course there's no guarantee that there won't at some point be a flaw in even the DNS setup that OpenDNS uses, but at least you'll know about since you control most of your DNS settings. + +And the fact that you get spelling corrections, phishing protection, IP black/whitelists and a faster browsing experience, well, that's just the icing on the cake.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Python/python_intro.txt b/wired/old/published/Webmonkey/Python/python_intro.txt new file mode 100644 index 0000000..f7e5de0 --- /dev/null +++ b/wired/old/published/Webmonkey/Python/python_intro.txt @@ -0,0 +1,336 @@ +Python is an easy-to-learn yet powerful scripting language. Whether you need to automate some part of you desktop workflow, create a website or build a full-fledged desktop application, Python will fit the bill. + +While both powerful and flexible, Python has the advantage of being much simpler than other scripting languages like Perl and results in far cleaner, more maintainable code than PHP. + +Python embraces object-oriented programming and offers an easy syntax for packaging, distributing and importing code, which makes it easy to take advantage of all the great open source python projects that are free available on the web. + +And, because it's a high-level language, Python has high-level data types built in -- arrays, dictionaries and many more. Python also supports all the operators you're likely familiar with from other language like if/else, while and for loops (though Python's for loops may be slightly different than what you've used elsewhere). + +##Python - What is it?## + +So, what is this whole Python business all about? + +Python was created by Guido van Rossum (who now works for Google, which uses Python extensively in its various web services). The name comes from Monty Python's Flying Circus, not the reptile, which is why many Python tutorials, this one included, feature shameless Monty Python puns. + +Python is a compiled application that can be installed in a variety of environments -- your desktop, a web server, embedded devices like your phone and more. Python can run on all the major platforms and comes pre-installed on Mac OS X and most Linux distros. + +There are two main ways to use Python, either by starting it directly from the command line or by calling an external script. Obviously the later method is much more flexible unless you're just doing a quick one-time program. + +If you're running Python on a web server there are a variety of ways to serve the scripts, from a cgi-bin folder just as you would with a Perl script, to faster more robust options like mod_python or mod_wsgi, two Apache modules that call on the Python interpreter to process your pages. + +Before we dig in, you should know about a site called [http://www.python.org/ Python.org]. Python is an open-source language, and Python.org is its control center, with [http://docs.python.org/ref/ref.html extensive reference material], additional tutorials and [http://docs.python.org/lib/lib.html a complete library] of all the elements available in Python. + +##Installing Python## + +Python code can be written as scripts and saved in text files with the .py extension, however there's also a shell interpreter that makes it very easy to get started just by typing <code>python</code> in your shell prompt. For now that's what we'll be using to show some of the basic language principles. + +Go ahead and fire up a terminal window and type <code>python</code>. If you have Python installed, you'll get a message like this: + +<pre> +Python 2.4.4 (#1, Oct 18 2006, 10:34:39) +[GCC 4.0.1 (Apple Computer, Inc. build 5341)] on darwin +Type "help", "copyright", "credits" or "license" for more information. +>>> +</pre> + +The three angle brackets are the standard Python command prompt which lets you know you're now using the Python interpreter. Any time you see code snippets written with the >>> you know the author is referring to the Python shell. + +If typing <code>python</code> in your shell didn't load the interpreter, you'll need to install Python. You can [http://www.python.org/download/ download the source] from the Python website or use one of the many package installers available for most platforms. + +As of this writing the latest version of Python is 2.5.2. Mac OS X and most Linux distros ship with Python 2.5. Windows users may need to install the latest version. + +Although Python 2.5 offers some nice new features over previous versions, for backwards compatibility reasons we'll stick to concept and tools that will work with Python 2.3 and greater. + +##Python Differences## + +For the most part Python behaves much like PHP, Perl, Ruby and other language you may be familiar with, however, there are some important and noteworthy differences. + +Perhaps the most obvious (and Python aficionados would argue, important) is that line breaks and indentions in your code have meaning in Python. Whereas PHP and others use a semicolon or other mark to designate the end of a line, Python sees all new lines as, well, new lines. + +Also where PHP and others use angle brackets to enclose code blocks, Python merely wants the code indented. + +Python forces you to properly indent code blocks and eschews end-of-line punctuation like PHP's semicolons in favor of simple line breaks. + +This has some import consequences. First and foremost, it makes Python code much easier to read. The structure of a Python script is a snap to figure out at first glance. Even if you have no idea what the code is doing, you can tell how it does it just by glancing at it. + +Python forces neat, well structured code, but it also forces you pay more attention to how you write your code. Consider the following two code snippets, which do very different things: + +def myfunction(): + if x == y: + return True + +def myfunction(): + if x == y: + return true; + +In the first code block our return statement is indented, and therefore within the if statement. In the second code block we didn't indent the return statement so that function always returns true, regardless of our if test (technically that second function would generate an error because Python expects an indented block after the colon). + +###Spaces versus Tabs### + +As the joke goes, the most popular way to write Python code is to indent with spaces. The second most popular way to write Python is with tabs. Most good text editors have an "entab/detab" function which can convert tabs to spaces and vice versa. + +The important thing is to be consistent. <b>Don't mix tab and space indenting in the same script!</b> Doing so will cause Python to throw an error and your code won't execute. + + +##Getting Started## + +Assuming you've got Python installed, fire up a shell window and type <code>python</code> to start the interpreter. Here's a simple script, just type <code>print 'hello world'</code> and hit return. + +<pre> +>>> print 'hello world' +hello world +>>> +</pre> + +Any time you want feedback from Python, use the <code>print</code> statement. As with any language, Python has built-in tools for doing common things, like in this case, print something out. + +Let's create some variable assignments and play around with some of Python's built-in types. We'll start by creating a string and playing around with it: + +<pre> +>>> x = 'spam' +>>> x[0] +'s' +>>> x[:1] +'s' +>>> x[1:] +'pam' +</pre> + +The first line just assigns x the value of "spam." Python is dynamically typed language, that is, there's no need to tell Python that x is going to be a string, it will figure that out at run time. + +It's also worth noting that Python is a strongly typed language, which means that "types" are always enforced. If you try to treat x as a number after you've already assigned it a string value Python will throw an error. In order to do that you'd have the explicitly recast x as a number. + +The next line <code>x[0]</code> shows how Python's treats strings -- much like a list (array) with each letter being like an element of the list. The <code>x[:1]</code> is an example of Python's slicing methods. The basic syntax is <code>variable[start:end]</code>. Slice indices always start with 0 and by default, omitting first index defaults that value to zero, while omitting second index defaults to the size of the string/list. + +here's few more operators: + +<code> +>>> x = 'spam' +>>> len(x) +4 +>>> y = x +>>> x = 'knights' +>>> y +'spam' +>>> +</code> + +Note that last sequence, we set a new variable y to the value of x and then change the value of x, but y stays the same. In other words y doesn't become a reference to x, it's a new variable with the value of x. Just because x changes doesn't mean y will as well. + +##More Strings, Formatting and Comments## + +We already know that line endings and indentions matter in Python, but what about within Python strings? For instance: + +>>> long_string = "Python is the best language ever, but I will\n\ +... keep that to myself and not start flame wars on Slashdot.\n\ +... Just because\n\ +... I think it's the best doesn't mean everyone needs to" +>>> long_string +"Python is the best language ever, but I will\nkeep that to myself and not start flame wars on Slashdot.\nJust because\n\tI think it's the best doesn't mean everyone needs to" +>>> print long_string +Python is the best language ever, but I will +keep that to myself and not start flame wars on Slashdot. +Just because + I think it's the best doesn't mean everyone needs to +>>> + +So what's going on here? How did we write multiple lines if line breaks mean the end of a line? The trick is the <code>\</code> which tells Python to ignore the end of the line. Also note the difference between calling our variable directly and printing it using the <code>print</code> statement. + +Escaping line breaks with a backslash also works within normal Python code blocks as well, not just within strings. In some cases it can help make your code more readable. + +The other Python concept that might look a bit funny to those coming from other languages is the string formatting tools. In other languages the common way to add data to a string is to just concatenate the string like this: + +"the beginning of a sentence" + variable_data + "the end of a sentence" + +While this will work in Python as well, there is a far more elegant way to write it using the <code>%s</code> operator. + +>>> b = 'beginning of a sentence' +>>> e = 'end of a sentence' +>>> v = 'variable data' +>>> '%s, %s, %s' %(b, v, e) +'beginning of a sentence, variable data, end of a sentence' + +The other nice thing about using <code>%s</code> is that it will force the value to a string, whereas straight concatenation won't. [note that there is a similar <code>%f</code> for inserting numbers into a string]. + +One last note on strings: to create comments in Python you have several options. Like Perl the hash mark can be used for inline comments, like so: + + x = 'spam' #initial value + +The other way to comment your code is with triple quotes. In other words: + +<code> +def superfunction(params): + """ The super function can do things you've only dreamed of""" + print 'Spam!' +</code> + +As it happens, this particular use of comment as the beginning of a function definition is special type in Python known as a doc string and you can even access it in your code. + +##List Dictionaries and Tuples## + +Arrays are one of the most useful constructs in a language, they allow you store and manipulate compound data. Python has three distinct objects for handling compound data types: lists, dictionaries and tuples. + +Perhaps the most useful is the list, which pretty straightforward, it's a list of data: +<code> +>> l = ['spam', 'ham', 314, 23] +>>> l +['spam', 'ham', 314, 23] +>>> l[0] +'spam' +</code> +As you can see, we construct a list using square brackets and assign it to the variable <code>l</code>. From there we can get the whole list by calling it directly, or access individual list members using a zero-based index, just like we did earlier with the strings. + +Also note that lists can mix together any data-type you want, here we used both number and strings, but you could add anything you want, even other lists. Lists have some other neat tricks up their sleeve. For instance let's try replacing some items: + +<code> +>>> l[0] = 'monkey' +>>> l +['monkey', 'ham', 314, 23] +>>> # slightly more complex replace method: +>>> l[0:2] = ['banana', 18] +>>> l +['banana', 18, 314, 23] +>>> # we can even insert the list itself: +>>> l[:0] = l +>>> l +['banana', 18, 314, 23, 'banana', 18, 314, 23] +</code> + +As you can see lists are mutable, you can do pretty much anything you want with them. As you start getting more comfortable with Python you'll find yourself using lists all the time. Be sure to check out the Python docs for [http://www.python.org/doc/current/lib/typesseq-mutable.html a complete list of list methods]. + + +###Dictionaries### + +Another useful compound data-type is the dictionary. A Python dictionary is created using curly brackets, like so: +<code> +>>> d = {"monkey":"banana", "spam":"eggs"} +>>> d +{'monkey': 'banana', 'spam': 'eggs'} +</code> +The name:value pairs are the dictionaries keys and values. To access dictionary data you just call the key using the square bracket syntax like lists, but instead of a number you'll use a key: +<code> +>>> d['monkey'] +'banana' +>>> #try to call something that doesn't exist and you'll get a KeyError. +>>> #this means that you can't get keys from values: +>>> d['banana'] +Traceback (most recent call last): + File "<stdin>", line 1, in ? +KeyError: 'webmonkey' +</code> +Like lists, dictionaries are mutable, which means you can add key:value pairs whenever you want. Just keep in mind two things: you can't have duplicate keys, the second will overwrite the first, and key names are case sensitive. + +>>> #Start with an empty dictionary +>>> d = {} +>>> # add two key:value pairs +>>> d['monkey'] = 'banana' +>>> d['spam'] = 'eggs' +>>> d +{'monkey': 'banana', 'spam': 'eggs'} +>>> #try to add another monkey key +>>> d['monkey'] = 'wrench' +>>> # oops, we overwrought the original value: +>>> d +{'monkey': 'wrench', 'spam': 'eggs'} +Example 3.2. Modifying a Dictionary + +As with lists dictionaries can store any type of data your want. Even dictionary keys can be a variety of data-types, so long as the data-type is immutable (i.e. strings, integers, tuples, etc). And you can mix and match data-types within the same dictionary. + +For more details on what sort of manipulations you can perform with dictionaries, check out [http://www.python.org/doc/current/lib/typesmapping.html the Python documentation page]. + +###Tuples### + +What the #$@# is a Tuple? Tuple is an immutable list. Once you stick data in a Tuple you can never change it. Since you can't change anything about them, it wouldn't make much sense to have any methods for Tuples so there aren't any. + +Tuples are created using parentheses and you can access data in a Tuple just as we did with a lists, but beyond that there isn't a lot to tell. + +>>> t = ('spam', 'ham', 314, 23) +>>> t +('spam', 'ham', 314, 23) +>>> t[0] +'spam' +>>> t[0] = 'eggs' +Traceback (most recent call last): + File "<stdin>", line 1, in ? +TypeError: object does not support item assignment + + +So you might be wondering, what's the point of a Tuple if it behaves like a crippled list? The answer is that Tuples are much much faster than lists. If you have data that you know isn't going to change, put it in a Tuple. + +Tuples are also handy for data that should not need to be changed, like in a private class method or the like. Using a tuple instead of a list prevents outside tampering. + +##Assigning multiple values at once## + +One of the cool tricks in Python is ability to assign multiple variables values at the same time. For instance: + +>>> m,s = 'monkey','spam' +>>> m +'monkey' +>>> s +'spam' + +But this gets much more powerful with more complex data. For instance we can also do this: + +>>> a = ('b','c','d') +>>> (x, y, z) = a +>>> x +'b' + +Another variation on this theme is the built-in range function. Consider this: + +>>> range(7) +[0, 1, 2, 3, 4, 5, 6] +>>> (Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday) = range(7) +>>> Sunday +0 + +##The Python <code>for</code> loop## + +Of all the things that will give you pause when learning Python, the <code>for</code> loop is probably the most obvious difference from other language. Rather than iterating over a progression of numbers, or allowing you to define both the iteration step and halting condition (as in C), Python's for statement iterates over the items of any sequence (a list or a string), in the order that they appear in the sequence. + +The best way to understand how it works is to look at an example. In this case we'll create a list and then loop through the values. + +>>> a = ['spam', 'ham', 314, 23] +>>> for b in a: +... print b +... +spam +ham +314 +23 + +Note that the variable <code>b</code> is totally arbitrary, you can name the iterator whatever you would like (preferably what makes sense, for instance, if your list holds a punch of urls, you might write <code>for url in urls:</code>) + +We'd use the exact same technique to loop through a tuple, a string and other data-types, but what about dictionaries? That's a little bit different, but we can borrow some of the multiple values techniques we mentioned above to help out. + +>>> dict = {'guido':'python','larry':'perl','rasmus':'php'} +>>> for key in dict: +... print key, 'created', dict[key] +... +larry created perl +rasmus created php +guido created python + +It's worth noting that while Python's for loops are just as capable as those in other language, chances are you won't use them as much. Part of the reason is that Python offers something called a list comprehension which does something similar to what you might need a for loop for in other language. + +For instance suppose you have list of numbers and you want to perform some multiplication function on them. You might be tempted to do something like this: + +>>> li = [0, 1, 1, 2, 3, 5] +>>> for num in li: +... new_num = num * 2 +... new_list = [new_num] +etc + +But in Python it's much easier to just use a list comprehension. Here's the same function in one line: + +>>> li = [0, 1, 1, 2, 3, 5] +>>> [2*num for num in li] +[0, 2, 2, 4, 6, 10] +>>> # or if you want to store the results: +>>> new_li = [2*num for num in li] +>>> new_li +[0, 2, 2, 4, 6, 10] + +It may take a while to wrap your head around, but list comprehensions are very very powerful and well worth spending some time with so you understand not just how they work, but when and where to use them. + +Have a look at the [http://www.python.org/doc/current/tut/node7.html#SECTION007140000000000000000 official Python tutorial] for more information.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/Python/python_intro3.txt b/wired/old/published/Webmonkey/Python/python_intro3.txt new file mode 100644 index 0000000..277fcbd --- /dev/null +++ b/wired/old/published/Webmonkey/Python/python_intro3.txt @@ -0,0 +1,402 @@ + +Get Started with Python + +The scripting language Python takes after its reptilian namesake -- it's simple by design, yet flexible and powerful. It can't exactly swallow large rodents whole, but it can be used for a wide variety of applications. Whether you need to automate some part of you desktop workflow, create a website or build a full-fledged desktop application, Python is a strong candidate for the job. + +''This tutorial is a '''wiki'''. Got extra advice? Log in and add it.'' + + +==What Is Python?== + +Python was created by Guido van Rossum, who now works for Google. As a result, the company uses Python extensively in its various web services, most recently [http://code.google.com/appengine/ App Engine]. Even though we joked around about Python exhibiting some likeness to its slithering namesake, the language takes its name from Monty Python's Flying Circus, which is why many Python tutorials feature shameless Monty Python puns. This one is no exception. + + +===Advantages=== + +Python has advantages over other object-oriented languages. Devotees will tell you it's simpler than Perl, and it results in cleaner, more maintainable code than PHP. + +It also has high-level data types built in -- arrays, dictionaries and many more. Python supports all the operators you're likely familiar with from other language like if/else, while and for loops (though Python's for loops may be slightly different than what you've used elsewhere). + +Finally, Python offers an easy syntax for packaging, distributing and importing code, making it easy to take advantage of all the great open source Python projects freely available on the web. + + +===Uses=== + +Python is a compiled application that can be installed in a variety of environments -- your desktop, a web server or embedded devices like your phone. Python can run on all the major platforms and comes pre-installed on Mac OS X and most Linux distros. + +There are two main ways to use Python -- either by starting it directly from the command line or by calling an external script. Obviously, the later method is much more flexible unless you're just doing a quick one-time program. + +If you're running Python on a web server, you can serve your scripts from a cgi-bin folder just as you would with a Perl script. There are also faster, more robust options like mod_python or mod_wsgi, two Apache modules that call on the Python interpreter to process your pages. + +Before we dig in, you should know about a site called [http://www.python.org/ Python.org]. Python is an open-source language, and Python.org is its control center, with [http://docs.python.org/ref/ref.html extensive reference material], additional tutorials and [http://docs.python.org/lib/lib.html a complete library] of all the elements available in Python. + + +==Installing Python== + +Python code can be written as scripts and saved in text files with the .py extension. There's also a shell interpreter that makes it very easy to get started just by typing <code>python</code> into your shell prompt. For now, that's what we'll be using to show some of the basic language principles. + +Go ahead and fire up a terminal window and type <code>python</code>. If you have Python installed, you'll get a message like this: + +<pre> +Python 2.4.4 (#1, Oct 18 2006, 10:34:39) +[GCC 4.0.1 (Apple Computer, Inc. build 5341)] on darwin +Type "help", "copyright", "credits" or "license" for more information. +>>> +</pre> + +'''Tip:''' The three angle brackets are the standard Python command prompt which lets you know you're now using the Python interpreter. Any time you see code snippets written with the >>> you know the author is referring to the Python shell. + +If typing <code>python</code> in your shell didn't load the interpreter, you'll need to install Python. You can [http://www.python.org/download/ download the source] from the Python website or use one of the many package installers available for most platforms. + +As of this writing, the latest version of Python is 2.5.2. Mac OS X and most Linux distros ship with Python 2.5. Windows users may need to install the latest version. + +Although Python 2.5 offers some nice new features over previous versions, for backwards compatibility reasons we'll stick to concepts and tools that will work with Python 2.3 and greater. + + +==Python Differences== + +For the most part, Python behaves much like PHP, Perl, Ruby and other languages you may be familiar with. However, there are some important and noteworthy differences. + +Perhaps the most obvious (and Python aficionados would argue, important) is that line breaks and indentions in your code have meaning in Python. Whereas PHP and others use a semicolon or other mark to designate the end of a line, Python sees all new lines as, well, new lines. + +Also where PHP and others use angle brackets to enclose code blocks, Python merely wants the code indented. + +Python forces you to properly indent code blocks and eschews end-of-line punctuation like PHP's semicolons in favor of simple line breaks. + +This has some import consequences. First and foremost, it makes Python code much easier to read. The structure of a Python script is a snap to figure out at first glance. Even if you have no idea what the code is doing, you can tell how it does it just by glancing at it. + +Python forces neat, well structured code, but it also forces you pay more attention to how you write your code. Consider the following two code snippets, which do very different things: + +<pre> +def myfunction(): + if x == y: + return True +</pre> + +<pre> +def myfunction(): + if x == y: + return true; +</pre> + +In the first code block our return statement is indented, and therefore within the if statement. In the second code block we didn't indent the return statement so that function always returns true, regardless of our if test. Technically, that second function would generate an error because Python expects an indented block after the colon. + + +===Spaces versus Tabs=== + +As the joke goes, the most popular way to write Python code is to indent with spaces. The second most popular way to write Python is with tabs. Most good text editors have an "entab/detab" function which can convert tabs to spaces and vice versa. + +The important thing is to be consistent. '''Don't mix tab and space indenting in the same script!''' Doing so will cause Python to throw an error and your code won't execute. + + +==Getting Started== + +Assuming you've got Python installed, fire up a shell window and type <code>python</code> to start the interpreter. Here's a simple script. Just type <code>print 'hello world'</code> and hit return. + +<pre> +>>> print 'hello world' +hello world +>>> +</pre> + +Any time you want feedback from Python, use the <code>print</code> statement. As with any language, Python has built-in tools for doing common things, like in this case, printing something out. + +Let's create some variable assignments and play around with some of Python's built-in types. We'll start by creating a string and playing around with it: + +<pre> +>>> x = 'spam' +>>> x[0] +'s' +>>> x[:1] +'s' +>>> x[1:] +'pam' +</pre> + +The first line just assigns x the value of "spam." Python is dynamically typed language, that is, there's no need to tell Python that x is going to be a string, it will figure that out at run time. + +It's also worth noting that Python is a strongly typed language, which means that "types" are always enforced. If you try to treat x as a number after you've already assigned it a string value, Python will throw an error. In order to use x as a number, you'd have the explicitly recast x as a number first. + +The next line <code>x[0]</code> shows how Python's treats strings -- much like a list (array) with each letter being like an element of the list. The <code>x[:1]</code> is an example of Python's slicing methods. The basic syntax is <code>variable[start:end]</code>. Slice indices always start with 0 and by default, omitting first index defaults that value to zero, while omitting second index defaults to the size of the string/list. + +Here are few more operators: + +<pre> +>>> x = 'spam' +>>> len(x) +4 +>>> y = x +>>> x = 'knights' +>>> y +'spam' +>>> +</code> + +Note that last sequence, we set a new variable y to the value of x and then change the value of x, but y stays the same. In other words, y doesn't become a reference to x, it's a new variable with the value of x. Just because x changes doesn't mean y will as well. + + +==More Strings, Formatting and Comments== + +We already know that line endings and indentions matter in Python, but what about within Python strings? For instance: + +<pre> +>>> long_string = "Python is the best language ever, but I will\n\ +... keep that to myself and not start flame wars on Slashdot.\n\ +... Just because\n\ +... I think it's the best doesn't mean everyone needs to" +>>> long_string +"Python is the best language ever, but I will\nkeep that to myself and not start flame wars on Slashdot.\nJust because\n\tI think it's the best doesn't mean everyone needs to" +>>> print long_string +Python is the best language ever, but I will +keep that to myself and not start flame wars on Slashdot. +Just because + I think it's the best doesn't mean everyone needs to +>>> +</pre> + +So what's going on here? How did we write multiple lines if line breaks mean the end of a line? The trick is the <code>\</code> which tells Python to ignore the end of the line. Also note the difference between calling our variable directly and printing it using the <code>print</code> statement. + +Escaping line breaks with a backslash also works within normal Python code blocks as well, not just within strings. In some cases it can help make your code more readable. + +The other Python concept that might look a bit funny to those coming from other languages is the string formatting tools. In other languages the common way to add data to a string is to just concatenate the string like this: + +<pre> +"the beginning of a sentence" + variable_data + "the end of a sentence" +</pre> + + +While this will work in Python as well, there is a far more elegant way to write it using the <code>%s</code> operator. + +>>> b = 'beginning of a sentence' +>>> e = 'end of a sentence' +>>> v = 'variable data' +>>> '%s, %s, %s' %(b, v, e) +'beginning of a sentence, variable data, end of a sentence' + +The other nice thing about using <code>%s</code> is that it will force the value to a string, whereas straight concatenation won't. + +'''Note:''' There is a similar <code>%f</code> for inserting numbers into a string. + +One last thing about strings (aside from them being super-absorbant and perfect for doing away with floods and tidal waves). + +To create comments in Python you have several options. Like Perl, the hash mark can be used for inline comments, like so: + +<pre> + x = 'spam' #initial value +</pre> + +The other way to comment your code is with triple quotes: + +<code> +def superfunction(params): + """ The super function can do things you've only dreamed of""" + print 'Spam!' +</code> + +As it happens, this particular use of a comment as the beginning of a function definition is special type in Python known as a doc string. You can even access it in your code! + + +==Lists, Dictionaries and Tuples== + +Arrays are one of the most useful constructs in a language. They allow you to store and manipulate compound data. Python has three distinct objects for handling compound data types: lists, dictionaries and tuples. + +===Lists=== + +Perhaps the most useful is the list, which pretty straightforward, it's a list of data: + +<pre> +>> l = ['spam', 'ham', 314, 23] +>>> l +['spam', 'ham', 314, 23] +>>> l[0] +'spam' +</pre> + +As you can see, we construct a list using square brackets and assign it to the variable <code>l</code>. From there, we can get the whole list by calling it directly or access individual list members using a zero-based index, just like we did earlier with the strings. + +Also note that lists can mix together any data-type you want. Here, we used both numbers and strings, but you could add anything you want -- even other lists. + +Lists can do some other neat tricks. For instance, let's try replacing some items: + +<pre> +>>> l[0] = 'monkey' +>>> l +['monkey', 'ham', 314, 23] +>>> # slightly more complex replace method: +>>> l[0:2] = ['banana', 18] +>>> l +['banana', 18, 314, 23] +>>> # we can even insert the list itself: +>>> l[:0] = l +>>> l +['banana', 18, 314, 23, 'banana', 18, 314, 23] +</pre> + +As you can see, lists are mutable. You can do pretty much anything you want with them. As you start getting more comfortable with Python, you'll find yourself using lists all the time. Be sure to check out the Python docs for [http://www.python.org/doc/current/lib/typesseq-mutable.html a complete list of list methods]. + + +===Dictionaries=== + +Another useful compound data-type is the dictionary. A Python dictionary is created using curly brackets, like so: + +<pre> +>>> d = {"monkey":"banana", "spam":"eggs"} +>>> d +{'monkey': 'banana', 'spam': 'eggs'} +</code> +The name:value pairs are the dictionaries keys and values. To access dictionary data you just call the key using the square bracket syntax like lists, but instead of a number you'll use a key: +<code> +>>> d['monkey'] +'banana' +>>> #try to call something that doesn't exist and you'll get a KeyError. +>>> #this means that you can't get keys from values: +>>> d['banana'] +Traceback (most recent call last): + File "<stdin>", line 1, in ? +KeyError: 'monkey' +</pre> + +Like lists, dictionaries are mutable, which means you can add key:value pairs whenever you want. Just keep in mind two things: you can't have duplicate keys, as the second will overwrite the first, and key names are case sensitive. + +<pre> +>>> #Start with an empty dictionary +>>> d = {} +>>> # add two key:value pairs +>>> d['monkey'] = 'banana' +>>> d['spam'] = 'eggs' +>>> d +{'monkey': 'banana', 'spam': 'eggs'} +>>> #try to add another monkey key +>>> d['monkey'] = 'wrench' +>>> # oops, we overwrote the original value: +>>> d +{'monkey': 'wrench', 'spam': 'eggs'} +</pre> + + +As with lists, dictionaries can store any type of data you want. Even dictionary keys can be a variety of data-types, so long as the data-type is immutable (i.e. strings, integers, tuples, et cetera). And you can mix and match data-types within the same dictionary. + +For more details on what sort of manipulations you can perform with dictionaries, check out [http://www.python.org/doc/current/lib/typesmapping.html the Python documentation page]. + +===Tuples=== + +What the heck is a tuple? It's got a funny name, but it's just an immutable list. Once you stick data in a tuple you can never change it. Since you can't change anything about tuples, it wouldn't make much sense to have any methods for tuples. So, um, there aren't any. + +Tuples are created using parentheses, and data in a tuple can be accessed just as we did with a list. Beyond that, there isn't a lot to tell. + +<pre> +>>> t = ('spam', 'ham', 314, 23) +>>> t +('spam', 'ham', 314, 23) +>>> t[0] +'spam' +>>> t[0] = 'eggs' +Traceback (most recent call last): + File "<stdin>", line 1, in ? +TypeError: object does not support item assignment +</pre> + +So you might be wondering, what's the point of a tuple if it behaves like a crippled list? The answer is that tuples are much much faster than lists. If you have data that you know isn't going to change, put it in a tuple. + +Tuples are also handy for data that should not need to be changed, like in a private class method. Using a tuple instead of a list prevents outside tampering. + + +==Assigning Multiple Values at Once== + +One of the cool tricks in Python is ability to assign multiple variables values at the same time. For instance: + +<pre> +>>> m,s = 'monkey','spam' +>>> m +'monkey' +>>> s +'spam' +</pre> + + +But this gets much more powerful with more complex data. For instance we can also do this: + +<pre> +>>> a = ('b','c','d') +>>> (x, y, z) = a +>>> x +'b' +</pre> + +Another variation on this theme is the built-in range function. Consider this: + +<pre> +>>> range(7) +[0, 1, 2, 3, 4, 5, 6] +>>> (Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday) = range(7) +>>> Sunday +0 +</pre> + + +==The Python <tt>for</tt> Loop== + +Of all the things that will have you scratching your head while learning Python, the <tt>for</tt> loop is probably the most obvious difference from other languages. Rather than iterating over a progression of numbers, or allowing you to define both the iteration step and halting condition (as in C), Python's <tt>for</tt> statement iterates over the items of any sequence (a list or a string), in the order that they appear in the sequence. + +The best way to understand how it works is to look at an example. In this case, we'll create a list and then loop through the values. + +<pre> +>>> a = ['spam', 'ham', 314, 23] +>>> for b in a: +... print b +... +spam +ham +314 +23 +</pre> + +Note that the variable <tt>b</tt> is totally arbitrary. You can name the iterator whatever you would like, preferably picking whatever makes the most sense. For instance, if your list holds a bunch of URLs, you might write <tt>for url in urls:</tt>. + +We'd use the exact same technique to loop through a tuple, a string and other data-types. But what about a dictionary? That's a little bit different, but we can borrow some of the multiple values techniques we mentioned above to help out. + +<pre> +>>> dict = {'guido':'python','larry':'perl','rasmus':'php'} +>>> for key in dict: +... print key, 'created', dict[key] +... +larry created perl +rasmus created php +guido created python +</pre> + +It's worth noting that while Python's for loops are just as capable as those in other language, chances are you won't use them as much. Part of the reason is that Python offers something called a list comprehension which does something similar to what you might need a for loop for in other language. + +For instance suppose you have list of numbers and you want to perform some multiplication function on them. You might be tempted to do something like this: + +<pre> +>>> li = [0, 1, 1, 2, 3, 5] +>>> for num in li: +... new_num = num * 2 +... new_list = [new_num] +etc +</pre> + +But in Python, it's much easier to just use a list comprehension. Here's the same function in one line: + +<pre> +>>> li = [0, 1, 1, 2, 3, 5] +>>> [2*num for num in li] +[0, 2, 2, 4, 6, 10] +>>> # or if you want to store the results: +>>> new_li = [2*num for num in li] +>>> new_li +[0, 2, 2, 4, 6, 10] +</pre> + +It may take a while to wrap your head around, but list comprehensions are very very powerful and well worth spending some time with so you understand not just how they work, but when and where to use them. + +Have a look at the [http://www.python.org/doc/current/tut/node7.html#SECTION007140000000000000000 official Python tutorial] for more information. + +==Conclusion== + +So now you know how to say "nee!" and perform some basic operations using Python. If you'd like some more practice head over to the [http://pypi.python.org/pypi/ "cheese shop"] (we did warn you that the Monty Python puns were thick in the Python community), a site dedicated to Python scripts, and try downloading some things that look useful. + +Also worth reading through is Mark Pilgrim's seminal [http://diveintopython.org/toc/index.html Dive into Python] which covers some of the same ground we went over here, but also hits on some other areas of interest like parsing XML with Python's powerful DOM tools and attempting to demystify Unicode text handling in Python. + +Next up we'll take a look at how to write a script you can run from the command line and how to open and read data from a web service. In the mean time we're off to return this parrot which seems almost like it's, um, dead.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/backup_webserver.txt b/wired/old/published/Webmonkey/backup_webserver.txt new file mode 100644 index 0000000..b031480 --- /dev/null +++ b/wired/old/published/Webmonkey/backup_webserver.txt @@ -0,0 +1,172 @@ +So you're a good little monkey and you have a backup strategy for all your local PCs, rsync, Time Machine or similar backup software mirrors your files to external drives on a regular basis, but what about your remote web server? + +Today we'll take a look at ways you can back up your HTML files, stylesheets, application files and even databases on your remote web host. + +The only thing you'll need is a remote web hosting service that allows SSH connections to the remote shell. + +Ready for backup Nirvana? Okay let's dive in. + +== The Backup Tools == + +We're going to assume your web host uses a Linux machine. If you're host provides Solaris, there are equivalents to all the Linux apps we're going to use. + +Have a Windows web hosting service, feel free to add in the equivalent tools for Windows users. + +The first thing we'll do is use tar and bzip2, two command lines tools for making compressed file copies, to back up any flat HTML, CSS, Javascript or what have you files. Let's say your web host stores all your public files in a directory named www. In that case we're going to do something like this: + +<pre> +tar -cf `date +%F`.tar /path/to/html_folder +</pre> + +and then + +<pre> +bzip2 `date +%F`.tar +</pre> + +That's all good and well, but we don't want to type those commands in the shell all the time so let's make a shell script. Login to your web server via SSH and enter this command: + +emacs backup.sh + +Substitute the editor of your choice or, if you're more comfortable with the GUI, just login via FTP and create the file that way. + +Now paste this code into your backup.sh file, adjusting the file paths to work with your setup: + +<pre> +#!/bin/bash +DATE=`date +%F` +TARFILE=$DATE.tar +tar -cf $TARFILE /path/to/html_folder +bzip2 $TARFILE +</pre> + +The first line is just the standard bash script header, if you're using tsch adjust accordingly. From there we grab the date and then create a tarfile using the date and appending the directory name to the end. Technically this could all be one line, but I split it up for readability. + +Then we just create the actual .tar archive and compress it with bzip2 (feel free to use gzip or any other compression tool you like). + +So now we have a backup of our flat files, but what about the database? Most shared web hosts have decent database redundancy setups, but I still prefer to have flat file back up. Here's another bash script to backup a PostgreSQL database using <code>pg_dump</code>. Copy this text into a new file named backup_db.sh: + +<pre> +#!/bin/bash +/path/to/pg_dump -x -D -Uusername -f path/to/`date +%F`.sql +</pre> + +This just calls pg_dump and outputs the database (including insert statements) to a file named today's date.sql in whatever directory you specify. For those using MySQL, <code>mysql_dump</code> can do roughly the same thing. And note that you can dump compressed files using either tool. + +One potential gotcha here, invoking pg_dump without entering a password won't work unless your password is stored somewhere. For Postgres that would be the ~/.pgpass file. See the manual for more info on the [http://www.postgresql.org/docs/8.2/interactive/libpq-pgpass.html format and permission of .pgpass]. + +The last step is to make our shell scripts executable so just make sure to change the permissions so that cron can execute them. In most shells that looks something like this: + +<pre> +chmod u+x filename +</pre> +== Automation == + +Now that's all well and good we have a couple of bash scripts that we can invoke from our terminal prompt and backup out files. Bu that who wants to do that? Let's set them up to run automatically once a day. + +From the terminal open up your crontab using this command: +<pre> +crontab -e +</pre> +Now add these lines: +<pre> +0 1 * * * path/to/backup.sh > /path/to/log_files/backup.out 2>&1 +30 1 * * * /path/to/backup_db.sh > /path/to/log_files/backup_db.out 2>&1 +</pre> + +Hit save and we're done: automated backups. The crontab above will run your backup scripts once a day at 1 AM for flat files script and 1:30 AM for the database script. If there are any problems or the scripts aren't running, check the output in the .out files. + +== Fancier Automatic Backups == + +Want to get really fancy and have your home machine automatically login to your server and download those backup files for safe, off site keeping? + +It's not to hard to do. The first step is to write the script. Create a new text file wherever you'd like and name it grab_backup.sh or something similar. Now copy and paste this code adjusting the setting to match the location of the backup files we created in the last step. + +<pre> +#!/bin/bash +DATE=`date +%F` +FILE1=$DATE.tar.bz2 +FILE2=$DATE.sql + +# we'll connect with SCP to copy the files +scp username@example.com:path/to/$FILE1 ~/web/backup/folder +scp username@example.com:path/to/$FILE2 ~/web/backup/folder + +# if you want to delete the backup files from the server just uncomment these lines: +#ssh username@example.com rm -f path/to/$FILE1 +#ssh username@example.com rm -f path/to/$FILE2 +</pre> + +We need to make this script executable so go ahead and chmod it the same way we did above. Give it a test run from the command line and once you enter your remote login password, <code>scp</code> should start downloading the files. + +'''Note''': if you get a message like <code>scp: .: not a regular file</code>, a fairly common error, make sure there's no spaces between the colon at the end of the login info and the file you're trying to copy. + +=== What to do about the password === + +Astute readers are probably wondering how we're going to automate a script that needs a password before it can do it's job. + +Well, there's actually two way to handle that and both of them involve using SSH public/private key authentication. Essentially we need to create a key pair and then add the public key on our remote server's list of authorized keys. + +But that doesn't entirely sidestep the password problem since SSH keys themselves require a password. + +There's two ways a round that, one is a really bad idea, but it works and the other is a bit more complex, but much more secure. + +Let's walk through the first method -- creating a password-less SSH key-pair -- and then we'll talk about why that's a bad idea. + +First create an SSH key like so: + +<pre> +ssh-keygen -t rsa +</pre> + +When prompted for a password just hit enter and leave it blank. + +When ssh is done you should see a message like: +<pre> +Your identification has been saved in /home/yourusername/.ssh/id_rsa. +Your public key has been saved in /home/yourusername/.ssh/id_rsa.pub. +</pre> + +We need to add the public key (id_rsa.pub) to our web server. You can either do that using FTP and cut and paste the info into ~/.ssh/authorized_keys, or since your still in the shell, try this line, substituting your login info: + +cat ~/.ssh/id_rsa.pub | ssh username@server.com 'cat >> .ssh/authorized_keys' + +That will add the SSH key we just generated to your webserver's list of authorized keys, which means you can now login to your remote server from your home machine without needing to enter a password -- perfect for an automated script. + +However it's not so perfect from a security stand point. The way things stand now if an attacker gets ahold of your home machine they have unlimited access to your remote machine as well (because your private key is compromised and there's no password to protect it). + +We can limit potential damage somewhat by adding restrictions to what we can do with our remote login. Open up the file .ssh/authorized_keys on your web server and you should see something like: + +<pre> +ssh-dss AAAAB3Nza[..huge string of gibberish..] = user@localhost +</pre> + +Just before the ssh-dss bit add this: + +<pre> +from="0.0.0.0",command="/home/user/path/to/backup_folder" +</pre> + +Just change the "from" IP Address to the IP of your home network or computer and make sure to change the path to match wherever you're storing the backup files that are being created by our earlier cron script. Also chop off the = user@localhost bit at the end of the line. + +That's a little better, but still not good enough for many. In any security scenario there is always a weakness, if you use a password that's the weakness. In our case the private SSH key is the weakness. If you're confident that you can keep your private key secure then what we've done may satisfy you. + +If you think the whole set of instructions above is insane (and generally speaking it is), there is a far more secure option. The trick is use ssh-agent, which is complex enough that it warranted its own tutorial. Don't worry, despite being complex in theory, ssh-agent actually isn't all that hard to use, have a read through [our tutorial] and once you're up and running jump back over here and we'll hook up our script. + +== Finishing Touches == + +Now you should have a shell script set up and a way to login to your remote server sans password (whether by the insecure method above or the ssh-agent method). The last step in our automation process is create a cron job on our local machine. + +Open up a shell windows and repeat the steps above like so: + +<pre> +crontab -e +</pre> +Now add these lines: +<pre> +0 2 * * * /path/to/grab_backup.sh > /path/to/log_files/grab_backup.out 2>&1 +</pre> + +Now we have a cron job on our local machine that will reach out to our remote server and grab a copy of all our backup files and dump them on our local machine. In our case the dump will happen at 2 AM, though you can adjust that to pick a good time for your setup (note that for this to work, obviously, your local machine needs to be running). + +That pretty much covers it. You've now got two database and flat-file backups, one local, one remote. Now make sure you back up that local copy on another drive along with the rest of the files. And then back that drive up to one in blast vault that can withstand a nuclear hit and you should be able to keep your website running smoothly throughout the apocalypse.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/blogcms/movable_type_intro.txt b/wired/old/published/Webmonkey/blogcms/movable_type_intro.txt new file mode 100644 index 0000000..f2466ee --- /dev/null +++ b/wired/old/published/Webmonkey/blogcms/movable_type_intro.txt @@ -0,0 +1,118 @@ +So you've decided that hosted blogging is for the birds and you want more control over your blog setup. One popular option is the Movable Type publishing system from Six Apart. Movable Type contains pretty much everything you need to get your own site up and running and, with a little creativity and some community-created plugins, you can power much more than just a blog. + +This tutorial will walk you through the process of setting up Movable Type, customizing the look and feel of your new site and get you started with some custom features by installing some plugins. + +==Which Version to Use== + +Movable Type is essentially a collection of Perl scripts that make it easy to create and publish blog entries. Luckily you don't need to know any Perl as most of the programming aspects are hidden from the casual user. + +Movable type will run on just about any server, the only requirements are a database and the ability to run CGI scripts. + +There are currently two separate distributions of Movable Type, the [http://www.movabletype.com/ commercial version] (still free for individual users) and the [http://www.movabletype.org/ open source version]. Deciding which on to use depends what you need and what you're willing to pay for. The personal version of the commercial software can be used so long as your blog is not for-profit. Google AdSense, Amazon Associates fees, PayPal tip jars, or other similar programs which aren't the main purpose of the site are permitted under the Personal license. The commercial versions run from $300 - $1000 depending on the number of users your installation needs. + +The open source version of Movable Type is free and of course you're free to tinker with the source code and can apply patches, hacks and other improvements that the community comes up. Were it not for the fact that thus far the open source version has lagged behind the release schedule of the commercial version, we'd recommend it. If being a little behind the latest-and-greatest feature curve doesn't bother you, the open source version is an excellent choice. + +==Getting Up and Running== + +Assuming you've selected a web host that meets the Movable Type requirements (pretty much anywhere that offers a MySQL database will work) you're ready to install Movable Type. + +Installation isn't a terribly difficult process. Essentially you're going to download the MT package, unzip it and then upload it to your server. Then it's just a matter of configuring a few settings, like telling MT where to find your database and how to connect. + +Instructions on how to install are widely available on the web so we won't rehash them here. Check out [http://www.movabletype.org/documentation/installation/ the official guide] and also worth a mention is the [http://www.superxm.com/2007/08/movable-type-4-installation-step-by-step-with-screenshots.html MT installation guide over at SuperMX.com] which walks you through all the necessary steps and includes screenshots. + +Once you've got everything working properly it's time to set up your blog. + +Login to your new Movable Type admin and in the main menu select "Create New Blog." Give your blog a name, set up the necessary paths to your media files (like stylesheets or images), setup the URLs (or go with the example http://www.yoursite.com/blog/) and select a time zone. + +Save your changes and if you head to the URL you entered you should see a rather basic looking page with very little content -- congratulations you've now got a Movable Type powered blog. + +Add a little content so you have something to see while we customize the look in feel in the next section. Go ahead and create some new posts and save them. Just click the "Write Entry" button in the main menu, or choose Create > Entry in the main menu. This will display the Create Entry screen where you can enter your first blog post. + +==Customizing Your Site's Appearance== + +The stock Movable Type look isn't going to impress your visitors. Luckily it isn't hard to customize your Movable Type site. But before we start doing that let's step back and take a look at how Movable Type works. + +===How Movable Type Works=== + +In order to get MT behaving the way you want it's important to understand how it works. Movable Type has two main components, the back administration interface where you can manage your blogs, post new entries, moderate comments and more, and the front-facing public website. + +For the most part Movable Type publishes static html files. When you post an entry, Movable Type adds the entry to the database and then uses a template to create the HTML file that your visitors will see. It also updates any other pages that are affected by the changes (for instance if you have a sidebar that shows recent entries, MT will update the sidebar whenever you publish something new). + +This process is known as static publishing. That is, the page your visitors see is a static file sitting on your server rather being generated-on-the-fly like other systems such as WordPress. Actually Movable Type does offer some dynamic template features, but for this introduction we'll stick to the static publishing. + +The key elements here, from a user point of view, are the templates. By default Movable Type gives you some basic templates that control how your generated pages will look. To customize the look and feel of your site you'll want to dive into the templates. + +===The Movable Type Template Language=== + +Movable Type templates have their own language that looks at times like HTMl and times more like PHP. The basic idea is that you have a bunch of variables from the MT back-end that you can use to plug content into your pages. + +As with programming languages you can create if/else statements, for loops and other tools to display the content you want, where you want it. + +The template language is actually quite robust (some might say complex), so to give you an idea of how it works we'll dive in with a quick example. + +<code> +<h2>Recent Entries</h2> +<ul> + <MTEntries lastn="5"> + <li><$MTEntryTitle$> <br /> + <$MTEntryEntryExcerpt$></li> + </MTEntries> +</code> + +This chunk of code is similar to what you might use to generate a list of recent entries in your sidebar. The key to this is the <code><MTEntries></code> tag, which is known as a container tag. <code><MTEntries></code> essentially creates a loop of recently published entries. The <code>lastn</code> parameter tells Movable Type how many entries to grab, in this case five. + +Then we move inside the <MTEntries> container and we have access to all the Entries tags. For a complete list of tags related to entries, see the Movable Type manual. For this simple case I've used <code><$MTEntryTitle$></code> to print out the title and <code><$MTEntryEntryExcerpt$></code> to give a short summary. The <code><$MTEntryEntryExcerpt$></code> tag will automatically create an Excerpt if your entry doesn't have one. + +Let's look at another useful container tag, the MTEntryCategories tag. Here's a little snippet of code: + +<code> +<p>category: <MTIfNonEmpty tag="MTEntryCategory"><MTEntryCategories glue=", "> +<a href="<$MTCategoryArchiveLink$>"><$MTCategoryLabel$></a> +</MTEntryCategories> +<MTElse>none</MTElse> +</MTIfNonEmpty></p> +</code> + +So what does that mess do? Well the goal is display all the categories you've assigned to a post. So the first thing we do is check to see if the post actually has any categories. The easiest way to do that is with the <code>MTIfNonEmpty</code> tag. This tag takes another tag as a parameter, in this case the <code>MTEntryCategory</code> tag, and checks to see if the value exists. + +If in fact our post has one or more categories assigned to it, then we proceed to the <code>MTEntryCategories</code> container tag. This tag sets up a loop that moves through all the categories assigned to an entry. + +Once inside the categories loop we print out a link to the category archive page and the name of the category. That way any visitor to the site who likes your article about bananas can quickly find all your articles in the banana category. + +The other thing to note in this loop is that just about any MT tag that uses an IF statement can include an Else tag to print out something when the if fails. In this case, if there is no category assigned to a post it will just print "none." + +Whew. What a mouthful of template tags. And we've barely even scratched the surface. For more in depth info on MT template tags read through [http://www.movabletype.org/documentation/appendices/tags/ the template tag documentation]. For those who'd like a somewhat easier to navigate list of tags, check out [http://www.mttags.com/ MTTags.com], which offers a very nice interface for navigating through and quickly finding definitions of the myriad of available template tags. + +If you've used older version of Movable Type, check out the overview of [http://www.movabletype.org/documentation/designer/whats-new.html new template tag features in MT 4.+], including the very powerful new ability to assign multiple values to an attribute. + +===Put template language to Use=== + +So where do you put your template code? Well, MT includes the ability to edit your templates right in the admin interface. Just select Design > Templates from Movable Type's main menu. This will display the Blog Templates screen. + +To edit one of your index templates, just click on the template name to open the Edit Template screen. Once you're here the sky's the limit, you can customize the layout and look of you site to fit whatever your heart desires. + +This screen is also home to the Includes and Widgets that have been referenced in the template you are editing. For example, by default the Main Index template references a Header, Entry Summary and Footer modules. This allows you to quickly edit and make site-wide changes to say your header template. Whenever you find yourself wanting to include a chunk of code in multiple templates, break that code out to an Includes template so that when you want to change it again you only need to do so in one spot. + +==Widgets and Plugins== + +The whole point of using a publishing tool like Movable Type is to take advantage of the many cool tools that users have developed -- that's where plugins come in handy. + +Movable Type has been around for some time and third party developers have built a small ecosystem of plugin and widgets to enhance your MT blog. + +For a fairly complete list of what's available check out the [http://plugins.movabletype.org/ Movable Type plugin directory]. Here's a few of our favorites: + +# [http://plugins.movabletype.org/bookmarks/ Bookmarks] - adds a "Bookmarks" menu to Movable Type 4.0's menuing system, allowing quick access to your favorite and most frequently accessed pages within the application. +# [http://plugins.movabletype.org/fckeditor/ FCKeditor] - swap out the default Movable Type Rich Text Editor for the more feature-rich FCKeditor (requires MT 4.1) +# [http://plugins.movabletype.org/flickrphotos/ Flickr Photos] - pull your most recent photos on Flickr into your Movable Type blog. +# [http://plugins.movabletype.org/dashboar/ Dashboard Twitter] - see your friends timeline and post your Twitter status update from within the MT4 dashboard. +# [http://plugins.movabletype.org/action-streams/ Action Streams] - aggregate, control, and share your actions around the web as well as a list of your profiles on various services. +# [http://plugins.movabletype.org/gravatar/ Gravatar] - Add some personality to your comments by including thumbnail images. Uses Gravatar's global recognized avatar system to output the correct gravatar image URL based on the commenters email address. + +So how do you install plugins? Well it depends on the plugin since the functionality of the plugin determines how much there is to install. In the simplest case you just drag the plugin to your plugins folder in the Movable Type folder you installed at the beginning of this tutorial. + +More complex plugins may require some additional files to be placed in other folders and, in some cases, a line or two needs to be added to the mt-config file. Fortunately most plugins listed in the official repository have reasonably clear instructions. + +==Happy Blogging == + +Though we've really just scratched the surface of what you can do with Movable Type, hopefully this will get you up and running. For additional tutorials and help solving common problems, be sure to sign up for the [http://forums.sixapart.com/ Movable Type forum] and [wiki http://wiki.movabletype.org/Main_Page where you'll find like-minded people who can help you out with any bumps you encounter on the way to Movable Type nirvana. + diff --git a/wired/old/published/Webmonkey/blogcms/wordpress_intro.txt b/wired/old/published/Webmonkey/blogcms/wordpress_intro.txt new file mode 100644 index 0000000..a75cc0a --- /dev/null +++ b/wired/old/published/Webmonkey/blogcms/wordpress_intro.txt @@ -0,0 +1,104 @@ +Back when blogging was just catching on a small PHP-based publishing system was quietly released and quickly took the blogging community by storm. WordPress, as the system was known, was an instant hit thanks to its simplicity and open source license which allowed interested developers to extend and improve the system. + +Today WordPress powers everything from huge sites like [http://politicalticker.blogs.cnn.com/ CNN's Political Tracker] to thousands of personal blogs. Thanks to its easy step up process and the widespread availability of web hosts that offer one-click WordPress installs, you can get up and blogging in a snap. + +In this tutorial we'll assume that your web host doesn't have a one-click installer, but fear not, getting WordPress working on your domain won't take but a few minutes. Once you're up and running we'll take a look at different ways you can customize and extend your blog. + +==Installation== + +Much of WordPress's popularity stems from its dead simple installation process. All you need to get started with WordPress is a web host to serve the site, a MySQL database for WordPress to talk to and of course [http://wordpress.org/download/ the WordPress software itself]. + +Unzip the WordPress download and rename the <code>wp-config-sample.php</code> file to <code>wp-config.php</code>. Now fire up that file in your favorite text editor and fill in the details about your database so WordPress can connect to it. + +Now you just need to upload WordPress using an FTP program. Upload all the files to where ever you'd like you new blog to live. For instance, if you want your blog to be the root of your domain, upload all the files to your root web directory. If you want your blog to be at say <code>mysite.com/blog</code>, just upload all the WordPress files to a "blog" directory under the web root. + +Now you just need to run the install script by pointing your browser to http://mysite.com/blog/wp-admin/install.php (just adjust that URL to fit wherever you placed WordPress. + +The install script will walk you through naming your blog and creating a username and password for accessing the administration panel. + +Once that's done login to WordPress and you're ready to roll. If you run into any problems, have a look at the [http://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Install official WordPress installation guide], which covers some common issues. + +==Digging In== + +When you login to WordPress for the first time you'll encounter what's known as the Dashboard. The Dashboard tracks your recent activity and lets you know about and manage comments your visitors have left and tracks any incoming links from other sites. + +In order to have some content for when we start customizing our installation, go ahead and click the "Write a new Post" link and, well, write a quick post or two. + +Once you have a couple of posts done click the "Write a new page" button. Now what's a "page" versus a "post" you ask? Well, a post is an entry on your blog whereas a page represents something static like a contact page or an about me page. Go ahead and create a couple pages so you can see how they work in the next section. + +The other section that might catch your eye is "Links." Older versions of WordPress referred to this section as the Blogroll, but the name change reflects the more general purpose usefulness of Links. While you can still use Links to generate a blogroll linking to your friends' sites, you can also do other things like create an entire site navigation system for your sidebar. + +If you click the "visit site" button from any of the Admin pages, WordPress will dump you onto your live site so you can see what your changes look like. + +==Customizing the Look of WordPress== + +The default look for WordPress is a blue header above a two column layout -- you might even recognize it since many sites don't bother to customize. It's okay for a default layout, but if you want to personalize your WordPress site a bit, read on. + +Customizing WordPress's look happens through "themes." If you login to your WordPress admin and select the Design tab you'll see the main themes panel. Now you could head over to the Header Image and Color tab which features a very nice inline theme editor with color pickers and other tools that make it easy to customize the default theme. + +But frankly one of the advantages of WordPress is the number and variety of custom themes that members of the community have created. The official repository of themes is the [http://themes.wordpress.net/ WordPress Theme Viewer], so browser through that list, find something you like and download it. + +Then just unzip and upload the theme to the wp-content/themes directory provided by WordPress. Then just head over to the Design tab inside the WordPress admin and select your new theme. + +From there you can customize and tweak the theme to fit your whims. Different themes offer different levels of customization so what you can and cannot do will depend on the theme you're working with. In general you should be able to change the header image, layout options and colors on any theme. + +Also note that themes don't have to be site-wide. If you happen to blog about both cupcakes and software, you can assign your archive pages for cupcakes to use one theme and the software posts to use another. + +If you'd like to create your own theme it isn't too difficult, though it is more complex than just throwing together some HTML and CSS in a template. It helps to have a decent knowledge of PHP. If you'd like to get started using PHP check out our tutorial. + +==Plugins - tap the Power of the Community== + +One of the chief appeals to powering your blog with WordPress rather than building your own system is that you can take advantage all of the cool tools that other people have developed. The WordPress plugin universe offers something for everyone, whether you just want to add some photos or turn your blog into a proto-social network using the plugins from the [http://code.google.com/p/diso/ DiSo project]. + +To get you started, here's a few of our favorites: + +# WP-Cache - Caches your pages for much faster loads. An absolute must, this should be part of WordPress by default. It works by caching WordPress pages and storing them in a static file for serving future requests directly from the file rather than loading and compiling the whole PHP code and the building the page from the database. Your site will thank you when Digg and Slashdot readers start pouring in. + +# [http://wordpress.org/extend/plugins/wordpress-flickr-manager/ WordPress Flickr Manager] - post images from your Flickrstream with ease. + +# [http://wordpress.org/extend/plugins/google-analytics-for-wordpress/ Google Analytics for WordPress] - track stats and more using Google Analytics. + +# [http://alexking.org/projects/wordpress Twitter Tools] - enable you to integrate your WordPress blog and your Twitter account. Pull your tweets into your blog and create new tweets on blog posts and from within WordPress. + +# [http://www.ilfilosofo.com/blog/wp-db-backup/ WordPress Database Backup] - creates backups of your core WordPress database tables. Backups are a must. + +# [http://www.ejump.co.uk/wordpress/easytube-plugin-for-wordpress/ EasyTube] - post YouTube videos using just the URL. This plugin takes the URL and uses it to embed the actual video. + +== Batten Down the Hatches== + +While WordPress is open-source and constantly updating to fix known vulnerabilities, it still behooves you to take a few steps to protect yourself against attacks. + +The first thing to do is makes sure that your WordPress installation is using the most current version available. To stay abreast of new releases consider subscribing to the [http://wordpress.org/development/ Developer Blog's RSS feed]. + +Beyond making sure that you have the latest security updates, there are few things in your server setup that can make WordPress more secure. + +One big thing you can do is limit access to your wp-admin directory. There are two approaches here, if you have a static IP and you're only likely to update your blog from a few locations you can actually deny access to all other IPs. The following instructions will work with any Apache server, for Microsoft Servers, consult the Microsoft documentation. + +To do that log into your web server via ftp and navigate to the wp-admin directory. Create a new file named <code>.htaccess</code> and enter the following lines: + +Order Deny,Allow +Deny from all +Allow from XXX.XXX.XXX.XXX + +Just replace the Xs with your home IP address. You can allow multiple IPs, just enter one per line. Now only requests from your IP addresses will be able to get to your WordPress login page. + +If your internet service provider frequently changes your IP, the above solution isn't practical. In that case you can still add some password protection to the wp-admin directory. To do so move up out of your publically accessable directories and create a folder that's only accessable from FTP or the shell. + +With most webhosts what would be the directory you see when you first login with you FTP client. Now create a file named <code>.htpasswd</code> and add the line <code>username:password</code> in that format with the username and password of your choice. + +Now go back to the <code>.htaccess</code> file in the wp-admin directory and add these lines: + +AuthUserFile path/to/.htpasswd +AuthGroupFile /dev/null +AuthName EnterPassword +AuthType Basic + +require user XXXX + +Replace the Xs above with the username you created in the .htpasswd file. Now if you navigate to your WordPress Admin pages you should be forced to enter a username and password before you even get to the WordPress login page. + +Neither of the solutions is totally foolproof, but they're generally enough to convince the script kiddies to move on to easier prey. + +== Conclusion == + +So there you have it, you should now have a working WordPress installation with a custom theme and some useful plugins. Happy blogging and be sure to check out our more advanced WordPress tutorial on creating custom themes and more.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/css-dropdowns.txt b/wired/old/published/Webmonkey/css-dropdowns.txt new file mode 100644 index 0000000..cef1ec7 --- /dev/null +++ b/wired/old/published/Webmonkey/css-dropdowns.txt @@ -0,0 +1 @@ +There's nothing that strikes fear in the heart of CSS coders like a design mock up that includes drop down menu items. While many will argue that drop down menus are a poor design choice to begin with, sometimes there's just no getting around it -- the client gets what the client wants.
Fortunately creating drop down menus isn't as hard as it used to be. In fact, you can even create them using just HTML and CSS with a tiny bit of Javascript to ensure that good old standards confused IE shares in the drop down fun.
How to do it? Well grab a cup of coffee and let's get to work.
== Getting started, the HTML ==
We're going to design a horizontal menu with three items that list sub-items in drop down menus and a fourth that's just a top level element. Here's what the HTML looks like:
<pre>
<ul id="nav">
<li><a href="">Home</a></li>
<li><a href="">Web</a>
<ul>
<li><a href="">Browser</a></li>
<li><a href="">Search</a></li>
</ul>
</li>
<li><a href="">Monkey</a>
<ul>
<li><a href="">Eating Banana</a></li>
<li><a href="">Throwing Poop</a></li>
</ul>
</li>
<li><a href="">Contact</a>
<ul>
<li><a href="">Via Web</a></li>
<li><a href="">Via Phone</a></li>
<li><a href="">Via tin can and string</a></li>
</ul>
</li>
</ul>
</pre>
As you can see it's a pretty basic HTML list, with some nested lists for our sub elements. I've given it an id of "nav" since we'll need that to employ a little JavaScript here in a bit. But first let's add a little style.
== Polishing with CSS ==
Paste this code into some style tags in the head of your HTML page (or in a separate, linked stylesheet if you prefer:
<pre>
ul {
margin: 0;
padding: 0;
list-style: none;
}
ul li {
position: relative;
float: left;
}
li ul {
position: absolute;
top: 30px;
display: none;
}
ul li a {
display: block;
text-decoration: none;
line-height: 20px;
color: #000;
padding: 5px;
background: #CC0;
margin: 0 2px;
}
ul li a:hover { background: #66F; }
li:hover ul, li.over ul { display: block; }
</pre>
Okay, so what's going on here? Well first we set up our list by getting rid of any styling along with any margins and padding.
Then we move on to the <code>li</code> elements positioning them relatively and floating them to the left. If you're looking to build a horizontal menu, don't float the <code>li</code> elements. Notice we've also given them a width of 100 pixels. You can adjust this to suit your menu items, but do apply a width otherwise your drop down elements will be a bit wonky.
next up are the nested lists which get an absolute positions 30 pixels from the top of their parent element. Why 30? Well that leads us to the next item, our link styles. Notice we have a line-height of 20 pixels and 5 pixels of padding on all sides. So, 20px + 5px top padding + 5px bottom padding, gives our menu a total height of 30px. The positioning on the nested lists ensures that they appear just below the top level menu items.
The last item in our styles definition is the guts of the operation. We use the <code>:hover</code> pseudo class to display our previously hidden drop-down elements. Now you may be wondering, what's up with that <code>.over</code> class in there? There's no <code>.over</code> class in our HTML... true, but there will be in minute, read on.
The rest of the styles on the a elements are just some garish colors to ensure that you can see the results. Obviously you can come up with a better color scheme for your own work.
Test your page in the browser and it should work. Well, unless you happen to have IE 6. But hey, who cares about IE 6? Those people are living in the dark anyway. It's the mantra of many a designer, but let's face it skipping IE 6 leaves out upwards of 50 percent of your visitors so we should probably do something for them.
== Compensating for IE 6 ==
In order to get IE to understand this fancy W3C standards compliant code we've written, we're going to need a little JavaScript function. There are number of ways to do this, but I'm fond of a very oldie but goodie that we'll borrow from A List Apart's famous, [http://www.alistapart.com/articles/dropdowns/ Suckerfish Drop Down technique].
Here's what the code looks like:
<pre>
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;
</pre>
Essentially what this does is grab our top level "nav" id and then use it to parse through and temporarily insert a class "over" to all our second level <code>li</code> elements. That will allow IE 6 to recognize our menus.
== Conclusion ==
And there you have it, standards compliant drop down menus that work across browsers (note that IE 5 will choke on this menu, if you really need to support IE 5, you're going to have to use some conditional comments).
Obviously our example is pretty ugly, but we're confident you can come up with functional and nice looking drop down menu using the basic outline here.
If you want to get really fancy, try adding this code to your link definition:
<pre>
ul li a {
display: block;
text-decoration: none;
line-height: 20px;
color: #000;
padding: 5px;
background: #CC0;
margin: 0 2px;
display: block;
-webkit-transition-property: background-color;
-webkit-transition-duration: 1s;
-webkit-transition-timing-function: ease-in;
}
</pre>
That'll leverage some experiment CSS 3 transition effects to give your rollovers a gradual fade in/fade out transitions. Of course it will only affect Apple's Safari web browser.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/css-dropshadows.txt b/wired/old/published/Webmonkey/css-dropshadows.txt new file mode 100644 index 0000000..fcf4e35 --- /dev/null +++ b/wired/old/published/Webmonkey/css-dropshadows.txt @@ -0,0 +1 @@ +Drop shadows, love 'em or hate 'em they're a reality for most web designers. Luckily adding drop shadows to most elements on a web page isn't too difficult. The most common trick is to use an oversized shadow image and apply that as a background to a wrapper tag.
Yes, that's right, drop shadows will require a little bit of non-semantic markup, if that bothers you then drop shadows aren't for you. If you're okay with a few wrapper tags, then read on and we'll show you how it's done.
== Wrapping an image ==
The most common use of drop shadows seems to be images. The shadow helps set images apart from the page much the way a frame helps do the same on a wall (the first person who says it makes the image "really pop" will be slapped).
To create a drop shadow that can be applied to every image on your site you need to create a shadow image that's bigger than the largest image you'll apply it to. For most situations an 800 pixel square image should do the trick, though if you're sure you can get by with something smaller, definitely do so since this image will slow down page loads.
So how do you make the image? There are a number of ways you can do it, depending on your image editor. Our favorite is to simply create a new 800 pixel image and simple make an empty selection on top the background and apply a shadow to it. Adjust the light angle and spread to your liking and save the image as shadow.png For this browsers that can't handle .png files with transperancy files we'll need a second image. This time make the background layer the same color as that of your site and save the file as shadow.gif.
The HTML markup can take a variety of forms but here's a fairly common method:
<pre>
<div class="shadow">
<img class="shadowed" src="/mygreatimage.jpg" alt="my great image" />
</div>
</pre>
The last step is bringing it all together with some CSS rules. Here's the code:
<pre>
.shadow {
float:left;
background: url(/path/to/shadow.png) no-repeat bottom right;
}
.shadowed {
display: block;
position: relative;
background-color: #fff;
margin: -6px 6px 6px -6px;
}
</pre>
So what's going on here? Well, first off we apply a float to our container element so that the background won't span the whole width of whatever our <code>.shadow</code> div's parent may be. Then we apply the image as the background.
So far so good, but our shadow graphic is hidden by the actual photo so what we need to do is shift the photo a bit. But first we make sure the photo is displayed as a block element and is positioned relative to its parent (the <code>.shadow</code> div). Then we simply add negative margins to the top and left sides of the photo. This has the effect of pulling the image back to reveal the shadow beneath it.
Awesome. We have a drop shadow. unless of course you're using IE, which wouldn't know a transparent .png file from Bill Gate's underwear and chokes on both. To fix that we'll use the ever-popular (and proprietary) [http://msdn.microsoft.com/en-us/library/ms532969.aspx AlphaImageLoader Filter].
So, in a separate stylesheet that only gets served to IE (conditional comments are your IE friend), we need to add this line:
<pre>
.shadow {
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/shadow2.png',sizingMethod='crop');
background: none;
</pre>
And there you have it, a drop shadow for your images. Now the very obsessive among us may be bothered by the fact that the left and top edges of our shadow are "hard," that is, they don't gracefully fade in on the edge where they begin.
There is a way to fix that, though we think it's more work than it's worth. However, if you're incredibly anal-retentive about your shadows, it is possible to get soft edges.
This trick comes from an old [http://alistapart.com/articles/cssdrop2/ A List Apart tutorial] and requires yet another container div so that the HTML would look like this:
<pre>
<div class="shadow">
<div>
<img class="shadowed" src="/mygreatimage.jpg" alt="my great image" />
</div>
</div>
</pre>
Now what we need to do is create a reverse shadow, that is an image that's the same color as the page background, but fades inward from 100 opacity to 0. once you have that image, just apply it as a background to the inner div tag. That way it overlays the shadow and softens the left and top edges for a more realistic shadow effect. See the ALA post for all the details.
The above technique will work just fine on basically any element in most browsers (so if you want drop shadows on say a colored div, just use the wrapper tags.
Okay, so we have a way to put drop shadows on our big blocks of content, but what if you want to drop shadow some text?
== Drop Shadow Text ==
If you've ever used Apple's Safari web browser you may have noticed some sites have drop shadowed text. Safari is about the only browser that supports the <code>text-shadow</code> CSS rule (though Firefox 3.1 will support it as well).
The question is, can we mimic the <code>text-shadow</code> effect across all browsers? The answer is sort of. Most of them don't render quite a nicely as Safari, but it is possible to get at least some sort of shadow.
Obviously, for Safari we just need to add the text-shadow rule like this:
<pre>
p.shadowed { text-shadow: #999 5px 5px 5px; }
</pre>
It turns out that Internet Explorer has it's own proprietary method of adding shadows, so fire up those conditional comment stylesheets and add this line:
<pre>
p.shadowed {
height: 1em;
filter: Shadow(Color=#999, Direction=135, Strength=5);
}
</pre>
What about Firefox and Gecko-based browsers? Well, there is a way to do it, however it's ugly and it kills accessibility since it repeats your text. In fact, we recommend skipping this one and just waiting for Firefox 3.1 to support <code>text-shadow</code>. But if you just can't be dissuaded, here's what you need to do:
<pre>
p.shadowed {
line-height: 1em;
white-space: nowrap;
}
p.shadowed:before {
display: block;
margin: 0 0 2px 2px;
color: #999;
}
p#shadowed_text:before { content: 'Look, ma, Shadows!'; }
</pre>
The key here is the <code>:before</code> pseudo-element which causes Firefox to take whatever text is in the element and duplicate it, offset to the right and down a little bit. It will also automatically be set to light gray, though I've explicitly set it to match our other efforts.
The only thing we need to do is give our paragraph an id of <code>#shadowed_text</code> and then set the content to match whatever is in the p tag.
The problem this introduces is that Safari also understands the <code>:before</code> rule (naturally IE does not) so Safari applies the text shadow ''and'' the <code>:before</code> hack which ends up looking strange.
Designer Neil Crosby, who came up with the this technique, uses the [http://www.giantisland.com/Resources/LitePacificHackforSafariAndIE7.aspx Stokely Safari Hack] to hide the <code>:before</code> element. The hack is somewhat complex and we recommend reading up on it at the link above and also check out [http://www.workingwith.me.uk/articles/css/cross-browser-drop-shadows how Crosby uses it in his guide].
So, ugly hacks all, we have some cross browser text shadows.
== Conclusion ==
If you've made it this far you're clearly a drop shadow obsessive and you'll be happy to know that there is some light on the horizon. Drop shadows using pure CSS have been theoretically possible since the CSS 2.1 spec was adopted. Unfortunately browsers have been slow to adopt support for it, but that appears to slowly changing.
There's also some hopein the form of the CSS 3 spec. As we saw above Safari and Firefox 3.1 support the text-shadow element and both also support the <code>box-shadow</code> element which is set to arrive in CSS 3. The <code>box-shadow</code> rule makes adding a shadow to an element as simple as this (which would work in Safari):
<pre>
-webkit-box-shadow: 2px 2px 2px #999;
</pre>]
Sounds pretty good after wrestling with background images and pseudo elements doesn't it? Just don't hold your breath waiting for IE 8 to catch up.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/css_dropdowndemo.html b/wired/old/published/Webmonkey/css_dropdowndemo.html new file mode 100644 index 0000000..b934cc9 --- /dev/null +++ b/wired/old/published/Webmonkey/css_dropdowndemo.html @@ -0,0 +1 @@ +<html>
<head>
<style type="text/css">
ul {
margin: 0;
padding: 0;
list-style: none;
}
ul li {
position: relative;
float: left;
width: 100px;
}
li ul {
position: absolute;
top: 30px;
opacity: 0;
}
ul li a {
display: block;
text-decoration: none;
line-height: 20px;
color: #777;
padding: 5px;
background: #CC0;
margin: 0 2px;
display: block;
-webkit-transition-property: background-color, color, text-shadow;
-webkit-transition-duration: .5s;
-webkit-transition-timing-function: ease-in;
}
ul li a:hover { background: #66F; }
li:hover ul { opacity: 1;
-webkit-transition: opacity 4s linear;
}
</style>
</head>
<body>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Web</a>
<ul>
<li><a href="#">Browser</a></li>
<li><a href="#">Search</a></li>
</ul>
</li>
<li><a href="">Monkey</a>
<ul>
<li><a href="">Eating Banana</a></li>
<li><a href="">Throwing Poop</a></li>
</ul>
</li>
<li><a href="">Contact</a>
<ul>
<li><a href="">Via Web</a></li>
<li><a href="">Via Phone</a></li>
<li><a href="">Via tin can and string</a></li>
</ul>
</li>
</ul>
</body>
</html>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/cssbrowserhacks.txt b/wired/old/published/Webmonkey/cssbrowserhacks.txt new file mode 100644 index 0000000..acadb8a --- /dev/null +++ b/wired/old/published/Webmonkey/cssbrowserhacks.txt @@ -0,0 +1 @@ +Browser-specific CSS hacks have become a taboo among standards-aware web designers, and for good reason -- theoretically you shouldn't need them. However, as long as Internet 6 continues to hold significant market share there will likely remain some cases where you need to target CCS rules to just IE.
There are also times when you might need to target other browsers as well, which is why we've put together this comprehensive list of ways target specific browsers.
Because these hacks clutter your stylesheet and greatly complicate the process of maintaining your code, we strongly recommend that only use these techniques as a last resort. There's also a good chance that many of the hacks will stop working at some point since several of them exploit bugs in the browsers.
Still, for the times you need them, here is our list of browser-specific hacks.
== Internet Explorer ==
The easiest and best way to target CSS rules to only Internet Explorer is to use conditional comments to load an extra IE-specific stylesheet. That way all your IE-specific rules are in one file and separate from your standards compliant CSS rules.
To target IE using conditional comments, just add this line to the headtags of your HTML file:
<pre>
<!--[if IE 6]><link rel="stylesheet" href="http://mysite.com/path/to/ie6.css" type="text/css" media="screen, projection"><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="http://mysite.com/path/to/ie7.css" type="text/css" media="screen, projection"><![endif]-->
</pre>
The conditional comment will be ignored by every other browser so only IE 6 and IE 7 respectively will load these stylesheets. Now all you need to do is create the files on your server and override whatever CSS rules are messing with IE's head.
In fact this method works so well we aren't even going to mention the star-html hack or other older methods because there's just no reason to use them any more.
== Firefox ==
Firefox does a pretty good job of rendering web pages the way they are supposed to look, but every once in a while you'll find that some of the older versions do something a bit wonky.
To target a rule at Firefox 1.5 and 2, use this hack:
<pre>
body:empty #my-id {
/* Firefox-specific rules go here */
}
</pre>
The trick to this hack is the proposed CSS 3 <code>:empty</code> pseudo-class. The purpose of the <code>:empty</code> pseudo class is to allow you target any element that has no child elements. However, Firefox 1.5 and 2.0 (and others based on those versions of Gecko) select the body even when the body has content. In other words this hack exploits a bug (that was fixed in Firefox 3).
The big downside to using this hack is that it's invalid CSS 2 (and may not even make CSS 3) so your stylesheets won't validate.
What if you need to target all versions of Firefox? To do that you can use a trick borrowed from Firefox extensions:
<pre>
@-moz-document url-prefix() {
#my-id { font-size: 100%; }
}
</pre>
The -moz prefix (which is also used for some of the cutting edge CSS support in Firefox 3 link to that tutorial about CSS 3) is combined with the -document url-prefix() selector which is how Firefox add-ons define their styles.
The result is a rule the only Firefox will apply.
If you're looking to target only Firefox 3, you're out of luck. As of this time we are not aware of any hacks that target only Firefox 3. If you know of a way to do that, be sure to add it.
== Safari ==
As with Firefox 3, we're not aware of any hacks to target specific versions of Safari, but there is a very ugly trick you can use to apply rules to only Safari 1 and 2:
<pre>
#my-id { color:red; }
#my-id { color:black;# }
</pre>
The first rule will set the font to red in all browsers. The second rule will set the font to black in every browser except Safari 1 & 2. This hack works because the first two releases of Safari had a bug where a hash mark after the semicolon caused Safari to choke.
This is probably the ugliest hack in this tutorial so use it sparingly, if at all. Also note that Safari v1 and v2 will choke on ''every'' rule after the "#" so put these at the bottom of your stylesheet.
If you need to target Safari in general (regardless of which version) using the same prefix trick we used above with Firefox.
In Safari's case (or any other webkit browser), the rule looks like this:
<pre>
@media screen and (-webkit-min-device-pixel-ratio:0) {
#my-id { height: 100%; }
}
</pre>
The downside to this hack is that it also applies to Opera 9+. However you can retain the Safari-only aspect by combining it with the Opera-only rule below to achieve a kind of Safari-only targeting.
== Opera ==
Generally speaking Opera doesn't require many CSS hack since it's perhaps the most standards compliant of all the browsers. In fact, if you find something is rendering poorly in Opera, there's a good chance the error is on your end, not the browser's.
But, should you ever need to target Opera we have a way. This one comes courtesy of [http://www.nealgrosskopf.com/tech/thread.asp?pid=20 Neal Grosskopf] (who also has a comprehensive list of browser hack, including some conditional comment hacks we try to avoid, but if you need them, Grosskopf has the details).
To target Opera, use this rule:
<pre>
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
#my-id { clear:right; }
}
</pre>
As Gosskopf notes in his write up, this is one of the weakest hacks since it isn't really targeting Opera, it's targeting all browsers that support -min-device-pixel-ratio that aren't webkit. At the moment that means Opera, but eventually Firefox will likely add support for -min-device-pixel-ratio which means it too will be affected by this hack.
== Conclusion ==
CSS hacks are just that -- hacks. In general you should make every effort to avoid using them (except for the IE conditional comment hack which is pretty safe).
But for those times when you've tried everything and already pulled all the hair out of your head, hack away.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/cssframeworks.txt b/wired/old/published/Webmonkey/cssframeworks.txt new file mode 100644 index 0000000..a3246ff --- /dev/null +++ b/wired/old/published/Webmonkey/cssframeworks.txt @@ -0,0 +1,136 @@ +Working with Cascading Style Sheets is no easy feat. Between browser differences, varying site design requirements and client whims, writing reusable CSS can quickly become a frustrating process. CSS frameworks are one attempt to solve these and other common problems, but they are not without their own controversies. + +Purists and those hyper-concerned about semantically valid markup often decry the class names and arbitrary div tags that frameworks seem to encourage. + +But for many working in the web design trenches the ability to go from Photoshop comp to working demo site much faster far outweighs the semantic arguments. + +There's no question that frameworks can be very helpful, and even if you just use them for prototyping and quick, early drafts they can dramatically speed up your development process. + +Sound good? Well here's a quick overview of some of the more popular and helpful frameworks, along with any potential drawbacks. + +== General guidelines == + +When using a framework the easiest method is to include the files using and import statement in your HTML headtags. To ensure that your framework remains easy to maintain, update and change, make sure you don't change any of the framework files directly. + +Instead, just import a second stylesheet and make you changes there. For instance this code will import a local copy of the BluePrint framework and then a second CSS file which contains all the site-specific rules and overrides: + +<pre> + <link rel="stylesheet" + href="http://media.mysite.com/css/blueprint/screen.css" + type="text/css" + media="screen" + charset="utf-8"> + + <link rel="stylesheet" + href="http://media.mysite.com/css/base.css" + type="text/css" + media="screen" + charset="utf-8"> + +</pre> + +== BluePrintCSS == + +One of the first major frameworks to emerge from the CSS soup, [http://www.blueprintcss.org/ BluePrint] is perhaps best known for its amazing grid layout tools. BluePrint uses class names like <code>span-12</code> to make creating a grid layout much easier. So what would that <code>span-12</code> class do? Consider this HTML: + +<pre> +<div class="container"> + <div id="header" class="span-24"> + Header + </div> + <div class="span-18"> + Main content + </div> + <div class="span-6 last"> + Sidebar + </div> +</div> + +</pre> + + + +By default, BluePrint uses a grid layout that's 950px wide, with 24 columns spanning 30px, and a 10px margin between columns. So we define that overall space with the <code>container</code> class. Everything inside container will now be 950px wide. Now the header gets a <code>span-24</code> class to make sure that it goes all the way across all 24 columns. + +Then below that we want to have two columns, our content on the left and our sidebar on the right. So we add the appropriate <code>span-n</code> class names. If you wanted a wider sidebar and narrower main content, you'd just change those class names. Remember, the number in the class name translates to the number of 30px columns that that div will occupy (plus the 10px margins). + +The only thing that might be non-obvious is the <code>last</code> class, which simply stops BluePrint from adding the 10px margin to the last column in our layout (since that's the edge of the container anyway, we don't need the margin. + +Now what if your layout isn't 950px wide? That's fine, you can adjust the layout width in the file lib/compress.rb. You'll also notice a few other options in that file -- read through the comments to see what else it can do. + +Another popular way to change the container size, or adjust the number of columns is to use the [http://kematzy.com/blueprint-generator/ BluePrint CSS Grid Generator], which can output all the necessary changed files you need. + +If the class names bother you (they are arguably an example of mixing content and design together, which is not necessarily a good thing), check out the [http://dblogit.com/examples/bpa/ BluePrint CSS Architect] which will parse your XHMTL and generate a BluePrint-like grid using your existing IDs instead of class names. + +There's a good bit more to BluePrint including some very nice typography tools, as well as a number of[http://github.com/joshuaclayton/blueprint-css/wikis/plugins plugins] to extend the framework and tailor it to your site. + +== Tripoli == + +[http://devkick.com/lab/tripoli/ Tripoli] is not technically, as the main page adamantly points out, a CSS framework. However, while Tripoli may eschew certain aspects of other CSS frameworks, for our purposes we'll just refer to as a framework. + +Tripoli started off primarily concerned with fonts and typography. While it has since added some layout tools, we still like it primarily for the gorgeous typography it produces. It also happens to offer full support for just about every browser known to man, including the ancient, seldom seen Internet Explorer 5. If you're looking for a quick and easy way to get great cross-browser font rendering, Tripoli delivers. + +The easiest way to get started with Tripoli is to just use the two simple ready-to-go CSS files [http://devkick.com/lab/tripoli/tripoli.simple.css tripoli.simple.css] and [http://devkick.com/lab/tripoli/tripoli.simple.ie.css tripoli.simple.ie.css]. Both are compressed to save on bandwidth and can be included in your HTML just like you would any other stylesheet: + + +<pre> +<link href="tripoli.simple.css" type="text/css" rel="stylesheet"> +<!--[if IE]><link rel="stylesheet" type="text/css" href="tripoli.simple.ie.css"><![endif]--> +</pre> + +Now you can build your site using your own markup and layout in a third file, but let Tripoli handle the font rendering and some other default tasks like the ever-popular stylesheet reset. + +If you'd like more control when you're developing, download the entire suite and import the raw CSS files into a master style sheet. That way, you can always look into the components and localize conflicts quickly, if necessary. + +The main drawback to Tripoli's font handling is that overriding it requires some pretty specific CSS rules. For instance, you may be used to simply declaring a class on a list (call it <code>list</code>) and then styling it with declaration like this: <code>.list {}</code>. + +That won't work to override Tripoli's defaults. Instead you need to be more specific to avoid conflicts. In this case you'd want to use: <code>ul.list {}</code> + +Using a layout plugin, Tripoli also offers some basic grid options. You won't find anything as flexible as BluePrint, but it does offer a few different basic layouts. The Tripoli [http://devkick.com/lab/tripoli/layout.php layout demo] allows you to play with the possibilities and you can check the source code on that page to see how it works. + + +== BlueTrip == + +If you're thinking that it would be pretty cool to combine the grid system of BluePrint with the typography of Tripoli, you're not alone. In fact that's exactly what [http://bluetrip.org/ BlueTrip] does (hence the name). + +Since BlueTrip is just a modified version of both frameworks discussed above, using it is pretty much exactly the same. Just include the package and the typography elements of Tripoli will be applied and all the grid tools of BluePrint are available. + +While BlueTrip is a nice framework in its own right, one of the things we really like about it is that it exemplifies the best way to use CSS frameworks -- take the elements that prove helpful and ditch the rest. + +In this case BlueTrip takes the grid layout tools of BluePrint and the typography tools of Tripoli and ignores the rest. + +== YUI == + +By far the most complex of the CSS frameworks, Yahoo's system encompasses three main elements, a reset stylesheet, a grid layout tool, similar to BluePrint and a font definitions stylesheet. + +Getting started with YUI works much the same as with the others; include the framework base and (optionally) your override stylesheet: + +<pre> +<!-- Combo-handled YUI CSS files: --> +<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?2.6.0/build/reset-fonts-grids/reset-fonts-grids.css"> +</pre> + +Note that if you're using other YUI tools, like the various JavaScript widgets, there a very handy [http://developer.yahoo.com/yui/articles/hosting/?grids#configure YUI Dependency Configurator] for figuring out the optimum way to load files and which files you need. + +Okay, so now we have the framework loaded it's time to pick a layout scheme. Yahoo's system of layouts isn't quite as flexible as BluePrint's, there are no <code>span-n</code> tags (if you're worried about bulking up your HTML, that's a good thing). + +Instead Yahoo has some predetermined layouts you can choose from using the [http://developer.yahoo.com/yui/grids/builder/ YUI Grid Builder]. Select from standard widths like 750px, 950px, 974px or the more flexible 100%, which would necessitate some wrapper tags. + +You can then add left or right sidebars in standard layouts like 160px or 300px and customize a number of other elements. + +Once you have the demo page looking the way you'd like, Just hit the Show Code button and Yahoo will spit out some nicely formatted HTML that can serve as the basis of your page. For more information on YUI's grids, be sure to check out the [http://developer.yahoo.com/yui/grids/#start Grids Overview]. + +Once the grid elements are set, you can move on to fonts. The [http://developer.yahoo.com/yui/fonts/ YUI Fonts CSS] offers some standardized fonts that work well with all of what Yahoo calls A grade browsers. The A grade ranking applies to all modern, standards-aware browsers, though if you need to support older, less capable browsers there is also a C grade, but unfortunately the font styles don't work with all of those browsers. + +Arial is the default font-family for all text (except pre and code) when you use Fonts CSS. All font declarations are in percentages, so if you need to override something, keep that in mind. Yahoo has a [http://developer.yahoo.com/yui/fonts/#using handy chart] showing the percentage equivalent for common pixel sizes. + +In some way YUI is bit hard to work with, but once you wrap your head around it, it's every bit as useful and flexible as the others. + + +== Conclusion == + +As we've seen CSS frameworks can offer a solid foundation on which to build your sites. Even if you just use them to create faster prototypes for clients, there's generally something in frameworks that proves useful to just about everyone. + +But don't get the idea that you need to use every element of a framework. It may ruin some of the reuse and upgrading advantages, but feel free to rip out elements of these tools and just take what you need. + +In the end you might end up creating your own framework. If you do, and you release into the wild, be sure to add it to this page.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/firefox3.6finalreview.txt b/wired/old/published/Webmonkey/firefox3.6finalreview.txt new file mode 100644 index 0000000..b9b9a87 --- /dev/null +++ b/wired/old/published/Webmonkey/firefox3.6finalreview.txt @@ -0,0 +1,96 @@ +Mozilla has unleashed Firefox 3.6, the next version of the popular open-source browser. The quick turnaround time between Firefox 3.5 and the new 3.6 means that Firefox 3.6 doesn't have quite as many new features as 3.5 offered, but there's still plenty of good stuff in the the new version. + +The open-source browser is now available for download for Windows, Mac and Linux. + + + +Although the turnaround time for Firefox 3.6 was faster than its predecessor, Mozilla was still plauged by delays and released an unprecedented five beta test versions before today's final release. + +However, while there were more betas than previous releases, according to Mike Beltzner, Mozilla's TK, the overall development time was actually shorter. Beltzner tells us that cranking out more betas at a faster pace made development smoother and allowed for more community feedback. + +Quote: +---- + +Mike Beltzner: + + +While this is the first time we've ever had a milestone that's been numbered as "Beta 5," we're doing something very different with betas this time around, and this has been one of the shortest beta periods in terms of calendar time that a Firefox release has ever had. Instead of spending 3-4 weeks making changes and releasing a beta, for Firefox 3.6 we decided to create a beta version that would be updated every 1 or 2 weeks with the latest changes. Last week we shipped the latest one of these "revisions" to the beta version of Firefox 3.6. This has made our beta period far more efficient, as we're able to quickly get feedback from our 600,000 user strong beta evaluation group. +----- + + + + +Firefox 3.6, released TK, brings significant performance boosts and a number of new features like support for Personas, fullscreen support for native web video and Web Open Font Format support for developers looking to use new fonts on their sites. + +On the surface, Firefox 3.6 looks like an incremental performance upgrade from the current version, Firefox 3.5, which was released in June 2009. But anyone spending a great deal of time in JavaScript-heavy web apps -- which these days is most of us -- will notice faster page loads thanks to improvements to the browser's rendering engine. + +Much of the added speed is due to improvements in TraceMonkey, Mozilla's JavaScript rendering engine. The good news is that not only does the tweaked TraceMonkey speed up webpage rendering, it's now available to speed up Firefox UI elements written in JavaScript. + +That change means the Firefox interface is snappier, and, when combined with the new version of Gecko, Firefox's core rendering engine, there's a noticeable improvement in Firefox 3.6's overall performance. + +In our testing, JavaScript-heavy sites like FriendFeed, Facebook and Gmail loaded faster, and the browser's initial start-up time was much better than with Firefox 3.5 (especially if you're reopening a large number of tabs). + +Also new under the hood is the new <code>about:support</code> page which offers a simple place to look up all the [pertinent information about the current Firefox installation][7], including a list off installed extensions, any user-modified preference setting, links to installed plug-ins and other configuration details. + +###Personas### + +Firefox 3.6 brings built-in support for lightweight themes, which Mozilla calls [Personas][1]. Personas has been around for a while ([you can even sync them through Weave][2]), but previously installing Personas required a separate extension to manage them. + +Now Personas can be installed right out of the box, allowing you to tweak and theme Firefox as you'd like. Although Personas don't offer quite the options of a full fledged theme, they're much easier to create and install. If you'd like to try out some custom themes, head over to the [Persona site][1]. + +###Fullscreen HTML5 Video### + +Firefox 3.6 now supports [fullscreen video playback][6] through native HTML5 video embeds. Just right click a video embedded using the HTML5 video tag and you'll see a new menu item for full screen playback. + +Currently video on the web is generally embedded using proprietary technologies like Adobe's Flash Player or Microsoft's Silverlight plugin. + +Native HTML5 video will give users a way to watch movies online without the need of third-party plugins. + +Firefox previously supported HTML5 native video but lacked the ability to play those videos in fullscreen mode, an oversight that Firefox 3.6 corrects, putting open source video on largely equal footing with proprietary technologies like Flash or Silverlight. + + + + + +###Security Enhancements### + +Firefox 3.6 includes the ability to check for out of date plugins and will point you to the offending plugin's website to download the latest version. + +The primary target here is the Flash Plugin, which previously had no update mechanism in Firefox and could leave Firefox users vulnerable to attack even if the browser itself were up-to-date. + +Mozilla has also changed the way third-party add-ons integrate with Firefox. The Firefox components directory is now off limits to third-party tools like Firefox add-ons. The move is mainly designed to make Firefox more stable by preventing add-ons from accessing lower level tools that could cause crashes. + +According to the Mozilla, there are no features to be gained from accessing the components directory, so your favorite add-ons should not be adversely affected by the change. + +###More Web Standards Support### + +Web developers will be happy to hear that quite a few new features in CSS 3 have made their way into Firefox 3.6. Firefox now supports the <code>background-size</code> property as well as some cool tricks for handling background images with CSS. Designers can [specify the size of background images][4] on web pages, stretching them by dictating what percentage of the browser window's width they take up. + +There are also some new methods for [applying gradients to page backgrounds][5], enabling designers to create more interesting, colorful backgrounds without using images at all, just by defining a few colors in their HTML. + +Firefox 3.6 also supports the [Web Open Font Format (WOFF)][3] which allows developers to use server-side fonts to build better typography into their designs. + +###Conclusion### + +Firefox 3.6 is not the radical overhaul that Firefox 3.5 offered, but the latest version is a worthy upgrade nonetheless. The welcome speed improvements combined with the UI changes and expanded HTML5 support make Firefox 3.6 a must-have upgrade. + +We're already looking forward to the next version of Firefox, tentatively listed as Firefox 3.7, which, with any luck will bring isolated tabs for application crashes (ala Google Chrome), integration of the Ubiquity add-on into the Awesome bar and of course, even more enhancements for HTML 5. + + +[1]: https://addons.mozilla.org/en-US/firefox/personas/ +[2]: http://www.webmonkey.com/blog/Weave_Adds_Personas_to_its_Bag_of_Firefox_Syncing_Tricks +[3]: http://www.webmonkey.com/blog/Mozilla_Throws_Its_Weight_Behind_Improving_Web_Type__Adopts_WOFF_for_Firefox +[4]: https://developer.mozilla.org/en/CSS/-moz-background-size +[5]: https://developer.mozilla.org/en/CSS/Gradients +[6]: http://www.webmonkey.com/blog/Firefox_3DOT6_Aims_to_Bring_Fullscreen__Open_Source_Video_to_the_Web +[7]: http://www.webmonkey.com/blog/Troubleshooting_Firefox_Gets_Easier_With_New__About:Support__Page + +<strong>See Also:</strong><br/> +<ul> +<li><a href="http://www.webmonkey.com/blog/Firefox_3DOT6_Beta_1_Arrives:_More_Speed__Better_Video__New_Tab_Tricks">Firefox 3.6 Beta 1 Arrives: More Speed, Better Video, New Tab Tricks</a></li> +<li><a href="http://www.webmonkey.com/blog/Mozilla_Throws_Its_Weight_Behind_Improving_Web_Type__Adopts_WOFF_for_Firefox">Mozilla Throws Its Weight Behind Improving Web Type, Adopts WOFF for Firefox</a></li> + +<li><a href="http://www.webmonkey.com/blog/Firefox_3DOT6_Aims_to_Bring_Fullscreen__Open_Source_Video_to_the_Web">Firefox 3.6 Aims to Bring Fullscreen, Open Source Video to the Web</a></li> + +<li><a href=""></a></li> +</ul>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/formbg.gif b/wired/old/published/Webmonkey/formbg.gif Binary files differnew file mode 100644 index 0000000..93d7ee1 --- /dev/null +++ b/wired/old/published/Webmonkey/formbg.gif diff --git a/wired/old/published/Webmonkey/formssample.html b/wired/old/published/Webmonkey/formssample.html new file mode 100644 index 0000000..f927240 --- /dev/null +++ b/wired/old/published/Webmonkey/formssample.html @@ -0,0 +1 @@ +<html>
<head>
<style type="text/css">
form.myform {
margin-left: 155px;
width: 300px;
}
form.myform fieldset {
margin-bottom: 10px;
margin-left: -155px;
background: #d0d9fd;
}
form.myform legend {
padding: 0 2px;
font-weight: bold;
font-size: 1.3em;
}
form.myform fieldset ul {
margin: 0 0 0 155px;
padding: 0;
}
form.myform fieldset li {
list-style: none;
padding: 10px;
margin: 0;
clear: both;
}
form.myform label {
font-weight: bold;
float: left;
text-align:right;
margin-left: -155px; /*width of left column*/
width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
}
form.myform p{
margin-left: 155px;
}
form.myform input, form.myform textarea {
border: solid 1px #85b1de;
background: #fff url('formbg.gif') repeat-x;
background-position: top;
}
form.myform input:focus, form.myform textarea:focus
{
background-image: none;
background-color: #ffffff;
border: solid 1px #fded7f;
}
</style>
</head>
<body>
<form action="#" class="myform">
<fieldset>
<legend>Leave a Comment</legend>
<ul>
<li>
<label for="name">Name:</label>
<input id="name" />
</li>
<li>
<label for="email">Email:</label>
<input id="email" />
</li>
<li>
<label for="comment">Comments:</label>
<textarea id="comments" rows="7" cols="25"></textarea>
</li>
<li>
<label for="remember">Remember Me:</label>
<input type="radio" name="remember" value="true" />Yes
<input type="radio" name="remember" value="false" checked/>No
</li>
</ul>
</fieldset>
<p><input type="submit" value="Leave comment" /></p>
</form>
</body>
</html>
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/howto-html5-semantic-tags.txt b/wired/old/published/Webmonkey/howto-html5-semantic-tags.txt new file mode 100644 index 0000000..ec64e6c --- /dev/null +++ b/wired/old/published/Webmonkey/howto-html5-semantic-tags.txt @@ -0,0 +1,138 @@ +In our last tutorial we looked at some of the new structural markup tags in HTML 5 that are designed to reduce the "<code><div></code>-soup" of HTML 4 and add semantic meaning to your page's layout. + +But not every new tag in HTML is strictly structural, there are other tags that also add valuable semantic meaning to your pages in non-structural ways. Today we'll take a look at how to use them and what they can do for your content. + +===The <code><time></code> tag=== + +They're have been a couple of cases recently where old news has been republished as if it were new; sometimes through human error, sometimes through news search crawler error. In some cases the damage was worse than just making the perpetrators look bad, it actually sent a few stocks into a tailspin. + +While there's not much HTML 5 can do to help human error, the [http://www.whatwg.org/specs/web-apps/current-work/multipage/text-level-semantics.html#the-time-element <code><time%gt;</code> tag] could have saved the search engine spiders. + +Despite the timelessness of the web, most things published carry some sort of date/time stamp and that's exactly what the time tag is intended to convey. The most basic usage looks something like this: + +<pre> +<code>Published <time>12/20/2009</time></code> +</pre> + +However the time tag also has an attribute <code>datetime</code> that makes it even more useful because it allows you to give your human readers a nice date format inside the tag, but also provide search engines spider with something more useful to them. Let's amend the above code slightly: + +<pre> +<code>Published <time datetime="2009-12-20T17:22:28-05:00">Thursday, December 20, 2009 at 10:28PM EST</time></code> +</pre> + +Now you might be thinking that the terribly unreadable attribute syntax (also know as the [http://en.wikipedia.org/wiki/ISO_8601 ISO 8601] date format] in our example is way more pain than it's worth. Indeed if you're hand coding it probably is, but any good content management system should be able to output this format for you. For example, to make this work in WordPress you would simple add this bit of HTML 5 to your template: + +<pre> +<code>Published <time datetime="<?php the_time('c'); ?>"><?php the_time('l, F j, Y +'); ?></time></code> +</pre> + +A couple of things to note. According to the spec if you omit the datetime attribute than the tag must contain a valid date string. The valid part means it must be in the format: year, month, day. Also worth mentioning: when you use the datetime attribute the tag itself can be empty. While both of these variants are okay according to the spec, we suggest you use both a machine readable datetime for the attribute and human-readable format inside the actual tag. + +===The <code><figure></code> tag=== + +The figure tag was designed to make image embedding more descriptive and easier to recognize. The figure tag isn't limited to images though, it can also be used for diagrams, code snippets and more. + +But figure isn't intended for every image. The key phrase in the spec is any illustrative element "that could, without affecting the flow of the document, be moved away from that primary content, e.g. to the side of the page, to dedicated pages, or to an appendix." + +The most common use case is an image that you refer to in the body of an article. To use figure you simply wrap your image tag and add a legend like this: + +<pre> +<code> +<figure> + <img src="/images/tcpreport.jpg" + alt="TCP Report, July 2009"> + <legend>July 2009 TCP Reports</legend> +</figure> +</code> +</pre> + +The figure tag can also be used for code snippets, for example to markup the code snippet in the previous example you'd have something like this:: + +<pre> +<code> +<figure> + <legend>Using the HTML 5 Figure tag</legend> + <pre><code> + <figure> + <img src="/images/tcpreport.jpg" + alt="TCP Report, July 2009"> + <legend>July 2009 TCP Reports</legend> +</figure> + </code></pre> +</figure> +</code> +</pre> + +The most important thing to remember about the <code><figure></code> tag is that you don't need to use it for every image you want to embed in a page -- just those cases where you refer to the image in question to illustrate a point or use as an example in your article. + +===The <code><dialog></code> tag=== + +The [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-dialog-element dialog element] is for marking up conversations -- a chat transcripts, an interview, a dialog in a screenplay and so on. The <code><dialog></code> tag works pretty much like a definition list, but specifically denotes dialog, for example the famous Abbot and Costello Who's on First routine: + +<pre> +<code> +<dialog> + <dt> Costello </dt> + <dd> Look, you gotta first baseman? </dd> + <dt> Abbott </dt> + <dd> Certainly. </dd> + <dt> Costello </dt> + <dd> Who's playing first? </dd> + <dt> Abbott </dt> + <dd> That's right. </dd> +</dialog> +</code> +</pre> + +You could also use dialog for something like a blog's comment section since comments are, generally speaking, a conversation with speakers and then what they said. Something like this: + +<pre> +<code> +<dialog> + <dt id="comment_1">Commenter Name</dt> + <dd>HEllo. I really likes your site. want to buy some WOW gold?</dd> +</dialog> +</code> +</pre> + +===Revisiting the <code><aside></code> tag=== + +Last time we looked at the <code><aside></code> tag as way to markup a sidebar or other structural content. But <code><aside></code> can also be used in less structural ways; for example as a way to highlight a quote within an article. + +Here's one of the official examples (also note the use of the <code><q></code> tag, a little-used HTML 4 element): + +<pre> +<code> +<p>He later joined a large company, continuing on the same work. +<q>I love my job. People ask me what I do for fun when I'm not at +work. But I'm paid to do my hobby, so I never know what to +answer. Some people wonder what they would do if they didn't have to +work... but I know what I would do, because I was unemployed for a +year, and I filled that time doing exactly what I do +now.</q></p> + +<aside> + <q> People ask me what I do for fun when I'm not at work. But I'm + paid to do my hobby, so I never know what to answer. </q> +</aside> + +<p>Of course his work — or should that be hobby? — +isn't his only passion. He also enjoys other pleasures.</p> + +</code> +</pre> + +This is essentially what newspapers and magazines refer to as a "pull-quote," an excerpt from an article that's been "pulled out" and typeset separately (usually a larger font). Other examples include the traditional, Hamlet-style aside, but not, according to the spec, parenthetical asides that fit the normal flow of the document. + +Who knew HTML 5 would require a linguistics degree? Like we said in the first tutorial, the spec isn't perfect. + +===The <code><mark></code> tag=== + +The mark tag is intended to denote text that is particularly relevant. It's a bit like <code><strong></code> but instead of denoting the importance of its contents, it denotes relevance. + +The <code><mark></code> tag isn't one that you'll probably use very often, but it does have one particularly handy use case: highlighting search terms that brought a visitor to your site. You've probably seen sites that do this, somewhat like the way Google highlights your search terms when you access a cached page rather than the like site. That's the perfect time to use the <code><mark></code> tag. + +===Conclusion=== + +That about does it for the rest of the semantic tags in HTML 5, next time around we'll start playing with the API related tags like <code><audio></code>, <code><video></code> and <code><canvas></code>.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/html5audiovideo.txt b/wired/old/published/Webmonkey/html5audiovideo.txt new file mode 100644 index 0000000..9ea3468 --- /dev/null +++ b/wired/old/published/Webmonkey/html5audiovideo.txt @@ -0,0 +1,107 @@ +In the previous two HTML 5 tutorials we looked at some structural tags to help eliminate "div-soup," and some other semantic tags to help give your pages easy-to-parse dates, captioned images and more. + +Now it's time to take a look at what might be the most hyped part of the HTML 5 spec -- the audio and video tags. + +Currently the only reliable way to embed video on a webpage so that all users, regardless of browser or OS, can see them, is the Flash plugin and a combination of the <code><object></code>and <code><embed></code> tags. + +The idea behind the new <code><video></code> tag is to provide a way to embed (and interact with) video without needing a proprietary plugin like Flash. + +Unfortunately video isn't that simple. Not only does the browser need to understand the <code><video></code> tag, it also needs to have the codec necessary to play the video. The obvious solution would be for the HTML 5 spec to name a video codec that every browser could then implement. + +And that's where the fur started flying. The debate over various codecs is rather complex (our sister site, Ars Technica, has a nice [http://arstechnica.com/open-source/news/2009/07/decoding-the-html-5-video-codec-debate.ars in-depth look at the debate]), but the short story is that browser makers couldn't agree on a video codec. Apple doesn't like the proposed Ogg Theora codec and Opera and Mozilla don't want to pay to license the H.264 codec. Google is implimenting both and Microsoft stayed largely out of the fray since it currently has no plans to implement the HTML 5 video element at all. + +Faced with a standoff among the browser makers, HTML 5's benevolent dictator, Ian Hickson, effectively threw up his hands and said screw it -- there's no video codec named in the HTML 5 spec. + +Does that mean the video tag is useless? No, it just means that widespread adoption of a video codec is still a ways off. + +In the mean time, let's take a look at how you would use the video tag, and how you can use it today with some fallback code for the browsers that can't handle it. + +===TK=== + +Lest you think that what we're about to wade through is ultimately an exercise in futility if there is no agreed upon standard, consider this -- Google is chomping at the bit to use the video tag for YouTube. In fact there's already [http://www.youtube.com/html5 a mockup of what YouTube would look like in HTML 5]. While the company hasn't announced a timeline to convert YouTube to use the HTML 5 <code><video></code> tag, you can bet that when they do the rest of the web will follow suit. + +So how does video work? Well, are you ready? Here's the code to embed a video in HTML 5: + +<pre> +<code> +<video src="/myvideo.mp4"></video> +</code> +</pre> + +Pretty simple right? Well, ideally you would do something more like this (which is what the aforementioned YouTube demo does): + +<pre> +<code> +<video width="640" height="360" src="/demo/google_main.mp4?2" autobuffer> + <div class="fallback"> + <p>You must have an HTML5 capable browser.</p> + </div> +</video> +</code> +</pre> + +There are also a number of useful attributes for the <code><video></code> tag, including autoplay controls, a "poster" attribute that points to an image file to display before the video is loaded, and a boolean attribute for play/pause controls. The full list of video tag attributes can be found on the [http://www.w3schools.com/tags/html5_video.asp W3C schools site]. + +The <code><video></code> tag also has a whole host of events you can hook into with JavaScript, allowing you to play movies inside movies and set up complex user interactions via mouse and keyboard events. Here's an example that uses the video tag in conjunction with the Canvas tag and Web Workers (we'll cover those in the future) to [http://htmlfive.appspot.com/static/tracker1.html create a motion tracking system] for web video. + +Okay, that's all well and good but since not every browser can play MP4 videos and very few of them understand the video tag, what can you do today? Well, the unfortunate answer is that you'll need multiple videos. Hardly ideal, but if you want to push the HTML boundaries, you can embed your video using the <code><video></code> tag for browsers that support HTML 5 and fallback on Flash for those that don't. + +Something like this would do the trick: + +<pre> +<code> +<video src="video.mp4" controls> + <object data="player.swf" type="application/x-shockwave-flash"> + <param value="player.swf" name="movie"/> + ...etc... + </object> +</video> +</code> +</pre> + +Obviously all we've really done is wrap the same old <code><object></code> and <code><embed></code> tags with the new <code><video></code> tag -- hardly a great leap for the web. + +How about we get rid of the fallback code, keep our HTML limited to the video tag and use a little JavaScript to handle the Flash embedding behind the scenes? + +Drupal developer Henrik Sjökvist has an [http://henriksjokvist.net/archive/2009/2/using-the-html5-video-tag-with-a-flash-fallback example of how to do that using the following HTML 5 code]: + +<pre> +<code> +<video controls> + <source src="video.m4v" type="video/mp4" /> <!-- MPEG4 for Safari --> + <source src="video.ogg" type="video/ogg" /> <!-- Ogg Theora for Firefox 3.1b2 --> +</video> +</code> +</pre> + +Sjökvist's Flash solution requires a little JavaScript to sniff out the browsers capabilities and then offer Flash if the browser can't understand HTML 5 (note that the code uses the [http://code.google.com/p/swfobject/ swfobject library] to handle the actual embed). We prefer this method since it keeps the actual HTML code cleaner and when video tag support is ubiquitous, all you need to do is drop the JavaScript, no rewriting your actual pages. + +Another possible solution would be to simply load the MP4 movie into a Flash container file. As of Flash Player 10, Flash supports dynamically loaded MP4 files, so all you would need is to use Sjökvist's JavaScript detection code, but rather than feeding your player swf a separate .flv video file, you could just load the same mp4 file. + +If you need a refresher course on how to dynamically load videos into a Flash file, check out [http://stackoverflow.com/questions/840213/how-do-i-load-a-mov-file-into-flash-9 this Stack Overflow page] which has a quick overview and some basic sample code. + +Using that scenario you've got a solution where every visitor can see your video and you only need to offer two actual files: OGG for Firefox and MP4 for everyone else. + +===Audio=== + +The audio tag is more or less a duplicate of the video tag. The same codec limitations apply -- Mozilla only supports ogg files, while Safari can handle pretty much anything Quicktime can. + +The code looks very similar to <code><video></code>: + +<pre> +<code> +<audio src="/music/myaudio.ogg" autoplay> + Sorry, your browser does not support the <code>audio</code> element. +</audio> +</code> +</pre> + +And as with the <code><video></code> tag, the same Flash-based workarounds would give you near universal support for today's crop of browsers. + +=== Conclusion === + +As you can see the audio and video landscape in HTML 5 has some issues -- namely the inability for browser makers to come to any sort of codec consensus. But bear in mind that the good old <code><img></code> tag also lacks a specific format and we've managed to make that work over time. + +Ideally all the browsers would support both Ogg and H.264, giving developers even more options. + +There's also the possibility that Google will open source the codecs it is trying to acquire from On2. On2's VP3 codec is the basis for Ogg Theora and if Google open source VP6, VP7 or VP8 there's another possible solution for open source video on the web.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/html5howto.txt b/wired/old/published/Webmonkey/html5howto.txt new file mode 100644 index 0000000..408905c --- /dev/null +++ b/wired/old/published/Webmonkey/html5howto.txt @@ -0,0 +1,184 @@ +Depending on who you ask, HTML 5 is either the next important step toward creating a more semantic web, or a disaster that's going to trap the web in yet another set of incomplete tags and markup soup. + +The problem with both sides of the argument is that almost no one is using HTML 5 in the wild so its theoretical problems and solutions remain largely untested. That said, it isn't hard to see both benefits and potential problems with the next generation of web markup tools. + +First off, what do we mean by HTML 5? Well, ideally we mean the whole thing, new semantic structural tags, API specs like canvas or offline storage and even some new inline semantic tags. However, for practical reasons -- read: browser support issues -- we're going to limit this intro to just the structural tags. As cool as Canvas, offline storage, native video or the geolocation APIs are, most browsers don't yet support them. + +But wait, most browsers don't support the new structural elements either... That's true, but the vast majority of them will happily accept any tag you want to make up. Even IE 6 can deal with the new elements, though if you want to apply styles using CSS you'll need a little JavaScript help. + +The one thing to keep in mind when you're applying styles to the new tags is that unknown tags have no default style in most browsers. They're also treated as inline elements. However, because most of the new HTML 5 tags are structural, we'll want them be behave like block elements. The solution is make sure that you include <code>display:block;</code> in your CSS styles. + +To help make some sense of what's new in HTML 5 today we're going to dive right in and start using some of the new structural elements. + +###Finally, a doctype anyone can remember + +The first thing we need to do to create an HTML 5 document is use the new doctype. Now if you've actually memorized the HTML 4 or XHTML 1.x doctypes you're better monkeys than us. Whenever we start a new page we have to bring up an old one and cut and paste the doctype definition over. + +It's a pain, which is why we love the new HTML 5 doctype. Are you ready? Here it is: + +<pre> +<code><!DOCTYPE html> +</code> +</pre> + +Shouldn't be too hard to commit that to memory. Simple and obvious. The idea is to stop versioning HTML so that backwards compatibility is easier. Whether or not that pans out in the long run is a whole other story, but at least it saves you some typing in the mean time. + +###Semantic Structure at Last + +Okay, we have our page defined as an HTML 5 document. So far so good, now what are these new tags you speak of? + +Well, before we dive into the new tags consider the structure of your average web page, which (generally) looks something like this: + +<pre> +<code> +<html> + <head> + ...stuff... + </head> + <body> + <div id="header"> + <h1>My Site</h1> + </div> + <div id="nav"> + <ul> + <li>Home</li> + <li>About</li> + <li>Contact</li> + </ul> + </div> + <div id=content> + <h1>My Article</h1> + <p>...</p> + </div> + <div id="footer"> + <p>...</p> + </div> + </body> +</html> +</code> +</pre> + +That's fine and dandy for display purposes, but what if we want to know something about what the page elements contain? + +In this example we've added IDs to all our structural divs -- a fairly common practice among savvy designers. The purpose is two-fold, first, the IDs provide hooks which can be used to apply styles to specific sections of the page and, second, the IDs serve as a primitive, pseudo-semantic structure. Smart parsers will look at the ID attributes on a tag and try to guess what they mean, but it's hard when ID names are different on every site. + +And that's where the new structural tags come in. + +Recognizing that these IDs were common practice, the authors of HTML 5 have gone a step further and made some of these elements into their own tags. Here's a quick overview of the new structural tags available in HTML 5: + +####<code><header></code> + +The header tag is intended as a container for introductory information about a section or an entire webpage. The <code><header></code> tag can include anything from your typical logo/slogan that sits atop most pages, to a headline and lede that introduces a section. If you've been using <code><div id="header"></code> in your pages, that would be the tag to replace with <code><header></code>. + +####<code><nav></code> + +The nav element is pretty self-explanatory -- navigation goes here. Of course what constitutes navigation is somewhat debatable -- there's primary site navigation, but in some cases there may also be page navigation elements as well. The WHATWG, creators of HTML 5, recently amended the explanation of <code><nav></code> to show how it could be used twice on the same page. For more on nav and a lively debate about HTML 5, see Zeldman's article on the nav element. + +The short story is that if you've been using a <code><div id="nav"></code> tag to hold your page navigation, you can replace it with a simple <code><nav></code> tag. + +####<code><section></code> + +Section is probably the most nebulous of the new tags. According the HTML 5 spec, a section is a thematic grouping of content, typically preceded by a header tag, and followed by a footer tag. But sections can also be nested inside of each other, if needed. + +In our example above the div "content" would be a good candidate to become a section. Then within that section, depending on the content, we might have additional sections. + +####<code><article></code> + +According the WHATWG notes, the article element should wrap "a section of content that forms an independent part of a document or site; for example, a magazine or newspaper article, or a blog entry." + +####<code><aside></code> + +Another fairly nebulous tag, the aside element is for content that is "tangentially related to the content that forms the main textual flow of a document." That means a parenthetical remark, inline footnotes, pull quotes, annotations or the more typical sidebar content like you see to the right of this article. + +According to the WHATWG's notes it seems like <code><aside></code> would work in all those cases, despite the fact that there's considerable difference between a pull quote and tag cloud in your sidebar. Hey, no one said HTML 5 was perfect. + +####<code><footer></code> + +Footer should also be self-explanatory, except perhaps that you can have more than one. In other words sections can have footers in addition to the main footer generally found at the bottom of most pages. + + + +###Putting it all Together + +Okay, let's rewrite our original example using the new tags: + +<!DOCTYPE html> +<html> + <head> + ...stuff... + </head> + <body> + <header> + <h1>My Site</h1> + </header> + <nav> + <ul> + <li>Home</li> + <li>About</li> + <li>Contact</li> + </ul> + </nav> + <section> + <h1>My Article</h1> + <article> + <p>...</p> + </article> + </section> + <footer> + <p>...</p> + </footer> + </body> +</html> + +Much cleaner and easier to understand. A couple of notes: we could have wrapped our <h1>My Article</h1> headline in header tags. I opted not to since the h1 element already conveys the heading, but if you also had a pub date, byline or other data atop your post, the collective group of tags would be a good candidate for adding a header container tag. + +Also note that we could add a second footer element below the article element to contain things like next/prev navigation, related posts or other content. + +###Styling the new tags + +In most browsers all you need to do is simply define your styles as you normally would, but make sure to add the display:block; rule to every element (for now anyway, in time, as browsers begin adding the new elements that won't be necessary). + +For example let's apply some styles to our header: + +header { + display: block; + font-size: 36px; + font-weight: bold; +} + +Keep in mind that you can still added class and ID attributes to these tags so if you wanted to style one navigation section separately you'd simple add a class or ID to the tag like so: <code><nav class="main-menu"></code>. Then you can apply a style like so: + +nav.main-menu { + font-size: 18px; +} + +But wait, what about IE? None of these styles are working in IE 6. If you still need to support legacy browsers like IE there is a fix. IE 6 parses and displays these tags just fine, but it won't apply an CSS to them. The fix is to use a bit a JavaScript. + +All we need to do to get IE to style our HTML 5 tags is use the <code>createElement</code> method so IE 6 becomes aware of the new tags. Add this bit to the head of your HTML 5 file, or alternatively you can save it in a separate file and include it that way. + +<pre> +<code> +<script> + document.createElement('header'); + document.createElement('nav'); + document.createElement('section'); + document.createElement('article'); + document.createElement('aside'); + document.createElement('footer'); +</script> +</code> +</pre> + +I know what you're thinking, hey, you didn't specify a MIME type for that script tag. You don't need to in HTML 5. In HTML 5 all scripts are assumed to be type="text/javascript" so there's no need it clutter up your script tags with attributes anymore (unless your script is something other than JavaScript). + +That fixes the IE problems, but we're not out of the woods just yet. It turns out that there's a bug in the Gecko rendering engine that causes Firefox 2 and some versions of Camino to choke on these tags as well. + +There are two ways to work around this bug, neither of which are ideal. For more details check out the HTML5doctor site (the same article also has a handy script with all the HTML 5 elements already to go). Bear in mind though that Firefox 2 usage stats are quickly falling below 10 percent of all web traffic, so simply ignoring this bug might be a possibility depending on your site's audience. + +###Okay, now you can use HTML5, should you? + +The short answer is yes. The longer answer is that it depends on the site. If you're revamping your blog we say go ahead (there are some WordPress plugins that can help if you're using WordPress). If you're charged with recreating the CNN homepage, well, you might want to hold off for a bit until browser support improves. + +However, if IE's shortcoming are holding you back, consider this: even Google is using the HTML 5 doctype on their main search page. Even if you don't use all the new structural tags you can at least take advantage of things like shorter script declarations, and some of the non-structural semantic tags that we'll cover next time around. + +Stay tuned!
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/htmlforms.txt b/wired/old/published/Webmonkey/htmlforms.txt new file mode 100644 index 0000000..e52fe3a --- /dev/null +++ b/wired/old/published/Webmonkey/htmlforms.txt @@ -0,0 +1 @@ +Web forms are one of the uglier elements on most pages -- they're often blocky and look awkward and out of place in the overall design of the page. There's a good reason for that, styling forms is challenging.
The problem is complicated by the myriad of ways to mark up a form using HTML. Since the markup often changes from site to site it's difficult to create a clean, reusable code base you can move from one website to the next.
However, while web forms are one of the more complex things you'll find yourself working with, they're also one of the things that separates the good web designer from the friend of a friend who once read some book on HTML.
To help you out, we're going to break down the elements of web forms and talk about how to handle them in your stylesheets.
== Understand the HTML ==
There are a number of tags available for form and not all of them are necessary, but here's an overview of some of the tools at your disposal:
# '''form''' -- hopefully obvious, this is the container tag
# '''fieldset''' -- often overlooked the <code>fieldset</code> tag is a handy way of grouping related from elements.
# '''legend''' -- used in conjunction with <code>fieldset</code>, legend allows you to add a caption to each fieldset. Think of it as a title for your fieldsets.
# '''label''' -- the label has two purposes, first it tells the user what sort of data the input requires and it also creates a code-level link between the data being collected and the control element.
# '''input''' -- the meat of your form, this is the tag that actually collects the user data and passes it on.
As an example of how you might use these elements to markup you're form, let's take a look at one of the most common forms on the web -- the comment form. Here's what your HTML might look like:
<pre>
<form action="#" class="myform">
<fieldset>
<legend>Leave a Comment</legend>
<ul>
<li>
<label for="name">Name:</label>
<input id="name" />
</li>
<li>
<label for="email">Email:</label>
<input id="email" />
</li>
<li>
<label for="comment">Comments:</label>
<textarea id="comments" rows="7" cols="25"></textarea>
</li>
<li>
<label for="remember">Remember Me:</label>
<input type="radio" name="remember" value="true" />Yes
<input type="radio" name="remember" value="false" checked/>No
</li>
</ul>
</fieldset>
<p><input type="submit" value="Leave comment" /></p>
</form>
</pre>
Let's break this down and see what's going on. First off we have the form container tag. Obviously you'd want to switch out the "#" for the path to your form processing script. Next we use a <code>fieldset</code> tag to group together all our form elements (except for the button at the bottom which we've wrapped in paragraph tags).
Next up we add a legend tag so that people will know this is the comment form. Then we use an unordered list to group our form elements. Why? Well, for one thing it makes it easy to style -- each <code>li</code> tag acts as a container for a row in our form with the label and input conveniently grouped together. The other reason is semantic, a form is gathering a list of data. Now you could make the argument that a definition list might be the more semantically valid choice, but it makes styling a bit more complicated so, for simplicity's sake, we'll stick with the unordered list.
== Adding some style ==
Okay, now that we have the HTML elements in place let's add some CSS styles to make our form look better.
<pre>
form.myform {
margin-left: 155px;
width: 300px;
}
form.myform fieldset {
margin-bottom: 10px;
margin-left: -155px;
}
form.myform legend {
padding: 0 2px;
font-weight: bold;
font-size: 1.6em;
}
form.myform fieldset ul {
margin: 0 0 0 155px;
padding: 0;
}
form.myform fieldset li {
list-style: none;
padding: 10px;
margin: 0;
clear: both;
}
form.myform label {
font-weight: bold;
float: left;
text-align:right;
margin-left: -155px;
width: 150px;
}
form.myform p{
margin-left: 155px;
}
</pre>
What we've done here is just add some basic margin and padding so that all our elements nicely spaced and then remove the default list element styles (note that if you're using a reset stylesheet to fix these issues, then you can skip them here).
The only thing slightly tricky in this CSS is that we're adding a left margin to the whole form and then pulling the fieldset and label tags back with a negative left margin. This has the effect of creating a two column look to our form -- the left side holds all the labels, the right side all of the inputs.
Here's roughly what your form should now look like (screenshot taken in Firefox 3.0):
forms-shot1.jpg
It's a bit spartan, but a good starting point. Before we move on we should point out that, while it doesn't affect our form, the Internet Explorer 6 "3 pixel bug" often pops up when start styling multi-line forms. It can make things like inline checkboxes very difficult to deal with. Fortunately there's a solution that isn't too hard to implement. Check out [http://www.positioniseverything.net/explorer/threepxtest.html Position is Everything] for more details.
== Making to Prettier ==
Now that we have a nice structure to our form there are countless possibilities for styling the various elements. Here's one take that we whipped up. This code will create a nice pale blue form with shaded text inputs and highlighting for the active text box. Paste the following code into the style definition, below what we used above:
<pre>
form.myform input, form.myform textarea {
border: solid 1px #85b1de;
background: #fff url('formbg.gif') repeat-x;
background-position: top;
}
form.myform input:focus, form.myform textarea:focus {
background-image: none;
background-color: #ffffff;
border: solid 1px #fded7f;
}
</pre>
This adds a nice blue border around all our input areas and includes an image with a slight gradient to shade the text areas. To round out the bluish look, add a background the fieldset tag like so:
<pre>
form.myform fieldset {
margin-bottom: 10px;
margin-left: -155px;
background: #d0d9fd;
}
</pre>
Your form should now look like this screenshot, which shows the new blue look with the yellow highlight to let users know what field is currently selected (note that the yellow highlight CSS won't work in IE 6, to accomplish something similar in a way that IE 6 can handle you'll need to resort to JavaScript).
forms-shot1.jpg
(screenshot in Safari on a Mac.)
One thing to note about styling the background using the fieldset element -- IE 6 will apply the background beyond the fieldset border, causing a bit of spillover. The problem is that IE 6 applies the background color to the legend tag as well. The solution is to position the legend tag outside the usual document flow by using <code>position:absolute;</code>. Check out [http://www.mattheerema.com/web-design/2006/04/getting-fieldset-backgrounds-and-legends-to-behave-in-ie/ Matt Heerema's blog for more details] on how to handle the IE 6 workaround.
== Conclusion ==
As we've seen, styling forms is not the easiest thing in the world, but once you understand the basic tags and the options available it isn't too terribly difficult and well styled forms can go a long way to making your site that much more usable and attractive.
If the whole thing seems just too much for you, have a look at the JavaScript library [http://www.emblematiq.com/projects/niceforms/ Niceforms] which can handle some of the heavy lifting for you. Note though that Niceforms doesn't degrade well in all situations.
Other good resources for styling forms include A List Apart's [http://www.alistapart.com/articles/prettyaccessibleforms Pretty Accessible Forms] and Eric Meyer's [http://meyerweb.com/eric/thoughts/2007/05/15/formal-weirdness/ Formal Weirdness] which covers some of the cross-browser issues you might encounter.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/iUI/iui.txt b/wired/old/published/Webmonkey/iUI/iui.txt new file mode 100644 index 0000000..8968a6a --- /dev/null +++ b/wired/old/published/Webmonkey/iUI/iui.txt @@ -0,0 +1,81 @@ +The iPhone may not yet have a majority share in the smartphone world, but it's well on its way. And that means creating a version of your website tailored to the look and feel of the iPhone is all but mandatory for today's web apps. + +It might seem like a pain to completely recreate your website just for the iPhone, but luckily doing so isn't all that tough. The secret is to use the JavaScript toolset developed by [http://www.joehewitt.com/blog/introducing_iui.php Joe Hewitt]. Hewitt's script, known as [http://code.google.com/p/iui/ iUI], takes care of all the heavy lifting for you. + +So long as your site is using valid (X)HTML, it's not hard at all to sequester off a domain for your iPhone users and apply the iUI tools to generate your iPhone-friendly site. Even better, you don't need to be a JavaScript guru to get a basic site up and running. + +==Detecting Vs Destination== + +You might be thinking of using some JavaScript to sniff out mobile Safari and serve up your iPhone site whenever your detect Apple's mobile web browser. + +Don't do that. + +Just because you're offering iPhone users a dedicated interface, doesn't mean you should force them to use it. Many of them may want to access your normal site and if you're using a browser detection script to redirect Mobile Safari, they won't be able to get to the main site. + +A far better plan is create a sub domain or other specific iPhone-friendly URL. That way those that like your iPhone interface can get it and those that want access to the regular site can site enjoy that as well. + +==Getting started== + +The first thing to do is set up your sub domain or other URL. For example: i.mysite.com. When you're doing this keep in mind that the iPhone isn't the easiest thing to type on so the shorter the URL the better. + +Now you just need to generate some HTML for that sub domain. If you're using a database and template publishing system, it's not too tough. Just call the same data you'd get for your main site and structure it in a manner that suits the iPhone. + +This is where it helps if you actually have an iPhone, but if you don't here's a tip to get you started: lists, lots of lists. + +The iUI library has some very nice set of tools that will turn your lists into a sideways-sliding navigation interface that works very well with the iPhone's finger gestures. + +For instance, let's say you have a number of categories on your site and you want iPhone users to be able to navigate through all your content by category. One sound strategy would be to generate markup like this: + +<pre> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>iUI Barrel of Monkeys Demo</title> +<meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/> +<style type="text/css" media="screen">@import "../iui/iui.css";</style> +<script type="application/x-javascript" src="../iui/iui.js"></script> +</head> +<body> + <div class="toolbar"> + <h1 id="pageTitle">Barrel of Monkeys</h1> + <a id="backButton" class="button" href="#"></a> + <a class="button" href="#searchForm">Search</a> + </div> + <ul id="home" title="Categories" selected="true"> + <li class="group">B</li> + <li><a href="#Bananas">Bananas</a></li> + <li><a href="#Barrels">Barrels</a></li> + <li class="group">M</li> + <li><a href="#Monkeys">Monkeys</a></li> + <li class="group">P</li> + <li><a href="#PointySticks">Pointy Sticks</a></li> + </ul> +</body> +</html> + +</pre> + +With this markup we've embedded the iUI scripts and CSS. Then we've told iUI to create an iPhone styled list (iui1.jpg). If you look at the screenshot you'll notice that iUI automatically uses the class attribute "group" to build iPhone-style list dividers and styles all our links as horizontal sliding elements. + +If you'll look at the actual HTML you'll notice none of our links actually lead to other pages. Depending on the complexity of your site this may not work for every page. However, for the most part, even though your users will feel like they're paging through you site, you don't actually need to load a new page. + +So let's add some more content, paste this code in just below the list code: + +<pre> + <ul id="Monkeys" title="Monkeys"> + <li><a href="#howler">Howler</a></li> + <li><a href="#spider">Spider</a></li> + <li><a href="#rhesus">Rhesus</a></li> + <li><a href="#barbaryape">Barbary Ape</a></li> + </ul> + <p id="howler">Howler Monkeys love to howl.</p> +</pre> + +Now if you head to your page using a iPhone (or an [http://www.testiphone.com/ emulator]) and tap/click on the monkeys the page will slide to the right and display our new list. Click on the Howler Monkey link and you'll slide over to a blank page with our paragraph text. + +==Beyond Lists== + +Obviously not everything you're going to want to show on the iPhone is going to be a list. But don't worry, iUI can help out with other stuff too. There's are some HTML classes to handle common input elements like modal dialogs, preference panels, on/off switches and loads more. + +It also neatly solves a common iPhone design issue -- long lists. Apple's apps get around the problem of long lists by including a "load X more" link at the bottom of a short list. And that's exactly what iUI allows you to do as well. Just create a link with target="_replace" and iUI will load the URL it and replace the <code><a></code> with the contents of the URL. + +Of course you'll probably find some of your content falls outside the bounds of iUI and in the end you may have to write some CSS yourself. But for handling common cases on the iPhone iUI is an indispensable resource. diff --git a/wired/old/published/Webmonkey/icons_tutorial.txt b/wired/old/published/Webmonkey/icons_tutorial.txt new file mode 100644 index 0000000..6ae3c15 --- /dev/null +++ b/wired/old/published/Webmonkey/icons_tutorial.txt @@ -0,0 +1,62 @@ +Favicons, the little icons you see in the browser toolbar, are an often overlooked element of web design, but they're yet another opportunity to help develop your site's brand. To a certain degree the favicon flies below most visitor's radar, and yet we tend to recognize favicons. + +Like other subtle forms of advertising, favicons have a way of creeping into the your consciousness without your consent. Which is exactly why your site needs one -- how often do you get brand recognition in a 16 pixel square? + +And as long as we're building favicons, why not trick out your site with a iPhone/iPod Touch icon? True, most people probably won't use it, but the few who do will appreciate the effort. + +== Favicons == + +The term favicon is simply a mashup of "favorites icon" since originally they were intended to make your browser bookmarks easier to navigate. Favicons use an obscure, legacy Windows icon resource file format. A .ico file is a 16×16 bitmap that dates back to early versions of Windows. + +Today modern browsers like Firefox, Safari, Opera and more recent version of Internet Explorer can handle other image formats like .gif or .png, but for the broadest possible cross-browser compatibility, .ico is still you best option. Thanks to metatags it's not hard to serve multiple favicons though, so the file format is up to you. + +It used to be that creating a favicon required Photoshop or the GIMP together with some plug-ins and command line tools. Thankfully that's not the case anymore, there are a multitude of online services that can convert an ordinary image into a favicon. + +Most such service use ImageMagick, which comes with many Linux distros. If you're familiar with ImageMagick you can create the file yourself, if not just use an online service like [http://www.favicon.cc/ Favicon.cc]. + +== Creating Favicons == + +The quality of the image generated by ImageMagick depends on the quality of image you feed into it. For best results start with a lossless format like .png. When you're creating your favicon, keep the graphics simple. Your logo might look clean and simple at full size, but by the time you get it down to a 16 x16 pixels, it may well be a muddled mess. + +Try to isolate the dominate element of your brand -- for instance Google's favicon is just a "g," Flickr uses uses simple pink and blue dots and Facebook opts for the ubiquitous "F" on a blue background. + +The point is simplify, but feel free to make your initial graphic a bit bigger. I tend to start with a 32x32 pixel image, bearing in mind that the finished product will inevitably lose some detail. + +== Using Favicons == + +Once you've got your 16 x 16 pixel image and are happy with the look, upload the file to the root directory of your web server. It's true that modern browsers can find a favicon just about anywhere you put it, but older versions may have trouble. If supporting older browsers isn't a priority feel free to stick the file where evr you want. + +Now we just need to ad a metatag to our HTML documents so the browser will know where to find it (note that this isn't always necessary, some browsers look for favicon.ico even if you don't tell them too, which is why you may have noticed error messages in your server logs. + +The head tag looks like this: + +<pre> +<link rel="shortcut icon" href="http://yoursite.com/favicon.ico" type="image/x-icon"> +</pre> + +And that's all you need to do. Note that you may need to clear your browser's cache to get the new favicon to show up. + +If you'd like to serve a different image format to more modern browsers, say .png, just add this line below the last one: + +<pre> +<link rel="icon" href="http://yoursite.com/favicon.png" type="image/x-icon"> +</pre> + + +== iPhone icons == + +As long as we're messing with tiny icons, why not drop in an iPhone icon in case users want to bookmark your page on their iPhone menu? It's just about as easy as creating a favicon and the head tag looks nearly identical. + +Apple used to have instructions on their site, but as of this writing [http://developer.apple.com/iphone/devcenter/designingcontent.html the page is gone] (perhaps changes are afoot?). Luckily we have you covered. + +Apple recommends using a 57x57 pixel icon, however [http://www.hicksdesign.co.uk/journal/custom-webclip-icon-on-the-iphoneipod-touch curious designers] who've played with the format [http://playgroundblues.com/posts/2008/jan/15/iphone-bookmark-iconage/ discovered] that best results seem to come from 60x60 pixel icons at 72dpi. The iPhone will automatically downscale the image, so the size will still be 57 pixels, but you'll get a little bit sharper image starting with the larger dimensions. + +Once you've created your 60x60 pixel iPhone icon, upload it to the root directory on your website, just as we did with the favicon file. + +The iPhone may discover your image without you needing to tell it where it is, but just to be on the safe side, add this tag to your HTML documents, somewhere in the <code><head></code> tag: + +<pre> +<link rel="apple-touch-icon" href="/whatever.jpg"/> +</pre> + +And there you have it all the tiny icons you can eat.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/200px-Tux.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/200px-Tux.png Binary files differnew file mode 100644 index 0000000..c4a8b7e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/200px-Tux.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/500px-Android-logo.svg.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/500px-Android-logo.svg.png Binary files differnew file mode 100644 index 0000000..b08f6b3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/500px-Android-logo.svg.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/70x70_windows_vista.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/70x70_windows_vista.gif Binary files differnew file mode 100644 index 0000000..3b0c913 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/70x70_windows_vista.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/GPLv3-logo-red.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/GPLv3-logo-red.png Binary files differnew file mode 100644 index 0000000..bf4e320 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/GPLv3-logo-red.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/Google_docs.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/Google_docs.png Binary files differnew file mode 100644 index 0000000..5e3b4bb --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/Google_docs.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/KDE_logo.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/KDE_logo.jpg Binary files differnew file mode 100644 index 0000000..66162be --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/KDE_logo.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/OOo.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/OOo.gif Binary files differnew file mode 100644 index 0000000..eb5e679 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/OOo.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/Opera2.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/Opera2.jpg Binary files differnew file mode 100644 index 0000000..32edf42 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/Opera2.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/Skype_logo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/Skype_logo.png Binary files differnew file mode 100644 index 0000000..2acea3e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/Skype_logo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/WinVista_v_Thumb.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/WinVista_v_Thumb.jpg Binary files differnew file mode 100644 index 0000000..fc59024 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/WinVista_v_Thumb.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/adobe-logo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/adobe-logo.png Binary files differnew file mode 100644 index 0000000..fe8dbe0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/adobe-logo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/adobeCS.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/adobeCS.png Binary files differnew file mode 100644 index 0000000..637f3bf --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/adobeCS.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/amigaorg_1.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/amigaorg_1.jpg Binary files differnew file mode 100644 index 0000000..b85abab --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/amigaorg_1.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android.png Binary files differnew file mode 100644 index 0000000..1e3c3b9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android200px.jpg Binary files differnew file mode 100644 index 0000000..631c2fe --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android_big.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android_big.jpg Binary files differnew file mode 100644 index 0000000..65e06e7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android_big.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android_launch_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android_launch_200px.jpg Binary files differnew file mode 100644 index 0000000..014ec1f --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android_launch_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android_robot.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android_robot.gif Binary files differnew file mode 100644 index 0000000..e98aa47 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/android_robot.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/any_key_2.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/any_key_2.jpg Binary files differnew file mode 100644 index 0000000..914999a --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/any_key_2.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/asszero.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/asszero.png Binary files differnew file mode 100644 index 0000000..1ec2c05 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/asszero.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/automator.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/automator.jpg Binary files differnew file mode 100644 index 0000000..9b7f67d --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/automator.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/barcamp-logo-final.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/barcamp-logo-final.png Binary files differnew file mode 100644 index 0000000..0a1e8c4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/barcamp-logo-final.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/big64.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/big64.jpg Binary files differnew file mode 100644 index 0000000..779b903 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/big64.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/btlogo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/btlogo.png Binary files differnew file mode 100644 index 0000000..ea9be5d --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/btlogo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/caminologo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/caminologo.png Binary files differnew file mode 100644 index 0000000..b55cd86 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/caminologo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/digg.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/digg.png Binary files differnew file mode 100644 index 0000000..b3823e6 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/digg.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/django-logo-negative.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/django-logo-negative.png Binary files differnew file mode 100644 index 0000000..2a1d873 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/django-logo-negative.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/docs_spreadsheets.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/docs_spreadsheets.gif Binary files differnew file mode 100644 index 0000000..a282d68 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/docs_spreadsheets.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/dvd.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/dvd.jpg Binary files differnew file mode 100644 index 0000000..27fc347 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/dvd.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/facebooklogo.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/facebooklogo.jpg Binary files differnew file mode 100644 index 0000000..100f5d7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/facebooklogo.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/facey.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/facey.jpg Binary files differnew file mode 100644 index 0000000..817906d --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/facey.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/feedburner.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/feedburner.jpg Binary files differnew file mode 100644 index 0000000..a321aec --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/feedburner.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ff-logo-big.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ff-logo-big.jpg Binary files differnew file mode 100644 index 0000000..bb4022b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ff-logo-big.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ff-logo-small.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ff-logo-small.jpg Binary files differnew file mode 100644 index 0000000..7b3deee --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ff-logo-small.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/firefox3-robot-bg.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/firefox3-robot-bg.jpg Binary files differnew file mode 100644 index 0000000..5681ce8 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/firefox3-robot-bg.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/flickr_logo.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/flickr_logo.gif Binary files differnew file mode 100644 index 0000000..8728a6a --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/flickr_logo.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/font200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/font200px.jpg Binary files differnew file mode 100644 index 0000000..8c7726f --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/font200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/gnu.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/gnu.png Binary files differnew file mode 100644 index 0000000..7f55ccb --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/gnu.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/google docs data api.textClipping b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/google docs data api.textClipping new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/google docs data api.textClipping diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/google_code.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/google_code.png Binary files differnew file mode 100644 index 0000000..af1eb0d --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/google_code.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/google_logo.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/google_logo.gif Binary files differnew file mode 100644 index 0000000..afa22bc --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/google_logo.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/googreaderlogo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/googreaderlogo.png Binary files differnew file mode 100644 index 0000000..a2c0039 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/googreaderlogo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ie7.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ie7.png Binary files differnew file mode 100644 index 0000000..c67386b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ie7.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ie_logo.jpeg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ie_logo.jpeg Binary files differnew file mode 100644 index 0000000..adc6732 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ie_logo.jpeg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/imovie.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/imovie.png Binary files differnew file mode 100644 index 0000000..12e5c8e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/imovie.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone.jpg Binary files differnew file mode 100644 index 0000000..5e8e5d7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone_hacked.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone_hacked.jpg Binary files differnew file mode 100644 index 0000000..8782701 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone_hacked.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone_huh.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone_huh.jpg Binary files differnew file mode 100644 index 0000000..335a090 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone_huh.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone_killerapp.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone_killerapp.jpg Binary files differnew file mode 100644 index 0000000..33dc691 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphone_killerapp.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphonedevcamp.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphonedevcamp.jpg Binary files differnew file mode 100644 index 0000000..95d6c56 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iphonedevcamp.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iso.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iso.png Binary files differnew file mode 100644 index 0000000..44240e9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/iso.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/itunes.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/itunes.gif Binary files differnew file mode 100644 index 0000000..925ae81 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/itunes.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/joomla.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/joomla.gif Binary files differnew file mode 100644 index 0000000..cb4ab2f --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/joomla.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/leopard_dawn.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/leopard_dawn.jpg Binary files differnew file mode 100644 index 0000000..1e4a126 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/leopard_dawn.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/leopardbox.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/leopardbox.jpg Binary files differnew file mode 100644 index 0000000..401ad7b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/leopardbox.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/lflogo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/lflogo.png Binary files differnew file mode 100644 index 0000000..8db571f --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/lflogo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/livejournal.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/livejournal.jpg Binary files differnew file mode 100644 index 0000000..eae56fc --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/livejournal.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/macheist_retail.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/macheist_retail.jpg Binary files differnew file mode 100644 index 0000000..19dc590 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/macheist_retail.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/macworld_logo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/macworld_logo.png Binary files differnew file mode 100644 index 0000000..d137e62 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/macworld_logo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/mcLogoV.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/mcLogoV.png Binary files differnew file mode 100644 index 0000000..91f416c --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/mcLogoV.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/mozilla_alpha.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/mozilla_alpha.png Binary files differnew file mode 100644 index 0000000..0258bce --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/mozilla_alpha.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/msnlivemaps.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/msnlivemaps.jpg Binary files differnew file mode 100644 index 0000000..83488d2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/msnlivemaps.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/mygooglife.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/mygooglife.jpg Binary files differnew file mode 100644 index 0000000..8f7eba0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/mygooglife.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/myspacelogo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/myspacelogo.png Binary files differnew file mode 100644 index 0000000..04ec0f7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/myspacelogo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/netscape_logo.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/netscape_logo.gif Binary files differnew file mode 100644 index 0000000..d345cea --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/netscape_logo.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/oauth.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/oauth.png Binary files differnew file mode 100644 index 0000000..2a47d65 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/oauth.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/office2007.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/office2007.jpg Binary files differnew file mode 100644 index 0000000..810c961 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/office2007.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/oha_main.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/oha_main.png Binary files differnew file mode 100644 index 0000000..87231f2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/oha_main.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/olpcb1.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/olpcb1.jpg Binary files differnew file mode 100644 index 0000000..6a34711 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/olpcb1.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/paypal_logo.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/paypal_logo.gif Binary files differnew file mode 100644 index 0000000..19fd16d --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/paypal_logo.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/real_logo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/real_logo.png Binary files differnew file mode 100644 index 0000000..7bb7b51 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/real_logo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/reboot.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/reboot.png Binary files differnew file mode 100644 index 0000000..007d007 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/reboot.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/rss.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/rss.gif Binary files differnew file mode 100644 index 0000000..e133018 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/rss.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/safari_logo.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/safari_logo.jpg Binary files differnew file mode 100644 index 0000000..3807cf4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/safari_logo.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/slingboxlogo.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/slingboxlogo.jpg Binary files differnew file mode 100644 index 0000000..d7a87a7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/slingboxlogo.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/stream.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/stream.jpg Binary files differnew file mode 100644 index 0000000..38aba2c --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/stream.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/tubes.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/tubes.jpg Binary files differnew file mode 100644 index 0000000..451f84b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/tubes.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/tux-large.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/tux-large.png Binary files differnew file mode 100644 index 0000000..658b610 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/tux-large.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/twitter.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/twitter.png Binary files differnew file mode 100644 index 0000000..d5b415e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/twitter.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ubuntu.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ubuntu.png Binary files differnew file mode 100644 index 0000000..9d0f69b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/ubuntu.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/uspto.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/uspto.png Binary files differnew file mode 100644 index 0000000..e25dd16 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/uspto.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/vistabox.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/vistabox.jpg Binary files differnew file mode 100644 index 0000000..f7623a3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/vistabox.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/vmware.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/vmware.gif Binary files differnew file mode 100644 index 0000000..12833c5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/vmware.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/vmware_fusion.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/vmware_fusion.jpg Binary files differnew file mode 100644 index 0000000..59adce9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/vmware_fusion.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/w3c_main.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/w3c_main.png Binary files differnew file mode 100644 index 0000000..cf7a07b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/w3c_main.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/weave-logo.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/weave-logo.jpg Binary files differnew file mode 100644 index 0000000..9143746 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/weave-logo.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wikia.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wikia.png Binary files differnew file mode 100644 index 0000000..590fdb9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wikia.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wikiasearch.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wikiasearch.png Binary files differnew file mode 100644 index 0000000..5521c9c --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wikiasearch.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wikipedia.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wikipedia.png Binary files differnew file mode 100644 index 0000000..47642a7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wikipedia.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/windows.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/windows.jpg Binary files differnew file mode 100644 index 0000000..a9765d1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/windows.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/windows_homeserver.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/windows_homeserver.png Binary files differnew file mode 100644 index 0000000..628dadc --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/windows_homeserver.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/winxplogo.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/winxplogo.jpg Binary files differnew file mode 100644 index 0000000..8b6c9ba --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/winxplogo.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wordpress.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wordpress.png Binary files differnew file mode 100644 index 0000000..68b20c6 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/wordpress.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/yahoo_logo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/yahoo_logo.png Binary files differnew file mode 100644 index 0000000..e7697cd --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/yahoo_logo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/yahoo_photos.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/yahoo_photos.gif Binary files differnew file mode 100644 index 0000000..3964c2b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/yahoo_photos.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/youtube_logo.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/youtube_logo.png Binary files differnew file mode 100644 index 0000000..8024542 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/youtube_logo.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX/zoho_logo.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/zoho_logo.gif Binary files differnew file mode 100644 index 0000000..14c3c5e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX/zoho_logo.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/0813_firebug_bg.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/0813_firebug_bg.jpg Binary files differnew file mode 100644 index 0000000..24720c5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/0813_firebug_bg.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/0813_firebug_w.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/0813_firebug_w.jpg Binary files differnew file mode 100644 index 0000000..fdb8ab0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/0813_firebug_w.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/081508_homeserver_bg.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/081508_homeserver_bg.jpg Binary files differnew file mode 100644 index 0000000..5fb12ff --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/081508_homeserver_bg.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/081508_homeserver_w.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/081508_homeserver_w.jpg Binary files differnew file mode 100644 index 0000000..bea1b9d --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/081508_homeserver_w.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/081908_lightrm_bg.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/081908_lightrm_bg.jpg Binary files differnew file mode 100644 index 0000000..bd55307 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/081908_lightrm_bg.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082608_adobe2_w.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082608_adobe2_w.jpg Binary files differnew file mode 100644 index 0000000..0328380 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082608_adobe2_w.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082608_ubiquity_bg.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082608_ubiquity_bg.jpg Binary files differnew file mode 100644 index 0000000..cb678da --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082608_ubiquity_bg.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082708_webmonkey_ie8_bg.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082708_webmonkey_ie8_bg.jpg Binary files differnew file mode 100644 index 0000000..f26b68e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082708_webmonkey_ie8_bg.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082708_webmonkey_ie8_w.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082708_webmonkey_ie8_w.jpg Binary files differnew file mode 100644 index 0000000..b8703d2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/082708_webmonkey_ie8_w.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/090308_wm_picasa_w.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/090308_wm_picasa_w.jpg Binary files differnew file mode 100644 index 0000000..d8512f4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/090308_wm_picasa_w.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/090908_wm_html5_bg.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/090908_wm_html5_bg.jpg Binary files differnew file mode 100644 index 0000000..c4d6d91 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/090908_wm_html5_bg.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/091108_wm_tumblr_w.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/091108_wm_tumblr_w.jpg Binary files differnew file mode 100644 index 0000000..0c090dc --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/091108_wm_tumblr_w.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/0_wm_graphics.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/0_wm_graphics.jpg Binary files differnew file mode 100644 index 0000000..4a1ce48 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/0_wm_graphics.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_api_200x100B.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_api_200x100B.jpg Binary files differnew file mode 100644 index 0000000..b8327eb --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_api_200x100B.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_blog_200x100G.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_blog_200x100G.jpg Binary files differnew file mode 100644 index 0000000..47768d2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_blog_200x100G.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_cheatsheet_200x100B.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_cheatsheet_200x100B.jpg Binary files differnew file mode 100644 index 0000000..fda3289 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_cheatsheet_200x100B.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_color_200x100Y.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_color_200x100Y.jpg Binary files differnew file mode 100644 index 0000000..6de873a --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_color_200x100Y.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_contribute_200x100G.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_contribute_200x100G.jpg Binary files differnew file mode 100644 index 0000000..882a17e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_contribute_200x100G.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_glossary_200x100R.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_glossary_200x100R.jpg Binary files differnew file mode 100644 index 0000000..08f6a89 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_glossary_200x100R.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_hmtl_200x100G.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_hmtl_200x100G.jpg Binary files differnew file mode 100644 index 0000000..db2d2f5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_hmtl_200x100G.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_mobile_200x100G.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_mobile_200x100G.jpg Binary files differnew file mode 100644 index 0000000..fe23895 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_mobile_200x100G.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_multimedia_200x100G.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_multimedia_200x100G.jpg Binary files differnew file mode 100644 index 0000000..e1433ae --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_multimedia_200x100G.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_newwm_200x100Y.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_newwm_200x100Y.jpg Binary files differnew file mode 100644 index 0000000..2b93545 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_newwm_200x100Y.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_newwm_200x200Y.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_newwm_200x200Y.jpg Binary files differnew file mode 100644 index 0000000..d655201 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_newwm_200x200Y.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_platforms_200x100R.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_platforms_200x100R.jpg Binary files differnew file mode 100644 index 0000000..11362b0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_platforms_200x100R.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_privacy_200x100B.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_privacy_200x100B.jpg Binary files differnew file mode 100644 index 0000000..29407ef --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_privacy_200x100B.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_programming_200x100R.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_programming_200x100R.jpg Binary files differnew file mode 100644 index 0000000..fc821f8 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_programming_200x100R.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_server_200x100G.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_server_200x100G.jpg Binary files differnew file mode 100644 index 0000000..92d0cda --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_server_200x100G.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_tools_200x100G.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_tools_200x100G.jpg Binary files differnew file mode 100644 index 0000000..a43ab9c --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_tools_200x100G.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_visualdesign_200x100R.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_visualdesign_200x100R.jpg Binary files differnew file mode 100644 index 0000000..afab32b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_visualdesign_200x100R.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_webbasics_200x100B.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_webbasics_200x100B.jpg Binary files differnew file mode 100644 index 0000000..8ac6281 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_webbasics_200x100B.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_webbasics_200x100G.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_webbasics_200x100G.jpg Binary files differnew file mode 100644 index 0000000..e2ecc5a --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/1 orig graphics/home_webbasics_200x100G.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Android_market.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Android_market.jpg Binary files differnew file mode 100644 index 0000000..87ad494 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Android_market.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Android_market200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Android_market200px.jpg Binary files differnew file mode 100644 index 0000000..490f90c --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Android_market200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/CSS_sheep.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/CSS_sheep.jpg Binary files differnew file mode 100644 index 0000000..8af4a04 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/CSS_sheep.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/CSS_sheep_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/CSS_sheep_100px.jpg Binary files differnew file mode 100644 index 0000000..ccc04ec --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/CSS_sheep_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Domain100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Domain100px.jpg Binary files differnew file mode 100644 index 0000000..192970a --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Domain100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Facebook-ship100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Facebook-ship100px.jpg Binary files differnew file mode 100644 index 0000000..e289ae7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Facebook-ship100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Geode_logo.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Geode_logo.jpg Binary files differnew file mode 100644 index 0000000..0ed71cb --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Geode_logo.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Geode_logo100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Geode_logo100px.jpg Binary files differnew file mode 100644 index 0000000..6cd26b0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Geode_logo100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Google_docs200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Google_docs200px.jpg Binary files differnew file mode 100644 index 0000000..ff993ff --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Google_docs200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Ie8_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Ie8_100px.jpg Binary files differnew file mode 100644 index 0000000..e14b0af --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Ie8_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Ie8_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Ie8_200px.jpg Binary files differnew file mode 100644 index 0000000..088fdc1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Ie8_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Inquisitor_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Inquisitor_100px.jpg Binary files differnew file mode 100644 index 0000000..04a71ea --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Inquisitor_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Modify_user_perms200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Modify_user_perms200px.jpg Binary files differnew file mode 100644 index 0000000..cf4174c --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Modify_user_perms200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Ubuntu_Stamp.psd b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Ubuntu_Stamp.psd Binary files differnew file mode 100644 index 0000000..56557aa --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Ubuntu_Stamp.psd diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/VLC.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/VLC.jpg Binary files differnew file mode 100644 index 0000000..4899c16 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/VLC.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Yahoo_addressbook100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Yahoo_addressbook100px.jpg Binary files differnew file mode 100644 index 0000000..398cd1e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/Yahoo_addressbook100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/adobe_air100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/adobe_air100px.jpg Binary files differnew file mode 100644 index 0000000..a323f6e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/adobe_air100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/android_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/android_100px.jpg Binary files differnew file mode 100644 index 0000000..4b7f9f5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/android_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/apache100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/apache100px.jpg Binary files differnew file mode 100644 index 0000000..65f40ca --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/apache100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/cappuccino-icon_w.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/cappuccino-icon_w.jpg Binary files differnew file mode 100644 index 0000000..f5730aa --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/cappuccino-icon_w.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/chrome_backlash100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/chrome_backlash100px.jpg Binary files differnew file mode 100644 index 0000000..6328ddc --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/chrome_backlash100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/css_ruler200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/css_ruler200px.jpg Binary files differnew file mode 100644 index 0000000..c83f6da --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/css_ruler200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/custom404_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/custom404_200px.jpg Binary files differnew file mode 100644 index 0000000..be0930b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/custom404_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/datagraph100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/datagraph100px.jpg Binary files differnew file mode 100644 index 0000000..79eda20 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/datagraph100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/django-logo100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/django-logo100px.jpg Binary files differnew file mode 100644 index 0000000..639ae99 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/django-logo100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/django200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/django200px.jpg Binary files differnew file mode 100644 index 0000000..8e2660a --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/django200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries200px.jpg Binary files differnew file mode 100644 index 0000000..5e2cdc4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries_acquia_630.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries_acquia_630.jpg Binary files differnew file mode 100644 index 0000000..f46b9ab --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries_acquia_630.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries_jay_acquia.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries_jay_acquia.jpg Binary files differnew file mode 100644 index 0000000..df70697 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries_jay_acquia.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries_jay_acquia_630.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries_jay_acquia_630.jpg Binary files differnew file mode 100644 index 0000000..68e4e53 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dries_jay_acquia_630.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/drunk_monkey100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/drunk_monkey100px.jpg Binary files differnew file mode 100644 index 0000000..1105203 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/drunk_monkey100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dta_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dta_100px.jpg Binary files differnew file mode 100644 index 0000000..1dc7bad --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/dta_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff-logo200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff-logo200px.jpg Binary files differnew file mode 100644 index 0000000..66557e2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff-logo200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff3_robot100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff3_robot100px.jpg Binary files differnew file mode 100644 index 0000000..1c2ffb8 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff3_robot100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff3_robot200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff3_robot200px.jpg Binary files differnew file mode 100644 index 0000000..0c2e6e0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff3_robot200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff3_robot2_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff3_robot2_200px.jpg Binary files differnew file mode 100644 index 0000000..b5a0c9d --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ff3_robot2_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ffdownload100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ffdownload100px.jpg Binary files differnew file mode 100644 index 0000000..89ebcda --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ffdownload100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/fire_eagle100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/fire_eagle100px.jpg Binary files differnew file mode 100644 index 0000000..fa26c97 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/fire_eagle100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/firebug_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/firebug_100px.jpg Binary files differnew file mode 100644 index 0000000..cbaa218 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/firebug_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/friendfeed_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/friendfeed_100px.jpg Binary files differnew file mode 100644 index 0000000..1fe46b6 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/friendfeed_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/git_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/git_100px.jpg Binary files differnew file mode 100644 index 0000000..64fbd0a --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/git_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/git_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/git_200px.jpg Binary files differnew file mode 100644 index 0000000..7903cc8 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/git_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/gmail_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/gmail_100px.jpg Binary files differnew file mode 100644 index 0000000..441e433 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/gmail_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/google_calendar100px.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/google_calendar100px.png Binary files differnew file mode 100644 index 0000000..d390993 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/google_calendar100px.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/google_walking100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/google_walking100px.jpg Binary files differnew file mode 100644 index 0000000..2454840 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/google_walking100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/googleio.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/googleio.gif Binary files differnew file mode 100644 index 0000000..42740be --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/googleio.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/greasemonkey_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/greasemonkey_100px.jpg Binary files differnew file mode 100644 index 0000000..71f5e24 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/greasemonkey_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/greasemonkey_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/greasemonkey_200px.jpg Binary files differnew file mode 100644 index 0000000..2e9b938 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/greasemonkey_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/greasemonkey_meme100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/greasemonkey_meme100px.jpg Binary files differnew file mode 100644 index 0000000..02d730b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/greasemonkey_meme100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/gzip_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/gzip_200px.jpg Binary files differnew file mode 100644 index 0000000..f99c517 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/gzip_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/handbrake.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/handbrake.jpg Binary files differnew file mode 100644 index 0000000..2df9fa6 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/handbrake.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/iPhone_finger200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/iPhone_finger200px.jpg Binary files differnew file mode 100644 index 0000000..cce60e5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/iPhone_finger200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/iris_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/iris_100px.jpg Binary files differnew file mode 100644 index 0000000..77fc933 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/iris_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/java_babes.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/java_babes.jpg Binary files differnew file mode 100644 index 0000000..377cf6c --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/java_babes.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/jquery100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/jquery100px.jpg Binary files differnew file mode 100644 index 0000000..0f22521 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/jquery100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/kogakure_flickr_django2.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/kogakure_flickr_django2.gif Binary files differnew file mode 100644 index 0000000..6e1388a --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/kogakure_flickr_django2.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/kuler100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/kuler100px.jpg Binary files differnew file mode 100644 index 0000000..78a577e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/kuler100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/larry_inv.gif b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/larry_inv.gif Binary files differnew file mode 100644 index 0000000..a0c6c8b --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/larry_inv.gif diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/lightroom_keywords200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/lightroom_keywords200px.jpg Binary files differnew file mode 100644 index 0000000..7a40b1e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/lightroom_keywords200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/magnolia_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/magnolia_200px.jpg Binary files differnew file mode 100644 index 0000000..52c9256 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/magnolia_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/mt100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/mt100px.jpg Binary files differnew file mode 100644 index 0000000..48d99c0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/mt100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/mt200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/mt200px.jpg Binary files differnew file mode 100644 index 0000000..3b9b7ba --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/mt200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/mylaptop.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/mylaptop.jpg Binary files differnew file mode 100644 index 0000000..d54477e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/mylaptop.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/oembed200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/oembed200px.jpg Binary files differnew file mode 100644 index 0000000..0bd3211 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/oembed200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/openid_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/openid_200px.jpg Binary files differnew file mode 100644 index 0000000..f333ca7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/openid_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/share-this-icon.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/share-this-icon.png Binary files differnew file mode 100644 index 0000000..589ff92 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/share-this-icon.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sharethis200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sharethis200px.jpg Binary files differnew file mode 100644 index 0000000..7183056 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sharethis200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sharethis_logo100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sharethis_logo100px.jpg Binary files differnew file mode 100644 index 0000000..9b9f1b8 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sharethis_logo100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/silverlight_100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/silverlight_100px.jpg Binary files differnew file mode 100644 index 0000000..e59fc4f --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/silverlight_100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sitemap_praguemetro100.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sitemap_praguemetro100.jpg Binary files differnew file mode 100644 index 0000000..73bf1ec --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sitemap_praguemetro100.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sitemap_praguemetro200.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sitemap_praguemetro200.jpg Binary files differnew file mode 100644 index 0000000..583850c --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/sitemap_praguemetro200.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/soap200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/soap200px.jpg Binary files differnew file mode 100644 index 0000000..08846e2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/soap200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/squirrelfish100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/squirrelfish100px.jpg Binary files differnew file mode 100644 index 0000000..a5830aa --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/squirrelfish100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/switzerland100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/switzerland100px.jpg Binary files differnew file mode 100644 index 0000000..ad7f1f4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/switzerland100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/tumblr_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/tumblr_200px.jpg Binary files differnew file mode 100644 index 0000000..2698f99 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/tumblr_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/tux_twhirl.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/tux_twhirl.jpg Binary files differnew file mode 100644 index 0000000..de691cd --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/tux_twhirl.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ubiquity_side.png b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ubiquity_side.png Binary files differnew file mode 100644 index 0000000..b1312a9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/ubiquity_side.png diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/web.monkey_10.7.08.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/web.monkey_10.7.08.jpg Binary files differnew file mode 100644 index 0000000..1b8683e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/web.monkey_10.7.08.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/webmail_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/webmail_200px.jpg Binary files differnew file mode 100644 index 0000000..3a04b1e --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/webmail_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/win7_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/win7_200px.jpg Binary files differnew file mode 100644 index 0000000..b8193f6 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/win7_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/wine100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/wine100px.jpg Binary files differnew file mode 100644 index 0000000..94c9c16 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/wine100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/wordpress100px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/wordpress100px.jpg Binary files differnew file mode 100644 index 0000000..017692d --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/wordpress100px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/xfn200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/xfn200px.jpg Binary files differnew file mode 100644 index 0000000..20105c1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/xfn200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI1_200px.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI1_200px.jpg Binary files differnew file mode 100644 index 0000000..2bcd99c --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI1_200px.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px2.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px2.jpg Binary files differnew file mode 100644 index 0000000..ab09cc0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px2.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px3.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px3.jpg Binary files differnew file mode 100644 index 0000000..1c9a2c4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px3.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px4.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px4.jpg Binary files differnew file mode 100644 index 0000000..3fa59c7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px4.jpg diff --git a/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px5.jpg b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px5.jpg Binary files differnew file mode 100644 index 0000000..68c9f9f --- /dev/null +++ b/wired/old/published/Webmonkey/images/WMgraphics/1GFX_monkey/youtubeAPI_200px5.jpg diff --git a/wired/old/published/Webmonkey/images/apr/bigbrothermouse.jpg b/wired/old/published/Webmonkey/images/apr/bigbrothermouse.jpg Binary files differnew file mode 100644 index 0000000..f8f1ed2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/bigbrothermouse.jpg diff --git a/wired/old/published/Webmonkey/images/apr/birdhouse.jpg b/wired/old/published/Webmonkey/images/apr/birdhouse.jpg Binary files differnew file mode 100644 index 0000000..63351cd --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/birdhouse.jpg diff --git a/wired/old/published/Webmonkey/images/apr/cal_bike_sm.jpg b/wired/old/published/Webmonkey/images/apr/cal_bike_sm.jpg Binary files differnew file mode 100644 index 0000000..1a0a5c4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/cal_bike_sm.jpg diff --git a/wired/old/published/Webmonkey/images/apr/cufon.jpg b/wired/old/published/Webmonkey/images/apr/cufon.jpg Binary files differnew file mode 100644 index 0000000..4e962dc --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/cufon.jpg diff --git a/wired/old/published/Webmonkey/images/apr/diggfu.jpg b/wired/old/published/Webmonkey/images/apr/diggfu.jpg Binary files differnew file mode 100644 index 0000000..bd41946 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/diggfu.jpg diff --git a/wired/old/published/Webmonkey/images/apr/everblockiphone.jpg b/wired/old/published/Webmonkey/images/apr/everblockiphone.jpg Binary files differnew file mode 100644 index 0000000..e1e97e5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/everblockiphone.jpg diff --git a/wired/old/published/Webmonkey/images/apr/glue.jpg b/wired/old/published/Webmonkey/images/apr/glue.jpg Binary files differnew file mode 100644 index 0000000..b16c89e --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/glue.jpg diff --git a/wired/old/published/Webmonkey/images/apr/gmailimageinsert.jpg b/wired/old/published/Webmonkey/images/apr/gmailimageinsert.jpg Binary files differnew file mode 100644 index 0000000..2647d8c --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/gmailimageinsert.jpg diff --git a/wired/old/published/Webmonkey/images/apr/ie6.jpg b/wired/old/published/Webmonkey/images/apr/ie6.jpg Binary files differnew file mode 100644 index 0000000..aaea072 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/ie6.jpg diff --git a/wired/old/published/Webmonkey/images/apr/operahistory.jpg b/wired/old/published/Webmonkey/images/apr/operahistory.jpg Binary files differnew file mode 100644 index 0000000..f62af2d --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/operahistory.jpg diff --git a/wired/old/published/Webmonkey/images/apr/sledOO.jpg b/wired/old/published/Webmonkey/images/apr/sledOO.jpg Binary files differnew file mode 100644 index 0000000..69aec53 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/sledOO.jpg diff --git a/wired/old/published/Webmonkey/images/apr/sleddesktop.jpg b/wired/old/published/Webmonkey/images/apr/sleddesktop.jpg Binary files differnew file mode 100644 index 0000000..cf148a9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/sleddesktop.jpg diff --git a/wired/old/published/Webmonkey/images/apr/sleepinginairports.jpg b/wired/old/published/Webmonkey/images/apr/sleepinginairports.jpg Binary files differnew file mode 100644 index 0000000..3968387 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/sleepinginairports.jpg diff --git a/wired/old/published/Webmonkey/images/apr/tweetdeck.jpg b/wired/old/published/Webmonkey/images/apr/tweetdeck.jpg Binary files differnew file mode 100644 index 0000000..12a2917 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/tweetdeck.jpg diff --git a/wired/old/published/Webmonkey/images/apr/twittersignin.jpg b/wired/old/published/Webmonkey/images/apr/twittersignin.jpg Binary files differnew file mode 100644 index 0000000..589a246 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/twittersignin.jpg diff --git a/wired/old/published/Webmonkey/images/apr/ubuntu-netbook.jpg b/wired/old/published/Webmonkey/images/apr/ubuntu-netbook.jpg Binary files differnew file mode 100644 index 0000000..d31bc24 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/ubuntu-netbook.jpg diff --git a/wired/old/published/Webmonkey/images/apr/ubuntu-notifications.jpg b/wired/old/published/Webmonkey/images/apr/ubuntu-notifications.jpg Binary files differnew file mode 100644 index 0000000..7417ed3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/ubuntu-notifications.jpg diff --git a/wired/old/published/Webmonkey/images/apr/ubuntu-notify.jpg b/wired/old/published/Webmonkey/images/apr/ubuntu-notify.jpg Binary files differnew file mode 100644 index 0000000..87bd9ce --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/ubuntu-notify.jpg diff --git a/wired/old/published/Webmonkey/images/apr/ubuntu-wave.jpg b/wired/old/published/Webmonkey/images/apr/ubuntu-wave.jpg Binary files differnew file mode 100644 index 0000000..a2ecaaf --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/ubuntu-wave.jpg diff --git a/wired/old/published/Webmonkey/images/apr/ubuntu.jpg b/wired/old/published/Webmonkey/images/apr/ubuntu.jpg Binary files differnew file mode 100644 index 0000000..13660d5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/ubuntu.jpg diff --git a/wired/old/published/Webmonkey/images/apr/ubuntu1.jpg b/wired/old/published/Webmonkey/images/apr/ubuntu1.jpg Binary files differnew file mode 100644 index 0000000..e917857 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/ubuntu1.jpg diff --git a/wired/old/published/Webmonkey/images/apr/vesselie_by_boby_dimitrov_flick.jpg b/wired/old/published/Webmonkey/images/apr/vesselie_by_boby_dimitrov_flick.jpg Binary files differnew file mode 100644 index 0000000..1cf23d9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/vesselie_by_boby_dimitrov_flick.jpg diff --git a/wired/old/published/Webmonkey/images/apr/winvista.jpg b/wired/old/published/Webmonkey/images/apr/winvista.jpg Binary files differnew file mode 100644 index 0000000..9245ef0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/winvista.jpg diff --git a/wired/old/published/Webmonkey/images/apr/worldhum.jpg b/wired/old/published/Webmonkey/images/apr/worldhum.jpg Binary files differnew file mode 100644 index 0000000..6398eec --- /dev/null +++ b/wired/old/published/Webmonkey/images/apr/worldhum.jpg diff --git a/wired/old/published/Webmonkey/images/aug/208_me_and_the_syso_flickr.jpg b/wired/old/published/Webmonkey/images/aug/208_me_and_the_syso_flickr.jpg Binary files differnew file mode 100644 index 0000000..d8921b0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/208_me_and_the_syso_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/aug/awesomebarmock.jpg b/wired/old/published/Webmonkey/images/aug/awesomebarmock.jpg Binary files differnew file mode 100644 index 0000000..b011982 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/awesomebarmock.jpg diff --git a/wired/old/published/Webmonkey/images/aug/cssprism.jpg b/wired/old/published/Webmonkey/images/aug/cssprism.jpg Binary files differnew file mode 100644 index 0000000..57301d0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/cssprism.jpg diff --git a/wired/old/published/Webmonkey/images/aug/deltweet.jpg b/wired/old/published/Webmonkey/images/aug/deltweet.jpg Binary files differnew file mode 100644 index 0000000..2c4f3e1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/deltweet.jpg diff --git a/wired/old/published/Webmonkey/images/aug/djangologo.jpg b/wired/old/published/Webmonkey/images/aug/djangologo.jpg Binary files differnew file mode 100644 index 0000000..ba49523 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/djangologo.jpg diff --git a/wired/old/published/Webmonkey/images/aug/ff4combobutton.jpg b/wired/old/published/Webmonkey/images/aug/ff4combobutton.jpg Binary files differnew file mode 100644 index 0000000..55871d6 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/ff4combobutton.jpg diff --git a/wired/old/published/Webmonkey/images/aug/ffpreviewlogo.jpg b/wired/old/published/Webmonkey/images/aug/ffpreviewlogo.jpg Binary files differnew file mode 100644 index 0000000..10c7819 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/ffpreviewlogo.jpg diff --git a/wired/old/published/Webmonkey/images/aug/gdocssharing.jpg b/wired/old/published/Webmonkey/images/aug/gdocssharing.jpg Binary files differnew file mode 100644 index 0000000..7c21678 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/gdocssharing.jpg diff --git a/wired/old/published/Webmonkey/images/aug/glogo.jpg b/wired/old/published/Webmonkey/images/aug/glogo.jpg Binary files differnew file mode 100644 index 0000000..145b561 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/glogo.jpg diff --git a/wired/old/published/Webmonkey/images/aug/ishot-1.jpg b/wired/old/published/Webmonkey/images/aug/ishot-1.jpg Binary files differnew file mode 100644 index 0000000..0ad0a22 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/ishot-1.jpg diff --git a/wired/old/published/Webmonkey/images/aug/kilroy_was_here_dbking_flickr.jpg b/wired/old/published/Webmonkey/images/aug/kilroy_was_here_dbking_flickr.jpg Binary files differnew file mode 100644 index 0000000..210df24 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/kilroy_was_here_dbking_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/aug/operasidetabs.jpg b/wired/old/published/Webmonkey/images/aug/operasidetabs.jpg Binary files differnew file mode 100644 index 0000000..1dee306 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/operasidetabs.jpg diff --git a/wired/old/published/Webmonkey/images/aug/osmbestof.jpg b/wired/old/published/Webmonkey/images/aug/osmbestof.jpg Binary files differnew file mode 100644 index 0000000..4095aeb --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/osmbestof.jpg diff --git a/wired/old/published/Webmonkey/images/aug/ricksteves.jpg b/wired/old/published/Webmonkey/images/aug/ricksteves.jpg Binary files differnew file mode 100644 index 0000000..f1b8faa --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/ricksteves.jpg diff --git a/wired/old/published/Webmonkey/images/aug/sedaris.jpg b/wired/old/published/Webmonkey/images/aug/sedaris.jpg Binary files differnew file mode 100644 index 0000000..83179b5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/sedaris.jpg diff --git a/wired/old/published/Webmonkey/images/aug/svgexampleapp.png b/wired/old/published/Webmonkey/images/aug/svgexampleapp.png Binary files differnew file mode 100644 index 0000000..dfe478d --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/svgexampleapp.png diff --git a/wired/old/published/Webmonkey/images/aug/tiledrawer.jpg b/wired/old/published/Webmonkey/images/aug/tiledrawer.jpg Binary files differnew file mode 100644 index 0000000..6701810 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/tiledrawer.jpg diff --git a/wired/old/published/Webmonkey/images/aug/travelbookshop.jpg b/wired/old/published/Webmonkey/images/aug/travelbookshop.jpg Binary files differnew file mode 100644 index 0000000..aa9c43b --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/travelbookshop.jpg diff --git a/wired/old/published/Webmonkey/images/aug/trim.jpg b/wired/old/published/Webmonkey/images/aug/trim.jpg Binary files differnew file mode 100644 index 0000000..b20167f --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/trim.jpg diff --git a/wired/old/published/Webmonkey/images/aug/trim.png b/wired/old/published/Webmonkey/images/aug/trim.png Binary files differnew file mode 100644 index 0000000..4d7eac4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/trim.png diff --git a/wired/old/published/Webmonkey/images/aug/weavesignin.jpg b/wired/old/published/Webmonkey/images/aug/weavesignin.jpg Binary files differnew file mode 100644 index 0000000..5f506d3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/weavesignin.jpg diff --git a/wired/old/published/Webmonkey/images/aug/wp.com.jpg b/wired/old/published/Webmonkey/images/aug/wp.com.jpg Binary files differnew file mode 100644 index 0000000..4f7f0f9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/aug/wp.com.jpg diff --git a/wired/old/published/Webmonkey/images/jan/channelswitcher.jpg b/wired/old/published/Webmonkey/images/jan/channelswitcher.jpg Binary files differnew file mode 100644 index 0000000..46e0737 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/channelswitcher.jpg diff --git a/wired/old/published/Webmonkey/images/jan/encouragedcommentary.jpg b/wired/old/published/Webmonkey/images/jan/encouragedcommentary.jpg Binary files differnew file mode 100644 index 0000000..7549d05 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/encouragedcommentary.jpg diff --git a/wired/old/published/Webmonkey/images/jan/ffchrome.jpg b/wired/old/published/Webmonkey/images/jan/ffchrome.jpg Binary files differnew file mode 100644 index 0000000..ec4e202 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/ffchrome.jpg diff --git a/wired/old/published/Webmonkey/images/jan/gcal.jpg b/wired/old/published/Webmonkey/images/jan/gcal.jpg Binary files differnew file mode 100644 index 0000000..7910c81 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/gcal.jpg diff --git a/wired/old/published/Webmonkey/images/jan/gfriendconnect.jpg b/wired/old/published/Webmonkey/images/jan/gfriendconnect.jpg Binary files differnew file mode 100644 index 0000000..44818e3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/gfriendconnect.jpg diff --git a/wired/old/published/Webmonkey/images/jan/ilife.jpg b/wired/old/published/Webmonkey/images/jan/ilife.jpg Binary files differnew file mode 100644 index 0000000..29cc554 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/ilife.jpg diff --git a/wired/old/published/Webmonkey/images/jan/iphone.jpg b/wired/old/published/Webmonkey/images/jan/iphone.jpg Binary files differnew file mode 100644 index 0000000..8591e2d --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/iphone.jpg diff --git a/wired/old/published/Webmonkey/images/jan/searchboxprefs.jpg b/wired/old/published/Webmonkey/images/jan/searchboxprefs.jpg Binary files differnew file mode 100644 index 0000000..bf0b5e6 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/searchboxprefs.jpg diff --git a/wired/old/published/Webmonkey/images/jan/searchboxsearch.jpg b/wired/old/published/Webmonkey/images/jan/searchboxsearch.jpg Binary files differnew file mode 100644 index 0000000..6c887cb --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/searchboxsearch.jpg diff --git a/wired/old/published/Webmonkey/images/jan/searchboxsources.jpg b/wired/old/published/Webmonkey/images/jan/searchboxsources.jpg Binary files differnew file mode 100644 index 0000000..9bbd913 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/searchboxsources.jpg diff --git a/wired/old/published/Webmonkey/images/jan/skype.jpg b/wired/old/published/Webmonkey/images/jan/skype.jpg Binary files differnew file mode 100644 index 0000000..45f8639 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/skype.jpg diff --git a/wired/old/published/Webmonkey/images/jan/snowlstream.jpg b/wired/old/published/Webmonkey/images/jan/snowlstream.jpg Binary files differnew file mode 100644 index 0000000..a68f29c --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/snowlstream.jpg diff --git a/wired/old/published/Webmonkey/images/jan/tweetnews.jpg b/wired/old/published/Webmonkey/images/jan/tweetnews.jpg Binary files differnew file mode 100644 index 0000000..9e35041 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/tweetnews.jpg diff --git a/wired/old/published/Webmonkey/images/jan/twitter.jpg b/wired/old/published/Webmonkey/images/jan/twitter.jpg Binary files differnew file mode 100644 index 0000000..ab89ca1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/twitter.jpg diff --git a/wired/old/published/Webmonkey/images/jan/ubiquity-new.jpg b/wired/old/published/Webmonkey/images/jan/ubiquity-new.jpg Binary files differnew file mode 100644 index 0000000..bbf2893 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/ubiquity-new.jpg diff --git a/wired/old/published/Webmonkey/images/jan/ubiquity.jpg b/wired/old/published/Webmonkey/images/jan/ubiquity.jpg Binary files differnew file mode 100644 index 0000000..f9946fe --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/ubiquity.jpg diff --git a/wired/old/published/Webmonkey/images/jan/updateengine.jpg b/wired/old/published/Webmonkey/images/jan/updateengine.jpg Binary files differnew file mode 100644 index 0000000..65075fa --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/updateengine.jpg diff --git a/wired/old/published/Webmonkey/images/jan/willeatforfood_flickr.jpg b/wired/old/published/Webmonkey/images/jan/willeatforfood_flickr.jpg Binary files differnew file mode 100644 index 0000000..6725cd1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/jan/willeatforfood_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/july/everyblock.jpg b/wired/old/published/Webmonkey/images/july/everyblock.jpg Binary files differnew file mode 100644 index 0000000..4c17f98 --- /dev/null +++ b/wired/old/published/Webmonkey/images/july/everyblock.jpg diff --git a/wired/old/published/Webmonkey/images/july/melodylogo.jpg b/wired/old/published/Webmonkey/images/july/melodylogo.jpg Binary files differnew file mode 100644 index 0000000..30c5bb7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/july/melodylogo.jpg diff --git a/wired/old/published/Webmonkey/images/july/modernizr.jpg b/wired/old/published/Webmonkey/images/july/modernizr.jpg Binary files differnew file mode 100644 index 0000000..aa4e748 --- /dev/null +++ b/wired/old/published/Webmonkey/images/july/modernizr.jpg diff --git a/wired/old/published/Webmonkey/images/july/weave-map.jpg b/wired/old/published/Webmonkey/images/july/weave-map.jpg Binary files differnew file mode 100644 index 0000000..c80bbd5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/july/weave-map.jpg diff --git a/wired/old/published/Webmonkey/images/july/weave.jpg b/wired/old/published/Webmonkey/images/july/weave.jpg Binary files differnew file mode 100644 index 0000000..f10e698 --- /dev/null +++ b/wired/old/published/Webmonkey/images/july/weave.jpg diff --git a/wired/old/published/Webmonkey/images/mar/adsense.jpg b/wired/old/published/Webmonkey/images/mar/adsense.jpg Binary files differnew file mode 100644 index 0000000..c5567da --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/adsense.jpg diff --git a/wired/old/published/Webmonkey/images/mar/cappadocia.jpg b/wired/old/published/Webmonkey/images/mar/cappadocia.jpg Binary files differnew file mode 100644 index 0000000..80ea37d --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/cappadocia.jpg diff --git a/wired/old/published/Webmonkey/images/mar/dontshorten.jpg b/wired/old/published/Webmonkey/images/mar/dontshorten.jpg Binary files differnew file mode 100644 index 0000000..5edfa6a --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/dontshorten.jpg diff --git a/wired/old/published/Webmonkey/images/mar/facebookprivacy.jpg b/wired/old/published/Webmonkey/images/mar/facebookprivacy.jpg Binary files differnew file mode 100644 index 0000000..92b7e26 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/facebookprivacy.jpg diff --git a/wired/old/published/Webmonkey/images/mar/fbcommentbox.jpg b/wired/old/published/Webmonkey/images/mar/fbcommentbox.jpg Binary files differnew file mode 100644 index 0000000..5ccad9b --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/fbcommentbox.jpg diff --git a/wired/old/published/Webmonkey/images/mar/firefox-sm.jpg b/wired/old/published/Webmonkey/images/mar/firefox-sm.jpg Binary files differnew file mode 100644 index 0000000..5bfb66c --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/firefox-sm.jpg diff --git a/wired/old/published/Webmonkey/images/mar/flickr.jpg b/wired/old/published/Webmonkey/images/mar/flickr.jpg Binary files differnew file mode 100644 index 0000000..0c66344 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/flickr.jpg diff --git a/wired/old/published/Webmonkey/images/mar/friendsonfire.jpg b/wired/old/published/Webmonkey/images/mar/friendsonfire.jpg Binary files differnew file mode 100644 index 0000000..a907773 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/friendsonfire.jpg diff --git a/wired/old/published/Webmonkey/images/mar/gchrome.jpg b/wired/old/published/Webmonkey/images/mar/gchrome.jpg Binary files differnew file mode 100644 index 0000000..7bc1a8c --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/gchrome.jpg diff --git a/wired/old/published/Webmonkey/images/mar/gmaillogo.jpg b/wired/old/published/Webmonkey/images/mar/gmaillogo.jpg Binary files differnew file mode 100644 index 0000000..63a44a0 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/gmaillogo.jpg diff --git a/wired/old/published/Webmonkey/images/mar/googlevoice.jpg b/wired/old/published/Webmonkey/images/mar/googlevoice.jpg Binary files differnew file mode 100644 index 0000000..eaaadba --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/googlevoice.jpg diff --git a/wired/old/published/Webmonkey/images/mar/greadercommentview.jpg b/wired/old/published/Webmonkey/images/mar/greadercommentview.jpg Binary files differnew file mode 100644 index 0000000..f8d61a5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/greadercommentview.jpg diff --git a/wired/old/published/Webmonkey/images/mar/guardianuk.jpg b/wired/old/published/Webmonkey/images/mar/guardianuk.jpg Binary files differnew file mode 100644 index 0000000..0e5960a --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/guardianuk.jpg diff --git a/wired/old/published/Webmonkey/images/mar/hanswheelsflips.jpg b/wired/old/published/Webmonkey/images/mar/hanswheelsflips.jpg Binary files differnew file mode 100644 index 0000000..813be1b --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/hanswheelsflips.jpg diff --git a/wired/old/published/Webmonkey/images/mar/hunch.jpg b/wired/old/published/Webmonkey/images/mar/hunch.jpg Binary files differnew file mode 100644 index 0000000..a6e6957 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/hunch.jpg diff --git a/wired/old/published/Webmonkey/images/mar/hunchresult1.jpg b/wired/old/published/Webmonkey/images/mar/hunchresult1.jpg Binary files differnew file mode 100644 index 0000000..66dfa02 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/hunchresult1.jpg diff --git a/wired/old/published/Webmonkey/images/mar/ie8compatibility.jpg b/wired/old/published/Webmonkey/images/mar/ie8compatibility.jpg Binary files differnew file mode 100644 index 0000000..0c69d48 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/ie8compatibility.jpg diff --git a/wired/old/published/Webmonkey/images/mar/ishot-1.jpg b/wired/old/published/Webmonkey/images/mar/ishot-1.jpg Binary files differnew file mode 100644 index 0000000..4cd2d9b --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/ishot-1.jpg diff --git a/wired/old/published/Webmonkey/images/mar/ishot-2.jpg b/wired/old/published/Webmonkey/images/mar/ishot-2.jpg Binary files differnew file mode 100644 index 0000000..6510c50 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/ishot-2.jpg diff --git a/wired/old/published/Webmonkey/images/mar/ishot-3.jpg b/wired/old/published/Webmonkey/images/mar/ishot-3.jpg Binary files differnew file mode 100644 index 0000000..49f573b --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/ishot-3.jpg diff --git a/wired/old/published/Webmonkey/images/mar/ishot-4.jpg b/wired/old/published/Webmonkey/images/mar/ishot-4.jpg Binary files differnew file mode 100644 index 0000000..1891843 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/ishot-4.jpg diff --git a/wired/old/published/Webmonkey/images/mar/koala.jpg b/wired/old/published/Webmonkey/images/mar/koala.jpg Binary files differnew file mode 100644 index 0000000..222356e --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/koala.jpg diff --git a/wired/old/published/Webmonkey/images/mar/leg_room_ted_drake_flickr.jpg b/wired/old/published/Webmonkey/images/mar/leg_room_ted_drake_flickr.jpg Binary files differnew file mode 100644 index 0000000..1fd8ab9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/leg_room_ted_drake_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/mar/mixtapeme.jpg b/wired/old/published/Webmonkey/images/mar/mixtapeme.jpg Binary files differnew file mode 100644 index 0000000..5af5684 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/mixtapeme.jpg diff --git a/wired/old/published/Webmonkey/images/mar/percyfawcett.jpg b/wired/old/published/Webmonkey/images/mar/percyfawcett.jpg Binary files differnew file mode 100644 index 0000000..d9d1ffd --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/percyfawcett.jpg diff --git a/wired/old/published/Webmonkey/images/mar/safari4coverflow.jpg b/wired/old/published/Webmonkey/images/mar/safari4coverflow.jpg Binary files differnew file mode 100644 index 0000000..f4bcfef --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/safari4coverflow.jpg diff --git a/wired/old/published/Webmonkey/images/mar/safari4searchbar.jpg b/wired/old/published/Webmonkey/images/mar/safari4searchbar.jpg Binary files differnew file mode 100644 index 0000000..ceb5e2b --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/safari4searchbar.jpg diff --git a/wired/old/published/Webmonkey/images/mar/safari4topsites.jpg b/wired/old/published/Webmonkey/images/mar/safari4topsites.jpg Binary files differnew file mode 100644 index 0000000..edea596 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/safari4topsites.jpg diff --git a/wired/old/published/Webmonkey/images/mar/safari_icon.jpg b/wired/old/published/Webmonkey/images/mar/safari_icon.jpg Binary files differnew file mode 100644 index 0000000..62ee62a --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/safari_icon.jpg diff --git a/wired/old/published/Webmonkey/images/mar/snowleopard.jpg b/wired/old/published/Webmonkey/images/mar/snowleopard.jpg Binary files differnew file mode 100644 index 0000000..ed4ebf4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/snowleopard.jpg diff --git a/wired/old/published/Webmonkey/images/mar/songbird.jpg b/wired/old/published/Webmonkey/images/mar/songbird.jpg Binary files differnew file mode 100644 index 0000000..c275bb6 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/songbird.jpg diff --git a/wired/old/published/Webmonkey/images/mar/suseinstall.jpg b/wired/old/published/Webmonkey/images/mar/suseinstall.jpg Binary files differnew file mode 100644 index 0000000..19e9f15 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/suseinstall.jpg diff --git a/wired/old/published/Webmonkey/images/mar/suseinstall2.jpg b/wired/old/published/Webmonkey/images/mar/suseinstall2.jpg Binary files differnew file mode 100644 index 0000000..e81b58d --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/suseinstall2.jpg diff --git a/wired/old/published/Webmonkey/images/mar/taskfox1.jpg b/wired/old/published/Webmonkey/images/mar/taskfox1.jpg Binary files differnew file mode 100644 index 0000000..e201f78 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/taskfox1.jpg diff --git a/wired/old/published/Webmonkey/images/mar/taskfox2.jpg b/wired/old/published/Webmonkey/images/mar/taskfox2.jpg Binary files differnew file mode 100644 index 0000000..22f1b1b --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/taskfox2.jpg diff --git a/wired/old/published/Webmonkey/images/mar/tinychat.jpg b/wired/old/published/Webmonkey/images/mar/tinychat.jpg Binary files differnew file mode 100644 index 0000000..abd1177 --- /dev/null +++ b/wired/old/published/Webmonkey/images/mar/tinychat.jpg diff --git a/wired/old/published/Webmonkey/images/may/bing-screen.jpg b/wired/old/published/Webmonkey/images/may/bing-screen.jpg Binary files differnew file mode 100644 index 0000000..ea121bb --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/bing-screen.jpg diff --git a/wired/old/published/Webmonkey/images/may/chrome-addons.jpg b/wired/old/published/Webmonkey/images/may/chrome-addons.jpg Binary files differnew file mode 100644 index 0000000..6a2667a --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/chrome-addons.jpg diff --git a/wired/old/published/Webmonkey/images/may/chrome-mac.jpg b/wired/old/published/Webmonkey/images/may/chrome-mac.jpg Binary files differnew file mode 100644 index 0000000..7bddbbb --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/chrome-mac.jpg diff --git a/wired/old/published/Webmonkey/images/may/chromeformac.jpg b/wired/old/published/Webmonkey/images/may/chromeformac.jpg Binary files differnew file mode 100644 index 0000000..2cf739f --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/chromeformac.jpg diff --git a/wired/old/published/Webmonkey/images/may/cold_war_by_Conde_Nast.jpg b/wired/old/published/Webmonkey/images/may/cold_war_by_Conde_Nast.jpg Binary files differnew file mode 100644 index 0000000..685fb6f --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/cold_war_by_Conde_Nast.jpg diff --git a/wired/old/published/Webmonkey/images/may/ff37mockup.jpg b/wired/old/published/Webmonkey/images/may/ff37mockup.jpg Binary files differnew file mode 100644 index 0000000..1ad254a --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ff37mockup.jpg diff --git a/wired/old/published/Webmonkey/images/may/ff4combobutton.jpg b/wired/old/published/Webmonkey/images/may/ff4combobutton.jpg Binary files differnew file mode 100644 index 0000000..5a595ce --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ff4combobutton.jpg diff --git a/wired/old/published/Webmonkey/images/may/ff4tabsontop.jpg b/wired/old/published/Webmonkey/images/may/ff4tabsontop.jpg Binary files differnew file mode 100644 index 0000000..2433cd3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ff4tabsontop.jpg diff --git a/wired/old/published/Webmonkey/images/may/ffaddoncollections.jpg b/wired/old/published/Webmonkey/images/may/ffaddoncollections.jpg Binary files differnew file mode 100644 index 0000000..98ba5ac --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ffaddoncollections.jpg diff --git a/wired/old/published/Webmonkey/images/may/ffcollections.jpg b/wired/old/published/Webmonkey/images/may/ffcollections.jpg Binary files differnew file mode 100644 index 0000000..23d7d0c --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ffcollections.jpg diff --git a/wired/old/published/Webmonkey/images/may/ffupdate.jpg b/wired/old/published/Webmonkey/images/may/ffupdate.jpg Binary files differnew file mode 100644 index 0000000..4122df8 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ffupdate.jpg diff --git a/wired/old/published/Webmonkey/images/may/flickrtweet.jpg b/wired/old/published/Webmonkey/images/may/flickrtweet.jpg Binary files differnew file mode 100644 index 0000000..cda1f7c --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/flickrtweet.jpg diff --git a/wired/old/published/Webmonkey/images/may/flock-crosspost.jpg b/wired/old/published/Webmonkey/images/may/flock-crosspost.jpg Binary files differnew file mode 100644 index 0000000..8527b70 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/flock-crosspost.jpg diff --git a/wired/old/published/Webmonkey/images/may/flocklogo.jpg b/wired/old/published/Webmonkey/images/may/flocklogo.jpg Binary files differnew file mode 100644 index 0000000..9a30a9d --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/flocklogo.jpg diff --git a/wired/old/published/Webmonkey/images/may/flocktwitter.jpg b/wired/old/published/Webmonkey/images/may/flocktwitter.jpg Binary files differnew file mode 100644 index 0000000..331c87e --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/flocktwitter.jpg diff --git a/wired/old/published/Webmonkey/images/may/ggbg.jpg b/wired/old/published/Webmonkey/images/may/ggbg.jpg Binary files differnew file mode 100644 index 0000000..f2d9927 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ggbg.jpg diff --git a/wired/old/published/Webmonkey/images/may/glueinIE.jpg b/wired/old/published/Webmonkey/images/may/glueinIE.jpg Binary files differnew file mode 100644 index 0000000..51853cc --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/glueinIE.jpg diff --git a/wired/old/published/Webmonkey/images/may/gmaps-logo.jpg b/wired/old/published/Webmonkey/images/may/gmaps-logo.jpg Binary files differnew file mode 100644 index 0000000..f4d1408 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/gmaps-logo.jpg diff --git a/wired/old/published/Webmonkey/images/may/googleopenid.jpg b/wired/old/published/Webmonkey/images/may/googleopenid.jpg Binary files differnew file mode 100644 index 0000000..da57504 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/googleopenid.jpg diff --git a/wired/old/published/Webmonkey/images/may/hammockjobs.jpg b/wired/old/published/Webmonkey/images/may/hammockjobs.jpg Binary files differnew file mode 100644 index 0000000..0df4198 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/hammockjobs.jpg diff --git a/wired/old/published/Webmonkey/images/may/hitchhiking.jpg b/wired/old/published/Webmonkey/images/may/hitchhiking.jpg Binary files differnew file mode 100644 index 0000000..97b3f06 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/hitchhiking.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-1.jpg b/wired/old/published/Webmonkey/images/may/ishot-1.jpg Binary files differnew file mode 100644 index 0000000..1cf2946 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-1.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-10.jpg b/wired/old/published/Webmonkey/images/may/ishot-10.jpg Binary files differnew file mode 100644 index 0000000..8e1f92e --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-10.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-11.jpg b/wired/old/published/Webmonkey/images/may/ishot-11.jpg Binary files differnew file mode 100644 index 0000000..7152ab9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-11.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-12.jpg b/wired/old/published/Webmonkey/images/may/ishot-12.jpg Binary files differnew file mode 100644 index 0000000..df1502f --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-12.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-13.jpg b/wired/old/published/Webmonkey/images/may/ishot-13.jpg Binary files differnew file mode 100644 index 0000000..4b4f19c --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-13.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-14.jpg b/wired/old/published/Webmonkey/images/may/ishot-14.jpg Binary files differnew file mode 100644 index 0000000..c688833 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-14.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-15.jpg b/wired/old/published/Webmonkey/images/may/ishot-15.jpg Binary files differnew file mode 100644 index 0000000..7c6b350 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-15.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-16.jpg b/wired/old/published/Webmonkey/images/may/ishot-16.jpg Binary files differnew file mode 100644 index 0000000..136d1e6 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-16.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-17.jpg b/wired/old/published/Webmonkey/images/may/ishot-17.jpg Binary files differnew file mode 100644 index 0000000..c552c7a --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-17.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-18.jpg b/wired/old/published/Webmonkey/images/may/ishot-18.jpg Binary files differnew file mode 100644 index 0000000..4fcb718 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-18.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-19.jpg b/wired/old/published/Webmonkey/images/may/ishot-19.jpg Binary files differnew file mode 100644 index 0000000..a354430 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-19.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-2.jpg b/wired/old/published/Webmonkey/images/may/ishot-2.jpg Binary files differnew file mode 100644 index 0000000..157ccb3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-2.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-20.jpg b/wired/old/published/Webmonkey/images/may/ishot-20.jpg Binary files differnew file mode 100644 index 0000000..22b1a7a --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-20.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-21.jpg b/wired/old/published/Webmonkey/images/may/ishot-21.jpg Binary files differnew file mode 100644 index 0000000..fb315f1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-21.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-22.jpg b/wired/old/published/Webmonkey/images/may/ishot-22.jpg Binary files differnew file mode 100644 index 0000000..f5877cc --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-22.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-5.jpg b/wired/old/published/Webmonkey/images/may/ishot-5.jpg Binary files differnew file mode 100644 index 0000000..6d2401d --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-5.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-6.jpg b/wired/old/published/Webmonkey/images/may/ishot-6.jpg Binary files differnew file mode 100644 index 0000000..4781f03 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-6.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-7.jpg b/wired/old/published/Webmonkey/images/may/ishot-7.jpg Binary files differnew file mode 100644 index 0000000..45cd48f --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-7.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-8.jpg b/wired/old/published/Webmonkey/images/may/ishot-8.jpg Binary files differnew file mode 100644 index 0000000..ca76c57 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-8.jpg diff --git a/wired/old/published/Webmonkey/images/may/ishot-9.jpg b/wired/old/published/Webmonkey/images/may/ishot-9.jpg Binary files differnew file mode 100644 index 0000000..3071c17 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/ishot-9.jpg diff --git a/wired/old/published/Webmonkey/images/may/jetpack.jpg b/wired/old/published/Webmonkey/images/may/jetpack.jpg Binary files differnew file mode 100644 index 0000000..1969580 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/jetpack.jpg diff --git a/wired/old/published/Webmonkey/images/may/lift_off_singsing_sky_flickr.jpg b/wired/old/published/Webmonkey/images/may/lift_off_singsing_sky_flickr.jpg Binary files differnew file mode 100644 index 0000000..7f04faf --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/lift_off_singsing_sky_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/may/loads_of_reading_by_LollyKnit_flickr.jpg b/wired/old/published/Webmonkey/images/may/loads_of_reading_by_LollyKnit_flickr.jpg Binary files differnew file mode 100644 index 0000000..f4c963c --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/loads_of_reading_by_LollyKnit_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/may/luggage.jpg b/wired/old/published/Webmonkey/images/may/luggage.jpg Binary files differnew file mode 100644 index 0000000..4c604d7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/luggage.jpg diff --git a/wired/old/published/Webmonkey/images/may/luggage2.jpg b/wired/old/published/Webmonkey/images/may/luggage2.jpg Binary files differnew file mode 100644 index 0000000..f990a10 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/luggage2.jpg diff --git a/wired/old/published/Webmonkey/images/may/monalisatwitter.png b/wired/old/published/Webmonkey/images/may/monalisatwitter.png Binary files differnew file mode 100644 index 0000000..53cb56e --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/monalisatwitter.png diff --git a/wired/old/published/Webmonkey/images/may/officelogo.jpg b/wired/old/published/Webmonkey/images/may/officelogo.jpg Binary files differnew file mode 100644 index 0000000..fd9e495 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/officelogo.jpg diff --git a/wired/old/published/Webmonkey/images/may/openid.jpg b/wired/old/published/Webmonkey/images/may/openid.jpg Binary files differnew file mode 100644 index 0000000..601e5c4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/openid.jpg diff --git a/wired/old/published/Webmonkey/images/may/opera10.jpg b/wired/old/published/Webmonkey/images/may/opera10.jpg Binary files differnew file mode 100644 index 0000000..9e71a3a --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/opera10.jpg diff --git a/wired/old/published/Webmonkey/images/may/prism.jpg b/wired/old/published/Webmonkey/images/may/prism.jpg Binary files differnew file mode 100644 index 0000000..58f13b1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/prism.jpg diff --git a/wired/old/published/Webmonkey/images/may/remembrance_29cm_flickr.jpg b/wired/old/published/Webmonkey/images/may/remembrance_29cm_flickr.jpg Binary files differnew file mode 100644 index 0000000..37117c2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/remembrance_29cm_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/may/songbirdscreen.jpg b/wired/old/published/Webmonkey/images/may/songbirdscreen.jpg Binary files differnew file mode 100644 index 0000000..e07c50b --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/songbirdscreen.jpg diff --git a/wired/old/published/Webmonkey/images/may/supr.jpg b/wired/old/published/Webmonkey/images/may/supr.jpg Binary files differnew file mode 100644 index 0000000..f970011 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/supr.jpg diff --git a/wired/old/published/Webmonkey/images/may/take_off_WTLphotos_flickr.jpg b/wired/old/published/Webmonkey/images/may/take_off_WTLphotos_flickr.jpg Binary files differnew file mode 100644 index 0000000..472b0bd --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/take_off_WTLphotos_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/may/travelasapoliticalact.jpg b/wired/old/published/Webmonkey/images/may/travelasapoliticalact.jpg Binary files differnew file mode 100644 index 0000000..9a78943 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/travelasapoliticalact.jpg diff --git a/wired/old/published/Webmonkey/images/may/typekit-logo.jpg b/wired/old/published/Webmonkey/images/may/typekit-logo.jpg Binary files differnew file mode 100644 index 0000000..379c59e --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/typekit-logo.jpg diff --git a/wired/old/published/Webmonkey/images/may/unite.jpg b/wired/old/published/Webmonkey/images/may/unite.jpg Binary files differnew file mode 100644 index 0000000..f61061a --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/unite.jpg diff --git a/wired/old/published/Webmonkey/images/may/unitemodel.jpg b/wired/old/published/Webmonkey/images/may/unitemodel.jpg Binary files differnew file mode 100644 index 0000000..6855def --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/unitemodel.jpg diff --git a/wired/old/published/Webmonkey/images/may/weave.jpg b/wired/old/published/Webmonkey/images/may/weave.jpg Binary files differnew file mode 100644 index 0000000..6a22173 --- /dev/null +++ b/wired/old/published/Webmonkey/images/may/weave.jpg diff --git a/wired/old/published/Webmonkey/images/nov/chrome-extensions.jpg b/wired/old/published/Webmonkey/images/nov/chrome-extensions.jpg Binary files differnew file mode 100644 index 0000000..8d0f2c9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/chrome-extensions.jpg diff --git a/wired/old/published/Webmonkey/images/nov/cormacmccarthy.jpg b/wired/old/published/Webmonkey/images/nov/cormacmccarthy.jpg Binary files differnew file mode 100644 index 0000000..aac612f --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/cormacmccarthy.jpg diff --git a/wired/old/published/Webmonkey/images/nov/fedorafinal.jpg b/wired/old/published/Webmonkey/images/nov/fedorafinal.jpg Binary files differnew file mode 100644 index 0000000..fb99edb --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/fedorafinal.jpg diff --git a/wired/old/published/Webmonkey/images/nov/gdocs.jpg b/wired/old/published/Webmonkey/images/nov/gdocs.jpg Binary files differnew file mode 100644 index 0000000..3ac95bf --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/gdocs.jpg diff --git a/wired/old/published/Webmonkey/images/nov/gdocsbatchexport.jpg b/wired/old/published/Webmonkey/images/nov/gdocsbatchexport.jpg Binary files differnew file mode 100644 index 0000000..acf0f1d --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/gdocsbatchexport.jpg diff --git a/wired/old/published/Webmonkey/images/nov/ie9stats.jpg b/wired/old/published/Webmonkey/images/nov/ie9stats.jpg Binary files differnew file mode 100644 index 0000000..09b73b4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/ie9stats.jpg diff --git a/wired/old/published/Webmonkey/images/nov/ielogo.jpg b/wired/old/published/Webmonkey/images/nov/ielogo.jpg Binary files differnew file mode 100644 index 0000000..096f9c9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/ielogo.jpg diff --git a/wired/old/published/Webmonkey/images/nov/newgoogle.jpg b/wired/old/published/Webmonkey/images/nov/newgoogle.jpg Binary files differnew file mode 100644 index 0000000..b653b2d --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/newgoogle.jpg diff --git a/wired/old/published/Webmonkey/images/nov/nomusicday.jpg b/wired/old/published/Webmonkey/images/nov/nomusicday.jpg Binary files differnew file mode 100644 index 0000000..da45b8c --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/nomusicday.jpg diff --git a/wired/old/published/Webmonkey/images/nov/operalogo.jpg b/wired/old/published/Webmonkey/images/nov/operalogo.jpg Binary files differnew file mode 100644 index 0000000..9d21c59 --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/operalogo.jpg diff --git a/wired/old/published/Webmonkey/images/nov/twitter.jpg b/wired/old/published/Webmonkey/images/nov/twitter.jpg Binary files differnew file mode 100644 index 0000000..6b178f7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/twitter.jpg diff --git a/wired/old/published/Webmonkey/images/nov/weavelogo.jpg b/wired/old/published/Webmonkey/images/nov/weavelogo.jpg Binary files differnew file mode 100644 index 0000000..14d0a90 --- /dev/null +++ b/wired/old/published/Webmonkey/images/nov/weavelogo.jpg diff --git a/wired/old/published/Webmonkey/images/oct/Paulaner_by_christian_senger_flickr.jpg b/wired/old/published/Webmonkey/images/oct/Paulaner_by_christian_senger_flickr.jpg Binary files differnew file mode 100644 index 0000000..6136f41 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/Paulaner_by_christian_senger_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/oct/appgarden.jpg b/wired/old/published/Webmonkey/images/oct/appgarden.jpg Binary files differnew file mode 100644 index 0000000..461c0f2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/appgarden.jpg diff --git a/wired/old/published/Webmonkey/images/oct/beer.jpg b/wired/old/published/Webmonkey/images/oct/beer.jpg Binary files differnew file mode 100644 index 0000000..2be04e7 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/beer.jpg diff --git a/wired/old/published/Webmonkey/images/oct/control-tab.jpg b/wired/old/published/Webmonkey/images/oct/control-tab.jpg Binary files differnew file mode 100644 index 0000000..23a6c01 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/control-tab.jpg diff --git a/wired/old/published/Webmonkey/images/oct/fedora12betaoverview.jpg b/wired/old/published/Webmonkey/images/oct/fedora12betaoverview.jpg Binary files differnew file mode 100644 index 0000000..ae70555 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/fedora12betaoverview.jpg diff --git a/wired/old/published/Webmonkey/images/oct/fedrasans-chrome-xp.jpg b/wired/old/published/Webmonkey/images/oct/fedrasans-chrome-xp.jpg Binary files differnew file mode 100644 index 0000000..91fac21 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/fedrasans-chrome-xp.jpg diff --git a/wired/old/published/Webmonkey/images/oct/fedrasans-ff-lin.jpg b/wired/old/published/Webmonkey/images/oct/fedrasans-ff-lin.jpg Binary files differnew file mode 100644 index 0000000..2dd4f6a --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/fedrasans-ff-lin.jpg diff --git a/wired/old/published/Webmonkey/images/oct/fedrasans-ff-osx.jpg b/wired/old/published/Webmonkey/images/oct/fedrasans-ff-osx.jpg Binary files differnew file mode 100644 index 0000000..593a8cc --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/fedrasans-ff-osx.jpg diff --git a/wired/old/published/Webmonkey/images/oct/fedrasans-ie6-xp.jpg b/wired/old/published/Webmonkey/images/oct/fedrasans-ie6-xp.jpg Binary files differnew file mode 100644 index 0000000..44d6bf1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/fedrasans-ie6-xp.jpg diff --git a/wired/old/published/Webmonkey/images/oct/fedrasans-ie7-xp.jpg b/wired/old/published/Webmonkey/images/oct/fedrasans-ie7-xp.jpg Binary files differnew file mode 100644 index 0000000..e01fb3e --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/fedrasans-ie7-xp.jpg diff --git a/wired/old/published/Webmonkey/images/oct/ff-control-tab.jpg b/wired/old/published/Webmonkey/images/oct/ff-control-tab.jpg Binary files differnew file mode 100644 index 0000000..5c7937a --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/ff-control-tab.jpg diff --git a/wired/old/published/Webmonkey/images/oct/ffrobot.jpg b/wired/old/published/Webmonkey/images/oct/ffrobot.jpg Binary files differnew file mode 100644 index 0000000..fcf107c --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/ffrobot.jpg diff --git a/wired/old/published/Webmonkey/images/oct/firefox-mock-bookmarks.jpg b/wired/old/published/Webmonkey/images/oct/firefox-mock-bookmarks.jpg Binary files differnew file mode 100644 index 0000000..0dfbd54 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/firefox-mock-bookmarks.jpg diff --git a/wired/old/published/Webmonkey/images/oct/fiveandten.jpg b/wired/old/published/Webmonkey/images/oct/fiveandten.jpg Binary files differnew file mode 100644 index 0000000..63588da --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/fiveandten.jpg diff --git a/wired/old/published/Webmonkey/images/oct/fontfacetest.jpg b/wired/old/published/Webmonkey/images/oct/fontfacetest.jpg Binary files differnew file mode 100644 index 0000000..50cf026 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/fontfacetest.jpg diff --git a/wired/old/published/Webmonkey/images/oct/googlego.jpg b/wired/old/published/Webmonkey/images/oct/googlego.jpg Binary files differnew file mode 100644 index 0000000..90fb23c --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/googlego.jpg diff --git a/wired/old/published/Webmonkey/images/oct/opera-icon.jpg b/wired/old/published/Webmonkey/images/oct/opera-icon.jpg Binary files differnew file mode 100644 index 0000000..2b1b19a --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/opera-icon.jpg diff --git a/wired/old/published/Webmonkey/images/oct/operaunite01.jpg b/wired/old/published/Webmonkey/images/oct/operaunite01.jpg Binary files differnew file mode 100644 index 0000000..989cb97 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/operaunite01.jpg diff --git a/wired/old/published/Webmonkey/images/oct/operaunite02.jpg b/wired/old/published/Webmonkey/images/oct/operaunite02.jpg Binary files differnew file mode 100644 index 0000000..ef200e3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/operaunite02.jpg diff --git a/wired/old/published/Webmonkey/images/oct/operaunite03.jpg b/wired/old/published/Webmonkey/images/oct/operaunite03.jpg Binary files differnew file mode 100644 index 0000000..a4c63e1 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/operaunite03.jpg diff --git a/wired/old/published/Webmonkey/images/oct/psonline.jpg b/wired/old/published/Webmonkey/images/oct/psonline.jpg Binary files differnew file mode 100644 index 0000000..db4b33a --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/psonline.jpg diff --git a/wired/old/published/Webmonkey/images/oct/raindrop0.jpg b/wired/old/published/Webmonkey/images/oct/raindrop0.jpg Binary files differnew file mode 100644 index 0000000..e7e0beb --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/raindrop0.jpg diff --git a/wired/old/published/Webmonkey/images/oct/raindrop1.jpg b/wired/old/published/Webmonkey/images/oct/raindrop1.jpg Binary files differnew file mode 100644 index 0000000..877edb3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/raindrop1.jpg diff --git a/wired/old/published/Webmonkey/images/oct/raindrop2.jpg b/wired/old/published/Webmonkey/images/oct/raindrop2.jpg Binary files differnew file mode 100644 index 0000000..e41eff5 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/raindrop2.jpg diff --git a/wired/old/published/Webmonkey/images/oct/raindrop4.jpg b/wired/old/published/Webmonkey/images/oct/raindrop4.jpg Binary files differnew file mode 100644 index 0000000..8503fed --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/raindrop4.jpg diff --git a/wired/old/published/Webmonkey/images/oct/typekiteditor.jpg b/wired/old/published/Webmonkey/images/oct/typekiteditor.jpg Binary files differnew file mode 100644 index 0000000..a4ecde8 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/typekiteditor.jpg diff --git a/wired/old/published/Webmonkey/images/oct/typekitfonttest.jpg b/wired/old/published/Webmonkey/images/oct/typekitfonttest.jpg Binary files differnew file mode 100644 index 0000000..ee9627a --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/typekitfonttest.jpg diff --git a/wired/old/published/Webmonkey/images/oct/weave08.jpg b/wired/old/published/Webmonkey/images/oct/weave08.jpg Binary files differnew file mode 100644 index 0000000..2efc352 --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/weave08.jpg diff --git a/wired/old/published/Webmonkey/images/oct/zohoprojlogo.jpg b/wired/old/published/Webmonkey/images/oct/zohoprojlogo.jpg Binary files differnew file mode 100644 index 0000000..53c995c --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/zohoprojlogo.jpg diff --git a/wired/old/published/Webmonkey/images/oct/zohoprojlogo.png b/wired/old/published/Webmonkey/images/oct/zohoprojlogo.png Binary files differnew file mode 100644 index 0000000..fd28b9f --- /dev/null +++ b/wired/old/published/Webmonkey/images/oct/zohoprojlogo.png diff --git a/wired/old/published/Webmonkey/images/sept/afar.jpg b/wired/old/published/Webmonkey/images/sept/afar.jpg Binary files differnew file mode 100644 index 0000000..8e7e958 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/afar.jpg diff --git a/wired/old/published/Webmonkey/images/sept/colorblind.jpg b/wired/old/published/Webmonkey/images/sept/colorblind.jpg Binary files differnew file mode 100644 index 0000000..a16f7a8 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/colorblind.jpg diff --git a/wired/old/published/Webmonkey/images/sept/colorblind1.jpg b/wired/old/published/Webmonkey/images/sept/colorblind1.jpg Binary files differnew file mode 100644 index 0000000..9989147 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/colorblind1.jpg diff --git a/wired/old/published/Webmonkey/images/sept/colorblind2.jpg b/wired/old/published/Webmonkey/images/sept/colorblind2.jpg Binary files differnew file mode 100644 index 0000000..70a0d6d --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/colorblind2.jpg diff --git a/wired/old/published/Webmonkey/images/sept/datalib.jpg b/wired/old/published/Webmonkey/images/sept/datalib.jpg Binary files differnew file mode 100644 index 0000000..507170c --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/datalib.jpg diff --git a/wired/old/published/Webmonkey/images/sept/dataportability.jpg b/wired/old/published/Webmonkey/images/sept/dataportability.jpg Binary files differnew file mode 100644 index 0000000..6cb170b --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/dataportability.jpg diff --git a/wired/old/published/Webmonkey/images/sept/delicious-graph.jpg b/wired/old/published/Webmonkey/images/sept/delicious-graph.jpg Binary files differnew file mode 100644 index 0000000..dc5a78b --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/delicious-graph.jpg diff --git a/wired/old/published/Webmonkey/images/sept/delicioustv.jpg b/wired/old/published/Webmonkey/images/sept/delicioustv.jpg Binary files differnew file mode 100644 index 0000000..c2c4e8f --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/delicioustv.jpg diff --git a/wired/old/published/Webmonkey/images/sept/fastflip.jpg b/wired/old/published/Webmonkey/images/sept/fastflip.jpg Binary files differnew file mode 100644 index 0000000..03909b3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/fastflip.jpg diff --git a/wired/old/published/Webmonkey/images/sept/fastflip.png b/wired/old/published/Webmonkey/images/sept/fastflip.png Binary files differnew file mode 100644 index 0000000..5eecf8d --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/fastflip.png diff --git a/wired/old/published/Webmonkey/images/sept/flashlogo.jpg b/wired/old/published/Webmonkey/images/sept/flashlogo.jpg Binary files differnew file mode 100644 index 0000000..c3d48ba --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/flashlogo.jpg diff --git a/wired/old/published/Webmonkey/images/sept/flashservices-distro.jpg b/wired/old/published/Webmonkey/images/sept/flashservices-distro.jpg Binary files differnew file mode 100644 index 0000000..47eb364 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/flashservices-distro.jpg diff --git a/wired/old/published/Webmonkey/images/sept/flickr-foursquare.jpg b/wired/old/published/Webmonkey/images/sept/flickr-foursquare.jpg Binary files differnew file mode 100644 index 0000000..cb36966 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/flickr-foursquare.jpg diff --git a/wired/old/published/Webmonkey/images/sept/flickrlogo.jpg b/wired/old/published/Webmonkey/images/sept/flickrlogo.jpg Binary files differnew file mode 100644 index 0000000..23c3073 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/flickrlogo.jpg diff --git a/wired/old/published/Webmonkey/images/sept/gmaps-new.jpg b/wired/old/published/Webmonkey/images/sept/gmaps-new.jpg Binary files differnew file mode 100644 index 0000000..67bb2f2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/gmaps-new.jpg diff --git a/wired/old/published/Webmonkey/images/sept/goby-1.jpg b/wired/old/published/Webmonkey/images/sept/goby-1.jpg Binary files differnew file mode 100644 index 0000000..a843dd9 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/goby-1.jpg diff --git a/wired/old/published/Webmonkey/images/sept/goby-2.jpg b/wired/old/published/Webmonkey/images/sept/goby-2.jpg Binary files differnew file mode 100644 index 0000000..3095db3 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/goby-2.jpg diff --git a/wired/old/published/Webmonkey/images/sept/goby-search.jpg b/wired/old/published/Webmonkey/images/sept/goby-search.jpg Binary files differnew file mode 100644 index 0000000..ac3ec40 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/goby-search.jpg diff --git a/wired/old/published/Webmonkey/images/sept/goby.jpg b/wired/old/published/Webmonkey/images/sept/goby.jpg Binary files differnew file mode 100644 index 0000000..8c92f18 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/goby.jpg diff --git a/wired/old/published/Webmonkey/images/sept/gvoiceingmail.jpg b/wired/old/published/Webmonkey/images/sept/gvoiceingmail.jpg Binary files differnew file mode 100644 index 0000000..c27b4fc --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/gvoiceingmail.jpg diff --git a/wired/old/published/Webmonkey/images/sept/ishot-1.jpg b/wired/old/published/Webmonkey/images/sept/ishot-1.jpg Binary files differnew file mode 100644 index 0000000..5d60274 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/ishot-1.jpg diff --git a/wired/old/published/Webmonkey/images/sept/ishot-2.jpg b/wired/old/published/Webmonkey/images/sept/ishot-2.jpg Binary files differnew file mode 100644 index 0000000..0f72f55 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/ishot-2.jpg diff --git a/wired/old/published/Webmonkey/images/sept/ishot-3.jpg b/wired/old/published/Webmonkey/images/sept/ishot-3.jpg Binary files differnew file mode 100644 index 0000000..8ccf12a --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/ishot-3.jpg diff --git a/wired/old/published/Webmonkey/images/sept/ishot-4.jpg b/wired/old/published/Webmonkey/images/sept/ishot-4.jpg Binary files differnew file mode 100644 index 0000000..815978e --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/ishot-4.jpg diff --git a/wired/old/published/Webmonkey/images/sept/ishot-5.jpg b/wired/old/published/Webmonkey/images/sept/ishot-5.jpg Binary files differnew file mode 100644 index 0000000..906b1ca --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/ishot-5.jpg diff --git a/wired/old/published/Webmonkey/images/sept/mirino01.jpg b/wired/old/published/Webmonkey/images/sept/mirino01.jpg Binary files differnew file mode 100644 index 0000000..d2f9b53 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/mirino01.jpg diff --git a/wired/old/published/Webmonkey/images/sept/mirino03.jpg b/wired/old/published/Webmonkey/images/sept/mirino03.jpg Binary files differnew file mode 100644 index 0000000..6ec4fe2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/mirino03.jpg diff --git a/wired/old/published/Webmonkey/images/sept/moleskine.jpg b/wired/old/published/Webmonkey/images/sept/moleskine.jpg Binary files differnew file mode 100644 index 0000000..c8d8d9b --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/moleskine.jpg diff --git a/wired/old/published/Webmonkey/images/sept/opacity-export.jpg b/wired/old/published/Webmonkey/images/sept/opacity-export.jpg Binary files differnew file mode 100644 index 0000000..58e6eb2 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/opacity-export.jpg diff --git a/wired/old/published/Webmonkey/images/sept/opacity-logo.jpg b/wired/old/published/Webmonkey/images/sept/opacity-logo.jpg Binary files differnew file mode 100644 index 0000000..6dbf275 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/opacity-logo.jpg diff --git a/wired/old/published/Webmonkey/images/sept/opera10screen.jpg b/wired/old/published/Webmonkey/images/sept/opera10screen.jpg Binary files differnew file mode 100644 index 0000000..6ad7c77 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/opera10screen.jpg diff --git a/wired/old/published/Webmonkey/images/sept/operamini.jpg b/wired/old/published/Webmonkey/images/sept/operamini.jpg Binary files differnew file mode 100644 index 0000000..b33585d --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/operamini.jpg diff --git a/wired/old/published/Webmonkey/images/sept/picasa-face.jpg b/wired/old/published/Webmonkey/images/sept/picasa-face.jpg Binary files differnew file mode 100644 index 0000000..b8971d8 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/picasa-face.jpg diff --git a/wired/old/published/Webmonkey/images/sept/picasa-geo.jpg b/wired/old/published/Webmonkey/images/sept/picasa-geo.jpg Binary files differnew file mode 100644 index 0000000..1ac1748 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/picasa-geo.jpg diff --git a/wired/old/published/Webmonkey/images/sept/picasa-logo.jpg b/wired/old/published/Webmonkey/images/sept/picasa-logo.jpg Binary files differnew file mode 100644 index 0000000..163af6c --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/picasa-logo.jpg diff --git a/wired/old/published/Webmonkey/images/sept/thegoodlife_blhphotography_flickr.jpg b/wired/old/published/Webmonkey/images/sept/thegoodlife_blhphotography_flickr.jpg Binary files differnew file mode 100644 index 0000000..10904b4 --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/thegoodlife_blhphotography_flickr.jpg diff --git a/wired/old/published/Webmonkey/images/sept/tornado.jpg b/wired/old/published/Webmonkey/images/sept/tornado.jpg Binary files differnew file mode 100644 index 0000000..cdbda5e --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/tornado.jpg diff --git a/wired/old/published/Webmonkey/images/sept/tp-motion.jpg b/wired/old/published/Webmonkey/images/sept/tp-motion.jpg Binary files differnew file mode 100644 index 0000000..92e77cd --- /dev/null +++ b/wired/old/published/Webmonkey/images/sept/tp-motion.jpg diff --git a/wired/old/published/Webmonkey/lightroom-develop.txt b/wired/old/published/Webmonkey/lightroom-develop.txt new file mode 100644 index 0000000..e668fae --- /dev/null +++ b/wired/old/published/Webmonkey/lightroom-develop.txt @@ -0,0 +1 @@ +Now that we've seen how Lightroom 2.0 works and how you can use it to organize, sort and search your images, it's time to get down to the real work -- developing your photos.
To do that, we'll turn to Develop Module, which is the real workhorse of Lightroom.
Select a RAW image from your library and click on the Develop module to start editing.
== Overview ==
Before we actually make any changes, let's take a quick tour of the Develop Module. In the left hand panel you'll notice that organizational tools of the Library module have been replace by a different set of options.
screenshot: lightroom-develop-left.jpg The navigator windows remains the same, but now you have three new sub-panels: Presets, Snapshots and History. The Presets options holds a set of Lightroom defined presets for various effects as well as any presets you define.
Presets allow you to quickly and easily apply a set of effects to multiple photos. If, for instance, you have a whole series of photos of the beach, you might adjust one, save your settings as a preset, and then apply them to the whole lot.
To save your current adjustments as a preset, just click the plus button at the top of the sub-panel. That will bring up a dialog that allows you to save some, or all of the adjustments you've made to the current file.
Below Presets is the Snapshots list. Like its cousin in Photoshop, snapshots are a way to save your photo at various stages of development. However, it's not quite as useful here as it is in Photoshop because your entire history panel is persistent. In Photoshop the history palette starts afresh each time you open an image, not so with Lightroom.
Which brings us the the last sub-panel, the History list. In Lightroom any adjustments you make to an image are always infinitely undoable. That's one of the reasons it's called non-destructive editing -- you can always go back to any stage along the way with a single click.
And that holds true even when you quite the application. If, ten years from now you decided to undo an adjustment you made today, it won't be any harder than it is right now. Provided you're still using Lightroom that is.
Now that we're in the Develop module and all our disk browsing panels are gone how to you jump from image to image? The answer is the film strip at the bottom of the window. The film strip will automatically hold the currently selected library folder and right-clicking on the top part of it will bring up a list of recently visited folders. Just select the one you want and those photos will load in the flimstrip.
So those are the left hand panel options. As we said in the overview the left hand panel of the Develop module is essentially to past tense -- it holds all the things you've already done to an image.
== Developing ==
The real work of developing happens in the right hand panel of the Develop module. This is where you apply your adjustments and tweak your image to suit your liking.
screenshot: lightroom-develop-right.jpg You'll notice from the screenshot that there are quite a few sub-panels in the right hand panel of the Develop module. Here's a quick overview of what each one does:
# Histogram - Shows a map of the tonal/temperature range of your image. You can actually make adjusts by clicking and dragging within the histogram window, but it's a bit awkward and hard to control.
# Toolbar - The toolbar just below the histogram has five tools: Crop, Spot, Red Eye, Graduated Filter and the Adjustment Brush. We'll go over these in more detail in just a minute
# Basic - The workhorse panel of the Develop module, this is where you can adjust your global image settings -- everything from white balance to contrast.
# Tone Curve - As you might suspect, this is very similar to the Curves tool in Photoshop, allowing you to adjust to tones in your image with either the graph or a set of adjustment sliders.
# HSL / Color / Grayscale - Adjust the global image Hue, Saturation and Luminance of an image, as well as individual color ranges. This can also convert an image to Grayscale and adjust the tones used in the conversion.
# Split toning - Useful for coloring greyscale images
# Detail - provides a nice zoom window that's useful on its own, but the main adjustments here are sharpening, noise reduction and chromatic aberration.
# Vignettes - Used to control image vignetting. Note that Lightroom 2.0 enable a "post crop" vignette option so that even if you crop away from the actual edges of the image, you can still apply an even vignette.
# Camera Calibration - Adjust the default profile and color temperatures for your particular camera. If you images are all leaning toward purple for instance, this would be the place to change the camera profile to something more accurate.
Obviously there's a lot in here and we aren't going to cover all of it in detail, but here are the main things you'll probably want to tweak.
=== Basic Panel ===
screenshot: lightroom-basic-panel.jpg The place to start (generally speaking) is with the "basic" panel. Find a white balance that works for your image, adjust the exposure, fill light, black point, brightness, contrast and so on. All the settings can be controlled with the adjustment sliders, or, to pull out a certain area of the image, just use the eyedropper tool.
And remember, feel free to experiment -- all your changes are non-destructive. If you get a little crazy the first time through and then when you reopen your images you're horrified at what you've done, don't worry -- just jump over to history panel and go back to the last sane adjustment you made.
Handy tip: Keyboard junkies will want to learn a couple of shortcuts here. The plus/minus keys can be used to increase/decrease the adjustments and to move between the various adjustment types, use the comma key to go up and the period key to go down. The currently selected tool will appear in white, while the rest are a ligher gray color.
=== Tone Curve Panel ===
screenshot: lightroom-tonecurve-panel.jpg Moving down the line, the Tone Curve sub-panel is probably the next logical step for most images. Here you can adjust the tonal range of your image to open up shadows, tone down highlights and more.
To focus on a specific region of the image, click the little point icon at the top of this panel and then move your cursor over the image. The tonal region of what's under your cursor will be highlighted on the graph allowing you to see which part of the graph to adjust.
The other sub-panels should be fairly self explanatory, so we're going to jump over to what's probably the most powerful feature in Lightroom -- local adjustments.
== Local Adjustments ==
So far all the editing we've done effects the entire image, but what if we want to just lighten a certain part, say something hidden in shadow, without affecting the rest of the image?
Well, if you've got Lightrom 1.x, it's off to Photoshop for you, but Lightroom 2.0 added a new tool to apply adjustments to only one portion of an image -- the magical "adjustment brush."
If you've ever used masks in Photoshop, this will sound familiar, but if not, don't worry, we'll walk you through the basics.
To make local adjustments head back up to the toolbar section of the right hand side panel. It's just underneath the histogram. Now click the brush icon. You'll notice that new set of options appears below it. What this brush does is allow you to take most of the same adjustments we just covered, but only apply them to selected areas.
Just use the drop-down menu to select which adjustment you want to apply and then paint that adjustment onto the image using the brush.
If you use the auto-mask option, Lightroom will constrain your mask based on edges -- obviously it's not going to work in every case, but it's actually pretty smart about guessing where you want to mask and where to avoid.
If, however, you mess up, just switch the brush to erase mode and pain over the area where you want to remove the effect.
As with any brush tool in an Adobe app, there are sliders to set the size, feather and fill of your brush.
Once you have the area masked off, you can start playing the amount and other adjstment sliders to control the strength of the effect. Remember, everything in Lightroom is non-destructive and the adjustment brush is no exception so if you overdo it, just click the little pin on your image and back off using the Amount slider.
Hints: To show and hide the pin markers, hit "h". to see the actual mask, hover over a pin with your cursor and Lightroom will display the masked area in red.
Also note that if you've applied multiple adjustments to a single brush stroke, you can adjust both the individual adjustments and the overall effect of all of them.
The other very nice tool in this section is the graduated filter tool. The graduated filter works much like the real world filters you might own, a graduated neutral density filter for example. The difference is that in Lightroom your can choose what effect to apply to your graduated filter.
The graduated filter covers the same set of effects and adjustments as the adjustment brush, it just applies them as a gradient mask rather than a brush.
If you're thinking your can do the same thing by hand using the brush tool, you're right, it's just going to take a lot longer.
screenshot: lightroom-before-after.jpg
caption: A before and after view of an image with both global and local adjustments. The adjustment brush tool was used to brighten the exposure on the underside of the bell and darken the sky slightly.
== Conclusion ==
Obviously there's no way we can cover everything the Develop module allows you to do in this brief tutorial, there are in fact some really thick books on Lightroom that spend most of their time discussing the develop module. But hopefully this overview has helped you understand how to get started.
Keep in mind that Lightroom's non-destructive editing means that you can feel free to get as wild and crazy as you want with adjustments -- you'll always be able to roll your images back later. So if you have Photoshop-induced phobia of radical image effects, try to let it go a little when you're in Lightroom.
Once you've got an image adjusted just the way you want it, head over to part four of our series where we'll take a look at the various export and print module options.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/lightroom.txt b/wired/old/published/Webmonkey/lightroom.txt new file mode 100644 index 0000000..c010ee6 --- /dev/null +++ b/wired/old/published/Webmonkey/lightroom.txt @@ -0,0 +1 @@ +Making the leap from shooting JPG files to shoot in camera RAW is a revelation -- all of sudden you can effectively go back to the scene and re-adjusting the exposure, change the white balance, alter the contrast and much more. As they say, once you go RAW, you don't go back.
However, Camera RAW images make for a much more complicated workflow. There's no more plugging your camera into a printer and presto -- you images are on paper.
Given the increased complexity of Camera RAW images, it's not surprising that whole new crop of images editors have come around to help you deal with the workflow requirements.
Adobe Lightroom 2 is the company's latest answer to the Camera RAW workflow problem and offers just about everything you need, from organization, tagging, metadata capture and more to editing, printing and exporting to the web.
But Lightroom is also unlike any image editor you've likely used before and it can take a little while to adjust to this new, RAW, way of working. To ease the transition we'll walk you through the basics of the Lightroom interface and explain how the software works.
So pop the cork on a fresh jug of moonshine and let's get started.
== Overview ==
So what does Lightroom offer that Adobe's other photo-oriented apps, Photoshop and Bridge, don't? The basic premise is that Lightroom is a complete package -- rather than storing your images one place (Bridge) and editing them in another (Photoshop), both those tasks are handled within Lightroom.
While we admit that this goes against the tried-and-true philosophy of software -- do one thing and do it well -- in this case it works and it makes sense.
The problem with the Bridge/Photoshop combo is that every time you want to open a RAW image you need to use the Camera Raw dialogue in Photoshop. Since the Camera Raw dialogue is essentially a standalone app stuck inside Photoshop, you really aren't opening your images in Photoshop.
So Lightroom was born. Think of it as Bridge with Camera Raw baked in. Is it a replacement for Photoshop? Not at all. You'll still want Photoshop around to handle fine-grain adjustments and tweaks to your final output image.
However, while you made need to make some fine-grained tweaks in Photoshop, for the most part Lightroom is where your average Camera RAW fan lives (well, unless they've opted for Apple's Aperture software, which is Lightroom's main competitor).
Now when we say that Lightroom is "Bridge with Camera Raw baked in," we mean that literally -- Lightroom uses the same camera RAW engine that you'll find in Photoshop, which means when you do need to jump over to Photoshop, all your Lightroom adjustments will come with you.
== The Lightroom Database ==
Lightroom is not just an RAW Image editor, it also handles the task of organizing, sorting and searching your images.
To do so Lightroom uses a database that holds all of your image metadata, and by metadata we mean everything -- from images edits to camera profiles, tags and keywords to web export settings -- everything is self-contained within your Lightroom catalog.
Naturally you can have multiple catalogs if you like and you can store your images wherever you want (including external drives), the Lightroom database just uses a pointer to the image file.
In fact, in Lightroom 2 the catalog is essentially just a disk browser inside Lightroom, making it simple to manage your images both from within Lightroom and from outside programs.
And the best part about Lightroom's database is that it means all your editing is non-destructive. Rather than writing your changes to the actual image file, Lightroom simply stores the information about the adjustments you've made in it's database.
If you want to go revert an image, it's trivially easy to step backward in time, whether that means undoing the last adjustment, or heading all the way back to your original RAW file, all the history states are always preserved.
Now you may be thinking -- what happens if something better comes along and I decide I want to switch to another Camera RAW software? Well, we'll be honest, the process is a bit bumpy, but Lightroom can export all your RAW files along with XMP files (which holds the metadata and adjustments) and ''most'' other RAW software can then import the data.
== The Lightroom Interface ==
When you first open Lightroom you'll be greeted by dark, subdued interface that looks -- regardless of what platform you're running it on -- like it came from the moon. It takes a bit of getting used to, but the black chrome isn't random, it's designed to help you focus on and get a better look at the color in your images.
=== Lightroom Modules ===
Lightroom 2 is divided into what Adobe calls modules. The five module mirror the basics of your workflow: Library, Develop, Slideshow, Print and Web.
The first two are the meat of Lightroom and the last three help you get your photos to where ever you want them, be it a slideshow, prints or a web sharing site like Flickr.
You can switch between the modules using the menu links at the top left of the screen. (screenshot: lightroom-modules.jpg)
=== The filmstrip ===
Along the bottom you'll see the filmstrip which holds all the images you're currently interested in -- that could be just one folder's worth, or it could be several, it could also be a quick collection you've put together on the fly.
screenshot: lightroom-filmstrip.jpg
The main point of the film strip is to provide quick access between images without needing to jump back to the Library view. In other words, the filmstrip is how you move images through the various modules in the Lightroom workflow.
The film strip acts as the source for all the actions in each module -- click an image on the filmstrip in the Develop module and you'll be about the edit it. Do the same in the Web module and you'll be able to export it, and so on.
=== The Panels ===
Above the filmstrip, occupying the bulk of the interface, you'll find Lightroom's main center pane as well as the two side panels. What you see in each of these panes depends on which module you're using.
The side panels contain all the actions that apply to that module.
screenshot: lightroom-panels.jpg
For instance, say you're in the library module, the center pane will show your current images, the left pane your folders, keywords, search box and other filtering tools. The right pane holds some quick editing tools, as well as panels to apply new organizational info -- like keywords.
In general the left pane shows you what you've done and right pane is where you do new stuff. The action happens in the middle.
Each of the sections that make up a panel can be expanded and collapsed by clicking the section header so it's easy to show only the elements you actually need.
== Keyboard options ==
The other nice feature of the Lightroom 2 interface are the many very handy keyboard shortcuts. Lightroom is chock full of keyboard shortcuts, but here's the primary ones that are worth memorizing:
#Tab - Shows and hides the side panels. Great way to focus on an image without distractions.
#Shift-Tab - Hides and show all panels, including the filmstrip
#Shift-f - toggles full-screen mode
#Shift-l - Adobe calls this "dimming the lights." There are actually two modes, hit the shortcut once and everything but the currently selected image will be blacked out. hit it again and everything will be slightly dimmed out, and hit it a third time and you're back to normal.
#Command / - show a complete list of module-specific shortcuts
The last one in that list is worth special mention -- it'll pull up a list of all the available shortcuts for whatever module you happen to be in. It makes a great way to quickly view your shortcut options and is an invaluable reference for memorizing some more shortcuts.
Also note that many of these settings -- like how much the "lights out" feature dims -- can be set in the Preferences, just head to the Interface tab of the Preferences window.
== Conclusion ==
Now that you know the basics of the Lightroom 2 interface, it's time to get started actually using it. Head on over to our next tutorial, where we'll walk your through the basics of the Library module and show you different ways to store, sort and catalog your images.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/lightroom_export.txt b/wired/old/published/Webmonkey/lightroom_export.txt new file mode 100644 index 0000000..1a8c64a --- /dev/null +++ b/wired/old/published/Webmonkey/lightroom_export.txt @@ -0,0 +1 @@ +Now that you know the basics of organizing and editing your RAW image files using Adobe Lightroom 2.0, it's time to actually do something with them. For that we'll look at the three remaining Lightroom modules -- Slideshow, Print and Web.
As the names suggest, these modules help you export you images out of Lightroom and into various formats for sharing with friends and family, posting online and more.
Before we dive into the individual modules, let's cover a couple of interface themes common to all three. In all of these modules the left hand side panel is devoted to the templates for the individual module and your photo collections.
There isn't a way to browse your drive listings directly, but if you want to, for instance, create a slideshow out of a folder of images, just select the folder in the Library module and then move to the Slideshow module where all the selected images will be available from the filmstrip at the bottom of the screen.
The other common element is the right hand side panel, which will contain all the customization options for your export format. The exact options vary by module, so let's dive in a see what each has to offer.
== Slideshow ==
The simplest of the export modules is the Slideshow option, which, you guessed it, allows you to create slideshows. All the options you would expect are available in Lightroom's Slideshow module -- templates, custom layouts, text overlays, metadata and more.
The easiest way to create a slideshow is to use one of the provided templates, which range from simple photo-and-caption to more sophisticated auto-cropping and resizing layouts.
If you're looking to build something customized to your whims, you can start from scratch, but you can also start from one of the included templates and then tweak it to suit your needs. Once you have a layout you like you can save it as a custom template and reuse it again in the future.
Naturally there are also transition controls, shading and host of other tools for getting your slideshow just the way you want it.
lightroom-slideshow-gallery.jpg
Once you're happy with the look and feel of your slideshow you can export it as a collection of JPGs or PDF files for displaying on PCs that don't have Lightroom installed.
We know what you're thinking, why the hell would I want to put a slideshow in PDF format? You want to export straight to DVD so you can pop it up on the HDTV to regal guests with fascinating travel narratives.
This much-requested, but still missing, feature is currently Lightroom's biggest downfall -- there is no way to export a slideshow to DVD.
Of course there are ways to do this, but they would require you to export the images (losing your nice templates) and then create the slideshow in another program like iPhoto or Adobe Premiere.
Hopefully Adobe will someday realize that it's the only one still using PDF files for images and correct this oversight. But in the mean time, we're sorry to report that you're out of luck when it comes to creating DVD slideshows in Lightroom.
== Print ==
If you've decided to spare your dinner guests the torture of a slideshow in favor of the less intrusive print on the wall, Lightroom has you covered. The Print module is a very powerful tool with options to control everything from page layout (putting multiple photos on a page to save on paper costs) to post-production sharpening to make sure the details in your photos are nice and crisp.
As with the Slideshow module, the Print Module comes with a number of preset templates for printing in common formats -- contact sheets, picture packages with multiple size images per page and more are all available out of the box.
lightroom-picture-package.jpg
And once again the customization options are robust. If you've, for instance, cropped some images to odd sizes you can always resort to drag and drop placement to get the maximum per-page layout.
You can also customize borders, control bleed regions and other standard photo printing options.
There's also some limited ability to handle color management options directly in Lightroom, though how well this works depends on the quality of your printer (my cheapo Canon can't seem to make sense of Adobe's print options and I get far better resorts letting the printer handle the color management tasks).
== Web ==
While the web may be the professional photographer's least favorite export option (it's hard to get quality, high resolution images on the web), for the non-professional, this where you'll likely do the bulk of your exporting.
The web module offers some very simple ways to create both Flash and HTML galleries which are exported in one, nice, tidy folder that you can then upload to your site using an FTP application.
The HTML export options don't generate the best HTML code you've ever seen, but they get the job done and are a godsend for those who aren't comfortable writing their own HTML code. Of course you won't get fancy options like some of the very nice Javascript-based "lightbox" slideshows you often see these days, but in terms of speed and ease-of-use, Lightroom's Web export module is touch to beat.
lightroom-photo-gallery.jpg
The Flash option is somewhat more primitive and less satisfying. The included templates end up making an okay slideshow with a scrollable panel the thumbnails on the left and the main image on the right. You can control the timing of crossfades and customize all the background colors and navigation elements to match the look and feel of your site.
However, if you've ever used the [http://slideshowpro.net/ SlideShowPro photo gallery system], Lightroom's options look primitive in comparison. Fortunately for those of you who do use SlideShowPro there's a very cool [http://slideshowpro.net/products/slideshowpro/slideshowpro_for_lightroom plugin available for Lightroom] which allows you to go from Lightroom to SlideShowPro gallery in one quick and easy step. See the SlideShowPro website for more details.
And then of course there's Flickr. Lightroom 2.0 doesn't offer a direct-to-Flickr export option out of the box, but Lightroom fan Jeffrey Friedl has created a very nice plugin that makes it dead simple to [http://regex.info/blog/lightroom-goodies/flickr/ upload your images to Flickr straight out of Lightroom]. The best part is it's free. Just download the latest version and then head to Lightroom's Plugin Manager (File >> Plugin Manager) and add the new Flickr plugin.
Then you'll need to head to the Flickr site and give the plugin permission to access you account. Once everything is setup, just select the photos to upload and head to export. Use the drop down menu at the top of the export dialog to select the new Flickr exporter. From there you can pick and choose through all the options -- decide on image titles, include Lightroom tags, metadata and much more.
Lightroom-flickr-plugin.jpg
== Conclusion ==
Well, that concludes our Lightroom overview. Hoepfully you've learned out to use the somewhat complex, but powerful tools that Lightroom offers. And remember, the is a wiki, so as you dig deeper into Lightroom, be sure to add your own finds and suggestions to this series.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/lightroom_library.txt b/wired/old/published/Webmonkey/lightroom_library.txt new file mode 100644 index 0000000..6337cf6 --- /dev/null +++ b/wired/old/published/Webmonkey/lightroom_library.txt @@ -0,0 +1 @@ +So you've followed our Lightroom walk-through and have a general idea of how the interface works, now it's time to get down and dirty with the individual "modules."
We're going to start with Library module, where you import, organize and sort your images. The Library is Lightroom's brain -- this is where you can tag your images, sort them, group them in folders, create collections, smart collections and more.
While there are some quick-editing tools that allow you adjust your images in the Library module, for the time being we're going to ignore them and focus on the organizational tools that make up the bulk of the Library.
== Folders ==
Earlier versions of Lightroom were not very smart in the way they handled folders on your hard drive. Fortunately that's one of the many things Adobe changed in Lightroom 2.0, so be aware that everything that follows is written with 2.0+ in mind.
lightroom-folder.jpg If you look at the left hand panel in the library module, you'll notice a "Folders" heading with a triangle next to it. Click the triangle to expand that header if it isn't already. That will reveal a list of available hard drives (probably just one, unless you've already told Lightroom about others) and then any folders you've told Lightroom to import.
In the case of the screenshot you can see I have a drive 'luxagraf' and a top-level folder "Negatives" with some date-based folders below that and then location folders below that. That happens to be my organizational preference, not something Lightroom imposes.
You can store and organize your photos on you disk however you would like. In fact, you can rearrange your photos outside Lightroom and all you need to do is select the folder, right-click it and choose "synchronize folder." That will tell Lightroom to update the list of images in that folder.
Want to add a folder? No problem, just right-click the folder you'd like to server as a parent and choose "Create folder inside...." If you want to add a new top level folder just use the plus button there at the top of the Folders panel.
Okay, you say, that's all well and good, but I added a folder and that folder actually has a parent folder that I've decided needs to be included as well, how do I do that? Simple, just right-click the child folder in Lightroom and you'll see an option that says "Add Parent folder." Just select that and presto, Lightroom is now aware of the parent and the original child folder.
Also note that in the screenshot I've chosen to have Lightroom display the number of photos it's aware next to my drive listing. By default this display actually shows the amount of hard drive space used and the amount available. To change that just right-click on the text and select one of the other options.
== Collections ==
Folders are a nice way to mirror the structure you're already using to organize photos on your drive. But folders alone would be a bit limiting -- after all what happens if you want to have the same photo be in two places are once? If you're using folders alone to organize things you'd end up with duplicate files, which isn't very smart.
That's where collections come in. Collections are essentially like an iTunes playlist -- they're groups of images that are wholly independent of where the actual files live.
In other words, collections are a way to organize, group and sort photos without actually moving them anywhere.
There are two types of collections, ordinary and smart. Again the comparison to iTunes playlists works well. Normal collections are static, to create them just click the plus button and choose "create collection." You can then manually add photos to your collection by dragging and dropping.
lightroom-collections.jpg While Collections are static, Smart Collections are dynamic and work just like smart playlists in media players. You define a set of criteria -- say, all your five star photos -- and the Smart Collection will show all those images. Later when you add some new photos to your library and give a couple of them five star ratings, head back to your Smart Collection and your new photos are automatically added.
In the screenshot above, you can see that I have the default Lightroom Smart Collections folder and then a normal collection called "top" which happens to hold some of my personal favorites from my library.
Smart Collections can be as complicated or intricately filtered as you'd like, just hit the plus button to keep adding criteria to the filter.
lightroom-smart-collections.jpg
But the collections fun doesn't stop there, you can also create Collection Sets, which are essentially folders to hold your various collections
== Adding Keywords ==
Okay, so now we know how folders work and we can define smart collections to display, for example, all our images that have the keyword "monkey." But how do we add such metadata, like keywords, to our photos?
For that we need to jump over to the right-hand library panel and open the Keywording sub-panel. This is the interface for adding keywords to your images.
Note that by keywords I mean tags. Adobe chooses to call them keywords, so I'll stick with that terminology to avoid confusion, but if "keyword" doesn't make sense to you, try reading this section with the word "tags" instead of "keywords" -- same concept.
lightroom-keywords.jpg In the screenshot you'll notice that the selected image has the keywords "2006", "city", "Laos", "market" and "round the world trip" applied to it. To add more keywords you can click that dark grey box and type them in directly using commas to separate them. However, the better option it use the box below that where it says "Click hear to add keywords."
Here's a tip: The nice thing about using the smaller box is that it will stay selected when you move between photos using the shortcut CMD-right/left arrow (CTRL-right/left arrow on Windows). It makes for a nice quick way to add keywords to multiple photos without ever taking your fingers off the keys.
Now below the keywords box you'll see the Keyword Suggestions area. Adobe touted this quite heavily when Lightroom 2.0 launched, claiming that it would be really smart at suggesting related keywords based on a whole series of criteria.
If by smart they really meant "the single worst keyword suggestion tool you've ever used," then I'd be inclined to agree. Maybe your luck will be better, but in all the time I've been using Lightroom 2.0 it has yet to suggest a keyword that made sense to me.
However, just below Keyword Suggestions is another tool that actually is very useful -- Keywords Sets. The idea behind keyword Sets is that you probably want to apply the same keywords to different photos quite frequently, so why not save them as a reusable set that can be applied with a single click?
That's exactly what Keyword Sets allow you to do. There are some default options, like Outdoor Photography, which has some common keywords you might want to use on your landscape images. But the real power here is in defining your own sets and then applying them to your images. Any time you've assigned keywords to an image you can always save them as a set.
Of course the simplest and quickest way to keyword your photos is when you import them. The trick is to apply the more general tags -- location names for instance -- at this stage and then apply more fine-grained keywords, like say "sunset" or "beach" to your individual images.
== Filtering Images ==
Okay, so you have all your photos imported, organized the way you want and tagged, er, keyworded, now what? Well, now we're going to look at the main library view to see how we can use all that data to find the images we want.
First, let's take a quick tour of the Library module's two views -- Grid, pictured below, and Loupe, which allows you zoom in on your images. To change what's displayed in either view, just right-click on an image and select "View Options..." That will give you a preference pane that you can use to customize the Library module just about any way you like.
Also note that to quickly jump to grid view you can use the keyboard shortcut G and for Loupe view it's E (no we don't know why it's E either, but it is).
lightroom-grid-view.jpg
Now notice the filter bar across the top of the screenshot, this is where our keywording and other metadata filtering happens. To enable a filter, just click it, to disable it click it again.
Between the three types of filters, Text, Attribute and Metadata, you should be able to see just about every possible combination of images you can imagine. Of particular note is the metadata browser, which allows you to filter on every criteria your camera records.
Now that's all fine and well, but I don't want to jump through the hoops of filtering every time I want to find a particular image. Well, that's why there's the custom filter tool over to the right hand side of the filter bar. Use the custom filter tool to save your filter criteria so you can quickly jump back to it whenever you want.
The other element of note in the main Library Module is the toolbar along the bottom of the Grid view. This is where you can change settings like the sort order, switch between views (including two we haven't covered yet: Compare and Survey), adjust the thumbnail size and even apply keywords and metadata using the painter tool.
== Odds and Ends ==
Other things we haven't covered include the keyword browser, which lives in the right side panel. The keyword browser has the same effect as typing a keyword into the text filter in the filter bar, but in this case you see all your keywords so you don't have to try to remember a specific term you used two years ago.
In the left panel we also ignored the catalog sub-panel, probably most notable for providing quick access to your last import, and the Navigator sub-panel, which is useful in loupe view since it shows you at a glance, where you are in your zoomed view.
== Conclusion ==
Adobe likes to provide more than one way of doing most things in its software. The result is that Lightroom 2.0 is very flexible, but also somewhat daunting. Hopefully this tutorial has given you some insight into how the Library module can help organize your images.
So go ahead and try out some of the things we've covered -- import some images, move them around, create collections, add some keywords, sort by metadata and so on until you're comfortable.
Then jump on over to our next lesson where we'll walk through the basics of the Develop Module.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/metatutorial.txt b/wired/old/published/Webmonkey/metatutorial.txt new file mode 100644 index 0000000..935bf6c --- /dev/null +++ b/wired/old/published/Webmonkey/metatutorial.txt @@ -0,0 +1,103 @@ +Webmonkey is a wiki and that means you, yes even you, can submit tutorials to educate your fellow monkeys. But some of you may be scratching your head, I've never written a tutorial before you say, how does one do that effectively? + +Well fear not my fellow web programmers, designers, tinkers and hackers because we're about to get meta on you. Yes, a tutorial on how to write tutorials. + +However, before we get into that be sure you look over Webmonkey's official [http://www.webmonkey.com/services/Editorial_guidelines editorial guidelines], while they don't delve into the art of writing a tutorial, they are chock full of advice on the technical aspects of Webmonkey submissions. You'll also want to get up to speed on the Media Wiki formatting syntax (don't worry it's pretty simple). There are some handy links on our [http://www.webmonkey.com/services/FAQ FAQ page]. + + +==What Should Your Write About?== + +There's something of a misconception that in order to write a tutorial you need to be a guru or standout expert in the field. In fact you don't need to be anything of the sort, you just need to have the answer to a common problem we're all likely to face. + +For instance, even if you don't know every tiny detail of PHP, you might know enough to teach us all how to build a WordPress extension. Or, while you might not know how to compile Apache from source, you know how to set up virtual hosts, so teach us how to do that. + +In other words, write what you know and don't worry about what you don't know. Your fellow webmonkeys will be sure to correct you should you stray beyond the limits of your understanding. + +If you've ever spent three hours filtering through Google search results looking in vain for an answer to some programming problem, and finally, after a bunch of aborted attempts based on other's suggestions, you have one of those ah ha! moments, chances are you just stumbled on a good tutorial topic. + +Of course that isn't always true, but it's a good place to start. + +Another key thing when starting a tutorial is know what you don't know. Writing a good tutorial means being humble enough to admit when you don't know something. + + +==The Nuts and Bananas of Good Tutorials== + +=== Ass U Me Nothing === + +The number one rule of a good tutorial is never assume. Never assume your reader will understand any gaps between step 1 and step 2. Although we provide a way to rank the skill level of tutorials, don't just select advanced and assume that reader will be able to fill in any gaps in your tutorial. + +Writing a tutorial means taking the very complicated and breaking it into clear, easy-to-follow steps. + +Don't be afraid of lists, in fact they can be your best friend. Provide clear steps from beginning to end and, if it will help, add screenshots or sample files to show what you're doing. + +When it comes to code snippets don't just throw them out there. Throw them out there and then walk us through it line by line, explaining why we're doing what we're doing as much as how we're doing it. + +The goal isn't just to complete your sample project, but to provide enough background information that the reader can extrapolate your example to fit their own situations and needs. And in order to do that you're going to need to be thorough. + +That said, you needn't explain everything in minute detail. For instance, writing something like: "now go to your applications folder, select the Dreamweaver folder, navigate to Dreamweaver and double click the icon to open Dreamweaver" is unnecessarily long and will only serve to confuse the reader. Just write: fire up Dreamweaver! or something similar. + +It takes a bit of practice to figure out when to include excruciating detail and when a short and sweet sentence will do the trick, but eventually you'll get the hang of it. + +=== Taking the Long Way Home === + +Another area that deserves mention is the long way versus the shortcut. Especially in programming, there is almost always more than one way to solve a problem. Although there are exceptions, we find that starting with the long way lays the groundwork for the shortcut. + +Once you've walked the reader through the longer way, show them the shortcut and explain why the shortcut works and how it saves time and effort. + +For example, in Python much of what you do with for loops can be done with list comprehensions. However for loops exist in nearly every language and there's a good chance the reader is already familiar with the basics of for loops. So our intro to Python tutorial presents for loops (the long way) and then moves to list comprehensions which are a shortcut unique to Python. + +=== Code === + +When it comes to code the rule is test, test, test. Test in different environments, on Windows, on Mac, on *nix on Symbian and so on. Testing serves two purposes, first to make sure you code works, but also, when it doesn't to help you learn right along with the reader. + +If your code works on Mac and *nix servers but not on Windows, find out why and explain that to the reader. + +Also bear in mind, particularly with web programming, that not every shared host server is going to have the same set up. For instance, if you're writing about editing Apache config files, keep in mind that not everyone has access to root Apache files, so it would be wise to include .htaccess alternatives. + +Same goes for programming languages, if you're talking about features in the latest version provide possible alternatives for those still stuck with older versions. + + +=== There be Dragons === + +When you're testing code or coming up with your initial idea be sure to record your notes as you progress and note any pitfalls you encounter. This is the sort of information you readers need to know. + +For example forgetting a semi-colon in PHP is a common error, add a quick note somewhere reminding the reader to check their line endings. In Python the old spaces/tabs mixture is a common problem so mention it. You needn't get into why you need semicolons or only tab indentions, just note that the potential pitfall so the reader is aware. + +Generally we find it's best to work these sort of notes end after your initial walkthrough of you code. For instance a structure like this works well: + +# code sample +# line by line explanation +# note any potential gotchas +# next code sample +# etc + + + +==Writing Style== + + +This is the hardest part. We can't make you into a good writer in one tutorial, but here are a few tips that'll help improve your prose and make your tutorials easier to read (see what I mean about lists?): + +# Use short declarative sentences and don't try to impress the world with your vocabulary +# Learn the basic rules of punctuation and grammar. +# Avoid jargon -- Programming often requires you to use precise terms, but avoid things like "buffer" when more people will understand the term "file." Sometimes it's better to sacrifice a bit of technical correctness in favor of simplicity. +# Be consistent with the technical terms you use -- Don't refer to a flash movie as a .swf, then a "flash movie," then a "flash file," then a "movie file." Don't refer to "Folders" in some cases and "Directories" in others. Pick one and stick with it throughout. +# Proofread -- have someone else read through your tutorial before you give it to the general public. + +Another aspect of a good tutorial is the voice. Webmonkey has many authors, but a fairly consistent voice which helps create familiarity and comfort for regular readers. Make sure to re-read your favorite tutorials and try to get a sense of ''how'' the author says things as much as what they say. + +Never underestimate the value of humor. Try to work in a joke or pun if you can, even if its so bad the reader cringes. Don't worry, cringing is a form of engagement and that's a good sign. + +== Additional Tips == + +# Before you start typing, make an outline. It'll help you to organize your thoughts and see the connections between each step in your tutorial. +# Along the same lines, create a table of contents +# Write your tutorial out in longhand. This forces you to slow down and think about each step (it's not for everyone, but many of our authors find it useful) +# Sit down and follow your own tutorial, step by step, and make any adjustments if it isn't working for you. +# Have a friend or colleague who's not familiar with the subject read your tutorial and see if they can understand it. + +== Final Thoughts == + +Webmonkey is a wiki and that means anyone can edit your tutorials, and chances are they will. Some this can be a bit hard on ego, but try to keep in mind that what you find self-evident may not be entirely clear to everyone. Even those of us who've been contributing to Webmonkey for years can always learn something new from our fellow reader. + +Once your tutorial is live, be sure to subscribe to recent changes RSS feed so you can keep track of what others add to your work. Not only does that help you maintain some control, but you might learn something new from your fellow monkeys.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/old webmonkey_articles.zip b/wired/old/published/Webmonkey/old webmonkey_articles.zip Binary files differnew file mode 100644 index 0000000..76c0cdc --- /dev/null +++ b/wired/old/published/Webmonkey/old webmonkey_articles.zip diff --git a/wired/old/published/Webmonkey/photos/lightroom_intro.txt b/wired/old/published/Webmonkey/photos/lightroom_intro.txt new file mode 100644 index 0000000..1588d3c --- /dev/null +++ b/wired/old/published/Webmonkey/photos/lightroom_intro.txt @@ -0,0 +1 @@ +Making the leap from shooting JPG files to shoot in camera RAW is a revelation, all of sudden you can effectively go back to the scene, readjusting exposures, changing color tempatures and more. As they say, once you go RAW, you don't go back.
However, Camera RAW images make for a much more complicated workflow. There's no more plugging your camera into a printer and presto -- you images are on paper.
Given the increased complexity of camera RAW images, it's not surprising that whole new crop of images editors have come around to help you deal with the workflow requirements.
Adobe lightroom 2 is the company's latest answer to the Camera RAW workflow problem and offers just about everything you need, from organization, tagging, metadata capture and more to editting, printing and exporting to the web.
So pop the cork on a fresh jug of moonshine and let's get started.
== Overview ==
So what does Lightroom offer that Adobe Photoshop and Bridge don't? The basic premise is that Lightroom is a complete package. Yes you made need to make some fine-grained tweaks in Photoshop, but for the most part Lightroom is where you'll live.
Lightroom also uses the same camera RAW engine that you'll find in Photoshop, which means when you do need to jump over to Photoshop, all your Lightroom adjustments will come with you.
Lightroom uses a database to store all your metadata, and by metadata we mean everything -- from images edits to camera profile, tags and keywords to web export settings -- everything is self-contained within your Lightroom catalog. Natrually you can have multiple catalogs if you like and you can store your images wherever you want (including external drives), the Lightroom database just uses a pointer to the image file.
And the best part is that all your editing is non-destructive. At any point you want it's trivially easy to step backward in time, whether that means undoing the last adjustmment, or heading all the wway back to your oriiginal RAW file, all the history states are always preserved.
== The Lightroom Interface ==
When you first open Lightroom you'll be greated by dark, subdued interface that looks -- regardless of what platform you're running it on -- like it came from the moon. It takes a bit of getting used to, but the black chrome isn't random, it's designed to help youu focus on and get a better look at the color in your images.
Lightroom 2 is divided into what Adobe calls modules. You can swtich between then using the menu links at the top left of the screen. The options mirror the basics of your workflow: Library, Develop, Slideshow, Print and Web.
The first two are the meat of Lightroom and the last three help you get your photos to where ever you want them, be it a slideshow, prints or a web sharing site like Flickr.
The interface itself has four major components -- along the bottom you'll see the filmstrip with holds all the images you're currently interested in -- that could be just one folder's worth, or it could be several, it could also be a quick collection you've put together on the fly.
The main point of the film strip is provide quick access between images without needing to jump back to the Library view.
Above the filmstrip, occupying the bulk of the interface, you'll find Lightroom's main center pane as well as the two side panels. What you see in each of these panes depends on which "module you're using." The sidebars then contain all the actions that apply to that module.
For instance, say you're in the library module, the center pane will show your current images, the left pane your folders, keywords, search box and other filtering tools. The left pane holds some quick editing tools, as well as panels to apply new organizational info -- like keywords.
In general the left pane shows you what you've done and right pane is where you do new stuff. The action happens in the middle.
== Conclusion ==
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/robotstxt.txt b/wired/old/published/Webmonkey/robotstxt.txt new file mode 100644 index 0000000..0fd0e12 --- /dev/null +++ b/wired/old/published/Webmonkey/robotstxt.txt @@ -0,0 +1 @@ +Have you ever wondered why your server logs show 404 errors for a file named robots.txt when you've never linked to or created any such file? The answer is that all well trained web crawlers always look for a file named robots.txt that will ostensibly tell them what to index and what to live alone.
If you've got 404 errors, that means your site is missing a robots.txt file and the bots are just winging it. Why not help them out and gain a little control over what gets indexed in the process?
A robots.txt fil helps direct the bots to the content you want them to know about and prevents them from indexing pages (like your admin section for instance) that you don't want them to crawl. When used in conjunction with a sitemap it might even help improve your search engine ranking.
== What it is ==
As the name implies, robots.txt is simply a flat textfile with a few simple directions that tell all robots, or even just specific crawlers, what parts of your site to index.
To get started, let's use a simple example. Imagine you have a site at http://mysite.com and you use WordPress, which you access at the URL: http://www.mysite.com/wp-admin/. Now you don't want the robots to index your admin login page because it's private, so create a new file, robots.txt, at the root level of your site and add these lines:
<pre>
User-Agent: *
Disallow: /wp-admin
</pre>
That tells all bots (the * is a wildcard that will match any user agent) to ignore the <code>wp-admin</code> directory and everything below it.
The basic format for all robots.txt rules is:
<pre>
User-Agent: [Bot name]
Disallow: [Directory or File Name]
</pre>
So let's modify the above example so that only the Google Bot is excluded (there's no good reason to do that in this case, but for the sake of example):
<pre>
User-Agent: Googlebot
Disallow: /wp-admin
</pre>
Here's a more practical example that will prevent the Google image scraping bot from indexing your images folder:
<pre>
User-Agent: Googlebot-Image
Disallow: /images
</pre>
Let's say you really hate the Lycos web crawler, well, just disallow your whole site:
<pre>
User-Agent: T-Rex
Disallow: /
</pre>
Obviously the Lycos user agent is "T-Rex," which raises the question: where do you find out the name of all the various crawlers and their user agent signatures?
The answer is to head over to Robotstxt website and check out the [http://www.robotstxt.org/db.html list of bots in the wild]. You'll note that there are over 300 different bots listed there, most of which you've probably never heard of -- don't worry neither have we.
In most cases you can get by with rules that just use the * wildcard, but should you ever need to target a specific bot, now you know how.
== More complex scenarios ==
So far we've just created very basic rules, but you can actually get quite complex. Let's say for example that we want all bots to ignore our WordPress admin and then we want all of them except the GoogleBot to ignore our images directory.
Here's what that would look like:
<pre>
User-agent: *
Disallow: /wp-admin
Disallow: /images
User-agent: Googlebot-Image
Disallow: /wp-admin
</pre>
First we address all bots and tell them to ignore both of the directories we want to keep hidden. Then we specifically address the Google Image bot and tell it to ignore the wp-admin directory. But because the specific rule overrides the general one, the Google Image bot will go ahead and crawl the images directory because we haven't told it not to.
== Caveats ==
Most well behaved bots will obey your robots.txt rules, however, it's important to note that this isn't a security method. Just because you tell the bots to ignore your private files, doesn't mean a) that they will (there are badly behaved bots out there) or b) that anyone else will.
Robots.txt files are merely guides, not a way to make sure no one sees your pages. If you're looking to secure your files, use something like a password protected directory. That way you'll stop the bots and the humans.
== Conclusion ==
That's really all there is to robots.txt. If you'd like to learn more about robots and see some other examples, head over to the [http://www.robotstxt.org/ Robotstxt website] which the web's most comprehensive source for all things related to web crawlers.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/roundedcornerscss.txt b/wired/old/published/Webmonkey/roundedcornerscss.txt new file mode 100644 index 0000000..ff4b8bf --- /dev/null +++ b/wired/old/published/Webmonkey/roundedcornerscss.txt @@ -0,0 +1 @@ +While you'd be hard pressed to come up with any single design tic that defines a "web 2.0 look," nothing screams web 2.0 quite like rounded corners. We're not sure how the trend started, but even now that rounded corners have most likely jumped the shark, clients still clamor for them.
It's no surprise then that there are literally dozens, if not hundreds of ways to create the rounded corner look. Your options range from the very primative (just create static backrounds in photoshop and apply them on a per-element basis) to the very progressive -- CSS 3 can do rounded corners with just one line of code.
Unfortunately not all browsers support CSS 3, which means, unless you're doing a fun site for yourself, you're probably going to have to resort to some workarounds.
We decided to dig through the many options for creating rounded corner elements and came up with a few winners that stand ouut from the bunch. These methods offer the best balance between simplicity and semantically valid markup (for the most part) while keeping the images to a minimum (read, faster page loads).
The options here range from pure CSS to JavaScript-based solutions, hopefully offering something for everyone.
== The pure CSS method ==
There are a couple of ways to do rounded corners using just CSS and a background image. The trick is to use one or several images larger than the largest element you want a box around and then position them using the <code>background-image</code> property.
Our favorite method, created by designer Scott Schiller, is known by the sexy moniker, [http://www.schillmania.com/content/projects/even-more-rounded-corners/ Even More Rounded Corners With CSS]. It allows for fluid rounded corner dialogs and supports borders, alpha transparency, gradients and patterns.
Here's what the most basic HTML looks like:
<pre>
<div class="dialog">
<div class="content">
<div class="t"></div>
<!-- Your content goes here -->
</div>
<div class="b">
<div></div>
</div>
</div>
</pre>
Then you can apply styles like this (pay particular attention to Schiller's inline comments which highlight some of the trickier parts):
<pre>
.dialog {
position:relative;
margin:0px auto;
min-width:8em;
max-width:760px; /* based on image dimensions */
color:#fff;
z-index:1;
margin-left:12px; /* default, width of left corner */
margin-bottom:0.5em; /* spacing under dialog */
}
.dialog .content,
.dialog .t,
.dialog .b,
.dialog .b div {
background:transparent url(my-image.png) no-repeat top right;
_background-image:url(dialog2-blue.gif);
}
.dialog .content {
position:relative;
zoom:1;
_overflow-y:hidden;
padding:0px 12px 0px 0px;
}
.dialog .t {
/* top+left vertical slice */
position:absolute;
left:0px;
top:0px;
width:12px; /* top slice width */
margin-left:-12px;
height:100%;
_height:1600px; /* arbitrary long height, IE 6 */
background-position:top left;
}
.dialog .b {
/* bottom */
position:relative;
width:100%;
}
.dialog .b,
.dialog .b div {
height:30px; /* height of bottom cap/shade */
font-size:1px;
}
.dialog .b {
background-position:bottom right;
}
.dialog .b div {
position:relative;
width:12px; /* bottom corner width */
margin-left:-12px;
background-position:bottom left;
}
.dialog .hd,
.dialog .bd,
.dialog .ft {
position:relative;
}
.dialog .wrapper {
/* extra content protector - preventing vertical overflow (past background) */
position:static;
max-height:1000px;
overflow:auto; /* note that overflow:auto causes a rather annoying redraw "lag" in Firefox 2, and may degrade performance. Might be worth trying without if you aren't worried about height/overflow issues. */
}
.dialog h1,
.dialog p {
margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
padding:0.5em 0px 0.5em 0px;
}
.dialog h1 {
padding-bottom:0px;
}
</pre>
As you can see the CSS is far from simple, but if you're looking for a solution that allows complex stuff like alpha transperancy and gradient images, the CSS is naturally going to get a bit tricky. Have look at Schiller's [http://www.schillmania.com/projects/dialog2/ example page] to see these techniques in action.
The main downside to this particular method is that you end up with a bit of non-semantic markup -- specifically the three divs that, in a perfect world, shouldn't be there. If that bothers you there are other, though somewhat less robust methods to achieve rounded corners using just CSS.
Some other methods we've used include [http://www.spiffycorners.com/ SpiffyCorners], though it too uses a bit of semantically questionable markup. There's also the ever popular [http://modxcms.com/simple-rounded-corner-css-boxes.html "ThrashBox"] method with is more semantic, but uses more images to achieve it's effects.
== JavaScript ==
There are quite a few very nice JavaScript libraries that can handle the rounded corners dilemma. It was hard to pick just one, but we settled on curvyCorners because it's relatively lightweight, requires almost no effort on your part and has a very slick [http://blue-anvil.com/archives/anti-aliased-rounded-corners-with-jquery JQuery plugin].
To use curvyCorners just head over to the site and [http://www.curvycorners.net/downloads.php download the latest version]. Then upload that file to your site and include the script in your page's head tags:
<pre>
<script type="text/JavaScript" src="rounded_corners.js"></script>
</pre>
Once you've got curvyCorners loading, it will automatically round any specified div tags; the only thing you need to do is call the script and set a few options. Here's some sample code:
<pre>
<script type="text/JavaScript">
window.onload = function()
{
settings = {
tl: { radius: 10 },
tr: { radius: 10 },
bl: { radius: 10 },
br: { radius: 10 },
antiAlias: true,
autoPad: false
}
var divObj = document.getElementById("myDiv");
var cornersObj = new curvyCorners(settings, divObj);
cornersObj.applyCornersToAll();
}
</script>
</pre>
Notice that we've set the round radius to 10 pixels and applied it the a div with the id "myDiv." Just replace myDiv with the names of the divs you want to round and you're all set. For more details and some examples be sure to check out the [http://www.curvycorners.net/examples.php curvyCorners site].
CurvyCorners gives you rounded corners with very little effort and doesn't rely on large images with tricky CSS. It does, however, require JavaScript and falls apart for users that have it turned off.
== CSS 3, rounded corners revolution ==
As you have probably figured out right now, creating rounded corners requires some amount of compromise -- either in bulky HTML or by using JavaScript as a workaround. But the future is looking quite bright. CSS 3 makes creating rounded corners dead simple, only one line of code necessary:
<pre>
border-radius: 10px;
</pre>
Of course only a handful of browsers currently support border radius (see our guide, [http://www.webmonkey.com/tutorial/Get_Started_with_CSS_3 Get Started with CSS 3], for more details on how to create rounded corners and more using CSS 3), which means for most sites it isn't a viable option.
But isn't it nice to know that someday, in a galaxy far, far away rounded corners will be easy? Of course by then they'll just look "so 2006."
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/sitemaps.txt b/wired/old/published/Webmonkey/sitemaps.txt new file mode 100644 index 0000000..78992bc --- /dev/null +++ b/wired/old/published/Webmonkey/sitemaps.txt @@ -0,0 +1 @@ +Ever wonder why Google and other search engines are ignoring portions of your website? It could be that the big search engines just don't like you, but simpler answer more likely -- they don't know where all your pages are.
And if search engines can't find your site's pages, then there's no way for them to be indexed, which means you miss out on money-earning traffic. That's no good, so how can you explicitly tell a search engine spider where you pages are?
The answer is using a sitemap.
== What is a Sitemap? ==
A sitemap is essentially a table of contents for your website. But the sitemaps we're talking about here are not designed for human viewing -- like the sitemaps you might offer visitors looking for a quick way to navigate your site -- instead sitemap.xml files serve the same information in a format that search engine spiders can easily understand.
A sitemap is a simple XML file (named, fittingly, sitemap.xml) that gives the location, last-modified date and some other metadata for every page in your site.
When a search engine bot comes to your site and finds a sitemap, it will follow all the specified URLs, indexing the content and including whatever metadata your sitemap specifies.
== The Sitemap Protocol ==
The sitemap protocol is pretty simple, the basic format looks like this:
<pre>
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://webmonkey.com/</loc>
<lastmod>2008-10-13T04:20:36Z</lastmod>
<changefreq>always</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>http://webmonkey.com/new-post/</loc>
<lastmod>2008-10-13T20:20:36Z</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
</urlset>
</pre>
As you can see, we start with a basic xml declaration -- make sure you specify the UTF-8 encoding, Google requires that sitemaps be UTF-8 encoded or it will ignore them. The next line opens our <code>urlset</code> tag which is the container tag that will hold all our URLs.
Note that we're pointing to the schema defined on [http://www.sitemaps.org/protocol.php sitemaps.org]. As of this writing version 0.9 is latest official schema.
The next tag is the <code>url</code> tag which is just a container for all the bits of information we can tell the search engines about for each page on our site. Those options are:
# '''loc''' (required) -- the URL of the page. This URL must begin with the protocol (generally http) and end with a trailing slash, if your web server requires it.
# '''lastmod''' (optional) -- date of last time you modified the page. Should be in [http://www.w3.org/TR/NOTE-datetime W3C Datetime format], but you can omit the time portion.
# '''changefreq''' (optional) -- How often the page is likely to change. Ostensibly this helps search engines figure out how often to crawl the page, but just because you put "hourly" don't expect the Google bot to stop by that often. The possible values are: always, hourly, daily, weekly, monthly, yearly and never. Note that you'll probably only want to use "never" for permalink archive pages.
# '''priority''' (optional) -- The priority of this URL relative to other URLs on your site. In other words, how important is this particular URL in the grand scheme of your site? Possible values range from 0.0 - 1.0. If you don't specify a priority, the url will receive a default value of 0.5.
Two things to keep in mind: first only the <code>loc</code> node is actually required, those, as we'll see below, most out-of-the-box sitemap creators make it easy to give out more info than just the URL.
The other thing to keep in mind is that most of the time search engine bots expect your sitemap to live at <code>http://mysite.com/sitemap.xml</code> -- the root level of the site.
Of course that doesn't mean you can't have a simple pointer file at the root level and then the actual sitemaps file somewhere else. In fact, since your sitemaps.xml file cannot exceed 10 megabytes in size, and should have no more than 50,000 URLs per file, if you've got a very large site, you'll need to use a pointer and several separate sitemap.xml files.
To do that create a root sitemaps.xml file with content like this:
<pre>
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>http://mysite/sitemap1.xml</loc>
<lastmod>2008-10-13T18:23:17+00:00</lastmod>
</sitemap>
<sitemap>
<loc>http://mysite.com/sitemap2.xml</loc>
<lastmod>2005-01-01</lastmod>
</sitemap>
</sitemapindex>
</pre>
Then at the URLs sitemap1.xml and sitemap2.xml you'd define the different parts of your sitemap using the same scheme we saw above.
== Creating a Sitemap ==
Okay now that you know what a sitemap file is, how do you go about creating one? Well the thing about sitemaps is that they need to be dynamic, that is, whenever you add a new post or URL to your site, you need to update the sitemap.
For small sites, hand coding might be an option, but even the simplest of sites gets pretty complex pretty quickly.
Fortunately there are some tools that can make the task easier. For instance, you can use the [https://www.google.com/webmasters/tools/docs/en/sitemap-generator.html Google Sitemap Generator], which is a Python script that can create a sitemap for you. The sitemap generator even comes with instructions on how to [https://www.google.com/webmasters/tools/docs/en/sitemap-generator.html#recur set up a cronjob] so that your sitemap stays up to date.
But even using cron isn't ideal in most cases -- especially if you have a site that adds dozens of new pages everyday. Luckily, most the the major publishing systems and web frameworks offer ways to create dynamically updated sitemaps. Here's a few links to get your started:
# '''Movable Type''': Movable Type allows you create as many templates as you'd like, so just create a new sitemaps template and make sure it gets served at the urls: http://mysite.com. To help you get started, check out Niall Kennedy's somewhat dated, but still helpful, tutorial on [http://www.niallkennedy.com/blog/2005/06/google-sitemaps.html Sitemaps in Movable Type]. Also check out the Movable Type wiki which has some more [http://wiki.movabletype.org/Canonical_Google_Sitemap_template sitemap examples].
# '''WordPress''': To generate sitemaps in WordPress just install the [http://wordpress.org/extend/plugins/google-sitemap-generator/ Google XML Sitemaps] plugin. It will handle all the dirty work, automatically updating your sitemap every time you edit or create a post.
# '''Django''': The Django web development framework ships with a built-in sitemap generator. For more details read through [http://docs.djangoproject.com/en/dev/ref/contrib/sitemaps/ the official documentation].
# '''Drupal''': Like Django, Drupal ships with a sitemap tool, head over to the [http://drupal.org/project/xmlsitemap official documentation] for more details.
== Conclusion ==
Sitemaps aren't particularly difficult to use and they can work wonders for search engine ranking. They're no substitute for quality content and inbound links, but if Google and rest see your site is a black hole on the web, sending out an invite and offering up a sitemap is one of the best ways to make friends with search engine spiders.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/ssh_agent.txt b/wired/old/published/Webmonkey/ssh_agent.txt new file mode 100644 index 0000000..d2bcac3 --- /dev/null +++ b/wired/old/published/Webmonkey/ssh_agent.txt @@ -0,0 +1,131 @@ +When it comes to remote logins SSH is a wonderful tool, not only is it secure, it supports public/private key logins meaning that even if someone gets your password, without you private key it won't do them any good (and vice versa). + +However, if you've ever wanted to automate a remote login, for instance, to copy some files for [linktobackuptutorial backup purposes], you know that it's not easy to do an SSH login without a password. + +The easy option -- creating a key pair with no password -- is one of the worst ideas you could implement. It effectively destroys one of the primary benefits of using SSH since taking control of the local machine would give an attacker instant and easy access to your remote machine as well -- two for the price of one. + +The far better option is to use ssh-agent, which is far more secure an doesn't require you to abandon the added protection of using a password with your SSH keys. + +Unfortunately ssh-agent can be intimidating for newcomers and using it varies somewhat according to what operating system you use. + +But fear not my fellow monkeys, roll up your sleeves, grab a strong cup of coffee and we'll wade through ssh-agent. Bear in mind that we'll be using OpenSSH 2.0. If you're stuck with a host that uses v1, you'll need to make some adjustments. + +== What is SSH-Agent == + +OpenSSH, which ships with Mac OS X, most Linux distros and can even be had on Windows via the [http://www.cygwin.org/ CygWin toolset], has a number of lesser known helper components like ssh-agent. + +Ssh-agent acts as a broker which can store and manage private keys on your PC and, most importantly, responding to requests from remote systems to verify your keys. Whenever you login to your machine, you enter your password, which gives ssh-agent permission to store your keys. + +For that point on ssh-agent can handle the authentication requests from remote public keys without requiring you to unlock them each time with a password. It's important to understand that, behind the scenes, private keys never leave the agent. In other words they can't be snatched out by attackers. + +So to start the ssh-agent, just run it from the command line like so: + +<pre> +$ ssh-agent +SSH_AUTH_SOCK=/tmp/ssh-GCYVyDA3sj/agent.9551; export SSH_AUTH_SOCK; +SSH_AGENT_PID=9552; export SSH_AGENT_PID; +echo Agent pid 9552; +</pre> + +Okay so we know how to access it, but how do we use it for secure, password-less remote logins? + +== Create Your SSH Key Pair == + +The first step to using ssh-agent is to create an SSH key pair. To do that just run this command: + +<pre> +ssh-keygen -t rsa +</pre> + +When prompted for a password enter something decently long and secure. + +When SSH is done you should see a message like: +<pre> +Your identification has been saved in /home/yourusername/.ssh/id_rsa. +Your public key has been saved in /home/yourusername/.ssh/id_rsa.pub. +</pre> + +Now we need to add the public key (id_rsa.pub) to our web server. You can either do that using FTP and cut and paste the info into ~/.ssh/authorized_keys, or since your still in the shell, try this line, substituting your login info: + +cat ~/.ssh/id_rsa.pub | ssh username@server.com 'cat >> .ssh/authorized_keys' + +That will add the SSH key we just generated to your webserver's list of authorized keys, which means you can now login to your remote server from your home machine using the key pair rather than just a password. + +'''Note:''' If your remote server is running an older version of ssh, you may have to use the ~/.ssh/authorized_keys2 file. + +Try connecting to your remote server and you should see a message like this: + +<pre> +Enter passphrase for RSA key 'you@example.com': +</pre> + +If not, check with your hosting company and see if there's something peculiar about their setup and adjust your setup accordingly. + +== Starting SSH-Agent == + +So I know what you're thinking, I just told you we'd bypass the password login, but we just added a password to our key pair -- what's up with that? + +This is where ssh-agent comes to our aid. + +The first thing you'll want to do is make sure that ssh-agent starts up whenever you login to your PC. As it turns out, this is one of the trickiest parts. + +=== Linux === + +Most Debian Linux variants (like Ubuntu) start ssh-agent automatically at login, but if not don't worry, you just need to add a line to your .xsession file (if you're not a gnome user, just substitute the windows manager of your choice): +<pre> +ssh-agent gnome-session +</pre> + +If Debian isn't your bag, check out the [http://gentoo-wiki.com/HOWTO_ssh-agent_the_easy_way ssh-agent tutorial on the Gentoo wiki]. + +=== Mac OS X === + +On Mac OS X there are two graphical programs which can handle the task for you (as well as some additional key management tasks). Check out [http://www.phil.uu.nl/~xges/ssh/ SSH Agent] or [http://www.sshkeychain.org/ SSHKeychain]. + +=== Windows === + +For Windows users the situation is more complex. The most popular method seems to use [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]. If you have some experience be sure to add it here. + +=== Custom Scripts === + +Each of these methods should get ssh-agent up and running in graphical environments. In case you need to access ssh-agent without logging into to window system, you can manually set two environment variables: SSH_AUTH_SOCK and SSH_AGENT_PID. + +To do that we'll use a shell script that we'll add to our shell login script. there are several ways you can do this, but script I use comes from Mark A. Hershberger, who has three variations available in his [http://mah.everybody.org/docs/ssh tutorial on ssh-agent]. + +Here's the outline of the script, you may need to adjust the paths depending on your setup. + +<pre> +#!/bin/sh +SSHAGENT=/usr/bin/ssh-agent +SSHAGENTARGS="-s" +if [ -z "$SSH_AUTH_SOCK" -a -x "$SSHAGENT" ]; then + eval `$SSHAGENT $SSHAGENTARGS` + trap "kill $SSH_AGENT_PID" 0 +fi +</pre> + +Just add that script to your ~./profile startup script and you'll have ssh-agent access even without a graphical login. + +== Adding the Keys to SSH-Agent == + +Now we just need to add the keys we created earlier to ssh-agent. Thankfully that's a one liner: + +<pre> +ssh-add ~/.ssh/id_rsa +</pre> + +Type your password for the last time and now you should be able to perform remote logins without a password. + +Test it out: + +<pre> +ssh username@example.com +</pre> + +Assuming that works you're good to go. The only thing to remember is that if you restart your machine you'll need to enter your password once to get the ssh-agent session started. + +'''Tip:''' if you're running some cron scripts that do remote logins (one of the main points of ssh-agent) consider creating a separate key pair for those logins. It adds another layer of security and you can use the additional <code>command</code> argument in your authorized_keys file to limit what those logins can do (see [tutorial on remote backups] for more info on limiting script access. + +== Conclusion == + +So now we've securely overcome the old password problem for remote logins. If you're having trouble or want to learn more about ssh-agent, check out [http://mah.everybody.org/docs/ssh Mark Hershberger's tutorial] and be sure to read Steve Friedl's [http://www.unixwiz.net/techtips/ssh-agent-forwarding.html Illustrated Guide to SSH Agent Forwarding] for more on how SSH and ssh-agent work. diff --git a/wired/old/published/Webmonkey/tutorial_list.txt b/wired/old/published/Webmonkey/tutorial_list.txt new file mode 100644 index 0000000..e3e0f50 --- /dev/null +++ b/wired/old/published/Webmonkey/tutorial_list.txt @@ -0,0 +1,17 @@ +Webmonkey + +Django part 5 integrating delicious +django part 6 wrap up + +Python part 2 (continuing the first one, about half written) +Intro to XMPP (not written, but I've noticed it's the hot shit lately) +Python tips and tricks (some things I wish I had known when I started +with Python, time savers etc, half done) +Machine Tags + +How To: + +Get Started With BitTorrent +Control Your Torrents Remotely +Automate Your Torrent Downloads (timing/bandwidth optimization) +Back Up Your Bookmarks Online Privately
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/ubiquity.txt b/wired/old/published/Webmonkey/ubiquity.txt new file mode 100644 index 0000000..85e0445 --- /dev/null +++ b/wired/old/published/Webmonkey/ubiquity.txt @@ -0,0 +1,58 @@ +Ubiquity is a new and experimental Firefox plugin from Mozilla Labs. The project is in its infancy but the goal is the create an easy-to-use, on-the-fly mashup tool that can combine web services using natural language commands. + +Ubiquity is basically an attempt to build a user interface for the open web at large. It’s a command-line user interface, which, for most people, may not sound at all like an “easier” way to communicate with an application. But the important thing that Ubiquity does is allow users to manipulate web services by typing commands into the browser using plain language. + +In practice Ubiquity works something like Mac OS X app Quicksilver or some of the clones it has inspired on other platforms. Hit the shortcut key (ctrl-space by default) and the Ubiquity overlay pops up. Type the name of a command and hit enter. That's it. + +For example there's twitter command. To use it just activate Ubiquity, type twitter, enter your message and press enter -- you just posted a message. Ubiquity gets more useful when you use it interact with the web. For instance, highlight a word you don't know on a webpage. Activate Ubiquity and type wiki this. Ubiquity will then look up the word on Wikipedia. + +other built-in commands include the ability to embed a map in an e-mail, select some Craigslist items you're interested in and type <code>map</code>, Ubiquity will show you the seller's location on a Google Map. + +It's a quite powerful idea and, if it catches on, may well change the way you interact with your browser. + +But the real power is in the ability to write and share your own custom Ubiquity scripts, which is what we're about to dive in and do. + +One thing to keep in mind though is that is a very alpha project. Mozilla has already said the radical changes to the Ubiquity API are not just likely, they're almost certain. That means that what works today, may not tomorrow, but we're early adopters and that's just the price we have to pay. + +Plus, since this is wiki page, we can all work together to keep things up-to-date. + +Ready to dive in? + +== Overview == + +Ubiquity commands are written in JavaScript, so having something of a JavaScript background helps, but as you'll see it's not too hard to pick it up as we go. Before we get started, head over to Mozilla Labs and install Ubiquity. + +Also be sure to check out the [https://wiki.mozilla.org/Labs/Ubiquity/Ubiquity_0.1_Author_Tutorial very thorough tutorial] on the Mozilla site. It covers a number of things that we won't be delving into right now. + +The other link you'll find invaluable is the Ubiquity command Editor. You can open it by activating Ubiquity and typing <code>command-editor</code> or just click this link: [chrome://ubiquity/content/editor.html chrome://ubiquity/content/editor.html] + +The command editor is where we'll be writing and testing our scripts. It's no subsistute for a text editor, but it does a good job of showing your scripts in action without needing to restart Firefox. + +The last thing we recommend is Firebug, which will be helpful in sorting out any JavaScript error in your scripts. + +== Hello World == + +Okay, now that you have Ubiquity installed and the command editor open in your browser, let's start with a simple hello world app. Paste this code into the Ubiquity command editor: + +<pre> +function cmd_hello_world() { + displayMessage( "Hello, World!") +} + +</pre> + +Hit the Ubiquity shortcut, type "hello-world", hit return and you should see a hello world notice popup (note that on Mac OS X, the notices are displayed using Growl, so you'll need to have that installed otherwise you won't see anything). + +Now that we have everything set up and working it's time to dive into more serious code. + +== ma.gnolia bookmarker == + +Here's a script that will take the current webpage and send it to ma.gnolia. If you have any text on the page highlighted it will be used for the description and you can input tags at the Ubiquity prompt. + +Here's the code: + +<pre> + +</pre> + +To use the script just activate Ubiquity and type "magnolia." Enter your tags and hit return. You'll be prompted to login and once you do your bookmark will be added.
\ No newline at end of file diff --git a/wired/old/published/Webmonkey/webmonkeystats-11.txt b/wired/old/published/Webmonkey/webmonkeystats-11.txt new file mode 100644 index 0000000..dbfe404 --- /dev/null +++ b/wired/old/published/Webmonkey/webmonkeystats-11.txt @@ -0,0 +1,72 @@ +Jan: +Number of posts: 30 +pageviews: 655,822 +uniques: 445,783 +visitors: 355,001 + + +Feb: +number of posts: 25 +pageviews: 701,696 +uniques: 491,277 +visitors: 399,642 + +Mar: +number of posts: 31 +pageviews: 834,465 +uniques: 591,817 +visitors: 478,730 + +April: +number of posts: 29 +pageviews: 733,035 +uniques: 519,364 +visitors: 421,174 + +May: +number of posts: 29 +pageviews: 781,256 +uniques: 531,031 +visitors: 428,693 + +June: +number of posts: 6 +pageviews: 534,327 +uniques: 374,656 +visitors: 301,689 + +July: +number of posts: 9 +pageviews: 515,483 +uniques: 366,588 +visitors: 296,743 + +August: +number of posts: 28 +pageviews: 730,222 +uniques: 431,695 +visitors: 535,329 + +September: +number of posts: 29 +pageviews: 687,866 +uniques: 399,215 +visitors: 493,112 + +October +number of posts: 26 +pageviews: 727,282 +uniques: 422,830 +visitors: 519,876 + +November +number of posts: 36 +pageviews: 1,083,829 +uniques: 655,346 +visitors: 797,591 + +December +number of posts: 25 +pageviews: 793,609 +uniques: 486,765 +visitors: 594,077 diff --git a/wired/old/published/Webmonkey/wm.jpg b/wired/old/published/Webmonkey/wm.jpg Binary files differnew file mode 100644 index 0000000..d28ac56 --- /dev/null +++ b/wired/old/published/Webmonkey/wm.jpg |