Skip Navigation

Posts
0
Comments
55
Joined
2 yr. ago

  • You can't use your as a snorkel? Amateurs!

  • I'm a big fan of shaworma

  • That West Berlin was an enclave deep within GDR, completely encircled by the Berlin wall. For some reason I thought that Berlin was right at the border between FRG and GDR with the wall splitting it in half.

  • I have a keyboard and mouse in the office and keyboard and mouse at home, all paired to the same dongle permanently plugged into my laptop. I find it pretty helpful and useful.

  • what?

    Jump
  • Is there a typescript analogue for python? Preferably that adds curly braces?

  • I could see Google integrating with the fediverse once it reaches critical mass. Using ActivityPub for indexing ought to be more efficient than the usual web crawling.

  • Markdown is pretty 'dumb' in that it simply uses regular expressions to detect markdown tags/structures and then translates them into corresponding html elements. So when it sees subsequent lines each starting with a '{number}{dot}{space}' it determines that it's supposed to be a numbered list, so it translates that to an html ordered list. The numbers in an ordered list are not there if you look at a page source, they're only being rendered by your browser starting with '1' by default.

    With all that being said, HTML5 supports overriding default values in an ordered list, so with additional logic in the markdown parser having numbers out of order could be done.

  • Makes them in cels interlinked

  • Weird how this logo feels more modern than it is. Likely due to flat/minimalist design being currently in vogue, and Windows 10/11 logo is very similar to it.

  • Nice to have you here with us on Lemmy, Christian

  • It's not exactly something that you can force. If X amount of users want to join an instance Y, the instance should be able to provide capabilities to host those users. Besides, horizontal scaling provides other benefits, stability is the main one - if one server instance goes down, others can immediately pick up the slack.

  • Multiselect lists are outdated design, requiring prior knowledge of what they are and the use of keyboard (that you might not have if using a touchscreen device) for a simple interaction with a webpage is terrible UX. The issue is that it's how browsers render them by default, a 'proper' multiselect requires a bunch of css and javascript.