30

11/09

Logitech Squeezebox Radio – A Good Quality Unit For the Price

11:05 pm by Admin. Filed under: Geek Gagdets

A Review of the Logitech Squeezebox Radio

What are the features and benfits of the squeezebox radio from Logitech? Is the squeezebox good value for money? Find out here.

Of course, listening to music is a favorite pastime for many people and with internet radio available, you will find far more people who enjoy music in their free time. Logitech Squeezebox RadioThe squeezebox radio from Logitech is one such device that’s able to play radio from the web easily and in addition holds a number of intuitive functions which make it superior to competitive models. It’s manufactured by Logitech which has been a trusted manufacturer for many years and for this reason the buyer sure of getting a reliable item.

The device is really a mono system but even then the sound quality is impressive. It’s more than sufficient for that kitchen, the living room, office, or any average sized room. The item is particularly beneficial for all who possess a Pandora account because the individual can program Pandora radio stations within the gadget with the six preset buttons available. The set up of the radio is not a worry as on screen instructions are shown when the device is connected, which are fairly simple to follow. The sound level is actually excellent for that small size of the speakers and proves the efficiency of the design. There is a lot of functionality built in the gadget and also the individual may also add applications like Last FM, Pandora, and also a podcast aggregator. The radio shows the time and date when on stand by and it can also be utilized as an alarm whenever needed.

The display of the unit is sharp and bright. The radio could be connected wirelessly to the internet or the user’s pc. When the user installs the squeezebox server on his pc, music from external devices such as ipods and multimedia hard drives can be played utilizing the radio. There’s also applications that may appeal to some users like facebook, flickr photos and twitter. The style of the unit is compact and also light in weight making it convenient to carry it throughout the house. The build quality of the radio is also good having a sturdy construction and nice materials utilized in the manufacture. The username and password of the users wifi connection should be entered using the click wheel since it is the only part utilized for data entry. This is a pretty basic task that has to be done during the set up and the radio is all set to entertain the listener.

The radio stops working when the computer turns off and also the software/firmware needs an update to fix it. There is also no remote control contained in the box which makes it hard for the user to operate the unit from a distance. A rechargeable battery pack is not yet obtainable and this might be disappointing for some prospect buyers. The radio does not display the broadcast quality or the rating of the station anywhere on the display which would have been helpful otherwise.

However, all in all, the Logitech squeezebox radio is a wonderful little gadget that has a lot of great features and though you may find better models available, this is actually the best in its price class do it makes it a good buying decision if it has the features you want.

Geek Gadgets & Gifts

26

11/09

David Tennant in Fright Night

12:04 pm by Admin. Filed under: Geek Movies

Remember Fright Night? You know, the vampire movie from 1985. Back when vampires were vampires and didn’t sparkle? If you never saw this movie, see the original, as there is a 50/50 chance it’s about to be ruined.

I say this as most remakes suck. They are either remade by people who don’t know what they are doing or just want to make a quick buck off the current trend (In this case, vampires.)  and half ass it.

HOWEVER! David Tennant will be playing a ‘updated’  Peter Vincent. The character will be trading in his gentle old man appearance and horror tv show titled “Fright Night”. Instead, the new version has a Hard Rock Hotel show called “Fright Night”, is an illusionist  and looks more like a Chris Angel look like.

To me, David Tennant gives the movie a chance. Even if the writers botch the story and the director seems to have steered it into a wall. David Tennant could probably  carry the movie with one hand tied behind his back.

[Source]

Digg This  Reddit This  Stumble Now!  Buzz This  Vote on DZone  Share on Facebook  Bookmark this on Delicious  Kick It on DotNetKicks.com  Shout it  Share on LinkedIn  Bookmark this on Technorati  Post on Twitter  Google Buzz (aka. Google Reader)  

MandyMadrox.com

24

11/09

Mini success!

1:10 pm by Admin. Filed under: Geek Clothes
Tags: ,

Finally, I met with a nice vendor who makes really high quality components for companies ranging from Michael Kors to Disney! They even sent me back to my office with a huge library of components. And I have a very promising appointment with a leather supplier tomorrow, and some appointments later in the week. Things are looking up!

I also found out later from some fashion designer friends that they haven’t always had the best experiences at trade shows. It’s not just me! Most of the vendors I am working with are contacts from previous jobs.

DIANA ENG: Fashion Nerd

16

11/09

Python Essential Reference 4th Ed.

11:41 am by Admin. Filed under: Geek Books

It has been ten years since David Beazley wrote the first edition of Python Essential Reference. The book has proven itself as a valuable resource to Python developers and has been kept current over those ten years, with the fourth edition coming at an interesting time for Python. Python 3 was a major release that broke backwards compatibility. Python 3 has been around for a year now. That said, the current download page at the official Python site states, “If you don’t know which version to use, start with Python 2.6.4; more existing third party software is compatible with Python 2 than Python 3 right now.” Beazley in keeping with the pragmatic roots of a reference that sticks to what is ‘essential’ has removed the coverage on features from 2 that were removed from 3. At the same time, the primary focus for new features that came with 3 is limited to those that have been back-ported to 2. This approach, born out of a desire to keep the reference relevant, provides a blended approach that is above all else practical.

The end result of that choice is a reference document consisting of those parts of Python that are shared between versions 2 and 3. This is a significant portion of the language and I think this approach is really what will give this reference more traction than many of the other guides that focus purely on 3. I think that those are valuable and over time the balance will shift but as of right now, for a little while to come, this book takes the most realistic approach. That feels very fuzzy, but I have no idea how long it will be until Python 3 truly is the dominant version and Python 2 is truly put to bed.

If I had to guess how Beazley’s Python Essential Reference has held in there over the years, the key would be that there is a lot of what a developer needs and very little of what she doesn’t need. There is a twenty-four page tutorial introduction, but this is not a guide on how to program or how to use Python for beginners. An experienced programmer could probably use this reference to shift to Python as a new language, but someone completely new to writing code would probably not want to start here. A quick look at the table of contents shows that an explanation of the language itself is covered in under 200 pages. Extending and embedding Python also get their own section, but close to 400 pages is given to the Python library.

An inevitable question is what one will gain with this reference over the online documentation. A good example to see how things vary is to look at chapter nineteen, Operating System Services and the online documentation for Generic Operating System Services. The online documentation is very thorough, and covers each piece of the library starting with os and io, building from there. While every facet is documented much of it is rather brief. For example section 16.2.3. Raw File I/O is a very straightforward listing of the very low level functionality available via io.FileIO. In contrast, looking at the 3.1.1 Docs for Raw IO shows that parameters for FileIO changed with that version. Looking to the documentation for 2.7a1 Raw File I/O shows that these changes are being back-ported to Python 2.

In Python Essential Reference none of this hunting down changes and checking to see if they are coming to 2 are necessary. Beazley shows them in his documentation. This is the strength of his choice on how to handle these types of situations. On top of that, Beazley provides more than the online documents by including four paragraphs of additional information on Raw I/O and when its use is appropriate. This added content is probably available googling around for it, but then I have to take the time to check dates on posts to see if things are still current and in general just hope that things are accurate. I have never read a technical book that was completely error free, and there are probably at the very least some typos in Python Essential Reference, though I haven’t caught any of them on my read through or use of the book yet. But the important thing is that I don’t expect the book to be perfect, rather I value it for being a known quantity. I am aware of just when the material was compiled, who put it together and I have it all in one place.

errno symbols is not exhaustive and oddly enough is not ordered alphabetically. Beazley provides two lists for errno symbols. They are provided in alphabetical order, have a description and are grouped as POSIX error codes and Windows error codes. A quick glance at these tables in a skimming of the book might lead one to believe that this is just a simple quick grab from already available sources, but that isn’t the case. There is real value added even here.

The index is solid. It would seem that one should be able to take this for granted with a technical reference but I’ve seen some sad exceptions. Between the thorough index and the detailed table of contents I’ve never had to spend more than a few seconds looking for what I need. This is the result of those tools as well as the fact that this is not an exhaustive reference. After initially reading through the book for this review, I’ve taken some time just to use it day to day, as I doubt many will be reading it from front to back. I don’t use Python professionally. I’m purely a hobbyist when it comes to programming, but I’ve found that if I want to get the most out of the time I do have to play with personal projects, I want this book close. I’m not cranking out code that fast to begin with and so I need all the help I can get. I’ve found that Beazley seems to have hit that sweet spot where he gives enough information to get me where I need to be without bogging down in too many details or the things that I just don’t need to know. I imagine this proper balance of information is due to Beazley’s extensive experience with Python and that of Noah Gift the technical editor for the book.

I’ve mentioned repeatedly that I approve of how the shift between Python 2 and 3 has been handled. Beazley hasn’t completely integrated everything and left some of the unique new features of 3 out in the cold. There is an appendix that deals specifically with Python 3. It is short but does have some value. New features, common pitfalls for those making the move from 2 to 3 and how to run both at the same time in a single environment are covered. This is helpful and keeps my desk a little neater, though I think if I were going to be spending extensive time working with Python 3 then I would probably want to have another reference on hand.

If you are a week-end hacker like me, or someone that is writing Python on the clock, I think that this compact reference is very useful. I don’t have any trouble running across huge technical books that do come in handy for any project that requires something heavy. I also see a lot of little books that seem to be quickly produced summaries of what is already out there, spending most of their short content on fluff. Every so often though, someone hits that sweet spot of concise usefulness. Beazley did this with Python Essential Reference and this new edition continues that history in strong fashion.

Title: Python Essential Reference 4th ed.
Author: David M. Beazley
Publisher: Addison-Wesley Professional
Pages: 738
ISBN: 978-0-672-32978-4
Rating: 9/10


Geek Book

13

11/09

Reminder – Win An iPod Shuffle – Geeky Gadgets Giveaway

10:50 pm by Admin. Filed under: Geek Gagdets

Just a quick reminder to all our readers who are yet to enter this weeks Geeky Gadgets giveaway. This weeks prize is a an iPod Shuffle, and the lucky winner can also choose which color Shuffle they would like.

The contest is completely free to enter and open to Geeky Gadgets readers from anywhere in the world. To enter the contest just follow the instructions over at the contest entry page at the link below.

iPod Shuffle

Win An iPod Shuffle – Geeky Gadgets Giveaway

Please note, comments are closed on this page as people have been leaving comments here instead of on the contest page. Please leave your comment on the contest entry page at the link above.


Geeky-Gadgets

10

11/09

Creation of Project Server PWA instance fails, timer jobs, clearing the cache….

4:34 pm by Admin. Filed under: Geek Clothes

I recently attempted to create two new Project Server PWA instances through Central Admin on a MOSS 2007/Project Server farm. I went to the SSP and clicked on Project Web Access Sites under Project Server. I then clicked on “Create Project Web Access Site” and filled out all the required information, including unique database names for the new site. The creation of the site would start, then it would spin and spin and spin….after a few minutes it would fail with a message saying “Failed – check Event Logs.”  The event logs showed no errors. Nothing at all related to the PWA instance failing.

The ULS logs did show errors indicating two of the three servers in the farm were trying to update the SSP and were causing conflict. There was nothing else to indicate what was causing the error.

I searched the internet and found nothing that applied to our situation. As a matter of fact, there was very little on the error at all. There were a couple of posts about the binaries not being installed on the server that housed Project Server, but that was about it. MOSS 2007 was installed on the same server and I had successfully created PWA instances in the past.

After reviewing everything on the server to make sure there weren’t any problems, I got Microsoft involved. They told me that to prevent each server from having to make SQL calls to pull information from the configuration database, data is cached on the servers. Sometimes this data will become corrupt and have to be cleared out and rebuilt. The process for clearing the cache can be found here.

Although the article states it resolves issues with timer jobs failing and does not state this will resolve the issue of PWA instance creations failing, it did do the trick. After the steps were followed new PWA instances could be created without errors.

I did a little more research on timer jobs and found the PWASSPSubmitSiteCreationTimerJob is responsible for creating new PWA instances. Apparently this was the timer job the corrupted cache was interfering with.

Now there is an article that ties the failing of PWA instance creation to timer job failures and clearing the cache. Maybe it will save someone else some time. ;)


08

11/09

Facebook Event for GBD at Fastaval 09

9:54 am by Admin. Filed under: Geek Books

Geek Book Drive at Fastaval 09 has a Facebook event here. Participants are using the event Wall to list books they are pledging. Looking good so far!

Fastaval 09 – the world’s best and Denmark’s largest role-playing con – is held this week at Skæring Skole, Skæring Skolevej, Egå, outside Århus, Denmark. The book drive is in effect during the whole convention (8.-12.4.09) and will benefit the school library at the Østerskov Efterskole role-playing game boarding school.

We’ll keep you posted with a complete list of pledged books and the story of what happens next!


Geek Book Drive

07

11/09

Impressive Fastaval Donations Delivered

9:34 pm by Admin. Filed under: Geek Books

Photo 73

The generous donations of the Fastavalgoers have been delivered to the Østerskov Efterskole this week (with the exception of the Absurth Wheel of Fate and a box of toy phones that accidentally got left behind and will be delivered soon enough). So: what was the tally?

135 books, mostly fiction, but also including things like guides to leatherwork and six text books for beginner’s Japanese; 7 films on DVD and VHS; 39 games, the majority of these hardcover role-playing game rule books and source books; 36 issues of Swedish larp magazine Fëa Livia and one other detailed vintage brochure. Game design collective Absurth topped off their massive moving box full of stuff with their classic game mechanism the Wheel of Fate – and a corporate sponsor made a donation of faux mobile phones!

Watch this space for further updates on specific titles, Østerskov reactions, and the next Geek Book Drive! Once again – a huge thanks to everyone who donated and helped!


Geek Book Drive

06

11/09

More, Please: Lego Star Wars Short Film “Bombad Bounty”

6:10 am by Admin. Filed under: Geek Movies

There’s never anything not-delightful about Lego Star Wars productions.

Even when Jar Jar Binks has a starring role, he doesn’t have any speaking lines. Plus, the comedy actually works. In other words, all signs point to George Lucas having no part of this.

Via Nerd Approved, who thanks Yahweh for small, Lucas-less favors.

Find custom Star Wars Lego minifigs on Ebay




Great White Snark

05

11/09

Actor Ryan Kwanten – Nov 04,2010

8:38 pm by Admin. Filed under: Geek Movies

Actor Ryan Kwanten

True Blood actor Ryan Kwanten (Jason Stackhouse) discusses his new film Red Hill alongside writer/director Patrick Hughes. This gritty Western set in the Australian outback opens in limited release on Friday, November 5.


movie geeks united | ryan kwanten | red hill | patrick hughes | true blood


Movie Geeks United | Blog Talk Radio Feed

Older Posts »