Daily del.icio.us for June 26th through July 5th

Advertisement

Daily del.icio.us for March 7th through March 11th

  • Coding Horror: Why Can’t Error Messages Be Fun? – Chrome is a joy to use, and in my opinion at least, it's the first true advance in web browser technology since the heady days of Internet Explorer 4.0. Chrome is filled with so many thoughtful details, so many reimaginings of web browser functionality as a true application platform, it's hard to even list them all.
  • Write your own Twitter application – JavaWorld – In this article you'll learn how to build your own Twitter service: an application that accesses tweets via the Twitter API and archives them in the form of a PDF file
  • Ooma rebounds after cutting price for service – After it stumbled out of the gate in July 2007, it's hard to imagine that Palo Alto's Ooma would look forward to an economic downturn. But the startup, which offers free home phone service with the purchase of an Ooma box, has found a new lease on life after cutting its price and expanding its distribution
  • JumpBox | Instant Infrastructure | JumpBox Inc. – We simplify server software deployment with pre-built, pre-configured software applications packaged for deployment on virtual computing platforms.
  • Top 50 New Software Development Books | Agile Zone – In this post I proudly present the Top 50 New Software Development Books, where new means "less than two years old". This list was created using a weighed mix of the following criteria:
  • X2O Blog // We Are Mammoth, Inc. – X2O is a web-based data modeling platform for Adobe® Flex® and Flash® apps.
  • MIT’s Introduction to Algorithms, Lectures 20 and 21: Parallel Algorithms – good coders code, great reuse – This is the thirteenth post in an article series about MIT’s lecture course “Introduction to Algorithms.” In this post I will review lectures twenty and twenty-one on parallel algorithms. These lectures cover the basics of multithreaded programming and multithreaded algorithms.
  • Why HTML – The short and sweet reason is simply this: XHTML offers no compelling advantage — to me — over HTML, but even if it did it would also offer increased complexity and uncertainty that make it unappealing to me.
  • Rough Type: Nicholas Carr’s Blog: The coming of the megacomputer – In a talk yesterday, reports the Financial Times' Richard Waters, the head of Microsoft Research, Rick Rashid, said that about 20 percent of all the server computers being sold in the world "are now being bought by a small handful of internet companies," including Microsoft, Google, Yahoo and Amazon
  • Coding Horror: HTML Validation: Does It Matter? – That said, validation does have its charms. There were a few things that the validation process exposed in our HTML markup that were clearly wrong — an orphaned tag here, and a few inconsistencies in the way we applied tags there. Mark Pilgrim makes the case for validation:

Daily del.icio.us for February 10th through February 11th

  • JsonML (JSON Markup Language) – JsonML (JSON Markup Language) is an application of the JSON (JavaScript Object Notation) data-interchange format. The purpose of JsonML is to provide a compact format for transporting XML-based data via JSON
  • Fresh Update: IntelliJ IDEA 8.1 | JetBrains IntelliJ IDEA Blog – Fresh news, everyone! Hope you share our point of view on new features: there’s simply never enough of them. And performance: you can always get more of it. This is why we’re happy to tell you that IntelliJ IDEA 8.1 is just released. It’s been a really short time since we aired version 8, but thanks to working six days a week without lunch breaks we managed to deliver you this bunch of improvements:
  • Brett Favre tells New York Jets he is retiring – ESPN – Without the tearful public ceremony that accompanied his retirement announcement from the Green Bay Packers just 11 months ago, quarterback Brett Favre has told the New York Jets he is retiring.
  • Scobleizer — Tech geek blogger » Blog Archive Chris Pirillo is wrong about best pocket video cameras « – The Flip is the best because it is the best designed and smallest. It is — in talking with my friends — the most likely to end up in their pocket. A camera carried is a camera that is used and a camera that is used, even if it has slightly lower quality that some other camera, is one that’s better.
  • Enterprise Java Community: Java EE 6 Overview – The details of Java EE 6 have been getting hashed out for quite a few months in the JSR 316 expert group, which I am part of. The goal of this article is to give you an overview of the changes in Java EE 6 as well as encourage your feedback
  • TeamPostgreSQL released, showcases Google Web Toolkit – Webworks S.A. just released TeamPostgreSQL, their web administration and team platform for the PostgreSQL database.

    A JEE web application with a rich AJAX client, the application serves as a showcase of what GWT can deliver in this arena, featuring a complex yet highly dynamic, customizable user interface and fast service invocations that are immediately reflected on the client.

  • FinancialStability.gov – On Tuesday, February 10th, Treasury Secretary Timothy Geithner outlined a comprehensive plan to restore stability to our financial system. In the address, Secretary Geithner discussed the Obama Administration’s strategy to strengthen our economy by getting credit flowing again to families and businesses, while imposing new measures and conditions to strengthen accountability, oversight and transparency in how taxpayer dollars are spent
  • 1440 Wall Street: Desperation Time for America as Geithner Lays an Egg – It would appear Timothy Geithner#039;s plan to save the world is reaching an impasse – what is going on behind closed doors in Washington?
  • InfoQ: A Message Type Architecture for SOA – One key aspect of SOA Governance that is often overlooked is how Data Governance can complement SOA Governance. Even though they both have very different objectives, they both share a set of metadata often called the “Enterprise Data Model”
  • Every Swear Word on Every Episode of the Sopranos, Ever, in Chronological Order. (video) – Boing Boing – A fun, weird little experiment by director Victor Solomon. quot;I#039;ve been chopping away at it for a year, here and there between other jobs,quot; he explains.

    I was laughing for the first 30 seconds, then kinda hypnotized, then just creeped out, and still couldn#039;t stop watching. Simple and brilliant.

  • DynamicJasper :: Making Jasper Reports dynamic – DynamicJasper (DJ) is an open source free library that hides the complexity of Jasper Reports, it helps developers to save time when designing simple/medium complexity reports generating the layout of the report elements automatically.

Daily del.icio.us for December 27th through December 30th

  • La terraza de Aravaca: Lessons learned using GWT, Axis and JPA simultaneously – Here you have some lessons learned that should be taken into account when working with the Google Web Toolkit, Axis and any of the JPA implementations out there
  • PDF embed code generator – This code generator can generate two kinds of PDF embedding code: pure standards-compliant HTML markup, or JavaScript-based PDFObject code. The generator also makes it easy to customize your embed code using Adobe's optional PDF Open parameters.
  • JSP – Create Custom Tags for Beginners | Techie Zone – JSP Tags acts as a plugin to your JSP pages. These are basically Java Classes that get executed when jsp page get rendered by server and browser. JSP comes with in build Tags like jsp:include, jsp:forward, but they are not sufficient to cater to the Web World. To overcome this problem you can design tags based on your business requirement. This article will guide you how we can create an custom tags for JSP.
  • Design Pattern Interview Questions Part (3) – C#, ASP.Net, VB.Net – To give you a practical understanding i have put all these design patterns in a video format and uploaded on http://www.questpond.com/FreeDesign1.htm . You can visit http://www.questpond.com/ and download the complete architecture interview questions PDF which covers SOA , UML , Design patterns , Togaf , OOPs etc.
  • Memoization in Java Using Dynamic Proxy Classes | O’Reilly Media – Memoizing a function adds a transparent caching wrapper to the function, so that function values that have already been calculated are returned from a cache rather than being recomputed each time. Memoization can provide significant performance gains for computing-intensive calls. It is also a reusable solution to adding caching to arbitrary routines.
  • YUI Theater — Douglas Crockford: "Ajax Performance" » Yahoo! User Interface Blog – Douglas Crockford returns to YUI Theater with another chapter in his evolving lecture series. This session, “Ajax Performance,” debunks common misconceptions about the relationship between JavaScript and performance and gives engineers a core focus for improving the performance of web apps
  • giver – Google Code – Giver is a simple file sharing desktop application. Other people running Giver on your network are automatically discovered and you can send files to them by simply dragging the files to their photo or icon shown in Giver. There is no knowledge or set up needed beyond what the person looks like or their name to use Giver.
  • Google, WalMart, and MyBarackObama.com: The Power of the Real Time Enterprise – O’Reilly Radar – What do Google, WalMart, and MyBarackObama.com have in common, besides their extraordinary success? They are organizations that are infused with IT in such a way that it leads to a qualitative change in their entire business
  • Fast and ‘free’ beats steady and paid on MySQL • The Register – It appears that since being acquired by Sun Microsystems, MySQL's process has been slowed by a 30,000-person bureaucracy, and the open source community has the patience of a six year old.
  • InfoQ: Architecting for Green Computing – In an article entitled “Green Maturity Model for Virtualization”, Kevin Francis and Peter Richardson explain how to use virtualization to reduce energy consumption. They see 4 types of computing: Local, Logical, Data Center and Cloud Computing, the last offering the most advanced form of virtualization and therefore representing the greenest computing

Daily del.icio.us for November 14th through November 18th

  • Adobe bringing full-fledged Flash to phones | Business Tech – CNET News – Inspired by a new generation of smartphones, Adobe Systems has begun a new, higher-power effort to spread its Flash technology to mobile devices. The company has worked for years on a lightweight incarnation of its Flash technology for mobile phones, but it now is working to bring the full-fledged Flash Player 10 to higher-end smartphones
  • Expanding the Cloud: Amazon CloudFront – All Things Distributed – Today marks the launch of Amazon CloudFront, the new Amazon Web Service for content delivery. It integrates seamlessly with Amazon S3 to provide low-latency distribution of content with high data transfer speeds through a world-wide network of edge locations.
  • Enterprise JBoss JBPM: Creating A Scalable, Standards-Compliant and Cost-Effective SOA Environment – CIO.com – Business Technology Leadership – This excerpt from the upcoming book, Open Source SOA, addresses the Service Component Architecture (SCA), and its sister technology, Service Data Objects (SDO), emerging standards used in service-oriented architecture for creating multi-protocol, multi-language services based on reusable components.
  • Update On Google iPhone Voice Recognition App: Look For It On Monday – Google could have launched for the Android first and pushed sales of phones on their platform. They didn’t, and Apple should have embraced them for that.
  • A List Apart: Articles: In Search of the Holy Grail – Use the grail wisely, and it can be a particularly handy (and clutter-free) addition to your bag of CSS tricks
  • Choosing the best Doctype for your website – The Web Squeeze – In 2004, after a W3C workshop, Apple, Mozilla and Opera were becoming increasingly concerned about the W3C’s direction with XHTML, lack of interest in HTML and apparent disregard for the needs of real-world authors. So, in response, these organisations set out to with a mission to address these concerns and the Web Hypertext Application Technology Working Group was born
  • YouTube – Google Mobile App for iPhone with Voice Search – Mike LeBeau, an engineer on the Google mobile team, gives an overview of the new Google Mobile App for iPhone, now with Voice Search and My Location. You can speak your queries to Google Mobile Ap..
  • The YouTube Presidency | 44 | washingtonpost.com – Today, President-elect Obama will record the weekly Democratic address not just on radio but also on video — a first. The address, typically four minutes long, will be turned into a YouTube video and posted on Obama's transition site, Change.gov, once the radio address is made public on Saturday morning.
  • InfoQ: OSGi in the Enterprise – With the recent announcement of GlassFish v3 “Prelude”, Sun's OSGi-based Java EE 6 server, the use of OSGi across the enterprise has grown to encompass almost all of the back-end servers. A recent press release by the OSGi alliance listed the vendors and the technology that uses OSGi:
  • InfoQ: Behind LINQ – And Beyond – In this presentation from the JVM Languages Summit 2008, Mads Torgersen discusses LINQ, declarative programming and metaprogramming in C#, examples of LINQ syntax and usage, lazy evaluation of LINQ queries, extension methods, lambda expressions, LINQ-to-SQL, LINQ expressions and metaprogramming, expression trees, how the .Net Dynamic Language Runtime (DLR) works, PLINQ, and the future of the DLR
  • InfoQ: The Architecture of Multi-Enterprise Business Applications – Jack Greenfield and Wade Wegner introduced the concept of Multi-Enterprise Business Applications (MEBAs) at the PDC last week. MEBAs are business applications that leverage the Cloud to enable multiple partners to work together as part as common business processes.

Daily del.icio.us for November 9th through November 13th

Daily del.icio.us for October 18th through October 20th

Daily del.icio.us for October 16th through October 18th

Daily del.icio.us for January 17th

  • Introduction to Groovy, Part 3 – In this third installment ofIntroduction to Groovy (part 1, part 2) we will continue looking at some features of the Groovy language. Some you may find them on other languages, but some are exclusive to Groovy.
  • PDFBox – Java PDF Library – PDFBox is an open source Java PDF library for working with PDF documents. This project allows creation of new PDF documents, manipulation of existing documents and the ability to extract content from documents.
  • TagSoup home page – This is the home page of TagSoup, a SAX-compliant parser written in Java that, instead of parsing well-formed or valid XML, parses HTML
  • Teflon Ted: Book Review: Dreaming in Code – I’m probably not the first (or the last) person to say Dreaming in Code is the Soul of a New Machine for my generation
  • Thinking In Java: In today’s world, what is the role of the Application Server? – Given the likes of Spring and Hibernate, how do people consume the Application Server? Is it all you can eat with JEE still delivering on the promise of writing business logic and letting the App server deal with the infrastructure?
  • People Over Process » Enterprise OSGi, a Discussion with Eric Newcomer – While at the Eclipse Runtime Summit, I had the chance to talk with Iona’s Eric Newcomer (CTO of Iona, Co-Chair, Enterprise Expert Group, OSGi Alliance, and well respected coding guy) about the emergence of OSGi as a server-side, or enterprise technology
  • Grails – Home – Grails aims to bring the “coding by convention” paradigm to Groovy. It’s an open-source web application framework that leverages the Groovy language and complements Java Web development.
  • How do you parse HTML in Java? – The Open Source HTML Parsers in Java page is useful in listing the HTML parsers that are out there. But it doesn’t give much of a clue about which are the “best” in a given situation. In other words, how should one decide which HTML parser to use?