PHP Tutorial #2 – Variables and comments

Remember this video has been uploaded in full HD, 1280X720 (720P)! If you have a good internet connection please view in HD for better viewing. In this lesson we will show you the some of the items needed in everyday PHP programming, variables and comments. A short overview about what is talked about in the … Read more

Learn Xcode Tools for Mac OS X and iPhone Development

ISBN13: 9781430272212 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product DescriptionThis book will give you a thorough grounding in the principal and supporting tools and technologies that make up the Xcode Developer Tools suite. Apple has provided a comprehensive collection of developer tools, and this is the first book to examine the … Read more

Visual Basic 2008 Recipes: A Problem-Solution Approach

Product Description Sometimes you just need to solve a problem and get on with your work. To that end, Visual Basic 2008 Recipes is a compendium of practical solutions for busy VB . NET programmers. Create time for the more interesting aspects of your VB . NET project by solving common problems with the practical … Read more

Review: NimbleKit development framework

Review: NimbleKit development framework MacNN has reviewed NimbleKit, a framework for Xcode that allows users to write simple apps for Apple handhelds without having to work in Objective C. It uses tools like HTML, JavaScript and CSS, including a JavaScript API that bridges between a user’s code and the iPhone OS. This allows the creation … Read more

PHP 6 and MySQL 5 for Dynamic Web Sites: Visual QuickPro Guide

ISBN13: 9780321525994 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description It hasn’t taken Web developers long to discover that when it comes to creating dynamic, database-driven Web sites, MySQL and PHP provide a winning open source combination. Add this book to the mix, and there’s no limit to the powerful, interactive … Read more

Techniques For Integrating Hibernate Into Legacy Java Code – Part 1

If you’re like me, you spend a lot of time dealing with legacy code that, for whatever reason, does not take advantage of modern methodologies and libraries. I’ve taken over Java projects that contain hundreds of thousands of lines of code and not a single third-party jar other than a JDBC driver! One of the most common examples of this is the implementation of the data access layer. These days, the de facto methodology involves Hibernate and DAOs, usually managed by Spring.

This article will detail the steps I recently took to covert a large application from custom-written data access to Hibernate and Spring using the refactoring facilities in Eclipse. The key with this refactorization is to get the existing business logic code (Struts Actions, JSPs, Delegate classes, Business Service classes, etc. ) to access the datastore using Hibernate, managed by Spring, without manually changing any of that code directly. Part 1 will include creating the Hibernate data object classes, DAOs, and refactoring the existing code to work with these newly created types. Part 2 will conclude the project with integration of the Hibernate DAOs and wiring everything up with Spring.

Read more

Professional Xcode 3

ISBN13: 9780470525227 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description A solid guide that responds to the active interest in Apple’s Xcode tools Apple’s Xcode tools are a collection of applications and frameworks that are used to develop, test, and optimize applications primarily written for Mac OS X or the iPhone. … Read more

Head First iPhone Development: A Learner’s Guide to Creating Objective-C Applications for the iPhone

ISBN13: 9780596803544 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description Let’s say you have an idea for a killer iPhone app. Where do you begin? Head First iPhone Development will help you get your first application up and running in no time. You’ll quickly learn to use iPhone SDK tools, including … Read more

5 4 Creating a Simple Browser in Visual Basic.NET

Using Visual Basic.NET (in this instance 2005) in order to create a simple browser that basically hijacks functionality from internet explorer Here’s the code: Private Sub btnBack_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBack.Click WebBrowser1.GoBack() End Sub Private Sub btnFwd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFwd.Click WebBrowser1.GoForward() End Sub Private … Read more