Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 09-16-2008, 01:54 PM   #1
Kellie
Cherry Pimps
 
Kellie's Avatar
 
Industry Role:
Join Date: Aug 2005
Location: Arizona
Posts: 1,198
LOOKING for a DEPENDABLE Programmer!!

We are looking for a reliable programmer to modify and create new customizations for a current script. If you can not modify the current script we have, then we will need a new one created to be similar to it.

Our main concern is we need someone very RELIABLE!! Must hit deadline and be dependable. I can't explain enough how important this is. We basically want someone with no BS and can get the job done.

Please contact me on ICQ (216-375-050) for more details or email me at [email protected]
__________________


Traffic Pimps Webmaster / Content Manager
Email: [email protected]
Skype: kellie_az
ICQ: 216375050
Kellie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 02:29 PM   #2
dready
Confirmed User
 
dready's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: Toronto, ON
Posts: 5,247
The holy grail.
__________________
ICQ: 91139591
dready is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 02:38 PM   #3
sortie
Confirmed User
 
sortie's Avatar
 
Industry Role:
Join Date: Mar 2007
Posts: 7,771
Quote:
Originally Posted by Kellie View Post
We are looking for a reliable programmer to modify and create new customizations for a current script. If you can not modify the current script we have, then we will need a new one created to be similar to it.

Our main concern is we need someone very RELIABLE!! Must hit deadline and be dependable. I can't explain enough how important this is. We basically want someone with no BS and can get the job done.

Please contact me on ICQ (216-375-050) for more details or email me at [email protected]

You should list the programming language the script is written in because not
all programmers use the same languages.
__________________
sortie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 02:41 PM   #4
nAtuRaLbEautY
Confirmed User
 
Join Date: May 2006
Posts: 6,107
Hi Kellie,

We are interested to know more about this project.
E-mail sent. Hope to hear from you!
__________________
Prime Outsourcing│offshore solutions│manual labor│staff leasing│full time employees
starting at $695.00/month=managed and dedicated
| icq: 309570461 | live chat
nAtuRaLbEautY is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 02:43 PM   #5
Kellie
Cherry Pimps
 
Kellie's Avatar
 
Industry Role:
Join Date: Aug 2005
Location: Arizona
Posts: 1,198
Quote:
Originally Posted by sortie View Post
You should list the programming language the script is written in because not
all programmers use the same languages.
I'm honestly not sure what it is because it was done awhile ago and the original person who created it no longer works online, so basically you would have to look at the existing code and see if its do-able
__________________


Traffic Pimps Webmaster / Content Manager
Email: [email protected]
Skype: kellie_az
ICQ: 216375050
Kellie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 02:46 PM   #6
sortie
Confirmed User
 
sortie's Avatar
 
Industry Role:
Join Date: Mar 2007
Posts: 7,771
Quote:
Originally Posted by Kellie View Post
I'm honestly not sure what it is because it was done awhile ago and the original person who created it no longer works online, so basically you would have to look at the existing code and see if its do-able
Well, you need to find this out, because if it's written in C and you only have the
binary than nobody can work with it.

Post the first 15 lines of the script if you can.
__________________
sortie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 02:52 PM   #7
2012
So Fucking What
 
2012's Avatar
 
Industry Role:
Join Date: Jul 2006
Posts: 17,189
Quote:
Originally Posted by sortie View Post
You should list the programming language the script is written in because not
all programmers use the same languages.
When they say script I always assume it's PHP

I think a lot of programmers wouldn't have a problem hitting a deadline. The problem is, usually you get something like "I want a CMS system in 2 weeks." ... here's $200 bucks rock on ! ...

No contract, no benchmarks, no money up front. No clear concise detailed task list ever. Usually the client just plays dumb to get more work out of the "victim". I love the "here's something we have already" ... make it work. This usually means both of you , client and programmer or in for a world of grief. Do yourself a favor and just build a new system. It's a shame most people dislike programmers .. oh well.
__________________
best host: Webair | best sponsor: Kink | best coder: 688218966 | Go Fuck Yourself
2012 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 02:53 PM   #8
Kellie
Cherry Pimps
 
Kellie's Avatar
 
Industry Role:
Join Date: Aug 2005
Location: Arizona
Posts: 1,198
Well its for our affiliate program www.latinteencash.com and the script that runs that. I know its mainly PHP, don't know if there is more, I'm not to savvy with programming languages

Here is some code:

Code:
$wmccbill = $system_ccbill; 

if ($_POST["ccbillinput"]) {
$cookie_life = time() + 31536000;
$ccbillid = $_POST["ccbillinput"];
$date = date('Y-m-d');
$_COOKIE["ccbillid"] = $ccbillid;
setcookie('ccbillid', $ccbillid, $cookie_life, '/', ".$system_domain");

//Checking to see if the affiliate has logged in before...
$result = $db_object->query("SELECT count(*) as myCount FROM idtrack WHERE ccbillid = '$ccbillid' "); 
$info = $result->fetchRow(); 
$indatabase = $info["myCount"];

//If the affiliate has not logged in before, create a new record for him/her.
if ($indatabase == "0"){
$add = "INSERT INTO idtrack (ccbillid, firstdate, lastdate) VALUES ('$ccbillid', '$date', '$date')"; 
$result = $db_object->query($add); } }

if ($_COOKIE["ccbillid"] == ""){$ccbilloutput = "XXXXXX"; }
else if ($_COOKIE["ccbillid"] <> ""){$ccbilloutput = $_COOKIE["ccbillid"]; }?>
<?php 
if($_SERVER["QUERY_STRING"]!="bypass"){
require("geo.php"); 
}
?>
__________________


Traffic Pimps Webmaster / Content Manager
Email: [email protected]
Skype: kellie_az
ICQ: 216375050

Last edited by Kellie; 09-16-2008 at 02:55 PM..
Kellie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 02:57 PM   #9
mona
Registered User
 
Join Date: Feb 2008
Location: Mona = "female monkey" in Spanish
Posts: 1,940
Php........
mona is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 02:57 PM   #10
Kellie
Cherry Pimps
 
Kellie's Avatar
 
Industry Role:
Join Date: Aug 2005
Location: Arizona
Posts: 1,198
Quote:
Originally Posted by fartfly View Post
When they say script I always assume it's PHP

I think a lot of programmers wouldn't have a problem hitting a deadline. The problem is, usually you get something like "I want a CMS system in 2 weeks." ... here's $200 bucks rock on ! ...

No contract, no benchmarks, no money up front. No clear concise detailed task list ever. Usually the client just plays dumb to get more work out of the "victim". I love the "here's something we have already" ... make it work. This usually means both of you , client and programmer or in for a world of grief. Do yourself a favor and just build a new system. It's a shame most people dislike programmers .. oh well.
Yeah basically we have been burned twice, and on both situations we have drawn up something, and was willing to pay what it would cost to get done. Both times was told it would be no problem, and then *poof* Don't even mind starting something from scratch if they cannot build off what we have, we will will anything that makes the programmer's job easier. Just need to get this project done.
__________________


Traffic Pimps Webmaster / Content Manager
Email: [email protected]
Skype: kellie_az
ICQ: 216375050
Kellie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-16-2008, 05:25 PM   #11
HomerSimpson
Too lazy to set a custom title
 
HomerSimpson's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Springfield
Posts: 13,826
If you haven't solved this contact me...
I'm really good at php but I'm kind of busy these days...
But this looks simple... so I can take a look...

(my ICQ is in the sig)
__________________
Make a bank with Chaturbate - the best selling webcam program
Ads that can't be block with AdBlockers !!! /// Best paying popup program (Bitcoin payouts) !!!

PHP, MySql, Smarty, CodeIgniter, Laravel, WordPress, NATS... fixing stuff, server migrations & optimizations... My ICQ: 27429884 | Email:
HomerSimpson is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.