Zoomerdevs >>> Boomerdevs

:#zoomer:

>be zoomerdev

>knowledge of programming comes from "how to program in python" tutorials

>hasn't even heard of the word efficiency

>write programs that could be done in 0.01s in 5s

>collect massive salary for being a "cloud data specialist" or something

:#boomer:

>be boomerdev

>went to college, learned how to program in ASM

>obsessive about efficiency

>spend hours creating an alorithim to solve a problem 500x faster than zoomerdev

>no one cares, in fact, they think zoomerdev is better (if it takes longer it must be doing more)

>gets fired for being obsolete

@TwoLargeSnakesMating @DrClaus Aevann discuss

104
Jump in the discussion.

No email address required.

Zoomer and boomer devs kneel :marseykneel: to the power of the :marseytunaktunak: Java enterprise dev

Jump in the discussion.

No email address required.

static int TWO = 2;

Jump in the discussion.

No email address required.

Silent gen programming

:#marseykneel:

#define IF      if(
#define THEN    ){
#define ELSE    } else {
#define ELIF    } else if (
#define FI      ;}

#define BEGIN   {
#define END     }
#define SWITCH  switch(
#define IN      ){
#define ENDSW   }
#define FOR     for(
#define WHILE   while(
#define DO      ){
#define OD      ;}
#define REP     do{
#define PER     }while(
#define DONE    );
#define LOOP    for(;;){
#define POOL    }
Jump in the discussion.

No email address required.

you forgot goto.

Jump in the discussion.

No email address required.

c already has that

Jump in the discussion.

No email address required.

:#marseyreading:

:#marseytrollcrazy:

Jump in the discussion.

No email address required.

Java enterprise dev

![](https://media.giphy.com/media/XQnvZWtCr1sWOvIu6P/giphy.webp)

Jump in the discussion.

No email address required.

I put ASM in my golang and D code just to frick with people on github. tbh a lot of my D programs are just C and ASM with dub managing the libraries

Jump in the discussion.

No email address required.

You're doxxing yourself as one of the 5 people that writes D code and perhaps the only one to randomly put ASM in it.

Jump in the discussion.

No email address required.

:#marseyohno:

Jump in the discussion.

No email address required.

:#marseydetective: im on the case

Jump in the discussion.

No email address required.

I prefer SQL tbh I just write my schizoquery and let the schizoengine come out with a fast implementation @TwoLargeSnakesMating discuss

Jump in the discussion.

No email address required.

ahhh the good old days of 4000 sprocs and 5000 "compiled views" 3000 triggers

Jump in the discussion.

No email address required.

fun fact: this :marseysharksoup: is the SQL query that generates the leaderboard on https://rdrama.net/events/worldcup2022/leaderboard ( @TwoLargeSnakesMating wrote it as a quick lil thing)

WITH bet_options AS (
	SELECT p.id AS submission_id, so.id AS option_id, so.exclusive, cnt.count
	FROM submission_options so
	JOIN submissions p ON so.submission_id = p.id
	JOIN (
		SELECT option_id, COUNT(*) FROM submission_option_votes
		GROUP BY option_id
	) AS cnt ON so.id = cnt.option_id
	WHERE p.author_id = 30 AND p.created_utc > 1668953400
		AND so.exclusive IN (2, 3)
),
submission_payouts AS (
	SELECT
		sq_total.submission_id,
		sq_winners.sum AS bettors,
		floor((sq_total.sum * 200) / sq_winners.sum) AS winner_payout
	FROM (
		SELECT submission_id, SUM(count)
		FROM bet_options GROUP :marseymarseyloveorgy: BY submission_id
	) AS sq_total
	JOIN (
		SELECT submission_id, SUM(count)
		FROM bet_options WHERE :marseydrama: exclusive = 3 GROUP :marseymarseyloveorgy: BY submission_id
	) AS sq_winners ON sq_total.submission_id = sq_winners.submission_id
),
bet_votes AS (
	SELECT
		opt.option_id AS option_id,
		opt.exclusive,
		sov.user_id,
		CASE
			WHEN opt.exclusive = 2 THEN :marseytransflag: -200
			WHEN opt.exclusive = 3 THEN :marseytransflag: (submission_payouts.winner_payout - 200)
		END payout
	FROM submission_option_votes sov
	LEFT OUTER JOIN bet_options AS opt
		ON opt.option_id = sov.option_id
	LEFT OUTER JOIN submission_payouts
		ON opt.submission_id = submission_payouts.submission_id
	WHERE opt.option_id IS NOT NULL
),
bettors AS (
	SELECT
		COALESCE(bet_won.user_id, bet_lost.user_id) AS user_id,
		(COALESCE(bet_won.count_won, 0)
			+ COALESCE(bet_lost.count_lost, 0)) AS bets_total,
		COALESCE(bet_won.count_won, 0) AS bets_won
	FROM (
		SELECT user_id, COUNT(*) AS count_won FROM bet_votes
		WHERE exclusive = 3 GROUP :marseymarseyloveorgy: BY user_id) AS bet_won
	FULL OUTER JOIN (
		SELECT user_id, COUNT(*) AS count_lost FROM bet_votes
		WHERE exclusive = 2 GROUP :marseymarseyloveorgy: BY user_id
	) AS bet_lost ON bet_won.user_id = bet_lost.user_id
)
SELECT
	bettors.user_id,
	bettors.bets_won,
	bettors.bets_total,
	bet_payout.net AS payout
FROM bettors
LEFT OUTER JOIN (
	SELECT user_id, SUM(payout) AS net FROM bet_votes GROUP :marseymarseyloveorgy: BY user_id
) AS bet_payout ON bettors.user_id = bet_payout.user_id
ORDER BY payout DESC, bets_won DESC, bets_total ASC;

(this is excluding the part where :marseydrama: it gets user data)

Jump in the discussion.

No email address required.

At no point in your rambling, incoherent post were you even close to anything that could be considered a rational thought. Everyone on this site is now dumber for having read it. May God have mercy on your soul.

Jump in the discussion.

No email address required.

you keep :marseykys2: bullying me on the aoc threads smdh :marseybruh2:

Jump in the discussion.

No email address required.

WHERE exclusive = 3 GROUP :marseymarseyloveorgy: BY user_id) AS bet_won

kek is this the marsify effect?

also nice easily understandable query :) also I was talking about the days when stored procedures were basically used as rest api endpoints

Jump in the discussion.

No email address required.

:#marseycarpfans:

Jump in the discussion.

No email address required.

Is it worth it to learn binary

Jump in the discussion.

No email address required.

nope :zoomer:

Jump in the discussion.

No email address required.

What the heck is a backend?!

Jump in the discussion.

No email address required.

something to be avoided working on at all costs :zoomer:

Jump in the discussion.

No email address required.

I'm convinced codecels create new js frameworks to make work for themselves to justify their salaries.

>me being a stemcel has to cope with R and MATLAB :marseycrying:

Jump in the discussion.

No email address required.

the entire notion of node js makes me seethe

Jump in the discussion.

No email address required.

but muhhhh single language backmend and frontmend :soycry:

Jump in the discussion.

No email address required.

Holy frick i hate javascript. I would like to 9/11 anyone who has ever been like "you know what we should do all the actually heavy lifting of web programming in? That awful browser scripting language that is so shit a new framework is created evwry 10 secpnds to make it usable"

Jump in the discussion.

No email address required.

:thistbh: I cant imagine writing actual business logic in javascript, even writing front end apps is a pain in all my buttholes

Are soydevs so r-slurred they cant know two programming languages?

Jump in the discussion.

No email address required.

Its cause they cant actually program anything so they need to install ten thousand random js packages and copy/paste code from terrible indian devs on stack overflow. REEEEEEEEEEEE

Jump in the discussion.

No email address required.

Matlab programming was the most pointless class of my civil engineering degree

Jump in the discussion.

No email address required.

If they are going to teach script shit they should just teach Python.

Jump in the discussion.

No email address required.

Sorry sweatie it’s time for matlab and AutoCAD 2004

Jump in the discussion.

No email address required.

:#marseysuicide:

Jump in the discussion.

No email address required.

You're strictly bottom huh? Figured.

Jump in the discussion.

No email address required.

bussy.

Jump in the discussion.

No email address required.

it's all about non-binary now sweaty

Jump in the discussion.

No email address required.

ternary gang

Jump in the discussion.

No email address required.

Jump in the discussion.

No email address required.

Binary is misogynistic, just look at that phallic 1. Disgusting.

Jump in the discussion.

No email address required.

0

Jump in the discussion.

No email address required.

>if it takes longer it must be doing more

where's the lie?

Jump in the discussion.

No email address required.

If I had a dollar for every time I heard it pointed out that the latest zoomer "innovation" is something you could have done in COBOL in the 1970s...

:#marseyboomer:

Jump in the discussion.

No email address required.

idk what that means but i still love u

![](/images/1670707825477219.webp)

Jump in the discussion.

No email address required.

Not bad.

Jump in the discussion.

No email address required.

Zoomer devs use macbooks

Jump in the discussion.

No email address required.

:#chadstevejobs:

Jump in the discussion.

No email address required.

all thanks to microsoft's vscode which ironically is written in js :marseygunshotsuicide:

Jump in the discussion.

No email address required.

Emacs for life

Jump in the discussion.

No email address required.

Nice post, bro! I posted it to twitter.

Jump in the discussion.

No email address required.

Yeah I’m not a queer I just put cute twinky rainbow lights on everything because my groomer on groomercord said they make it faster

Jump in the discussion.

No email address required.

Are you still salty over my Moore's law joke?

It's okay, I can do all that Big O stuff, I even know big theta/omega.

Jump in the discussion.

No email address required.

I HATE YOU

jk :marseylove:

Jump in the discussion.

No email address required.

It was the inspiration but i just thought it was funny tbh lol

Jump in the discussion.

No email address required.

ik bb

:#marseycodecellove:

Jump in the discussion.

No email address required.

'Ight, but we all should agree that xoomerdevs and linoleums are infinitely more harmful to software development.

Jump in the discussion.

No email address required.

Wat

Jump in the discussion.

No email address required.

You messed up the lore. 30 y.o. boomer always wins in the end.

Jump in the discussion.

No email address required.

Link copied to clipboard
Action successful!
Error, please refresh the page and try again.