Flex on Grails
In this article, excerpted from "Flex on Java," (Manning, Sept 2010) authors Bernerd Allmon and Jeremy Anderson show you how to rapidly prototype
data-enabled Flex applications using Groovy and Grails in combination with the
Flex plugin for Grails. The article starts by defining the domain in Grails and
exposing some services for your Flex application to use, and the Flex
application...
Categories: Communities
How to resize an ExtJS Panel, Grid, Component on Window Resize without using Ext.Viewport
This post will walk through how to resize an ExtJS Panel, Grid, Component on Window Resize without using Ext.Viewport.References
Reference:
How to resize an ExtJS Panel, Grid, Component on Window Resize without using Ext.Viewport
Mitchell Pronsc...
Categories: Communities
PSSCor2: Object Inspection Commands, Part 1
PSSCor2 is a recently released debugging extension used
internally by Microsoft support engineers to debug managed applications.
It’s a separate download
that installs its 32-bit and 64-bit flavors, and currently there’s only
a version that works with CLR 2.0, but its additions on top of the core
SOS are significant and therefore it’s worth learning how to use them.References
...
Categories: Communities
Daily Dose - Why Bundle Flash with Chrome? ..Faster Security Patches
The SecBrowsing blog noted a major change in the speed at which users updated their Flash version during the last patch. The blog measured the number of visitors using Chrome with an updated version of Flash over the span of a couple weeks. For the June 10 update the shift was slow and gradual, but for the August 10 release, about 70% of Chrome users had updated their version of Flash within...
Categories: Communities
The wonders of the input tag in HTML 5
HTML 5 includes many features that can enrich the user experience without resorting to external JavaScript libraries. There are many markup-level improvements that web application can take advantage of, and the <input> element has become one of the most powerful ones.
Categories: Communities
ColdFusion and Google Analytics: Getting Out What Gets Put In
It's important to know what people are downloading, clicking, and buying on your website in order for it to be successful. This presentation will help you harness these analytics by using ColdFusion to request and display data on site usage from websites that have installed Google Analytics. Google Analytics is a free service that collects statistics on visitors to websites, including whether...
Categories: Communities
The Power of Simplicity
Small changes in functionality can make big impacts on usefulness, and
therefore the value of tools and applications. This has always been
true, but is more obvious on mobile devices where limited user input,
network access, and screen size magnify the value of a good user
experience (UX).References
Reference:
The Power of Simplicity
...
Categories: Communities
DZone Daily Dose - WebKit Gains MathML Support
Writing mathematical formulas on web pages just got easier if your page is being read by a WebKit browser such as Chrome or Safari. The WebKit developers are now releasing nightly builds that support the MathML XML language, which allows you to type in mathematical formulas and edit them instead of having to use an image. Supercomputing Smartphones
Categories: Communities
Practical PHP Patterns: Coarse Grained Lock
The Optimistic and Pessimistic locks are basic patterns, which can in turn be composed with other ones. The Coarse Grained Lock pattern is a combination of the Aggregate pattern and of a lock-related one. The Coarse Grained Lock can be used without implementing Aggregate in an object model, but it works very well in conjunction with it, since it is a very efficient way of defining what are the...
Categories: Communities
Sending parameters to a RESTful WCF service
When developing a WCF service, chances are that the same service will serve various purposes. For example, the user might want to retrieve data in different formats or different representations.
Categories: Communities
Creating a RESTful WCF service
RESTful services are quite popular today and you can find them pretty much everywhere – image sharing services, weather services and whatnot. Using .NET development tools, you are also able to develop a RESTful service that will expose some XML data to the requesting client.
Categories: Communities
DZone Daily Dose - Hibernate 3.5.5 Deprecates CGLIB Support
A decent amount of uproar was generated this week when JBoss developers
indicated that the latest stable release of Hibernate (3.5.5) would have
deprecated support for CGLIB as a bytecode provider. Developers can still use
CGLIB as the bytecode provider, but JBoss will not maintain the
integration anymore. This is because the developers of the CGLIB project (a
separate project outside of...
Categories: Communities
What's New in Node.js?
Today, developers of the JavaScript server called node.js announced
the software's next version. Node.js 0.2 features several important
bugfixes and an upgrade to the V8 JavaScript engine that the server
uses. This library is quickly gaining popularity among developers who
want to build scalable web services using JS on the server side.
Categories: Communities
Flex Addon for Spring Roo
This Flex Addon is a serious plugin for who is using Spring Roo in enterprise enviroment.References
Reference:
Flex Addon for Spring Roo
Mitchell Pronsc...
Categories: Communities
Doing it right: skipping the iPhone url bar
With some mobile web sites when visited on the iPhone, you may want
to skip past the url bar (something I'm not sure if it's possible, or
even worth doing on other mobiles). There's a simple solution to doing
this, but doing it right is the real trick.
Below are two screenshots from the mobile view of Full Frontal, my JavaScript conference:Making the iPhone hide the url bar is fairly...
Categories: Communities
Chrome Store Developer Preview Launches
This week at the Google Developer Conference in Europe, Chrome developer advocate Michael Mahemoff and Mark DeLoura, the company's new game developer advocate, announced that the Chrome Web Store would open its doors in October. The Chrome Web Store was announced and demoed at this year's Google I/O conference, and it is aimed at building the largest centralized marketplace for web apps on the...
Categories: Communities
Daily Dose - Spring 3.0.4 Supports Ehcache 2.2, EclipseLink 2.1, and More
The 3.0.4 update to Spring includes 80 different bugfixes and enhancements. Some highlights include support for updated third-party tools like Hibernate Core 3.6, Hibernate Validator 4.1, EclipseLink 2.1, and Ehcache 2.2. There are also several enhancements for SpEL, @MVC, and JSR-303 support.Firefox 4 Beta 4 has Initial Hardware Acceleration
Categories: Communities
Using the File API for reading file information & multiple file uploads – another sister specification to HTML5
A constant drag when developing web sites have been when the end user
wants to upload files to it. Luckily, though, those problems are to
come to an end due to the File API.
What is it?
The File API is there to describe how interactions with files are
handled, for reading information about them and their data as well, to
be able to upload it.
There are two ways you can detect the files a...
Categories: Communities
Practical PHP Patterns: Pessimistic Offline Lock
In this series, we are analyzing concurrency patterns, a way to allow multiple users to access application data without accepting conflicting changes which derive from stale data (like two people submitting the same editing form).
Categories: Communities
Select N+1 Problem – How to Decrease Your ORM Performance
Today one of the developers at my main customer showed me a code snippet he wrote against Entity Framework and made me very pale. The code included the horrible select N+1 problem. This post will introduce the select N+1 pitfall and will explain how avoid it in Entity Framework.References
Reference:
Select N+1 Problem – How to Decrease Your ORM...
Categories: Communities