[-] JustinFTL@kbin.social 13 points 1 year ago

I'm so confused. The plastic bag makes it look like a hurricane. Or was the photo taken under a coffee table and superimposed? Is it Spider-Cat?

[-] JustinFTL@kbin.social 19 points 1 year ago

Sunscreen. This is not limited to occasional outdoor activities, because the bulk of your UV exposure over a lifetime is your everyday exposure. Use an everyday SPF moisturizer on your face, neck, and arms.

[-] JustinFTL@kbin.social 11 points 1 year ago

What is one Christian value that this man holds? Like, if Jesus Christ was real, as portrayed in the Bible, they couldn't name one value that Trump holds in common with him. Not one.

[-] JustinFTL@kbin.social 8 points 1 year ago

I just use Bootstrap and don't worry about learning CSS. Probably because I suck as CSS.

But if I can use a few Bootstrap classes to make my app 'presentable' and 'professional-looking' and spend my time on what's important...functionality and security...then I'm happy to.

[-] JustinFTL@kbin.social 4 points 1 year ago

I, too, am familiar with the effects of Ambien. For me, it's usually evidenced by mysterious pots and pans in the sink.

[-] JustinFTL@kbin.social 10 points 1 year ago

@goatmeal Hamburger Mary's is a drag/hamburger joint with a family day on Sundays. Drag queens dressed up like Lucy, etc. serve hamburgers and do family-friendly comedy. Is this for all families? Probably not. But politicians should NOT be able to tell me I can't take MY kid there. Especially when I can give consent for my child to see a rated-R movie with obscene amounts of gun violence and death. People having their heads blown off is seriously BETTER for a child to see than a man telling jokes in a dress?

@dirtmayor @Antik

[-] JustinFTL@kbin.social 7 points 1 year ago

@runningfromreddit I think this functionality may be missing right now. I've been boosting everything that I find save-worthy. I can see everything I've boosted from my profile.

[-] JustinFTL@kbin.social 4 points 1 year ago

Of course! Where else would someone keep their poop knife?

[-] JustinFTL@kbin.social 3 points 1 year ago

@followthewhiterabbit I'm not sure if it's out of your price range, but the whole Arkham Collection (all 3 games) is on sale for $9 right now. It's definitely worth the extra $4 to get two more games. And they're all great for different reasons in my opinion.

[-] JustinFTL@kbin.social 6 points 1 year ago* (last edited 1 year ago)

@odama626 when my brain goes in auto-mode, mine ends up like:

`// opens dialog window
openDialogWindow(){

// set dialog config
const config = new DialogWindowConfig({...});

// open window
dialogWindow.Open(config);
}`

[-] JustinFTL@kbin.social 3 points 1 year ago

@QuietStorm not sure if you're into FPS games, but I've sunken obscene amounts of time into Call of Duty Mobile and haven't paid a dime. It's free to play, but they advertise micro transactions to you, which are easily ignored. And I've played it no problem on a $50 Moto e6.

[-] JustinFTL@kbin.social 3 points 1 year ago* (last edited 1 year ago)

@TauZero you would use a join so that one call would fetch all comment rows for that post:

`SELECT p.post_id, p.title, p.description, c.text

FROM posts p JOIN comments c ON p.post_id = c.post_id

WHERE p.post_id = 79`

This would return a list of all comments for post 79, along with the post id, title, and description also in every row. This isn't a perfect example of optimized SQL, and I have no idea if these are the correct table and field names, as I didn't look them up. But it's a simple example of joins.

view more: next ›

JustinFTL

joined 1 year ago