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 


Hiring a part-time coder.
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
Evil_Intentions
Expert Cheater
Reputation: 65

Joined: 07 Jan 2010
Posts: 214

PostPosted: Sun Nov 10, 2013 1:20 pm    Post subject: Reply with quote

You're honestly asking random spam.
Back to top
View user's profile Send private message
gogodr
I post too much
Reputation: 125

Joined: 19 Dec 2006
Posts: 2041

PostPosted: Sun Nov 10, 2013 1:40 pm    Post subject: Reply with quote

I'm not familiar with objective C but I can learn it in no time.
whats your deadline? (what you are asking sounds pretty simple and I have done it before in web applications and desktop applications )
Back to top
View user's profile Send private message MSN Messenger
:^)
Grandmaster Cheater Supreme
Reputation: 37

Joined: 30 Jun 2008
Posts: 1062

PostPosted: Sun Nov 10, 2013 1:54 pm    Post subject: Reply with quote

ya i can make an autoclicker
Back to top
View user's profile Send private message
teeigeryuh
Master Cheater
Reputation: 25

Joined: 13 Oct 2008
Posts: 261
Location: The netherlands

PostPosted: Sun Nov 10, 2013 2:00 pm    Post subject: Re: Hiring a part-time coder. Reply with quote

Shrooms wrote:
The partner must be able to set up my database on my web server to handle inputting and outputting fields of information which would be a; username, password, and serial number.

The partner must be able to also code the registering and login of this application.
wait, you can't make this? wut
_________________

ლ(╹◡╹ლ)
Back to top
View user's profile Send private message
gogodr
I post too much
Reputation: 125

Joined: 19 Dec 2006
Posts: 2041

PostPosted: Sun Nov 10, 2013 2:37 pm    Post subject: Reply with quote

if you really only want the database connection and registering I recommend you to learn it instead of paying for it.

say you were to hire me:
you would need to rent a VPS for 20$/year to host the database.
and I would charge you from 30$ to 80$ for the data modeling depending on its complexity.
20$ for the setup
and from 20$ to 100$ for the coding of the dabatase integration in your application depending on the complexity of the proyect.

the skills needed to do all this work, you can learn them in a week with proper guidance.
Back to top
View user's profile Send private message MSN Messenger
Aniblaze
Grandmaster Cheater Supreme
Reputation: 138

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

PostPosted: Sun Nov 10, 2013 5:36 pm    Post subject: Reply with quote

Sorry but this is literally not worth my time. So easy it's boring, which would be acceptable if the payment is up to par, but I'm guessing it isn't. But since I'm not a complete dick (just a little), here's a plan of action:

Server
1. Install Ubuntu/CentOS on your VPS.
2. Install LAMP on the server:
Quote:
- Ubuntu
- CentOS

3. Create an API in PHP using a fitting framework.
Quote:
- I would recommend Zend due to it supporting REST, but also allows for the regular format. Meaning you can use one application to build both the API and registration page. It's a very versatile environment.

4. Expand the API to fit the iPhone's applications' method calls.

App
1. You need a Mac to develop this. There is no xCode support for any other OS but Mac OSX.
2. There is very little known about the app you are trying to make, so this is all I can advice on when it comes to the APP.

Database
1. You've given very little information regarding the format of the database, so I've created a normalization for the current situation.
2. Assuming a person can have multiple serials for one or more applications, where the application has preset serials assigned to it. If not, you can ignore the 'table_app_serial' table.
Code:
 - table_user
   - user_id INTEGER(10) PK NN AI
   - user_handle VARCHAR(60) NN
   - user_password VARCHAR(43)) NN - (basic salted hash)
 - table_user_app
   - app_id INTEGER(10) FK(table_app) PK NN
   - user_id INTEGER(10) FK(table_user) PK NN
   - app_serial_number VARCHAR(LengthOfSerial) FK(table_app_serial) PK NN
 - table_app
   - app_id INTEGER(10) PK NN AI
   - app_name VARCHAR(50) NN
   - app_description TEXT
 - table_app_serial
   - app_serial_number VARCHAR(LengthOfSerial) PK NN
   - app_id INTEGER(10) FK(table_app) PK NN
Back to top
View user's profile Send private message
teeigeryuh
Master Cheater
Reputation: 25

Joined: 13 Oct 2008
Posts: 261
Location: The netherlands

PostPosted: Mon Nov 11, 2013 2:57 pm    Post subject: Reply with quote

I could make this in php for free man, or even go for node.js and even host it my self on a decent instance.

I'm just here to learn and for the experience.

_________________

ლ(╹◡╹ლ)
Back to top
View user's profile Send private message
PUSHEAX_PUSHEAX
Grandmaster Cheater
Reputation: 72

Joined: 13 Apr 2009
Posts: 969

PostPosted: Mon Nov 11, 2013 3:05 pm    Post subject: Reply with quote

teeigeryuh wrote:
I could make this in php for free man, or even go for node.js and even host it my self on a decent instance.

I'm just here to learn and for the experience.

This is irrelevant from what the OP wants.
Making this in php would be like making a hello world script.
Code:

$username = $_GET['username'];
$password = $_GET['password'];
$serial = $_GET['serial'];

$db->prepare('SELECT `serial` FROM `sometable` WHERE `username` = ? AND `password` = ?');
and so on...
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: Mon Nov 11, 2013 4:07 pm    Post subject: Reply with quote

potaters wrote:
teeigeryuh wrote:
I could make this in php for free man, or even go for node.js and even host it my self on a decent instance.

I'm just here to learn and for the experience.

This is irrelevant from what the OP wants.
Making this in php would be like making a hello world script.
Code:

$username = $_GET['username'];
$password = $_GET['password'];
$serial = $_GET['serial'];

$db->prepare('SELECT `serial` FROM `sometable` WHERE `username` = ? AND `password` = ?');
and so on...

There are REST frameworks in PHP perfectly suitable for building an API that suits this applications' need. As I recommended in my post, FYI.
Back to top
View user's profile Send private message
teeigeryuh
Master Cheater
Reputation: 25

Joined: 13 Oct 2008
Posts: 261
Location: The netherlands

PostPosted: Mon Nov 11, 2013 4:29 pm    Post subject: Reply with quote

potaters wrote:
This is irrelevant from what the OP wants.

>rs

_________________

ლ(╹◡╹ლ)
Back to top
View user's profile Send private message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Mon Nov 11, 2013 4:51 pm    Post subject: Reply with quote

potaters wrote:
teeigeryuh wrote:
I could make this in php for free man, or even go for node.js and even host it my self on a decent instance.

I'm just here to learn and for the experience.

This is irrelevant from what the OP wants.
Making this in php would be like making a hello world script.
Code:

$username = $_GET['username'];
$password = $_GET['password'];
$serial = $_GET['serial'];

$db->prepare('SELECT `serial` FROM `sometable` WHERE `username` = ? AND `password` = ?');
and so on...


That there is some vulnerable code sir.

_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Mon Nov 11, 2013 5:30 pm    Post subject: Reply with quote

edit: what was I even trying to post

Last edited by Cryoma on Mon Nov 11, 2013 6:46 pm; edited 1 time in total
Back to top
View user's profile Send private message
Nibelton
Master Cheater
Reputation: 1

Joined: 18 Mar 2011
Posts: 265

PostPosted: Tue Nov 12, 2013 2:25 pm    Post subject: Reply with quote

i'm in,but just one simple question:
why the fuck you post this in RS ?
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: Wed Nov 13, 2013 3:44 pm    Post subject: This post has 1 review(s) Reply with quote

Nibelton wrote:
i'm in,but just one simple question:
why the fuck you post this in RS ?

This is where the best and brightest of CEF call each other faggot, and show pictures of them lifting to assert their dominance over the younger generation. Both of these things happen at wildly inappropriate times, often when the topic has nothing to do with stupidity or fitness at all.
Back to top
View user's profile Send private message
Nibelton
Master Cheater
Reputation: 1

Joined: 18 Mar 2011
Posts: 265

PostPosted: Wed Nov 13, 2013 6:45 pm    Post subject: Reply with quote

Aniblaze wrote:
Nibelton wrote:
i'm in,but just one simple question:
why the fuck you post this in RS ?

This is where the best and brightest of CEF call each other faggot, and show pictures of them lifting to assert their dominance over the younger generation. Both of these things happen at wildly inappropriate times, often when the topic has nothing to do with stupidity or fitness at all.

i meant why the fuck OP post this thread in RS
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 1, 2  Next
Page 1 of 2

 
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