diff options
Diffstat (limited to 'old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu')
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/FotoMagico.txt | 1 | ||||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/ZZ7F54D756.jpg | bin | 4884 -> 0 bytes | |||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/django-php.txt | 1 | ||||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto-logo.jpg | bin | 9114 -> 0 bytes | |||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto.jpg | bin | 55513 -> 0 bytes | |||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/nightly.txt | 1 | ||||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/raw.jpg | bin | 9364 -> 0 bytes | |||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/reboot.txt | 1 | ||||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/roxio.txt | 1 | ||||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.jpg | bin | 14157 -> 0 bytes | |||
-rw-r--r-- | old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.txt | 1 |
11 files changed, 0 insertions, 6 deletions
diff --git a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/FotoMagico.txt b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/FotoMagico.txt deleted file mode 100644 index 8c5ea7c..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/FotoMagico.txt +++ /dev/null @@ -1 +0,0 @@ -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/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/ZZ7F54D756.jpg b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/ZZ7F54D756.jpg Binary files differdeleted file mode 100644 index f7688f1..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/ZZ7F54D756.jpg +++ /dev/null diff --git a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/django-php.txt b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/django-php.txt deleted file mode 100644 index ee4c06a..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/django-php.txt +++ /dev/null @@ -1 +0,0 @@ -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/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto-logo.jpg b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto-logo.jpg Binary files differdeleted file mode 100644 index 7e5a31d..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto-logo.jpg +++ /dev/null diff --git a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto.jpg b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto.jpg Binary files differdeleted file mode 100644 index 7113cd9..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/foto.jpg +++ /dev/null diff --git a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/nightly.txt b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/nightly.txt deleted file mode 100644 index b3f2f58..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/nightly.txt +++ /dev/null @@ -1 +0,0 @@ -<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/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/raw.jpg b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/raw.jpg Binary files differdeleted file mode 100644 index 04aff71..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/raw.jpg +++ /dev/null diff --git a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/reboot.txt b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/reboot.txt deleted file mode 100644 index 4486ec8..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/reboot.txt +++ /dev/null @@ -1 +0,0 @@ -<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/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/roxio.txt b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/roxio.txt deleted file mode 100644 index c51a824..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/roxio.txt +++ /dev/null @@ -1 +0,0 @@ -<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/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.jpg b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.jpg Binary files differdeleted file mode 100644 index aec4d35..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.jpg +++ /dev/null diff --git a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.txt b/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.txt deleted file mode 100644 index 2683cf3..0000000 --- a/old/published/Webmonkey/Monkey_Bites/2007/01.08.07/Thu/snap.txt +++ /dev/null @@ -1 +0,0 @@ -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 |