JustinFTL

joined 1 year ago
[–] JustinFTL@kbin.social 2 points 1 year ago* (last edited 1 year ago)

@followthewhiterabbit glad I could help. Enjoy! And it's still a good comparison thread.

[–] JustinFTL@kbin.social 4 points 1 year ago (2 children)

@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 2 points 1 year ago

@kaupas24 I've found that the magazine search function in kbin works really well. It pulls up top kbin magazines by default. They seem to be sorted by user count. But if you type, say, 'technology', it will show all magazines/communities from kbin and Lemmy that are technology oriented. You can also type '@beehaw.org' to view all communities on the Beehaw instance.

[–] JustinFTL@kbin.social 1 points 1 year ago (1 children)

@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 0 points 1 year ago (1 children)

@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: ‹ prev next ›