this post was submitted on 08 Apr 2025
1344 points (99.5% liked)

Microblog Memes

7422 readers
2935 users here now

A place to share screenshots of Microblog posts, whether from Mastodon, tumblr, ~~Twitter~~ X, KBin, Threads or elsewhere.

Created as an evolution of White People Twitter and other tweet-capture subreddits.

Rules:

  1. Please put at least one word relevant to the post in the post title.
  2. Be nice.
  3. No advertising, brand promotion or guerilla marketing.
  4. Posters are encouraged to link to the toot or tweet etc in the description of posts.

Related communities:

founded 2 years ago
MODERATORS
 

Original post: aus.social (Mastodon)

you are viewing a single comment's thread
view the rest of the comments
[–] kapitol 9 points 1 week ago (1 children)
[–] [email protected] 14 points 1 week ago (1 children)

"Whats this gap in your resume?"

"Syntax error"

[–] [email protected] 7 points 1 week ago

I see for past experience you put :

CREATE TABLE Resume (
    Field VARCHAR(255) PRIMARY KEY,
    Value VARCHAR(255)
);

INSERT INTO Resume (Field, Value) VALUES
('Experience_1_Title', ''),
('Experience_1_Company', ''),
('Experience_1_Years', ''),
('Experience_1_Description', '.'),
('Experience_2_Title', ''),
('Experience_2_Company', ''),
('Experience_2_Years', ''),
('Experience_2_Description', '.'),
('Skills_1', ''),
('Skills_2', ''),
('Skills_3', ''),
('Skills_4', ''),
('Education_Degree', ''),
('Education_Years', '),
('References', '');

SELECT Field, Value FROM Resume;

-- Bonus Query: Show my most "impressive" skill
SELECT Value FROM Resume WHERE Field = 'Skills_1';

-- Another Bonus: My career trajectory
SELECT Field, Value FROM Resume WHERE Field LIKE 'Experience%';`___`