ExtremeDullard

joined 2 years ago
MODERATOR OF

The best thing Trump's bill could do to Georgia is cause that stupid bitch Marjorie Taylor Green to lose the next election. Just for that it'll have been worth it.

Small instances probably aren't for you

I'm sorry but... no.

Look, I'm a child of the 70's, I know what shite internet feels like and I'm a patient man. Hell, half of the reason why I stick to SDF is exactly because I'm patient (the other half being because SDF defederates almost no other instances and I appreciate that).

But I'm running a BBS with 32 lines and quite a few users (yes, old-stylee, with modems) and also a few Echolink repeaters for hams, and I provide better service and better uptime than SDF most of the time. And it's just me, myself and I with little time to spare after work.

I'm glad you're satisfied with SDF. My bar is a bit higher than yours apparently, yet goodness knows I'm not demanding...

[–] ExtremeDullard@lemmy.sdf.org 2 points 1 day ago* (last edited 1 day ago)

The millionaires I'm talking about are the millionaires from the eighties who partied with Epstein and all knew who he was and what he was doing. Hell, his fucking private jet was nicknamed the Lolita Express...

A million in the eighties was a lot of money. It got you 4k of snow tops.

Does this public-private partnership truly benefit the public?

It never does: whenever public services are delegated to private companies on the promise that they'll run them better for cheaper, it holds true for 2 or 3 years, and then the service degrades and becomes more expensive because the shareholders are greedy and they know they've captured the market.

Case in point: private highways in France that cost you a fortune, railway services in the UK that are always late or cancelled, healthcare in Finland which is even worse than the UK's despite being a Scandinavian country, and of course almost everything in the US.

[–] ExtremeDullard@lemmy.sdf.org 15 points 1 day ago (2 children)

Yeah, I really feel for those poor innocent millionaires who associated with a known pedo totally in good faith.

People who voted for this shit, knowing full well who Trump was and what he did, lost the right to open their trap about the consequences the minute they cast their ballots.

Fuck you funny man.

[–] ExtremeDullard@lemmy.sdf.org 1 points 1 day ago* (last edited 1 day ago) (2 children)

I made a donation once, with the idea of making one every year, because I believe in paying for the things I use, and particularly small-time, old-style services like SDF.

But the plain and sad reality is, most of the things I DON'T pay for work much better than SDF services.

So yes, it truly was money poorly spent. It wasn't much money and it didn't make a dent in my quality of life in any way, but that's just what it was - money poorly spent.

My one donation will remain a single donation until SDF services improve to the point when I can convince myself that the occasional slowness and downtime are reasonable for a small gig like SDF. Sadly, it's not even up to that standard, and has never been in the 2 years since I've joined: it's more slowness and downtime than it is working normally.

[–] ExtremeDullard@lemmy.sdf.org 2 points 2 days ago* (last edited 2 days ago) (4 children)

SDF had been nothing short of terrible for me for the 2 years I've been using it. It's easily in the top spot for worst money I've ever spent on anything. And I'm not talking about just Lemmy...

The only reason I'm still here is inertia. But I have a shadow account on Sopuli and I'm getting awfully close to switching for good.

[–] ExtremeDullard@lemmy.sdf.org 122 points 2 days ago (38 children)

It's different this time around.

The previous attempts were about freeing themselves from an abusive unprincipled data-hungry big data monopoly,

This attempt is about freeing themselves from an abusive unprincipled data-hungry big data monopoly operating in a fascist country and in cahoots with the regime.

I reckon it's serious this time.

Consisting his poor command of English, he must be impressed by anybody who uses it correctly.

[–] ExtremeDullard@lemmy.sdf.org 10 points 2 days ago

how can she call herself a Christian and be in the MAGA cult?

If she's a MAGA christian, she's in two cults.

The obvious answer to your question is that she's prone to falling prey to cults.

 

One day, Americans will be ashamed of themselves. Like the Germans were.

 

One day, Americans will be ashamed of themselves. Like the Germans were.

 

To configure several keyboard input layouts, it's quite simple - especially if you come from i3: no need for ibus or fcitx (both bring their own problems in Sway/Wayland).

All you have to do is edit your keyboard input preferences right in your Sway config file. For example:

input type:keyboard {
        xkb_layout us,fr,fi,es
        xkb_options grp:alt_space_toggle,lv3:ralt_switch
}

This sets up 4 keyboard layout (US, French, Finnish and Spanish) and Alt+space as the shortcut to cycle through them.

There's a plethora of XKB layouts and options. You can see them all by doing man xkeyboard-config. Pick the ones you want.

Then if you use Waybar, you can set it up so that it displays the layout currently in use with the sway/language module. For instance, put this in your Waybar config file:

"sway/language": {                                                           
    "format": "{flag}",                                                      
    "tooltip": false,                                                        
    "on-click": "swaymsg input type:keyboard xkb_switch_layout next",        
    "on-click-right": "swaymsg input type:keyboard xkb_switch_layout prev"   
},                                                                         

This shows the current layout as the corresponding country flag and configures left- and right-click to cycle through the layouts when clicking on the flag.

Finally, if you like to type emojis and you don't want to remember the unicode numbers (which you can enter in hexadecimal with Ctrl+Shift+u in case you didn't know), install rofimoji and wtype: rofimoji is a very nice Rofi-based emoji picker, and wtype is the Wayland typer it needs to inject the emojis through the Wayland virtual keyboard:

Then add a key binding in your Sway config file to call the emoji picker. I personally use Ctrl+Shift+e:

bindsym Ctrl+Shift+e exec rofimoji

Final twist: if you use several input layouts and you display the current layout in Waybar, you'll notice that wtype (called by rofimoji) makes the Waybar language icon disappear.

That's because there's a bug in the Waybar Sway language module: it doesn't mess up the keyboard input, it just makes the icon disappear until you change the layout, and then it comes back.

So here's a workaroud, since nobody seems to be in a hurry to fix this bug 😃:

  • In .local/bin, create a wtype file with the following content:
#!/bin/sh
/usr/bin/wtype $@ && swaymsg input type:keyboard xkb_switch_layout next && swaymsg input type:keyboard xkb_switch_layout prev

What this script does is call the real wtype, then switch the keyboard layout back and forth to make the Waybar language icon reappear.

  • Add .local/bin to your PATH environment variable BEFORE /usr/bin, so your wtype wrapper is called by rofimoji in lieu of the real wtype. To do that in Sway:

    • Add the modified PATH to ~/.config, e.g.:
    PATH=$HOME/.local/bin:$PATH
    
    • call systemctl --user daemon-reload
    • Log out and back in

    (if you wonder why you have to do all this to set a simple environment variable in Sway, see here)

After that, the language icon should stay put when you enter emojis.

 

Now you can pay your McMansion with McDollars and help bring about the next subprime mortgage crisis.

 

Don't tourists know by now that visiting the US in 2025 is like visiting Germany in 1938?

 

Today was rough. It hasn't been this intense for at least a year.

 

This man's homemade prostheses are awesome!

Check out his creations on his Tiktok and his Youtube channels.

I particularly like his super-cheap prostheses made out of plastic soda bottles, a technique we mentioned here before.

view more: ‹ prev next ›