Lesson about Android Cloud To Device Messaging [C2DM] - [ Demo application ] - Android C2DM Video Tutorial

http://www.youtube.com/watch?v=dWwrNTG7dgcendofvid [starttext] This is a Video Tutorial explains Lesson about Android Cloud To Device Messaging [C2DM] - Android C2DM Video Tutorial
In this video you will learn about C2DM, the protocol, its requirements, its limitations, and how to get started in building applications that take advantage this amazing framework. You will get to see a complete end-to-end application (both the Android-client and its server-side counterpart) and understand how all of the pieces fit together.
[endtext]

Demo application of Android Cloud To Device Messaging [C2DM] - - Android C2DM Video Tutorial

http://www.youtube.com/watch?v=20biECJeBusendofvid [starttext] This is a Video Tutorial shows a Demo application of Android Cloud To Device Messaging [C2DM] - - Android C2DM Video Tutorial

[endtext]

Pt1 : Video Tutorial : Introduction of EhCache with demo of working example of EhCache with JDBC and EhCache with Hibernate. - Hibernate & EhCache Video Tutorial

http://www.youtube.com/watch?v=_bJRWpKWoD0endofvid [starttext] This is a Video Tutorial explains Pt1 : Video Tutorial : Introduction of EhCache with demo of working example of EhCache with JDBC and EhCache with Hibernate. - Hibernate & EhCache Video Tutorial
Pt1 : Video Tutorial : Introduction of EhCache with demo of working example of EhCache with JDBC and EhCache with Hibernate. - Hibernate & EhCache Video Tutorial
[endtext]

Pt2 : Video Tutorial : EhCache with JDBC on Eclipse - Query Caches - Ehcache Video Tutorial

http://www.youtube.com/watch?v=diJr2t4KmVwendofvid [starttext] This is a Video Tutorial explains Pt3 : Video Tutorial : EhCache with JDBC on Eclipse - Query Caches - JDBC Video Tutorial
Pt3 : Video Tutorial : EhCache with JDBC on Eclipse - Query Caches - JDBC Video Tutorial
Pt3 : Video Tutorial : EhCache with JDBC on Eclipse - Query Caches - JDBC Video Tutorial
[endtext]

Pt3 : Video Tutorial : EhCache with Hibernate on Eclipse - Hibernate Query Caches - Hibernate Video Tutorial

http://www.youtube.com/watch?v=qr3-c04mbK0endofvid [starttext] This is a Video Tutorial explains Pt3 : Video Tutorial : EhCache with Hibernate - Hibernate Query Caches - Hibernate Video Tutorial
Pt3 : Video Tutorial : EhCache with Hibernate - Hibernate Query Caches - Hibernate Video Tutorial
Pt3 : Video Tutorial : EhCache with Hibernate - Hibernate Query Caches - Hibernate Video Tutorial
[endtext]

K-Means Clustering in Map Reduce

K-Means clustering involve the following logical steps

1) Determine the value of k
2) Determine the initial k centroids
3) Repeat until converge
- Determine membership: Assign each point to the closest centroid
- Update centroid position: Compute new centroid position from assigned members

Determine the value of K
This is basically asking the question of: "How many clusters you are interested to discover ?"
So the answer is specific to the problem domain.

One way is to try different K. At some point, we'll see increasing K doesn't help much to improve the overall quality of clustering. Then that is the right value of K.

Notice that the overall quality of cluster is the average distance from each data point to its associated cluster.


Determine the initial K centroids
We need to pick K centroids to start the algorithm. So one way to pick them is to randomly pick K points from the whole data set.

However, picking a good set of centroids can reduce the number of subsequent iterations and by "good" I mean the K centroid should be as far apart to each other as possible, or even better the initial K centroid is close to the final K centroid. As you can see, choosing the random K points is reasonable but non-optimum.

Another approach is to take a small random sample set from the input data set and do a hierarchical clustering within this smaller set (note that hierarchical clustering is not-scaling to large data set).

We can also partition the space into overlapping region using canopy cluster technique (describe below) and pick the center of each canopy as the initial centroid.

Iteration
Each iteration is implemented as a Map/Reduce job.
The Map task will determine the membership for each point, as well as compute a partial sum of each member points of each cluster. The reducer aggregates all partial sums and compute the update centroid position, and then out them into a shared store (S3 in this case) that can be picked up by the Map Reduce job of next round.



We also need a control program on the client side to determine whether the iteration should end. It do the following ...
kmeans(data) {
initial_centroids = pick(k, data)
upload(data)
writeToS3(initial_centroids)
old_centroids = initial_centroids
while (true){
map_reduce()
new_centroids = readFromS3()
if change(new_centroids, old_centroids) < delta {
break
} else {
old_centroids = new_centroids
}
}
result = readFromS3()
return result
}

An Challenging Interview question with a difference

The following program is provided:


//Program tested on Microsoft Visual Studio 2008 - Zahid Ghadialy
#include<iostream>

using namespace
std;

//This class can be designed as you wish
class SR
{

public
:
SR(int i) {}
};


int
main()
{

int
sum = 0;
for
(int i = 1; i < 100; i++)
{

SR ii(i);
while
(i--)
sum += i;
}

cout<<"Expected value of sum = 161700" << endl;
cout<<"Returned value of sum = " << sum << endl;

return
0;
}


As already mentioned above, the expected output of 161700 is provided. The class 'SR' could be written as one wishes. How to do write the class 'SR' to get the desired output?
.
.
.
.
Give it a try before looking at the solution.
.
.
.
.
.
The modified program with the correct 'SR' class as follows:


//Program tested on Microsoft Visual Studio 2008 - Zahid Ghadialy
#include<iostream>

using namespace
std;

//This class can be designed as you wish
class SR
{

public
:
SR(int& i):ref(i)
{

var = i;
}
~
SR()
{

ref = var;
}

private
:
int
var;
int
&ref;
};


int
main()
{

int
sum = 0;
for
(int i = 1; i < 100; i++)
{

SR ii(i);
while
(i--)
sum += i;
}

cout<<"Expected value of sum = 161700" << endl;
cout<<"Returned value of sum = " << sum << endl;

return
0;
}



Source: Modified from here. Another similar question is available here.

Video Tutorial :Pt3/4 DAO Implementation using Spring , JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial

http://www.youtube.com/watch?v=tzBQPJQy3Wgendofvid [starttext] This is a Video Tutorial explains Video Tutorial :Pt3/4 DAO Implementation using spring JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial
Video Tutorial :Pt3/4 DAO Implementation using spring JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial
[endtext]

Video Tutorial :Pt2/4 DAO Implementation using Spring , JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial

http://www.youtube.com/watch?v=PVTh0yg-F0sendofvid [starttext] This is a Video Tutorial explains Video Tutorial :Pt2/4 DAO Implementation using spring JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial
Video Tutorial :Pt2/4 DAO Implementation using spring JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial
[endtext]

Video Tutorial :Pt1/4 DAO Implementation using Spring , JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial

http://www.youtube.com/watch?v=tRGZvY5G-Pwendofvid [starttext] This is a Video Tutorial explains Video Tutorial :Pt1/4 DAO Implementation using spring JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial
Video Tutorial :Pt1/4 DAO Implementation using spring JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial
[endtext]

Video Tutorial :Pt4/4 DAO Implementation using Spring , JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial

http://www.youtube.com/watch?v=uwYHMeTKMI4endofvid [starttext] This is a Video Tutorial explains Video Tutorial : DAO Implementation using spring JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial
Video Tutorial : DAO Implementation using spring JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial
Video Tutorial : DAO Implementation using spring JdbcTemplate and inversion of control (dependency injection) : Spring Video Tutorial
[endtext]

Video tutorial : How to configure Spring dependency injection in a Java application using an Eclipse IDE

http://www.youtube.com/watch?v=PGfs2CxDGM4endofvid [starttext] This is a Video Tutorial explains Video tutorial : How to configure Spring dependency injection in a Java application using an Eclipse IDE
Video tutorial : How to configure Spring dependency injection in a Java application using an Eclipse IDE
Video tutorial : How to configure Spring dependency injection in a Java application using an Eclipse IDE
[endtext]

RESTful Web Services Tutorial with Spring Part 1 of 3 - Spring Video Tutorial

http://www.youtube.com/watch?v=xLWm8PJjdBkendofvid [starttext] This is a Video Tutorial explains RESTful Web Services Tutorial with Spring Part 1 of 3 - Spring Video Tutorial
RESTful Web Services Tutorial with Spring Part 1 of 3 - Spring Video Tutorial
RESTful Web Services Tutorial with Spring Part 1 of 3 - Spring Video Tutorial
[endtext]

RESTful Web Services Tutorial with Spring Part 2 of 3 - Spring Video Tutorial

http://www.youtube.com/watch?v=qfYEhvIQfGMendofvid [starttext] This is a Video Tutorial explains RESTful Web Services Tutorial with Spring Part 2 of 3 - Spring Video Tutorial
RESTful Web Services Tutorial with Spring Part 2 of 3 - Spring Video Tutorial
RESTful Web Services Tutorial with Spring Part 2 of 3 - Spring Video Tutorial
[endtext]

RESTful Web Services Tutorial with Spring Part 3 of 3 - Spring Video Tutorial

http://www.youtube.com/watch?v=eMzhNLJ-vOcendofvid [starttext] This is a Video Tutorial explains RESTful Web Services Tutorial with Spring Part 3 of 3 - Spring Video Tutorial
RESTful Web Services Tutorial with Spring Part 3 of 3 - Spring Video Tutorial
RESTful Web Services Tutorial with Spring Part 3 of 3 - Spring Video Tutorial
[endtext]

how to create and running Google Web Toolkit (GWT) Project using Eclipse 3.5 + GWT Plugins. - GWT Video Tutorial

http://www.youtube.com/watch?v=KhGbHBvjHiIendofvid [starttext] This is a Video Tutorial explains how to create and running Google Web Toolkit (GWT) Project using Eclipse 3.5 + GWT Plugins. - GWT Video Tutorial
how to create and running Google Web Toolkit (GWT) Project using Eclipse 3.5 + GWT Plugins. - GWT Video Tutorial
how to create and running Google Web Toolkit (GWT) Project using Eclipse 3.5 + GWT Plugins. - GWT Video Tutorial
how to create and running Google Web Toolkit (GWT) Project using Eclipse 3.5 + GWT Plugins. - GWT Video Tutorial
[endtext]

Stop Premature Ejaculation and Last Longer In Bed Tonight

How You Can Last 10-30 Minutes Longer In Bed Tonight 
Permanently End The Pain & Embarrassment Of Premature Ejaculation
No pills, No creams, No erection bands
 Just a Proven Method That's Guaranteed to Work
Every time you get started, you're suddenly ready to finish within minutes or even seconds... your body tenses, your breathing gets ragged... and it's all over before it even began.

She looks up at you with a mixture of surprise and amusement... she says it's okay, but deep down, she wishes you could last longer and give her the time of a life. You know it, she knows it, and you can see it in her eyes.

So yeah, it is embarrassing... but really, it's way beyond that.


It's humiliating. It makes you feel like less of a man doesn't it?

And in a way, it's even worse if you're in a long term relationship. Having to constantly look your partner in the eye after a bad performance can become a real romance killer.

It can be terrible can't it? After a while, Premature Ejaculation is more than a bedroom problem... it's tentacles can reach many aspects of your life... Your self esteem, your mood, your relationship success, and pretty much anything else that revolves around your overall happiness in life.

I'd worry all the time that my girlfriend would eventually cheat on me - after all, if I couldn't satisfy her, surely she'd give up and look for someone who could?...


Well that's exactly what she did.

Man, they were horrible times, and you're probably going through similar stuff right now.

So if you feel like you've suffered enough... if you're completely frustrated and embarrassed every time you have sex... if all you want is to gain control over your ejaculation and last longer...

...The Ejaculation Trainer is exactly what you need.
If You've Been Suffering From Premature Ejaculation
There's One Important Thing You Need To Know
You're not alone

isNumeric()

For some reason many C++ programmers believe there is an isNumeric() function available as part of the language. In fact I was searching for the header file to include to get a piece of code to work.

Its not difficult to create a function that will be able to check if the string is numeric or not. Here is the code.



//Program tested on Microsoft Visual Studio 2008 - Zahid Ghadialy
#include <iostream>
#include <string>
#include <sstream>

using namespace
std;

bool
isNumeric1(string stringToCheck)
{

bool
numeric = false;

if
(stringToCheck.find_first_not_of("0123456789.") == string::npos)
numeric = true;

return
numeric;
}


bool
isNumeric2(string stringToCheck)
{

bool
numeric = true;
unsigned
i = 0;

while
(numeric && i < stringToCheck.length())
{

switch
(stringToCheck[i])
{

case
'0': case '1': case '2': case '3': case '4': case '5':
case
'6': case '7': case '8': case '9': case '.':
//do nothing
break;
default
:
numeric = false;
}

i++;
}


return
numeric;
}


bool
isNumeric3(string stringToCheck)
{

stringstream streamVal(stringToCheck);
double
tempVal;

streamVal >> tempVal; //If numeric then everything transferred to tempVal

if
(streamVal.get() != EOF)
return
false;
else
return
true;
}


int
main()
{

string str1("123"), str2("134.567"), str3("12AB");
cout << "Approach 1" << endl;
cout << str1 << (isNumeric1(str1) ? " is Numeric" : " is Not Numeric") << endl;
cout << str2 << (isNumeric1(str2) ? " is Numeric" : " is Not Numeric") << endl;
cout << str3 << (isNumeric1(str3) ? " is Numeric" : " is Not Numeric") << endl;

cout << "\nApproach 2" << endl;
cout << str1 << (isNumeric2(str1) ? " is Numeric" : " is Not Numeric") << endl;
cout << str2 << (isNumeric2(str2) ? " is Numeric" : " is Not Numeric") << endl;
cout << str3 << (isNumeric2(str3) ? " is Numeric" : " is Not Numeric") << endl;

cout << "\nApproach 3" << endl;
cout << str1 << (isNumeric3(str1) ? " is Numeric" : " is Not Numeric") << endl;
cout << str2 << (isNumeric3(str2) ? " is Numeric" : " is Not Numeric") << endl;
cout << str3 << (isNumeric3(str3) ? " is Numeric" : " is Not Numeric") << endl;

return
0;
}




Output is as follows:


There are few problems in the program above:

1. It does not cater for negative numbers
2. It will return wrong result when you have incorrect string like 12.34.56.78

I have intentionally left it as an exercise.

Other approaches are possible as well. Why not try and think of an approach yourself.

Pt1 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial

http://www.youtube.com/watch?v=zT5jsgdL13Iendofvid [starttext] This is a Video Tutorial explains Pt1 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial
Pt1 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial
[endtext]

Pt2 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial

http://www.youtube.com/watch?v=Fsw1doTLZcMendofvid [starttext] This is a Video Tutorial explains Pt2 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial
Pt2 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial
[endtext]

Pt3 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial

http://www.youtube.com/watch?v=HfHq0Kk7-3kendofvid [starttext] This is a Video Tutorial explains
[endtext]

Pt4 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial

http://www.youtube.com/watch?v=BsMSn0eouCMendofvid [starttext] This is a Video Tutorial explains Pt4 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial
Pt4 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial
[endtext]

Pt5 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial

http://www.youtube.com/watch?v=H9Hz1ySDVJkendofvid [starttext] This is a Video Tutorial explains Pt5 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial
Pt5 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial
[endtext]

Pt6 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial

http://www.youtube.com/watch?v=bHH31hxs-i4endofvid [starttext] This is a Video Tutorial explains a GWT ( Google Web Toolkit) Web Application using RPC - JPA , PostgreSQL and TOMCAT 7 on Eclipse
This is a Video Tutorial explains a GWT ( Google Web Toolkit) Web Application using RPC - JPA , PostgreSQL and TOMCAT 7 on Eclipse
[endtext]

Pt7 - GWT Web Project using RPC , JPA , connecting to DataBase PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial

http://www.youtube.com/watch?v=714cWRFgv04endofvid [starttext] This is a Video Tutorial explains a GWT ( Google Web Toolkit) Web Application using RPC - JPA , PostgreSQL and TOMCAT 7 on Eclipse
This is a Video Tutorial explains a GWT ( Google Web Toolkit) Web Application using RPC - JPA , PostgreSQL and TOMCAT 7 on Eclipse
[endtext]

Pt8 - GWT Web Project using RPC , JPA , PostgreSQL and TOMCAT 7 on Eclipse - GWT Video Tutorial

http://www.youtube.com/watch?v=8hEOJ7OntREendofvid [starttext] This is a Video Tutorial explains a GWT ( Google Web Toolkit) Web Application using RPC - JPA , PostgreSQL and TOMCAT 7 on Eclipse
This is a Video Tutorial explains a GWT ( Google Web Toolkit) Web Application using RPC - JPA , PostgreSQL and TOMCAT 7 on Eclipse
[endtext]

string::find_next()

I met this new starter who has come from Java background. He was upset because he couldn't find string::find_next() as C++ function. He said Java is much more flexible this way. In reality, its not that bad if you look at the definition of find carefully.

size_t find ( const string& str, size_t pos = 0 ) const;
size_t find ( const char* s, size_t pos, size_t n ) const;
size_t find ( const char* s, size_t pos = 0 ) const;
size_t find ( char c, size_t pos = 0 ) const;

The first one works as find_next as I show in the example below:

//Program tested on Microsoft Visual Studio 2008 - Zahid Ghadialy

#include <iostream>
#include <string>

using namespace
std;

int
main()
{

string someString("Tom is not in. Infact Tom is not going to be in Tomorrow or day after Tomorrow");
string findTheString("Tom");

unsigned
position = 0;

position = someString.find(findTheString);
cout<<"First position of " << findTheString << " is " << position << endl;

//We want to find all the next positions which is after position + findTheString.length()
while(position != string::npos)
{

position = someString.find(findTheString, (position + findTheString.length()));
cout<<"Next position of " << findTheString << " is " << position << endl;
}


return
0;
}



The output is as follows:

Exercise for new programmers:
  1. The last two Tom's are part of 'Tomorrow', how can you make sure they are not printed
  2. The last Tom which is 4294... is equal to -1 or string::npos. How can you stop that being printed without making another check for string::npos
Please dont post answers as they should be trivial exercise and you should be able to figure out without much problems.

Pt1 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial

http://www.youtube.com/watch?v=CHs11NT5-dAendofvid [starttext] This is a Video Tutorial explains Pt1 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial
[endtext]

Pt3 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial

http://www.youtube.com/watch?v=q7ttj9mvSzwendofvid [starttext] This is a Video Tutorial explains Pt3 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial
[endtext]

Pt2 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial

http://www.youtube.com/watch?v=bVQlu_G1yxUendofvid [starttext] This is a Video Tutorial explains Pt2 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial
[endtext]

Pt4 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial

http://www.youtube.com/watch?v=LYwTzEQRDdQendofvid [starttext] This is a Video Tutorial explains Pt4 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial
[endtext]

Pt6 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial

http://www.youtube.com/watch?v=NuEzLNzcCgQendofvid [starttext] This is a Video Tutorial explains Pt6 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial
[endtext]

Pt5 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial

http://www.youtube.com/watch?v=LumHAgztYFcendofvid [starttext] This is a Video Tutorial explains Pt5 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial
[endtext]

Pt7 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial

http://www.youtube.com/watch?v=OugyAuTb684endofvid [starttext] This is a Video Tutorial explains Pt7 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial
[endtext]

Pt8 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial

http://www.youtube.com/watch?v=3nBKi2sn878endofvid [starttext] This is a Video Tutorial explains Pt8 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial
[endtext]

Pt9 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios using dataTable. - JSF Video Tutorial

http://www.youtube.com/watch?v=1srh1pbZXQQendofvid [starttext] we will continue our lesson JavaServer Faces (JSF) using dataTable.
[endtext]

Pt10 - CRUD Project with JSF (Java Server Faces ) ,Hibernate , Tomcat 7 , Jboss tools on Eclipse 3.6 Helios - JSF Video Tutorial

http://www.youtube.com/watch?v=-CXHKRXeu_Mendofvid [starttext]In this latest video lecture on Introduction to JSF, we will update our class UsuarioBean so we can page through the list, edit, delete, enable / disable user.
[endtext]

Check out this stream