roadrunner_ex

joined 2 years ago
[–] roadrunner_ex@lemmy.ca 24 points 10 hours ago (9 children)

I've been so on the fence about attempting to solder, but it frightens me the idea of causing a little sparky fire.

So, good on you!

[–] roadrunner_ex@lemmy.ca 17 points 2 weeks ago (2 children)

Not that it makes it "good', but the issues found seem (to me) more incompetent than nefarious, at least.

[–] roadrunner_ex@lemmy.ca 20 points 2 months ago (2 children)

Just in case you haven't played it, the first SUPERHOT is, IMO, quite a bit better than the second, so I'll toss that in there.

As a wilder card, I'll suggest the Batman Arkham games. I think Arkham City is probably the most well-regarded of them.

 

Nothing pressing in terms of questions or concerns, but I was just wondering how things are at Fedecan and with the instance(s)? It feels like it's been a hot minute since the last update (big or small), so I thought I'd show my interest in knowing how things are going.

[–] roadrunner_ex@lemmy.ca 3 points 4 months ago

I recognize that it's a workaround for a problem foisted on us by idiots and we shouldn't have to deal with it, but I like the absurd notion of a "Spam folder" of websites

[–] roadrunner_ex@lemmy.ca 0 points 7 months ago

I am almost done with Legend of Zelda: Echoes of Wisdom. It's weird, but I'm enjoying it.

[–] roadrunner_ex@lemmy.ca 0 points 8 months ago

I had a blast with this one last year. Fun card battler with light social elements.

[–] roadrunner_ex@lemmy.ca 0 points 8 months ago* (last edited 8 months ago)

Aye, looking at the replies, I'm becoming aware that I left out a couple key assumptions I've made. Assuming:

a) id is a PRIMARY KEY (or otherwise UNIQUE)

b) I mean equivalent insofar as "the rows returned will contain equivalent data same (though maybe ordered differently)"

[–] roadrunner_ex@lemmy.ca 0 points 8 months ago* (last edited 8 months ago)

Aye, looking at the replies, I'm becoming aware that I left out a couple key assumptions I've made. Assuming:

a) id is a PRIMARY KEY (or otherwise UNIQUE)

b) I mean equivalent insofar as "the rows returned will contain equivalent data same (though maybe ordered differently)"

1
submitted 8 months ago* (last edited 8 months ago) by roadrunner_ex@lemmy.ca to c/sql@programming.dev
 

Putting aside any opinions on performance, I've been trying to test a notion about whether a couple queries would output the same data (ordering doesn't matter).

SELECT *
FROM articles
WHERE (
  last_updated >= %s
  OR id IN (1, 2, 3)
  )
  AND created_at IS NOT NULL
SELECT *
FROM articles
WHERE last_updated >= %s
  AND created_at IS NOT NULL
UNION
SELECT *
FROM articles
WHERE id IN (1, 2, 3)
  AND created_at IS NOT NULL

I think they're equivalent, but I can't prove it to myself.

Edit: Aye, looking at the replies, I'm becoming aware that I left out a couple key assumptions I've made. Assuming:

a) id is a PRIMARY KEY (or otherwise UNIQUE)

b) I mean equivalent insofar as "the rows returned will contain equivalent data same (though maybe ordered differently)"

[–] roadrunner_ex@lemmy.ca 4 points 8 months ago* (last edited 8 months ago)

I'm a big fan of tig for visualizing the graph and looking over history (then I don't need to leave the terminal, and it's snappier, in my experience, than most full-GUI programs like Sourcetree), but for actual Git commands, I like the CLI

[–] roadrunner_ex@lemmy.ca 7 points 9 months ago (2 children)

I'm glad it is now. I remember a decade or so ago, I wrote an APNG decoder, so I was deep in the world of APNG.

And I remember reading various things that made me think MNG was the 'more official' flavour of "animated PNG", and it was absurd to me, because APNG seemed like a much more approachable spec. I'm glad the winds have turned...

[–] roadrunner_ex@lemmy.ca 67 points 10 months ago (10 children)

One thing you should do is grab your data for easy moving, you haven't already.


Assuming you're using the default Lemmy web UI (not Voyager, or Photon, or a mobile app, or whatever), click on your username in the top right, and select "Settings".

On the settings page, there's a section called "Import/Export Settings". Click the "Export" button and let your browser download the file.

Then, when you switch instances, you can go into the same Settings page on the new instance, select the file you downloaded, and hit "Import" and you will automatically be resubscribed to the communities you subscribed to.

[–] roadrunner_ex@lemmy.ca 3 points 10 months ago

If you aren't married to Hugo as your solution, I will recommend giving Eleventy.js a look.

It's a static-site generator, but a good amount of flexibility is afforded by virtue of using pure JS to generate view data (which means that you can do any conversions needed, manually or with NPM packages if needed for more proprietary data formats), and it supports a bunch of templating engines too.

 

cross-posted from: https://lemmy.ca/post/41563491

AFAICT, this is a reprint of the same article originally from Rolling Stone https://www.rollingstone.com/music/music-features/heavy-metal-changed-my-life-1235305372/

 

I was just taking a peek at the various frontends supported by lemmy.ca, and I was wondering if the admins here have any insight into their respective use?

I'm going to bet the default (lemmy-ui) is most popular, but do any of the other frontends get far-and-away more use than the other alternatives? Has there been any trends up or down? Just thought I'd ask.

As an aside, if any of the frontend developers happen across this post, well done to all of you! I can immediately see the appeal of each, so each niche is being filled darn well!

Edit: to be clear, I'm talking about the frontends listed on the lemmy.ca main sidebar.

 

Version: 1.0.187 (187)

Hardware: Google Pixel 7

Expected behavior: When swiping "back" on the main/posts page, expect to see "Are you sure you want to exit? Y/N"-type notification. "No" will return you to the app, whereas "Yes" will "close" the app (as in, reopening the app is a fresh open, not 'pick up where you left off'/minimize)

Observed behavior: Swiping "back" on the main/posts page just minimizes the app

1
submitted 2 years ago* (last edited 2 years ago) by roadrunner_ex@lemmy.ca to c/rss@lemmy.ml
 

So, I'm tentative to announce this project, as the server it's running on is a bit of a potato which will probably fall over pretty quick if it gains any traction, but...


Introducing RSS Temple!

If you're interested in a free RSS reader which attempts to mimic some of the more useful features of the big players (Feedly and Google Reader, in particular), including full-text search, hotkey navigation, small footprint interface, and sharing to both Lemmy and Mastodon (among others), I would love if you gave RSS Temple a try.

I've been working on this project for ~7 years now, and I alone cannot find any more bugs or usability issues, so I hope it's ready for the community to see. Any feedback is appreciated!


The code is open at:

https://github.com/murrple-1/rss_temple (server, Python)

https://github.com/murrple-1/rss_temple_ui (landing page and web app, Angular and EleventyJS)

https://github.com/murrple-1/ansible-collection-rss-temple (Ansible scripts to deploy one's own instance)

view more: next ›