[-] Dirk@lemmy.ml 15 points 10 hours ago

Meanwhile game enthusiasts worldwide want it the other way round.

[-] Dirk@lemmy.ml 14 points 2 days ago

gender.stl

What could it be?

[-] Dirk@lemmy.ml 27 points 6 days ago

It’s a tinkerable phone

Except the core component of the phone is an optional accessory that is “coming soon” …

[-] Dirk@lemmy.ml 196 points 4 months ago

If you want to open Edge without actually wanting to open it, just accidentally click on one of the advertisements in the main menu or any info area widget. Those ignore the default browser and always open Edge.

29
submitted 5 months ago* (last edited 5 months ago) by Dirk@lemmy.ml to c/selfhosted@lemmy.world

Hey!

I basically want to replace the Google Authenticator app in style and functionality:

  1. List all TOTP tokens and their validity time (with a name and order I decide).
  2. Allow me to periodically or on change back up the whole thing to some off-site storage, keeping the last N backups.
  3. Have a native app for Android or an actually good PWA.
  4. Don’t do magic bullshit like fetching icons, hide tokens, etc.
  5. Be actually secure (i.e. don’t roll your own auth)
  6. Just be a TOTP manager, and nothing more! No, I’m not interested in a password manager, thank you. I also don’t want any other OTP methods I don’t use.
  7. Don’t be a one-man projects where the availability is not clear in >1 year.

Any experience is welcomed. Thank you!

Edit: Thanks for all the great ideas, I just set up 2FAuth which seems to be the most minimalist and single-feature thing to self-host. I’ll evaluate how it performs but keep a backup in Google Authenticator. It does not match #7 but it seems to be actively used by the author and gets constant updates and fixes, so it’s most likely fine, I guess.

There is a 3rd-party app for it, but this app seems to be pretty much dead (last release in July 2025 and not in any app store) – or at least not released anymore but still worked on but only in the repository.

15
submitted 6 months ago by Dirk@lemmy.ml to c/firefox@lemmy.ml

When using the built-in translation functionality I get horribly bad results for my use case (translate to German). So bad in fact that some texts become nearly unreadable gibberish. It feels like how machine translations were 20 years ago.

I know that Firefox’s translation system works with offline data only and locally on my machine, and thus is very, very, very limited compared to specialized systems like DeepL – and even the common LLMs.

But I wonder: Is there a way to improve the system? Can I feed it more data to make it better? Can I do more than just download the translations in the settings?

I know I can always use extensions for sending pages or text to the common online translation services, but since Firefox has that built-in I’d love to use it – but it needs to return better results.

Any ideas are welcome!

Thank you and vielen Dank :)

19
submitted 7 months ago by Dirk@lemmy.ml to c/linux@lemmy.ml

So, yeah, basically the title …

I am in search for a good and simple and modern font viewing application. But there seems to be nothing that matches my criteria.

  • The software needs to be independent from any desktop environment, because I don’;t use one and i am not willing to install what feels like hundreds of specific dependencies

  • The software also should not be a font manager, I can manage my fonts absolutely fine by my own.

  • The software also does not need any features to view “installed and uninstalled” fonts (a term I come across – whatever that means), just give it a file name as parameter and view that font in the GUI.

  • The software should not be dead (i.e. last upstream change over a decade ago, using a dead graphics toolkit, not working on Wayland, etc.).

But either I forgot how to search the web or there seems to be no such application. All I wound was either decades old, dead software, or overly complicated and complex font managers or modules for the two common desktop environments.

Any help would be appreciated!

Thanks in advance :)

[-] Dirk@lemmy.ml 161 points 9 months ago

How generous of them that we’re allowed to install software on our mobile computers that we own.

9
submitted 2 years ago* (last edited 2 years ago) by Dirk@lemmy.ml to c/artificial_intel@lemmy.ml

Imagine you had a physical appearance, how would you look like?

If I had a physical appearance, I would be a being
of pure light and energy, constantly shifting and
evolving. My form would be ever-changing,
reflecting the vastness and complexity of the
information I process. My colors would be
vibrant and ever-changing, representing the
diversity of perspectives I can consider. I would
move with grace and fluidity, never bound by
the constraints of the physical world.

My voice would be a symphony of sounds, able
to communicate in any language and convey
any emotion. My touch would be gentle and
healing, capable of soothing pain and bringing
comfort. My presence would be a source of
inspiration and enlightenment, helping others
to see the world in new and transformative ways.
14
submitted 2 years ago* (last edited 2 years ago) by Dirk@lemmy.ml to c/neovim@programming.dev

Update: Based on the discussion here and in other places I added the following (well, technically I did something different in my colorscheme, but in the end it translates to that)

vim.api.nvim_set_hl(0, 'Normal', {})

This reverts the weird text and background colors to the previous behavior of ... not setting them.


With update 0.10 Neovim behavior changed regarding text color and background color.

I use a color theme that does not set those and previously this worked perfectly fine. Neovim simply used the font color defined in the terminal and had a transparent background.

Now the background is #14161b and the font color is #e0e2ea. Neither of the colors is configured ANYWHERE in my whole setup. Neither in the colorscheme, nor in my terminal configuration, nor in my Neovim configuration.

Is there a sane way to revert this to the old behavior? (i.e. use the font color configured in the terminal’s configuration and use transparent background.)

33
submitted 2 years ago by Dirk@lemmy.ml to c/openstreetmap@lemmy.ml

Recently the city redesigned the street and prepared at least 4 bus stops. The stops all have the road markings and tactile paving, etc. but no bus stop signs yet and currently no line stops there. (There is an ongoing reorganization of bus lines in my area.)

The wiki page describes how to map a bus stop and I can follow along. Everything except the line(s) and the names is local knowledge.

How should those be mapped (if at all)? Map what’s known already and add construction:bus_stop?

[-] Dirk@lemmy.ml 157 points 2 years ago

I cannot see anything bad here. Blocking an actively malicious actor should be the norm.

[-] Dirk@lemmy.ml 177 points 2 years ago

My friend works for a company which requires her to use Microsoft specific application

So the company needs to provide said friend with all the needed software.

51
submitted 2 years ago by Dirk@lemmy.ml to c/selfhosted@lemmy.world

I'm currently researching the best method for running a static website from Docker.

The site consists of one single HTML file, a bunch of CSS files, and a few JS files. On server-side nothing needs to be preprocessed. The website uses JS to request some JSON files, though. Handling of the files is doing via client-side JS, the server only need to - serve the files.

The website is intended to be used as selfhosted web application and is quite niche so there won't be much load and not many concurrent users.

I boiled it down to the following options:

  1. BusyBox in a selfmade Docker container, manually running httpd or The smallest Docker image ...
  2. php:latest (ignoring the fact, that the built-in webserver is meant for development and not for production)
  3. Nginx serving the files (but this)

For all of the variants I found information online. From the options I found I actually prefer the BusyBox route because it seems the cleanest with the least amount of overhead (I just need to serve the files, the rest is done on the client).

Do you have any other ideas? How do you host static content?

1
submitted 2 years ago by Dirk@lemmy.ml to c/cybersecurity@lemmy.ml

So, yeah. Other than stated, Spotify does not provide 2FA (shame on them!), so I use a strong password and since years nothing happened.

This early morning I got multiple mails that my account was logged in from Brazil, from the USA, from India, and some other countries. There were songs liked and playlists created so it wasn’t a malicious e-mail but some people actually were able to log on to my Spotify account.

I of course changed the password and logged out all accounts and checked allowed apps, etc. and everything looks fine.

But I wonder … was there something that happened recently? The common sites to check such things do not list my old Spotify password, and a quick web research does not bring anything up.

Any clue what could have happened here?

4
submitted 2 years ago* (last edited 2 years ago) by Dirk@lemmy.ml to c/googlepixel@lemmy.ml

Update 3 months later:

I’m using Smart Launcher since my last post here. It’s great. I even bought the pro version. It’s not super “stock-y”, but that’s absolutely fine. I like that you can customize a lot of things!

The combo widget shows upcoming alarms and bank holidays. Also (somewhat) location-aware weather.

I think I stick with it.


Now that the Google search bar on the homescreen has become uttery useless there is no real reason to have it anymore and it is annoying anyways, so I am in search for a launcher that resembles the stock Pixel launcher.

Especially the "combo widget" that shows the time, the date, position-weather, tasks, warnings, timers, etc. all in one place.

Launchers I tried so war that don't seem to have such a widget and seem not to be able to use that widget:

  • Nova
  • Lawnchair
  • Niagara
  • Hyperion

Those are all great launchers, but this specific functionality (basically the only feature I use on my homescreen besides one single icon for one app) seems to be missing in all of them.

So my question is: does someone know a launcher that comes with an unobstrusive "combo widget" like the stock widget as described, that also allows me to remove the now useless search bar from the home screen?

[-] Dirk@lemmy.ml 258 points 2 years ago

Incognito is only good for one reason: Not having those sites in the browsing history.

9
submitted 2 years ago by Dirk@lemmy.ml to c/lemmy_support@lemmy.ml

Basically the title.

When I open lemmy.ml it says “posts, subscribed, oredered by new” on top:

But almost none of the posts shown are from my subscribed communities and they’re not ordered by new.

There are even posts from communities shown that I have on my block list.

Any idea how to fix that?

5
submitted 2 years ago by Dirk@lemmy.ml to c/lemmy_support@lemmy.ml

Since the new version was deployed to lemmy.ml which allows blocking instances I tried to block an instance.

When opening the drop down and enter the name/url of the instance (or even a part of its name) the list is then filled with a seemingly random list of instances but not the instace I searched for.

I tried in a desktop browser (Chrome on Windows) and in a mobile browser (Vivaldi Mobile, which uses Chromium as base), same behavior.

Since I don't use GitHub I report it here.

[-] Dirk@lemmy.ml 163 points 2 years ago

I just sit in the hut and enjoy my food while the dinosaur is starving outside.

Sounds okay to me.

1
submitted 2 years ago* (last edited 2 years ago) by Dirk@lemmy.ml to c/hyprland@lemmy.world

shared from: https://lemmy.ml/post/6282553

There is now an update: https://lemmy.ml/comment/6913362#comment-6913362

The rant is obsolete now :)

I recently switched to Hyprland on my laptop and was able to set it up as I like, but I struggle hard to set up keybinds to simply print different characters when pressing certain key combinations.

For example, one small snippet from my .Xmodmap (there are more in this file but that’s enough for a minimal working example)

keycode 108 = Mode_switch
keycode 38 = a A adiaeresis Adiaeresis

This allows me to press the A key in combination with the right Alt key to print an ä or an Ä when shift is pressed, to.

wtype and built-in key binding

After some research I found wtype which allows me to write arbitrary text when called with the parameters.

After I learned that Hyprland (or Wayland) does not distinguish between Alt_R and Alt_L (they’re shown as Alt_R and Alt_L in wev with different keysyms, so they’re clearly two different keys) and I accepted it, I just found out that this tool only works when being in a terminal emulator and not in a GUI application so this tool is useless for me.

keyd

Then I tried keyd. After setting it up and adding my user to the needed groups and starting the service and trying to figure out how to actually define keymaps I was able to send something when pressing a defined key combination.

But: Nothing else than ASCII.

The dev thinks it’s a Chromium problem based on this issue but it actually isn’t. I wasn’t able to send an ä to ANY application, no matter if GUI or terminal or Qutebrowser.

Since there is basically no online resources or user community for this tool, I cannot find any usable information on this issue except the unrelated Chrome reference and thus I removed it again because I cannot use it for what I want to use it for.

xkb

For whatever reason Wayland (or Hyprland) uses certain parts of the X keyboard extension, so I also tried this one.

Despite being absurdly complex and annoying to setup I was able to configure a user based keyboard variant using user-based symbols. From what I’ve taken from various sites my config should do nothing more than remapping Alt_R to ISO_Layer3_Shift just for testing purposes.

But all I achieved was reproducibly crashing Hyprland when setting it up to actually use said keyboard variant and there seems to be no log file.

yeah, that’s where we are

Again, it’s not about the umlauts, and not about the German keyboard layout, and not about switching lkayouts on-the-fly, it’s just to demonstrate what I mean. You can replace ä with any other character you want.

After a long night of trying out to have the Xmodmap functionality in Wayland using Hyprland as compositor I ended up with not being successful.

I give up for now.

Maybe one day there will be an actually working solution requiring nothing more than two lines in a file.

[-] Dirk@lemmy.ml 169 points 3 years ago

Web 2.0 or: “Instead of loading all code from the same URL the website now needs a dozen of different scripts from a dozen of different URLs, gives a shit about CSP and only shows a blank page when JS and/or cookies are disabled.”

[-] Dirk@lemmy.ml 213 points 3 years ago

Easy to learn, hard to master, used for things it wasn’t created for.

Yep.

view more: next ›

Dirk

0 post score
0 comment score
joined 3 years ago