Sjmarf to Programmer Humor@lemmy.ml • 1 year agoWhat do you think guyshistory-computer.comexternal-linkmessage-square22fedilinkarrow-up167arrow-down114
arrow-up153arrow-down1external-linkWhat do you think guyshistory-computer.comSjmarf to Programmer Humor@lemmy.ml • 1 year agomessage-square22fedilink
minus-square@lelgenio@lemmy.mllinkfedilink46•edit-21 year agoCREATE 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);
minus-square@lelgenio@lemmy.mllinkfedilink42•1 year 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; } }
minus-squarejelloeater - Ops MgrlinkfedilinkEnglish6•1 year ago Your browser does not support playing HTML5 video. You can download a copy of the video file instead.
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);
.users { id: int !primary-key; name: text; } .users::insert { id: 1; name: "John doe"; } @query (max: 10) { .user { display: table; } .users id { display: none; } }
Thanks, I hate it.
They both feel so wrong, I love it.
I think I need to lie down.