- Your Locale:
- English (United States)
- Your Time Zone:
- Coordinated Universal Time
- JavaScript Tip Archive (573 days)
- webreference.com (647 days)
- Jim Waldo (2234 days)
- Developer Dispatch (99 days)
- jdb cyberspace (252 days)
- Galaxy Goo (1478 days)
- Globalizing ColdFusionMX (1484 days)
- Ben Forta (3 days)
- JabbyPanda’s travel to RIA world (628 days)
- six apart (715 days)
Russia Uses 'Single Register' Law To Selectively Block Internet Content
“Won't somebody please think of the children?” seems to be Russia's refrain when it comes to their recent inception of internet censorship laws. I ... (translate)
4 Entertaining Apps for Having Fun on the Go
Technology has really changed everything. Once computers became more mainstream, technology had the foot hold that it needed to start taking over everyone’s lives. The next big change was when technology started to become much smaller. Once this happened, there was no stopping it. It started to appear everywhere. Computer slowly became much smaller, and [...] (translate)
CF Webtools is Hiring Full Time Remote Developers
Mark Kruger, aka. ColdFusion Muse posted that CF Webtools is hiring again. Check it out! CFWebtools is location in Omaha, NE, but we have a large number of remote employees and contractors. If you are interested,read the job posting at the link above and contact us. A couple highlights: Frequently Asked Questions Do you allow telecommuting? Yes all our development positions are full-time remote positions. What sort of dev environment can I expect? We are en eclipse shop and rely on SVN, Jenkins, and an agile like approach to development. Having said that, as an outsource development company we frequently (translate)
My First MontageJS Application
I saw MontageJS presented at 360|MIN in Las Vegas last year by Tom Ortega. I have been meaning to give it a try an finally got around to it. What is MontageJS? In short it is an “HTML5 framework for building modern Web Apps.” To start explaining what MontageJS is in more detail some history [...]The post My First MontageJS Application appeared first on Renaun Erickson. (translate)
Envato’s Most Wanted Winners – Lightroom & Aperture Plugins
Many congratulations to the following authors who took part in our Envato’s Most Wanted event where we invited authors to submit Lightroom & Aperture Plugins to GraphicRiver: R3GeneralDesigns - $50 for submitting 1 item zippy09 - $100 for submitting 2 items 1, 2 grafikustervezok - $50 for submitting 1 item chiccosinalo - $150 for submitting 3 items 1, 2, 3 mudi - $150 for submitting 3 items 1, 2, 3 BlackStyles - [...] (translate)
On Working Remotely (Telecommuting)
I've been wanting to share my tips for being productive while working from home full time for a while now, but never got around to writing them all out. As luck would have it, I ran across an article that covers almost everything... I've had the good fortune to spend the last year-plus working at CounterMarch, which is to say working from home. We don't have an office to which I could commute if I wanted to -- but that's ok, because I don't. I've also been fortunate enough to have a few jobs that allowed me occasional telecommuting privileges (translate)
PhoneGap Online/Offline Tip
A few months ago I wrote a blog post that talked about "robust" PhoneGap applications. Basically it was a look at the types of things you should consider to make your PhoneGap application more of an app and less of a wrapped web page.One of the main topics of that blog post was about handling connection status. PhoneGap gives you access to the type of connection the device has as well as events that let you respond to online and offline states. These are important features that (most likely) every single PhoneGap app should be using. I want to point (translate)
Video Tutorial: Installing the Ripple Emulator for PhoneGap Development
Probably not terribly useful to my readers as I've blogged this before, but I wanted to create a quick video tutorial on how to install the Ripple Emulator for PhoneGap developers. Feel free to share and give to team members who may be new to PhoneGap Development. (translate)
Enable Advanced Reboot Options on Cyanogenmod
For a few months now I've noticed that the option to reboot into recovery has been missing from my cyanogenmod rom'd android phone. I'm running the latest nightlies and not being able to quickly reboot into recovery is the epitome of a first world problem. Be that as it may I still wanted the feature back so I finally spent a few minutes googling for the solution. enable developer options. These used to be in the normal settings screen for the phone but they are hidden now. go to about phone scroll to the bottom find the "build number" field (translate)
Connecting to JNDI data sources in ColdFusion 10
Here’s a guide to show you how to configure JNDI datasource in ColdFusion 10. 1. Get the JDBC Driver The JDBC Driver needs to be placed in ColdFusion10/cfusion/runtime/lib folder. 2. context.xml configuration Add a resource block before the closing tag (</Context>) in the context.xml present at ColdFusion10/cfusion/runtime/conf , which defines database connection detail : <Resource name="jdbc/test" auth="Container" type="javax.sql.DataSource" maxActive="50" maxIdle="30" maxWait="10000" username="username" password="password" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/test"/> For more information on the attributes please refer to http://tomcat.apache.org/tomcat-7.0-doc/jndi-resources-howto.html.For setting isolation level use the defaultTransactionIsolation attribute. (translate)