GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Sara is so stupid she accused me of stealing her open source chaturbate code (https://gfy.com/showthread.php?t=1339517)

CaptainHowdy 12-23-2020 09:41 AM

Quote:

Originally Posted by sarettah (Post 22793956)
Thank you mods for putting this in the main forum where it belongs. Much appreciated.

For anybody just joining, a little history.

In January, 2014, in a different place, someone asked "how do you make a cam site from Chaturbate's API?" (or something ot that effect).

I put together a quick little script. Bought a domain, Put the script up. Tuned it a touch and then presented it to that forum as an answer to the question. I put up a zip file of the code so people could grab it and use it.

I answered whatever questions people had about it and helped whoever wanted to use it install it on their servers.

I then moved forward with other stuff and just kind of forgot about it.

Move forward 6 months and all of a sudden I am seeing traffic. When I check, I find that I am in the number 1,2 or 3 position on google for a shitload of good cam keywords.

A while later, people hit me up with questions about how I am getting it ranked. I answered quite truthfully that I have no idea.

Then Beanboy hits me up and tells me that he had his programmer create a site like mine from scratch and it didn't seem to be ranking, could I take a look and provide insight into why. I took a look and what I saw was my code. I informed him that his programmer had not coded it from scratch and a conversation occurred that resulted in him claiming I said he stole my code. I did not claim that. I claimed his programmer bullshitted him.

Move forward 2 years and Beanboy is on a rave (still in the other place) and he brings this up and the conversation that I quoted above, with the code comparison ensued.

Beaner then brought it up again yesterday, in the politics section and this is the thread he created there that I asked the mods to move here because it is most definitely a business discussion and should not be hidden away in the politics section.

So, that is the history behind this conversation.

.

No good deed goes unpunished. Merry Beer-Mas, Sarettah :xmas-smil22 .

sarettah 12-23-2020 10:01 AM

Quote:

Originally Posted by beaner (Post 22793998)
You are so full of shit Sara. You got a site to hit for keywords, bragged about it, then put code up open source. I used that open source code and you accused me of stealing it. Fuck you

You are completely delusional. The code was put up January 2014. The site did not start getting any traction in the SEs until July 2014.

I never accused you of stealing it. I told you that your programmer did not write it from scratch, and he didn't. Anybody that can read code, even at the beginner level, can compare the stuff I posted and tell you that one was cribbed from the other.

You, for some reason, decided that your programmer did not crib the code (as you have such great luck with programmers) and decided to call me a liar among other things.

This was posted on January 14, 2014:

Quote:

For what it's worth, shitty code and all ;p

<!--
Example of using a chaturbate feed to make a mini site.
January 4, 2014
-->
<html>
<head>
<base href="https://gfy.com/" /><!--[if IE]></base><![endif]-->
<base href="https://gfy.com/" /><!--[if IE]></base><![endif]-->
<meta http-equiv="content-type" content="text/html; charset=windows-1250">

<title>Simple Chaturbate XML Example</title>

<!-- little java scriptlet to populate and show the currently showing window when a pic is clicked -->
<script type="text/javascript">
function loadit(urlin, userin, chaturl)
{
currshow.innerHTML='Currently Showing: ' + userin + ' <input type=button value=Close onClick="currshow.innerHTML=\'\';currshow.style.di splay=\'none\';"><br><a onClick="currshow.innerHTML=\'\';currshow.style.di splay=\'none\';" target=_blank href="' + chaturl + '"><iframe border=0 scrolling="no" src="' + urlin + '" height="440" width="503"></iframe><br>Click Here To Join The Chat!</a>';
currshow.style.display='block';
scroll(0,0);
}
</script>
</head>
<body style="text-align:center;">
<div style="width:100%;text-align:center;">
<h2>Chaturbate XML Example</h2>

<?php

// pull in the xml feed
// this should be the link you get from the chaturbate tools, replace the link that is there
$userlist = simplexml_load_file('http://chaturbate.com/affiliates/api/onlinerooms/?format=xml&wm=JkjyU');

// counter for female count
$fcnt=0;

// how many females are in there
// go through array to compute number of females
foreach ($userlist as $user)
{
if($user->gender=='f')
{
$fcnt++;
}
}

// 6 column display
// itemcnt is the number of items in each column
$itemcnt=intval($fcnt/6);
if($fcnt/6-$itemcnt>0)
{
$itemcnt++;
}

// counters to keep track of columns and items
$colcnt=0;
$itmcnt=0;

// go through the user list from top to bottom
foreach ($userlist as $user)
{
// ignore if they are not marked female
if($user->gender=='f')
{
//if we are at the stsrt of the column
if($itmcnt==0 || $itmcnt==$itemcnt)
{
$colcnt++;
// if we have been in a column close the column
if($itmcnt>0)
{
?>

</div>

<?php
}
// if we are at the top of column 2 then we want to insert the hidden div for the currently showing window
if($colcnt==2)
{
// to get the columns to do the move down we put a div across the top of columns 2 through 5
// then we put the hidden div inside that div
?>
<div style="width:800px;float:left;margin:auto;">
<div name="currshow" id="currshow" style="float:none;display:none;width:500px;height: 540px;text-align:center;margin:auto;"></div>

<?php
}
// if we are at the start of column 6 we need to close the div that we used to push the columns down
if($colcnt==6)
{
?>

</div>

<?php
}
// put up the start of each column div
?>

<div name=col' . $colcnt . ' id=col' . $colcnt . ' style="width:200px;float:left;">

<?php
// reset itemcnt to zero at start of each column
$itmcnt=0;
}
// incerment the itemcnt to reflect we are printing an oitem
$itmcnt++;
// extract the url used for the embed from the iframe embed element
$iframe=substr($user->iframe_embed,strpos($user->iframe_embed,'http'));
$iframe=substr($iframe,0,strpos($iframe,"'"));
// print the next item
// we are truncating the language and location variables because of the crap people put in there
?>
<div style="height:250px;">
Host: <?php echo substr($user->username,0,20); ?><br>
<img src="<?php echo $user->image_url; ?>" onClick="loadit(<?php echo "'$iframe','$user->username','$user->chat_room_url'"; ?>);"><br>
Time on line: <?php echo number_format($user->seconds_online/60,2); ?> minutes<br>
Language(s) spoken: <?php echo substr(trim($user->spoken_languages),0,18); ?><br>
<?php
// if they have a url or a twitter or email address in location then do not show it
if(substr_count(strtolower($user->location),'http')==0 && substr_count(strtolower($user->location),'@')==0)
{
?>
Location: <?php echo substr(trim($user->location),0,18); ?>
<?php
}
// then put in a little space between rows
?>
</div>
<div style="height:20px;"></div>
<?php
}
}
?>

</div>
</div>
</body>
</html>
Last edited by sarettah; January 4th, 2014 at 06:34 PM.

sarettah 12-23-2020 10:05 AM

This was posted January 28th, 2014:

Quote:

I had given xxxxxxx a sneak peek at this last Friday or so. I have done a couple of tweaks too it since then.

Some changes to note:

this version is driven off a mysql database that is updated through a cron job. This gets rid of the page lag on the original which was caused by the page fetch. This way we are only doing the page fetch one time for all users instead of once per page hit.

The sort link provided on the front page are all ajax calls to the database.

The chatscreen portion and how each cam looks is controlled by a template file, much like xxxxxxx has described xxxxxxx using.


http://madspiders.com/chatscript/camfox_script.zip

I have not protected the link yet. Please do not disseminate the link beyond this group. You guys are free to use it as you see fit.

There is a readme file in there with some brief instructions. I did a test to make sure they are correct.

readme.txt
January 28, 2014 - Release #2 of initial script. Not doing versions yet.

Chaturbate white label script by [email protected]
Made for the folks at xxxxxxxxxxxxxxx.

This is a script package to create a chaturbate white label type site using the chaturbate api xml version feed at
You must be a registered chaturbate affiliate to use the feeds. If you want sign up under me then go to
if you don't want to give me credit then just go to and sign up.

There are no guarantees regarding this script package. It is use at your own risk.
I will provide any help I can with setting it up and getting it working.
If you need to contact me then please send me an email at [email protected] or hit me with a PM on xxxxxxxxx

This script uses php and mysql. It is using the PDO object for database access.

There are 18 files in this package. It was zipped with the directory structure intact.

--Files--
The following files are included:

1. readme.txt - The file that you are reading right now.
2. changes.txt - Informal change log
3. table_schema.sql - Table structure for the users table
4. index.htm - The main page template file
5. includes/functions - has the database connectionf function
6. includes/dbcreds.php - contains the info necessary to connect to the databse
7. includes/.htaccess - basic htaccess file that disallows access to the includes folder for all but your server
8. cron/.htaccess - basic htaccess file that disallows access to the cron folder for all but your server
9. cron/chat_db_update.php - used to periodically refresh the database. Should be called by a cron job on the server
10. ajax/chatscreen.php - This file creates the list of chat models that appears on the main page
11. js/main.js - This contains all the custom java scriptlets used by the script
12. styles/style.css - This contains the style sheet used by the script
13. templates/item_template.htm - This contains the structure for each of the cam boxes that appear on the main page
14. dumps/.htaccess - basic htaccess file that disallows access to the dumps folder for all but your server
15. images/logo.jpg - camfoxes log. Please replace with your own logo
16. js/jquery-1.9.1.js - jquery library
17. js/jquery-ui.js - jquery ui library
18. styles/smoothness-jquery-ui.css - jquery smoothness styles


--Instructions--
First unzip the package to a folder on your desktop.

Create the database to be used by the script.

--Database stuff--
In the main folder there is a file called table_schema.sql. This contains an importable database structure for the users table. This is used to store the chat models information.
Create a database on your server and then import the table_schema.sql file to that database. You can also create the table by hand using the schema as your map.

--File stuff--
Do the following edits:
includes/dbcreds.php - edit the username, password, datbase name and database host to the values needed for your server.
cron/chat_db_update.php - edit the includepath, chatfeedlink and mysite variables.
The includepath should be the internal server path to your includes folder. Something like /home/user/site/includes.
The chatfeedlink should be the link to your xml feed (obtained at chaturbate tools)
The mysite var should be the full url to the site. It is used as the referral string in the xml feed pull.
index.htm - There is a bunch to edit here but none of it effects the site operating. They are all the normal edits you would do on a site. Title
description, keywords, warning page verbiage, site text verbiage.

--Please Note - new edit --
The feed from chaturbate includes urls for both free signups and revshare programs. If you do not change the default value, when the
main chat model list is being written, the urls associated with them will be split 50/50 between revshare and free signup.

If you want to change this you can edit it in the top of the chatscreen.php file.

Where you see $free_pct=50; change the 50 to whatever percent you want to have be free signup. All others will be revshare.
ie:if you set free_pct to 20 then 20% of the displayed cams will be tagged with your free signup url and 80% will be tagged with your
revshare url.


cron/.htaccess - I reccomend you add a line allowing your ip to access this so you can run the update program from the browser if needed.

There is nothing else that requires editing in order to get this up and running.

--Upload the directory structure from your desktop to the server --
You do not (and probably should not) need to upload the readme.txt file or the table_schema.sql file to the server

on the server change the permissions in the dump directory to allow write acces. for me this is 777, set it to whatever the tightest security you can on your server and still have it writeable from the script when running serverside.

--Load the database--
do an initial database load. Either disable htaccess in the cron folder or add your ip as mentioned above.

In your favorite browser enter the address to the update script. ie: Page Not Found - 404 Error Page

The script should run for a few seconds and then show you a run down of what it did. If you get no output or an error mesaage then you have something wrong somewhere. If you get no output then errors are probably disabled on your server. they might be in an error log or we might have some debugging to do to get to the issue.

if you have an error message to work with then it will probably point you to the problem.

Once the database is loaded intially the site should operate properly.

If you disabled .htaccess for this then you should reenable it.

--set up cron--
On my install I have the database update portion running every 5 minutes from a cron on my server. I thought this was a reasonable time interval.

I also have a javascript timer running on the page which refreshes the chat window every 5 minutes. If you want more frequent updates then run the cron more often and change the time interval in the javascript (explained later).

Your host should be able to help you with setting up a cron for this. If you are unmanaged then you will do it yourself I guess.

The line from my cron for this looks like:

*/5 * * * * /usr/local/bin/php -q /server_path_to_site/cron/chat_db_update.php > /server_path_to_site/dumps/chatdb.dump

This will run the cron every 5 minutezs and put any output from the program in the dumps folder in a folder called chatdb.dump.

The dump file can be very handy for debugging but you do not have to include it if you don't want to.

--Other edits--
If you want additional info from the feed in the various cam boxes edit the template/item_template.htm file to include the tags then in
the ajax/chatscreen.php edit the tag replace section to make sure the tags are handled properly.

Index.htm should be edited to what you want the page to look like. There are several divs that the scripts use so they need to exist.

Chatdiv is used to house the webcam model list.
Currentshow is used for the preview window.
Titlediv is used for the message about how many models are online.
Warningdiv is used for the warning page text and enter/exit links.

Well, that is about all I have to say.

Have fun. I hope it works for you.

January 28, 2014
Last edited by sarettah; January 28th, 2014 at 04:40 PM.

sarettah 12-23-2020 10:11 AM

I did not get much traffic to it until June or July 2014 so how the fuck could I be bragging about how much traffic I was getting in January 2014 when I put up the script?

Like most things in your world, you make them up as you go along and could not give one fuck about whether they are true or not.

This was the update to the discussion that I made on June 6, 2014:

Quote:

Ok, it's been just about 6 months since I first set up camfoxes. First significant traffic was on Jan 20 but the site was live on the 4th.

So, I figured it was time to show how rich this has made me ;p

http://www.madspiders.com/images/chatstats.jpg

Numbers speak for themselves. That $42 in revshare was one user. I was splitting the cam links up 50/50 between free and revshare to see which would work best.

.

So, by June, I had made a whopping $42.

I don't recall exactly when you and I had our discussion but it was sometime after that.

So, facts show you are full of shit as usual Beanfuck.

.

bean-aid 12-23-2020 10:14 AM

Sara you infinitely stupid mother fucker. I told you he used the code you put up as open source. Of course your stupid cam fox site was reserved before it ranked. It wasn't till it ranked, you bragged about it, then offered the script did I have any interest. It is your accusation I stole your code where the problem is. Stop sniffing gas hillbilly.

fuzebox 12-23-2020 10:24 AM

https://media.giphy.com/media/gfxZmG...s2SP/giphy.gif

sarettah 12-23-2020 10:26 AM

Quote:

Originally Posted by beaner (Post 22794015)
Sara you infinitely stupid mother fucker. I told you he used the code you put up as open source. Of course your stupid cam fox site was reserved before it ranked. It wasn't till it ranked, you bragged about it, then offered the script did I have any interest. It is your accusation I stole your code where the problem is. Stop sniffing gas hillbilly.

I did not brag about my script prior to offering it up. I have already proven that.

I registered camfoxes on January 19, 2014. I put the packaged script up on January 28, 2014.

I did not get any ranking on it until June or July 2014.

So, how could I possibly be bragging about how it was ranking in January?

I put the script up in reply to a requet by another community member. That request was put up on December 31, 2013.

Quote:

So pretty clueless with xml stuff and I would like to setup a cam whitelabel with chaturbate using xml since I heard their whitelabels are not very seo friendly.. How much for someone to do it for me? Plan is to popunder the page and if possible use their tools like iframes if possible.

Thanks.. another user here said they would help me but just ignores me now :\

I replied to that thread on January 4 with a mockup site I had made on madspiders.com:

Quote:

Originally Posted by sarettah (Post 29939)
.

xxxxxxx, are you talking about reading the xml file and making a site from the data? Like this:

http://www.madspiders.com/images/chat_xml_example.jpg

404 Not Found

If you are then that is pretty simple to do. The one I put up is just sucking in the xml feed and then using some of it in a simple table. Once you have the xml data in you can present it however you want.

If that is what you are talking about then I will post more once I see your answer.

That started the conversation. I did not put up the script because it was ranking. I put it up as an answer to someone's request for help.

You later hit me up with your questions, sometime after July 2014, and I informed you that your programmer did not do it from scratch.

Your first response in that thread was in October, 2014 while we were discussing the stats I was seeing at chaturbate, so our conversation was probably sometime after that:

Quote:

Originally Posted by beaner;
Is your site sending same person multiple times? They likely don't count duplicate IP's more then once.

You are delusional as hell there beanfuck.

.

bean-aid 12-23-2020 10:54 AM

Dudette... the issue at hand, again, is I fucking told you I used your script and you accused me of stealing it. What has dislodged in your estrogen filled brain?

sarettah 12-23-2020 11:01 AM

Quote:

Originally Posted by beaner (Post 22794033)
Dudette... the issue at hand, again, is I fucking told you I used your script and you accused me of stealing it. What has dislodged in your estrogen filled brain?

I have no idea what your fucking problem is. Drinking too much, drugging too much, or you are just fucking psychotic but I never said you stole my code.

I said that your programmer did not write it from scratch, and I stand by that statement and have provided the proof.

You offer nothing but hot air and insults in response, as usual.


.

bean-aid 12-23-2020 11:08 AM

Your willful ignorance in politics section about being perfectly fine with rampant fraud to win an election is what sparked this thread.
And I reached out to you after a site was up and said... hey, I used your code for chaturbate and not getting the live you are seeing. Can you take a look? Then you acted like a hysterical cunt saying that was YOUR code, and I was like no shit, I used what you offered for free.

Mods, this is now a political thread, please move to appropriate section.

sarettah 12-23-2020 11:10 AM

Fiddy fucking Beanboys Barfing Up Bullshit.

.

sarettah 12-23-2020 11:18 AM

Quote:

Originally Posted by beaner (Post 22794038)
Your willful ignorance in politics section about being perfectly fine with rampant fraud to win an election is what sparked this thread.
And I reached out to you after a site was up and said... hey, I used your code for chaturbate and not getting the live you are seeing. Can you take a look? Then you acted like a hysterical cunt saying that was YOUR code, and I was like no shit, I used what you offered for free.

Mods, this is now a political thread, please move to appropriate section.

No, this is still a thread about business. Just because you decided to attack my business because you could not win a political discussion does not make it political.

I did not get upset over you using code, quit trying to spin it.

I can post more of the conversation to prove that you told me that your programmer wrote it from scratch. I merely informed you that that was not true.

You are the one that went hysterical on that and started saying I accused you of stealing, which I never did.

You posted theis on November 29, 2016:

Quote:

you know something... I don't like you, Sara, because you offered your free chaturbate script to everyone and I didn't take the script... but asked a programmer to replicate the script. I then saw no success in the replication so asked you for your input and you accused me of stealing said script... but you offered the mother fucking thing for free. That really pissed me off.
And later the same day:

Quote:

Originally Posted by beaner;
Liar... he took none of your code.

I hired a programmer to not take your code.. but to figure out why your stupid chaturbate site was gaining attraction. Why in the fucking hell would I ask a programmer to take your code?

It is clear that we were dscussing the code that your programmer provided to you which I have already provided proof was cribbed fom my code, unless, somehow I cribbed from your programmer's code. So are you claiming that I stole your code now?

You are delusional Beanface, take a break, get some rest, enjoy some time with your family.

.

Brit in Cambodia 12-23-2020 11:20 AM

Whats blackhat adult?????

bean-aid 12-23-2020 11:28 AM

Quote:

Originally Posted by sarettah (Post 22794046)
No, this is still a thread about business. Just because you decided to attack my business because you could not win a political discussion does not make it political.

I did not get upset over you using code, quit trying to spin it.

I can post more of the conversation to prove that you told me that your programmer wrote it from scratch. I merely informed you that that was not true.

You are the one that went hysterical on that and started saying I accused you of stealing, which I never did.

You posted theis on November 29, 2016:



And later the same day:



It is clear that we were dscussing the code that your programmer provided to you which I have already provided proof was cribbed fom my code, unless, somehow I cribbed from your programmer's code. So are you claiming that I stole your code now?

You are delusional Beanface, take a break, get some rest, enjoy some time with your family.

.

So he did what was asked which was replicate the functionality of your open source code but don't make it identical because I want it not identical? That sounds right actually.

And please do not talk like you have any hand up in any political argument. You troll my posts with large font... Biden is your president. That is your entire political stance while superiors to yourself lay out, in detail, all the fraud that occurred and your only come back is... show me the evidence! ...as its jammed in your fucking face.

elliso 12-23-2020 11:30 AM

That s absolutely not funny at all,

sarettah 12-23-2020 11:31 AM

Quote:

Originally Posted by Brit in Cambodia (Post 22794049)
Whats blackhat adult?????

I have no idea what you are talking about.

Anyway, in regards to earlier, Beanfart stating that the script couldnot rank, here are the current positions that another site, 18yearoldcams.com, which is using the same script, have in google.

https://www.madspiders.com/images/18..._positions.jpg

So, the problem is obviously not the script but the implementation.

.

bean-aid 12-23-2020 11:36 AM

Quote:

Originally Posted by sarettah (Post 22794056)
I have no idea what you are talking about.

Anyway, in regards to earlier, Beanfart stating that the script couldnot rank, here are the current positions that another site, 18yearoldcams.com, which is using the same script, have in google.

https://www.madspiders.com/images/18..._positions.jpg

So, the problem is obviously not the script but the implementation.

.

Hence why I reached out to your retarded ass in the first place.

sarettah 12-23-2020 11:39 AM

Quote:

Originally Posted by beaner (Post 22794052)
So he did what was asked which was replicate the functionality of your open source code but don't make it identical because I want it not identical? That sounds right actually.

Wibble

please keep the political discussion in politics.

This is a business thread, that you started. Please respect the board and your betters.

You said you had your programmer create the script from scratch. They did not do that as has been demonstrated. That is the only thing I told you and you took great insult over it.

Now go fuck yourself.

.

sarettah 12-23-2020 11:39 AM

Quote:

I jusst want to clarify one point many people don't seem to understand.

The term "Open Source" means you have the ability to view the source code, ie the source code is open. It does not mean that you have full rights over somebody elses work.
That is correct.

.

Brit in Cambodia 12-23-2020 11:53 AM

after having a dig blackhatadult seems to be an invite-only forum.

nice :)

https://gfy.com/webmaster-q-and-fuck...adult-com.html

bean-aid 12-23-2020 11:55 AM

Quote:

Originally Posted by sarettah (Post 22794065)
please keep the political discussion in politics.

This is a business thread, that you started. Please respect the board and your betters.

You said you had your programmer create the script from scratch. They did not do that as has been demonstrated. That is the only thing I told you and you took great insult over it.

Now go fuck yourself.

.

You're a fucking sell out programmer. The task was... here is his code he's made available for free, this is his site that is ranking for terms like free webcams, etc. Replicate it but don't use code verbatim. Try to figure out why Google is giving the site love. That is what I told your dumb ass way back and you still became hysterical.

Advice, don't make a script available for free to then become a hysterical cunt when someone uses it. Bad for biznass

P.s. trump won in a landslide

Klen 12-23-2020 12:27 PM

Quote:

Originally Posted by Brit in Cambodia (Post 22794072)
after having a dig blackhatadult seems to be an invite-only forum.

nice :)

https://gfy.com/webmaster-q-and-fuck...adult-com.html

It's a dead forum, you are not missing anything. Only 1 post in whole month,not counting sarettah complain about beaner.

King Mark 12-23-2020 12:30 PM

That forum had potential years ago. Then one day I forgot it existed until this thread.

Anyway, beaner is trolling. Let him be.

elliso 12-23-2020 12:37 PM

absolutely and this very common over internet everything open is taken and that s what MR BEANER did, and he s accussing sara of calling him a theif while he confirm not but he did take codes and modifiy for his own benefit

NoWhErE 12-23-2020 01:21 PM

Beaner is a complete waste of space. Why even bother with him?

baddog 12-23-2020 01:21 PM

Don't feed the Trolls

HowlingWulf 12-23-2020 01:36 PM

I think Beaner is on the losing side here.

bean-aid 12-23-2020 01:46 PM

Quote:

Originally Posted by HowlingWulf (Post 22794126)
I think Beaner is on the losing side here.

That would be an impossibility. What I do predict is a video from Sara coming shortly.

Shedevils 12-23-2020 01:48 PM

When reading this all I can think about is how it is not ever a good idea to post your stats.

The Porn Nerd 12-23-2020 01:50 PM

Quote:

Originally Posted by Shedevils (Post 22794132)
When reading this all I can think about is how it is not ever a good idea to post your stats.

This thread makes me want to go to Taco Bell.

Colmike9 12-23-2020 02:35 PM

Quote:

Originally Posted by The Porn Nerd (Post 22794134)
This thread makes me want to go to Taco Bell.

I got the Taco Bell app and they gave me a free chalupa box :upsidedow

PornDiscounts-V 12-23-2020 03:53 PM

Elegant solution.

Sad when somebody takes your stuff and doesn't do anything to improve on it.

Which is obvious on the nested IFs.

You should do some proper SEO on camfoxes to remove a bunch of text having little to do with cams. Also remove the H1 tags and H2 tags that are not properly used. Then get it some back links. No reason why it shouldn't be about 20 x's busier.

CaptainHowdy 12-23-2020 04:19 PM

Quote:

Originally Posted by beaner (Post 22794073)
You're a fucking sell out programmer.

https://i.imgur.com/A82elcQ.gif

bean-aid 12-23-2020 04:32 PM

Quote:

I jusst want to clarify one point many people don't seem to understand.

The term "Open Source" means you have the ability to view the source code, ie the source code is open. It does not mean that you have full rights over somebody elses work.
Source code isn't even the right word. He offered the code to any member of a private forum to use as they wish with detailed instructions on how to do so on your own site. It was modified and after a few months no luck, so I went to Sara and asked to take a look and he blew up, for days, about it.

NatalieK 12-23-2020 04:46 PM

Quote:

Originally Posted by beaner (Post 22794194)
blew up, for days, about it.

so why bring your shit here?


i never understand why GFY is such a "drama" board to a handful of people. GFY, go fuck yourself, shouldnīt it be about masturbation?


are you wanking off while youīre typing, itīs the testosterone isnīt it :winkwink:

Colmike9 12-23-2020 04:48 PM

Quote:

Originally Posted by NatalieK (Post 22794195)
GFY, go fuck yourself, shouldnīt it be about masturbation?

I masturbate every time I log in here

bean-aid 12-23-2020 04:48 PM

And Sara, you should thank me for making whatever changes were done, studied it, compared to original, and possibly identified what Google liked and what Google didn't. You, and I, could have been making 100k/month if the bizarre reason Google was indexing your site with absolutely no link building or anything... by your own admission. Shame that your hot head gets in the way.

Now go sniff some glue.

bean-aid 12-23-2020 05:02 PM

Quote:

Originally Posted by NatalieK (Post 22794195)
so why bring your shit here?


i never understand why GFY is such a "drama" board to a handful of people. GFY, go fuck yourself, shouldnīt it be about masturbation?


are you wanking off while youīre typing, itīs the testosterone isnīt it :winkwink:

I didn't bring it here, Sara requested it be moved from 12 person political section to here. The thread was started because he didn't get off my dick with his troll posts in big font... Biden is your president. This thread would have already been buried in a sea of worthless threads in the politics section by now. Reap what you sow

EddyTheDog 12-23-2020 06:36 PM

You are either lying about getting a dev to redo the script or a dev ripped you off...

I suspect the former, either way you lose Beaner.....

Pink24 12-23-2020 06:38 PM

Quote:

Originally Posted by sarettah (Post 22794056)
I have no idea what you are talking about.

Anyway, in regards to earlier, Beanfart stating that the script couldnot rank, here are the current positions that another site, 18yearoldcams.com, which is using the same script, have in google.

https://www.madspiders.com/images/18..._positions.jpg

So, the problem is obviously not the script but the implementation.

.

Hi Sara, you can tell me to fuck off if you like. But, if you are feeling nice I have some questions.
I have no idea what this script is that you and beaner are arguing about but if it ranks well then it's interesting to me.

I looked at your site and you seem to have the main page with the CB embed but a lot of your text is hidden from users and presumably only visable by robots??

What does your script do?

Can it be used on other types of sites or is it only good for the same type of layout?

You can PM me if you prefer.


All times are GMT -7. The time now is 02:01 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc