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)
-   -   Coder peeking head back in (https://gfy.com/showthread.php?t=1355469)

andy erotic 06-11-2022 07:45 AM

Coder peeking head back in
 
Was a coder for an adult company long ago and peeking my head back in. I recognise some usernames, though no one would know me, I tended to keep myself off boards. It seems like very little has changed in the last 15 years or so! Still with TGP / tube scripts, scrapers to pull data from sites and tweet / repost it for affiliates etc.

The same dramas...and you still use NATS!

A lot has changed in the coding world really, with exciting changes that would essentially allow you to change your workflows without needing a coder to make the changes to some propriety system they made.

Currently bored, so I'm looking for any ideas for projects that I could code up - nothing really is too big!

CurrentlySober 06-11-2022 07:51 AM

Quote:

Originally Posted by andy erotic (Post 23010480)
Currently bored

Hi, I'm Currently Sober... Are you my daddy?

andy erotic 06-11-2022 08:06 AM

Quote:

Originally Posted by CurrentlySober (Post 23010482)
Are you my daddy?

Play your cards right and it could be a "maybe..."

CurrentlySober 06-11-2022 11:41 AM

Quote:

Originally Posted by andy erotic (Post 23010484)
Play your cards right and it could be a "maybe..."

https://deadline.com/wp-content/uplo...es_334441o.jpg

Good Game, good game... :winkwink:

NakedWomenTime 06-11-2022 11:49 AM

Quote:

Originally Posted by andy erotic (Post 23010480)
Currently bored, so I'm looking for any ideas for projects that I could code up - nothing really is too big!

Welcome to the forums. What is your programming language of choice?

Leveraging APIs would probably be a good area for you.

andy erotic 06-11-2022 11:54 AM

Hi, any language, really. Be it, PHP, python, C/C++, front-end or jsnode. What APIs do you have in mind?

blackmonsters 06-11-2022 11:57 AM

Quote:

Originally Posted by andy erotic (Post 23010563)
Hi, any language, really. Be it, PHP, python, C/C++, front-end or jsnode. What APIs do you have in mind?

No offense intended; but the fact that you are still calling yourself a "coder" instead of a "developer" might be why you are bored.

:2 cents:

NakedWomenTime 06-11-2022 01:09 PM

Quote:

Originally Posted by andy erotic (Post 23010563)
Hi, any language, really. Be it, PHP, python, C/C++, front-end or jsnode. What APIs do you have in mind?

Most of the big affiliate offerings have them, e.g. Chaturbate.

andy erotic 06-11-2022 01:51 PM

What other APIs? There are threads here saying that chaturbate refs are going to shit because the performers are telling their cashcows to leave and then join under their ref.

andy erotic 06-11-2022 02:35 PM

Quote:

Originally Posted by CurrentlySober (Post 23010541)

Nice to see you, to see you, nice!

sarettah 06-11-2022 07:48 PM

Quote:

Originally Posted by andy erotic (Post 23010591)
What other APIs? There are threads here saying that chaturbate refs are going to shit because the performers are telling their cashcows to leave and then join under their ref.

Yes, that is what is happening, by all means, don't waste any time promoting chaturbate.

Trust me. :pimp

.

plsureking 06-12-2022 04:07 AM

Quote:

Originally Posted by andy erotic (Post 23010480)
A lot has changed in the coding world really, with exciting changes that would essentially allow you to change your workflows without needing a coder to make the changes to some propriety system they made.

there are a lot of programmers here. why would you assume we don't know about the "exciting" changes? they just aren't needed for most applications.

the latest dev updates are only needed in chat/cams/vr, where old tech doesn't work well. we're not dinosaurs. we're just not excited about every shiny no-code toy. i personally try to keep my applications and code as minimal as possible.

welcome back tho! :pimp

#

redwhiteandblue 06-12-2022 08:00 AM

If you could figure out how to stop this happening you'd please a lot of people -
Code:

if($this->user->name == "DVTimes") {
  do
  {
    postShitOnGfy("all_day_long");
  } while(!$this->user->banned)
 }


blackmonsters 06-12-2022 08:22 AM

Quote:

Originally Posted by redwhiteandblue (Post 23010796)
If you could figure out how to stop this happening you'd please a lot of people -
Code:

if($this->user->name == "DVTimes") {
  do
  {
    postShitOnGfy("all_day_long");
  } while(!$this->user->banned)
 }



https://www.tampermonkey.net/

PHP Code:

// ==UserScript==
// @name        gfy2.com
// @description block  threads,  posts, etc from certain users
// @include     https://gfy.com/*
// @include     http://*.gfy.com/*
// @include     https://gfy.com/*
// @include     https://*.gfy.com/*
// @require     https://code.jquery.com/jquery-1.7.2.min.js
// @version     1.0
// @grant       none
// ==/UserScript==
var hide_users = [
    
'DukeSkywalker',
    
'Grapesoda',
    
'beaner',
    
'DVTimes'
];

$(
document).ready(function () {
    $(
'#threadslist tbody tr').each(function (thread_indexthread_value) {
        var 
thread_block = $(this);
        var 
thread_starter = $('span[style="cursor:pointer"]'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
thread_starter === hide_user) {
//         $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");
                
thread_block.remove();
            }
        });
    });

    $(
'table[id^="post"]').each(function (post_indexpost_value) {
        var 
post_block = $(this);
        var 
post_author = $('a.bigusername'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
post_author === hide_user) {
                
post_block.remove();
            }
        }); 
//removes entire post of someone on the ignore list.

$('div[style^="margin:"]').each(function (post_indexpost_value) {
   var 
post_block = $(this);
   var 
post_block_quote = $('div[style^="font-style:italic"]'this);
   var 
post_author = $('strong'this).text();
   $(
hide_users).each(function (hide_indexhide_user) {
       if (
post_author === hide_user) {
           
//post_block.remove();
           
$(post_block_quote).html("<br><font color=#998877><i>I'm a useless piece of </i></font><font size=6>&#128169</font>");
       }
   });
}); 
//removes any quotes someone may have made of a person on ignore, even if quotes multiple times but they have to have the name in the quote

    
}); //end of nested forloops for checking both posts and quotes.
}); 


https://www.youtube.com/watch?v=tHTql9QXj-Y



:2 cents:

andy erotic 06-12-2022 09:20 AM

Quote:

Originally Posted by redwhiteandblue (Post 23010796)
If you could figure out how to stop this happening you'd please a lot of people -
Code:

if($this->user->name == "DVTimes") {
  do
  {
    postShitOnGfy("all_day_long");
  } while(!$this->user->banned)
 }


re-open beerandbollocks or was it netpond?

gar 06-13-2022 12:40 AM

I wonder if anyone here use Docker. Blue-Green deployment, auto scaling etc.

Or anyone here using Git? Git push deploy?

andy erotic 06-13-2022 12:43 AM

Quote:

Originally Posted by plsureking (Post 23010760)
there are a lot of programmers here. why would you assume we don't know about the "exciting" changes? they just aren't needed for most applications.

You mean free, easily usable, easily maintainable software that allows the consumer to get the job done is not needed.but to instead, it's necessary to pay a coder for their time to reinvent the wheel? An affiliates 'job' is to consume an API and spit it out in a template. That's basic 101 API usage.

Quote:

Originally Posted by plsureking (Post 23010760)
the latest dev updates are only needed in chat/cams/vr, where old tech doesn't work well.

Code breaks all the time and needs constant updates.

Quote:

Originally Posted by plsureking (Post 23010760)
we're just not excited about every shiny no-code toy.

I like how you feel you speak for 'we', you don't speak for me though. You mean mature toys that have been in development for nine years or longer and have proven themselves countless times in a range of sectors? I agree, making these packages seem like childish toys will alienate potential clients from using them to pay a coder for their time instead.

Quote:

Originally Posted by plsureking (Post 23010760)
i personally try to keep my applications and code as minimal as possible.

Exactly, clients should be conditioned to think minimal code is best code (even though it's more than likely that the job they want doing could be done on a calculator) and they should pay coders to think how best to get the code as minimal as possible, as 'efficient' as possible and as well-designed using current theories rather than just getting the mvp to market as quickly as possible and be able to manipulate it themselves allowing their mvp to develop with the market.

Quote:

Originally Posted by plsureking (Post 23010760)
welcome back tho! :pimp#

Cheers!

plsureking 06-13-2022 12:55 AM

Quote:

Originally Posted by andy erotic (Post 23011001)
You mean free, easily usable, easily maintainable software that allows the consumer to get the job done is not needed.but to instead, it's necessary to pay a coder for their time to reinvent the wheel? An affiliates 'job' is to consume an API and spit it out in a template. That's basic 101 API usage.

Code breaks all the time and needs constant updates.

I like how you feel you speak for 'we', you don't speak for me though. You mean mature toys that have been in development for nine years or longer and have proven themselves countless times in a range of sectors? I agree, making these packages seem like childish toys will alienate potential clients from using them to pay a coder for their time instead.

Exactly, clients should be conditioned to think minimal code is best code (even though it's more than likely that the job they want doing could be done on a calculator) and they should pay coders to think how best to get the code as minimal as possible, as 'efficient' as possible and as well-designed using current theories rather than just getting the mvp to market as quickly as possible and be able to manipulate it themselves allowing their mvp to develop with the market.

Cheers!

why would a coder pay a coder?

you said yourself that you haven't worked in this industry in a long time, so i am not including you in the "we" lol.

most of us in this industry are self-employed and "we" spend our days focused on making money. we don't upgrade our tools if they are working. we expand and do more projects.

welcome back! ssdd here.

:thumbsup

#

k0nr4d 06-13-2022 01:06 AM

Quote:

Originally Posted by gar (Post 23011000)
I wonder if anyone here use Docker. Blue-Green deployment, auto scaling etc.

Or anyone here using Git? Git push deploy?

Those that I've run into using docker have generally been pissed off about the fact their developer used docker. Some use git but it's mostly larger companies. Not many are using any form of auto scaling as that requires using a cloud based system like Amazon AWS, which if you run the numbers ends up costing 20x more then normal servers at which point you may as well just overbuild with normal servers. Most of the smaller companies and individual webmasters just edit on the fly using ftp.

redwhiteandblue 06-13-2022 02:26 AM

Quote:

Originally Posted by k0nr4d (Post 23011004)
Some use git but it's mostly larger companies.

I don't know about that, if you look through job listings most seem to expect you to be using Git / Github now.

Quote:

Originally Posted by k0nr4d (Post 23011004)
Most of the smaller companies and individual webmasters just edit on the fly using ftp.

Guilty!

k0nr4d 06-13-2022 03:15 AM

Quote:

Originally Posted by redwhiteandblue (Post 23011035)
I don't know about that, if you look through job listings most seem to expect you to be using Git / Github now.

Yeah I'm just going by observations from what i've seen of clients. Very few are using git.

plsureking 06-13-2022 04:03 AM

Quote:

Originally Posted by redwhiteandblue (Post 23011035)
I don't know about that, if you look through job listings most seem to expect you to be using Git / Github now.

i think the point is not many of us in adult, beyond MindGeek, are posting job listings or have 1000s of developers. i've only used Git when i worked on projects at large companies or large teams, which has only been a few times. i despise the corporate world.

i don't use Git for my own cms, although i do have a central [replicated] repository. its just not on Git. i built it myself, like everything else.

#


All times are GMT -7. The time now is 02:47 AM.

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