| View previous topic :: View next topic |
| Author |
Message |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Thu Jun 07, 2012 4:28 pm Post subject: |
|
|
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 |
|
 |
Cryoma Member of the Year
Reputation: 198
Joined: 14 Jan 2009 Posts: 1819
|
Posted: Thu Jun 07, 2012 4:45 pm Post subject: |
|
|
>front end coder
My specialty.
Too bad.
|
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Thu Jun 07, 2012 4:46 pm Post subject: |
|
|
| 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 |
|
 |
Cryoma Member of the Year
Reputation: 198
Joined: 14 Jan 2009 Posts: 1819
|
Posted: Thu Jun 07, 2012 4:55 pm Post subject: |
|
|
| 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 |
|
 |
Aniblaze Grandmaster Cheater Supreme
Reputation: 138
Joined: 23 Apr 2006 Posts: 1757 Location: The Netherlands
|
Posted: Thu Jun 07, 2012 5:05 pm Post subject: |
|
|
| 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 |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Thu Jun 07, 2012 5:10 pm Post subject: |
|
|
| 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 |
|
 |
Cryoma Member of the Year
Reputation: 198
Joined: 14 Jan 2009 Posts: 1819
|
Posted: Thu Jun 07, 2012 5:11 pm Post subject: |
|
|
| prove it
|
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Thu Jun 07, 2012 5:12 pm Post subject: |
|
|
| if cheatengine's search worked, i'd just pull up the last 10 posts where you talk about anything computer-related
|
|
| Back to top |
|
 |
Cryoma Member of the Year
Reputation: 198
Joined: 14 Jan 2009 Posts: 1819
|
Posted: Thu Jun 07, 2012 5:16 pm Post subject: |
|
|
| so code your own search
|
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Thu Jun 07, 2012 5:18 pm Post subject: |
|
|
| anyway, thanks for applying. application denied
|
|
| Back to top |
|
 |
Aniblaze Grandmaster Cheater Supreme
Reputation: 138
Joined: 23 Apr 2006 Posts: 1757 Location: The Netherlands
|
Posted: Thu Jun 07, 2012 5:30 pm Post subject: |
|
|
| 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 |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Thu Jun 07, 2012 5:35 pm Post subject: |
|
|
| 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 |
|
 |
Cryoma Member of the Year
Reputation: 198
Joined: 14 Jan 2009 Posts: 1819
|
Posted: Thu Jun 07, 2012 5:37 pm Post subject: |
|
|
for once you didn't jump straight into the world's most obvious troll
wow
|
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Thu Jun 07, 2012 5:38 pm Post subject: |
|
|
| ACTS LIKE A RETARD. GETS OWNED. HEY GUYS I WAS TROLLING
|
|
| Back to top |
|
 |
Cryoma Member of the Year
Reputation: 198
Joined: 14 Jan 2009 Posts: 1819
|
Posted: Thu Jun 07, 2012 5:39 pm Post subject: |
|
|
| yes exactly why do you do that
|
|
| Back to top |
|
 |
|