JSP + Servlets + EJB: Java EE 6 & GlassFish 3 using NetBeans 6.9 (Part 1 of 5)

This multi-part screencast series shows how NetBeans 6.9 provides comprehensive tooling for Java EE 6 & GlassFish 3. The different parts show: 1. A simple Java EE 6 application (JSP, Servlets, EJB) 2. Reading database table using Java Persistence API 2 3. Using Facelets with Java Server Faces 2 4. Contexts & Dependency Injection with … Read more

Flash PHP MySQL CMS – Content Management System Website Tutorial CS3 + CS4

Source Files – www.developphp.com In this Flash ActionScript 3.0, PHP, and MySQL tutorial video and source file download you can learn how to build slick CMS(Content Management Systems) for your client websites or for projects that require many people to input data. A Content Management System made in Flash makes editing content easier visually and … Read more

Using Objective-C, Foundation Framework

(April 6, 2009) Alan Cannistraro provides an overview of object oriented programming, the objective-C programming language, and common foundation classes. Stanford University: www.stanford.edu Stanford School of Engineering: soe.stanford.edu Stanford University Channel on YouTube

iPhone Programming – Using Scroll Views!

Learn how to use UIScrollView to show much more content on your pages! Everything inside the scroll view is fully interactive, so your user can still press buttons etc. Website: www.pixelcubestudios.com Twitter twitter.com Facebook: www.facebook.com

How to count the words in a String in C#

Remember the Word Count function in Microsoft Word? Here’s how we could implement counting the words in a String in C#:

The following is the spource code of a program featuring two word counting methods, both of which yield fairly similar results to Microsoft Word from Microsoft Office 2007. The example program below first executes a Regex-based function for counting the words in the string constant, and then executes the loop-based one.

Read more

Java EE Project using EJB 3, JPA and Struts 2 for Beginners,

Product Description This book aims serving students, developers, technical leads and to some extent project managers or consultants by demonstrating a structured documented modestly sized project. Learning the project development and documentation is done through the construction of an Online Car Rental System using MySQL Community Server as the data store with Java Server Pages … Read more

Core PHP Programming: Using PHP to Build Dynamic Web Sites

Product Description Core PHP Programming, Second Edition is the first complete, practical guide to PHP 4 for experienced Web developers. Fully updated to reflect PHP 4.0’s breakthrough features and performance, it covers every technique you need to build robust, fast Web applications. Leading PHP developer Leon Atkinson starts with a high-level overview of PHP: how … Read more

GUI interface using visual basic to track the killers IP address CSI

Fair use claim: -this serves an educational purpose in demonstrating computer illiteracy as it pertains to American Television -the clip is far too short to compete in any way with the original product and its intended use -there is no way that this could be confused with an official broadcast or redistribution by the content … Read more

Ultra-Fast ASP.NET: Build Ultra-Fast and Ultra-Scalable web sites using ASP.NET and SQL Server

ISBN13: 9781430223832 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description Ultra-Fast ASP.NET presents a practical approach to building fast and scalable web sites using ASP.NET and SQL Server. In addition to a wealth of tips, tricks and secrets, you’ll find advice and code examples for all tiers of your application, including … Read more

Querying Table Data Using Visual Basic Code in MS Access

In order to fully utilize the capabilities of MS Access, one must learn not only learn the Visual Basic (VB) programming language, but should also learn Standard Query Language (SQL). Once a grasp of these two languages have been obtained, MS Access users can begin to build faster and more efficient databases.

One tool that has proved itself very useful to me over the years is querying data from tables or queries using VB and SQL code. A brief introduction to this process is presented in this article. To best understand this process, an example is provided below along with an explanation of its parts.

'*********CODE***********

Dim rstTemp As Recordset

Dim strSQL As String

Dim routeNum As Integer

strSQL = "SELECT [Route], [Main Route PM], [Intersecting Route], [IntBeginPM], [IntEndPM] “

strSQL =  strSQL + “FROM Intersections_list WHERE (((CStr([Route])) = """ + cmbRouteQuery + """));"

Set rstTemp = CurrentDb.OpenRecordset(strSQL, dbOpenDynaset)

If (Not (rstTemp.EOF)) Then

rstTemp.MoveFirst

routeNum = rstTemp(0)

'************************

Read more

Develop professional enterprise Java EE applications quickly and easily with NetBeans IDE using a book by Packt

This book shows you how to use NetBeans functionality to automate many of the tedious or repetitive tasks frequently encountered when developing enterprise Java applications, freeing up the developer to focus on the business logic specific parts of the application. Java EE, the successor to J2EE, greatly simplifies the development of enterprise applications. The popular … Read more

Succeeding with Agile: Software Development Using Scrum

ISBN13: 9780321579362 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product DescriptionProven, 100% Practical Guidance for Making Scrum and Agile Work in Any Organization   This is the definitive, realistic, actionable guide to starting fast with Scrum and agile–and then succeeding over the long haul. Leading agile consultant and practitioner Mike Cohn presents … Read more

20 Helpful jQuery Methods you Should be Using

So you’ve been playing with jQuery for a while now, you’re starting to get the hang of it, and you’re really liking it! Are you ready to take your jQuery knowledge to level two? Today, I’ll demonstrate twenty functions and features you probably haven’t seen before!


1 after() / before()

Sometimes you want to insert something into the DOM, but you don’t have any good hooks to do it with; append() or prepend() aren’t going to cut it and you don’t want to add an extra element or id. These two functions might be what you need. They allow you to insert elements into the DOM just before or after another element, so the new element is a sibling of the older one.

$('#child').after($('<p />')).text('This becomes a sibling of #child'));
$('#child').before($('<p />')).text('Same here, but this is go about #child'));

Read more