54
What do you think guys (history-computer.com)
all 32 comments
sorted by: hot top controversial new old
[-] lelgenio@lemmy.ml 48 points 11 months ago* (last edited 11 months ago)
CREATE TABLE display (
    id INT PRIMARY KEY,
    display_property TEXT
);

INSERT INTO display (id, display_property)
VALUES
(1, 'block'),
(2, 'inline-block'),
(3, 'flex');

CREATE TABLE divs (
    id INT PRIMARY KEY,
    inner_html TEXT,
    display INT REFERENCES display(id)
);

INSERT INTO divs (id, inner_html , display)
VALUES
(1, 'div1', 1),
(2, 'div2', 2),
(3, 'div3', 3);
[-] lelgenio@lemmy.ml 44 points 11 months ago
.users {
  id: int !primary-key;
  name: text;
}

.users::insert {
  id: 1;
  name: "John doe";
}

@query (max: 10) {
  .user {
    display: table;
  }
  .users id {
    display: none;
  }
}
[-] __init__@programming.dev 18 points 11 months ago

Thanks, I hate it.

[-] moebius@feddit.de 15 points 11 months ago

They both feel so wrong, I love it.

[-] Karfkengrumble@lemmings.world 8 points 11 months ago

I think I need to lie down.

[-] pooberbee@lemmy.ml 43 points 11 months ago

I prefer SQL, because you can pronounce it "sequel" or "es-cue-ell", and it's fine. CSS just doesn't have that kind of flexibility as a language.

[-] xmunk@sh.itjust.works 11 points 11 months ago

CSS also pisses me off because it clearly doesn't cascade... to contrast SQL is a language, it is used for querying... and it's structured horribly. Please for the love of God let me FROM foo WHERE bar SELECT baz

[-] xuxebiko@kbin.social 6 points 11 months ago
[-] AnUnusualRelic@lemmy.world 1 points 11 months ago

"Ksssss"

That's what I sound like whenever I have to tackle that bag of snakes.

[-] techognito@lemmy.world 5 points 11 months ago

I have also heard some say "school"

[-] ripcord@kbin.social 9 points 11 months ago* (last edited 11 months ago)

Well, those people are maniacs

[-] inspxtr@lemmy.world 3 points 11 months ago

i’m leaning towards “skull” tho

[-] techognito@lemmy.world 2 points 11 months ago

"I dropped a table with skull"

it has a nice ring to it

[-] sxan@midwest.social 30 points 11 months ago

Oh. Now I want one of these for every pairing. Vim vs Windows. Bubble Sort vs. SODIMM. The beauty is, with LLMs, I can have it! Enter two of any computer terms, and ChatGPT spits out a comparison. And why stop with computer stuff? Eukayryotic vs Republican! The War of 1812 vs The Kessel Run!

[-] flashgnash@lemm.ee 20 points 11 months ago

I think the real question on all of our minds is which is better: JavaScript or megabytes

[-] froh42@lemmy.world 18 points 11 months ago

Is this chatGPT generated?

[-] Seasm0ke@lemmy.world 18 points 11 months ago

Having worked with tables in both I'm partial to French.

[-] RagingNerdoholic@lemmy.ca 15 points 11 months ago

Filing cabinets or oil paints? Which is better?

[-] Dr_Cog@mander.xyz 4 points 11 months ago

Tried to store documents in paint and it ruined the documents, 0/10

I'll let you know how my file cabinet art show goes

[-] ShaunaTheDead@kbin.social 8 points 11 months ago

This is a pretty roundabout way of saying back-end vs front-end.

[-] JoMomma@lemm.ee 2 points 11 months ago

C

Ss

Of cour

Se

[-] MasterBlaster@lemmy.world 2 points 11 months ago
[-] Renacles@discuss.tchncs.de 2 points 11 months ago

What in the actual fuck

[-] MashedTech@lemmy.world 1 points 11 months ago

Obviously CSS

this post was submitted on 29 Sep 2023
54 points (82.9% liked)

Programmer Humor

31965 readers
405 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS