hello

  • 1 Post
  • 12 Comments
Joined 3 years ago
cake
Cake day: January 17th, 2022

help-circle

  • I think it would definitely be “perceived as unprofessional and silly in a negative way” by some people and also “in a net positive way - perhaps a bit silly, but memorable” by others, so, if you’re very concerned about appearing serious and professional you should probably not use such an address for these purposes.

    If you emailed me from this address i would consider you a dork, and as a bit of one myself i might start calling you Fratnickle.



  • Lemmy does have an emoji picker in the web interface. To access it just type a space and a colon ( :) while editing a comment, and then begin typing the name of your desired emoji. Like this:

    😂

    unfortunately there is currently a bug in it (at least here in tor browser) which causes the menu to appear near the top of the page when replying to comments far enough down the page that it is necessary to scroll, so, it is easy to miss. but it does work, though it is sometimes necessary to scroll up to see it. cc @nutomic@fedibb.ml @dessalines@lemmy.ml in case you guys haven’t noticed this bug.



  • Arthur Besse@lemmy.mltoasklemmy@lemmy.ml...
    link
    fedilink
    arrow-up
    8
    arrow-down
    1
    ·
    edit-2
    2 years ago

    In the EU, literally every McDonald’s offers consular services to Americans. No that’s not a joke, look it up.

    lmao ok i had to look that up. it’s not entirely true; it looks like it’s only in Austria and they will only “assist in making contact with the U.S. Embassy for consular services” (eg, they’ll let people use their phone, presumably) rather than providing consular services themselves. The news articles about it seem to all stem from this facebook post:


  • you really think websites which allow users to upload things are illegal in europe? huge if true!

    (seriously though, i guess you haven’t followed the “upload filters” controversy around the Directive on Copyright in the Digital Single Market… even the wildest proposals which would’ve imposed substantial liabilities on some operators wouldn’t apply to sites as small as anything that currently exists in the fediverse.)



  • use cryptography, for decentralized identities and content addressability.

    the “fediverse” is ostensibly decentralized but that actually just means it has more single points of failure than the centralized model it is attempting to replace. (a failure doesn’t necessarily take the whole thing down, but, “federated” generally means there are more people and systems which could individually prevent information from flowing from point A to B; eg, I can’t message someone on another server if my server is down or if their server is down.)

    Secure Scuttlebutt has a much better data model but is doing other things wrong so I haven’t used it much. Maybe Twitter’s Bluesky thing will produce something good, but I’m not holding my breath. What is clear is that ActivityPub is not a good long-term answer (but it is fun today).




  • There are many types of QR code. iirc a single qrcode can contain up to a few kilobytes, but the more data you put in it the more difficult it will be to scan.

    so, you could use qrcodes for offline distribution of short text messages or very low resolution images. I think mobile devices’ qrcode scanners will display the contents of TEXT type qrcodes, but they probably don’t have support for decoding an image from one (so such an app would need to be written). you can create TEXT type qrcodes using the qrencode tool (packaged in major linux distros) or using websites like https://www.qr-code-generator.com/ (note that I think only their URL and TEXT types are offline; the others upload a file to their servers and make a qrcode containing a URL for it).

    This qrcode says “Hello”:

    This qrcode contains this 88x26 pixel (1467 byte) image:

    (created using cat lemmy.png |base64 |qrencode -o lemmy_qr.png; can be decoded using zbarimg lemmy_qr.png |sed 's/QR-Code://'|base64 -d > output.png. on debian/ubuntu you can apt install qrencode zbar-tools to get the two required commands.)