Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


CEF RPG
Goto page Previous  1, 2, 3, 4  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
Slugsnack
Grandmaster Cheater Supreme
Reputation: 71

Joined: 24 Jan 2007
Posts: 1857

PostPosted: Thu Jun 07, 2012 4:28 pm    Post subject: Reply with quote

all interested in coding, please pm me your skype. i don't need a backend coder. front-end coders or graphics makers are what i am looking for

my plan is to see if this project is feasible (first off, can we get the coders). i would say we require at least one dedicated front end coder. if not, a few who can put in a bit of time. the tricky part is the front end team needs to collaborate properly.
Back to top
View user's profile Send private message
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Thu Jun 07, 2012 4:45 pm    Post subject: Reply with quote

>front end coder
My specialty.
Too bad.
Back to top
View user's profile Send private message
Slugsnack
Grandmaster Cheater Supreme
Reputation: 71

Joined: 24 Jan 2007
Posts: 1857

PostPosted: Thu Jun 07, 2012 4:46 pm    Post subject: Reply with quote

Cryoma wrote:
>front end coder
My specialty.
Too bad.

HA. HAHAHA. HAHAHAHHAHAHA. any project with you in it is doomed to fail unless you're doing something unimportant like making coffee. block me now, coffee bitch
Back to top
View user's profile Send private message
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Thu Jun 07, 2012 4:55 pm    Post subject: Reply with quote

Slugsnack wrote:
Cryoma wrote:
>front end coder
My specialty.
Too bad.

HA. HAHAHA. HAHAHAHHAHAHA. any project with you in it is doomed to fail unless you're doing something unimportant like making coffee. block me now, coffee bitch

How on earth could you know that?
You know nothing about me.
Back to top
View user's profile Send private message
Aniblaze
Grandmaster Cheater Supreme
Reputation: 138

Joined: 23 Apr 2006
Posts: 1757
Location: The Netherlands

PostPosted: Thu Jun 07, 2012 5:05 pm    Post subject: Reply with quote

Too bad we're not doing this in PHP, just made a sweet PHP class that gets all the tables from the linked database (whatever database it is), and creates data objects and mappers. Mappers have generic functions (like fetchAll, fetchRow($id), search(model $modelObj), etc). But now I have to show it off like this... fucking hibernate.
Back to top
View user's profile Send private message
Slugsnack
Grandmaster Cheater Supreme
Reputation: 71

Joined: 24 Jan 2007
Posts: 1857

PostPosted: Thu Jun 07, 2012 5:10 pm    Post subject: Reply with quote

Cryoma wrote:
Slugsnack wrote:
Cryoma wrote:
>front end coder
My specialty.
Too bad.

HA. HAHAHA. HAHAHAHHAHAHA. any project with you in it is doomed to fail unless you're doing something unimportant like making coffee. block me now, coffee bitch

How on earth could you know that?
You know nothing about me.

i know you constantly pull shit out of your ass without understanding it. not only do you not understand the conceptual fundamentals, you pretend like you do. this might not directly mean that you're a bad programmer. but there are two things:
1) some of the shit you clearly don't understand is so basic that any beginner programmer would be expected to understand it
2) there is a general correlation (although not a strict mapping) between people that BS and programmers who are shitty and just copy and paste
Aniblaze wrote:
Too bad we're not doing this in PHP, just made a sweet PHP class that gets all the tables from the linked database (whatever database it is), and creates data objects and mappers. Mappers have generic functions (like fetchAll, fetchRow($id), search(model $modelObj), etc). But now I have to show it off like this... fucking hibernate.

the cool thing with jsp is that it has this funky thing called JDO. it allows you to persist an object and all that mapping will be done for you:
https://developers.google.com/appengine/docs/java/datastore/entities

i quote from that link:

Code:
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();


Entity employee = new Entity("Employee");

employee.setProperty("firstName", "Antonio");
employee.setProperty("lastName", "Salieri");

Date hireDate = new Date();
employee.setProperty("hireDate", hireDate);

employee.setProperty("attendedHrTraining", true);


datastore.put(employee);
Back to top
View user's profile Send private message
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Thu Jun 07, 2012 5:11 pm    Post subject: Reply with quote

prove it
Back to top
View user's profile Send private message
Slugsnack
Grandmaster Cheater Supreme
Reputation: 71

Joined: 24 Jan 2007
Posts: 1857

PostPosted: Thu Jun 07, 2012 5:12 pm    Post subject: Reply with quote

if cheatengine's search worked, i'd just pull up the last 10 posts where you talk about anything computer-related
Back to top
View user's profile Send private message
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Thu Jun 07, 2012 5:16 pm    Post subject: Reply with quote

so code your own search
Back to top
View user's profile Send private message
Slugsnack
Grandmaster Cheater Supreme
Reputation: 71

Joined: 24 Jan 2007
Posts: 1857

PostPosted: Thu Jun 07, 2012 5:18 pm    Post subject: Reply with quote

anyway, thanks for applying. application denied
Back to top
View user's profile Send private message
Aniblaze
Grandmaster Cheater Supreme
Reputation: 138

Joined: 23 Apr 2006
Posts: 1757
Location: The Netherlands

PostPosted: Thu Jun 07, 2012 5:30 pm    Post subject: Reply with quote

Slugsnack wrote:
Cryoma wrote:
Slugsnack wrote:
Cryoma wrote:
>front end coder
My specialty.
Too bad.

HA. HAHAHA. HAHAHAHHAHAHA. any project with you in it is doomed to fail unless you're doing something unimportant like making coffee. block me now, coffee bitch

How on earth could you know that?
You know nothing about me.

i know you constantly pull shit out of your ass without understanding it. not only do you not understand the conceptual fundamentals, you pretend like you do. this might not directly mean that you're a bad programmer. but there are two things:
1) some of the shit you clearly don't understand is so basic that any beginner programmer would be expected to understand it
2) there is a general correlation (although not a strict mapping) between people that BS and programmers who are shitty and just copy and paste
Aniblaze wrote:
Too bad we're not doing this in PHP, just made a sweet PHP class that gets all the tables from the linked database (whatever database it is), and creates data objects and mappers. Mappers have generic functions (like fetchAll, fetchRow($id), search(model $modelObj), etc). But now I have to show it off like this... fucking hibernate.

the cool thing with jsp is that it has this funky thing called JDO. it allows you to persist an object and all that mapping will be done for you:
https://developers.google.com/appengine/docs/java/datastore/entities

i quote from that link:

Code:
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();


Entity employee = new Entity("Employee");

employee.setProperty("firstName", "Antonio");
employee.setProperty("lastName", "Salieri");

Date hireDate = new Date();
employee.setProperty("hireDate", hireDate);

employee.setProperty("attendedHrTraining", true);


datastore.put(employee);

Awesome, so you're only left with your hibernate factory and DAOs, whereas the mappers are created from the datastore?
Back to top
View user's profile Send private message
Slugsnack
Grandmaster Cheater Supreme
Reputation: 71

Joined: 24 Jan 2007
Posts: 1857

PostPosted: Thu Jun 07, 2012 5:35 pm    Post subject: Reply with quote

hibernate factory is sort of abstracted. you basically create your objects, persist them then get them back out later. how you persist them and get them out is a black box. for example i could create a user object for everyone on this forum and persist it. then ask for a match against a name and i would just get the object. you can also do sql-like queries if you want to. it's pretty cool
Back to top
View user's profile Send private message
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Thu Jun 07, 2012 5:37 pm    Post subject: Reply with quote

for once you didn't jump straight into the world's most obvious troll

wow
Back to top
View user's profile Send private message
Slugsnack
Grandmaster Cheater Supreme
Reputation: 71

Joined: 24 Jan 2007
Posts: 1857

PostPosted: Thu Jun 07, 2012 5:38 pm    Post subject: Reply with quote

ACTS LIKE A RETARD. GETS OWNED. HEY GUYS I WAS TROLLING
Back to top
View user's profile Send private message
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Thu Jun 07, 2012 5:39 pm    Post subject: Reply with quote

yes exactly why do you do that
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam All times are GMT - 6 Hours
Goto page Previous  1, 2, 3, 4  Next
Page 3 of 4

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites