Arghblarg

joined 2 years ago
[–] Arghblarg@lemmy.ca 12 points 11 hours ago (1 children)

But can you use that gun and expect to remain free? The new environment appears to be a manifestation of that principle "... in-groups whom the law protects but does not bind, and out-groups whom the law binds, but does not protect."

As in: if you (justifiably) use that weapon in self-defense, will the US 'justice' system as it is today properly see it as self-defense, or railroad you into prison (or worse)?

If I were in the USA today, that would be my very real fear. The courts are packed with ultra-conservative, Christian nationalists and there may be no protection for those who seek it there.

[–] Arghblarg@lemmy.ca 2 points 13 hours ago* (last edited 13 hours ago) (1 children)

And you think they'd lift a finger to make that new technology accessible to the rest of us? As always, we'd be lucky to get the crumbs they leave us.

We might benefit, but only if they could not keep it entirely to themselves...

Given the events of the last 4 years I'm done with offering any benefit of the doubt to billionaires. Default judgement is 'they are evil, selfish pricks who will throw everyone else to the fire unless there is something in it for them'.

[–] Arghblarg@lemmy.ca 6 points 15 hours ago* (last edited 15 hours ago) (3 children)

Nah, 100 years of extra life (even more if they are randomly selected more than once) would give them plenty of time to exploit us all to colonize Mars and beyond in order to flee there and become emperors of a new planet, so they'd still destroy the Earth. You underestimate their shittitude as 'human' beings.

[–] Arghblarg@lemmy.ca 12 points 16 hours ago* (last edited 16 hours ago)
[–] Arghblarg@lemmy.ca 12 points 16 hours ago

Nothing a little thermite can't fix.

[–] Arghblarg@lemmy.ca 1 points 1 day ago

If I recall correctly, Trump had his hand on no book at all during his vows this inauguration. (Too lazy tp find the pic). Isn't that legally significant? Not that anything at all seems to matter in that respect anymore...

[–] Arghblarg@lemmy.ca 97 points 3 days ago (5 children)

So... when does Congress decide it wants to you know, actually keep some of its checks and balances? I'm guessing never?

Every single GOP member who isn't acting against this is officially a Quisling. Never forget how they handed the reigns of power to fascists on a platter.

[–] Arghblarg@lemmy.ca 15 points 3 days ago* (last edited 3 days ago) (1 children)

Great, two coffees for me to drink! I am such a nice person, I made my future self a present.

[–] Arghblarg@lemmy.ca 43 points 3 days ago (1 children)

Oh but being Texas they sure as F would've told her parents if she was expressing gender dysphoria right? Ye gods what a dumpster fire of a society.

[–] Arghblarg@lemmy.ca 59 points 3 days ago* (last edited 3 days ago)

"He who saves his country does not violate any law." -Donald Trump (reading a post-it note handed to him by Felon Musk, quoting Napoleon, or something)

[–] Arghblarg@lemmy.ca 4 points 3 days ago (2 children)

Wait, so you're blaming NATO for the current situation? Oh boy. I'm done here.

[–] Arghblarg@lemmy.ca 1 points 3 days ago (4 children)

I know how dangerous it sounds. But every time Russia moves the line,the rest of the world is supposed to fall back? Moving arms into NATO countries sends a message, but it isn't starting a war. Putin's the one who actually invaded another country. Merely reinforcing defences is NOT starting the war. He started it and doesn't want to die in a nuclear war any more than we do. So he'd complain bitterly but wouldn't DARE make a move against it. Why hasn't he already just nuked Ukraine (even 'just a few' tactical nukes?) if he believed he could ever survive doing so?

 

In response to suggestions by a lunatic in the US Oval Office, Green Party Canada's leader Elizabeth May suggested Canada should invite western states Washington, Oregon and California join B.C and split from Canada to form the 'Cascadia' eco-state.

(Note this article is from Jan 8, 2025 and Elizabeth May has since become co-leader of the party alongside Jonathan Pedneault).

 

Would be a darn shame if tariffs applied to it for the US... oh wait

 

EDIT see my comment below which uses a much cleaner method that avoids the noisy multple udev events and doesn't require udev/eudev at all


This activates/de-activates the secondary display underneath the removeable keyboard properly. Note though that the keyboard is a composite unit and causes a whole train of udev events, rather than a single one, which means the desktop will flicker multiple times on each re-attachment of the keyboard :(. If anyone knows how to just run the scripts on the 'last' udev event, it would make for a cleaner experience. (XFCE sometimes crashes out on me due to the rapid xrandr reconfigs but it's mostly usable).

[/usr/local/bin/usb-0b05_1b2c-in]

#!/bin/bash

if [ "$(xrandr --listmonitors | wc -l)" -gt "2" ]; then

#logger -p user.info "=== KEYBOARD REPLACED ==="

xrandr --output eDP-2 --off

fi

[/usr/local/bin/usb-0b05_1b2c-in_udev]

#!/bin/bash

export PATH=/bin:/sbin:/usr/bin:/usr/sbin

/usr/local/bin/usb-0b05_1b2c-in &

[/usr/local/bin/usb-0b05_1b2c-out]

#!/bin/bash

if [ "$(xrandr --listmonitors | wc -l)" -lt "3" ]; then

#logger -p user.info "=== KEYBOARD REMOVED ==="

xrandr --auto && xrandr --output eDP-2 --below eDP-1

fi

[/usr/local/bin/usb-0b05_1b2c-out_udev]

#!/bin/bash

export PATH=/bin:/sbin:/usr/bin:/usr/sbin

/usr/local/bin/usb-0b05_1b2c-out &

[/etc/udev/rules.d/99-zbduo2024-kbd.rules]

ACTION=="add", ATTRS{idVendor}=="0b05", ATTRS{idProduct}=="1b2c", ENV{XAUTHORITY}="/home/username/.Xauthority", ENV{DISPLAY}=":0", OWNER="username", RUN+="/usr/local/bin/usb-0b05_1b2c-in_udev"

ACTION=="remove", ENV{ID_MODEL}="ASUS_Zenbook_Duo_Keyboard", RUN+="/usr/local/bin/usb-0b05_1b2c-out_udev"

Now, to get your laptop keyboard working when removed, in bluetooth mode, one must

  1. Ensure bluetooth-ctl is running and initiate 'pair' in Bluetooth by clicking 'Create pairing with this device' (key icon in the 'Blueman-Manager' window)
  2. Turn on bluetooth (switch on the left of the keyboard)
  3. Remove the keyboard
  4. Hold F10 for 4-5 seconds until its blue LED starts blinking rapidly (kbd in pairing mode)
  5. Watch your desktop notifications for the connection message with the BT challenge pin code (6 digits)
  6. type the challenge PIN code on the keyboard
  7. Now the keyboard should be paired.

... now if only I could get the sound device (Intel HD Audio) and brightness control working for both screens!

 

I was searching online for quite a while this evening, chasing a half-remembered bit of trivia, that trilobites were supposedly unique in their use of calcite for their lenses, composing the ommatidia of their compound eyes.

It must be so obvious to scientists in the field of studying insects that they never mention it in their papers...

So, what compound(s) do modern arthropods use in their compound eyes. If it isn't calcite, what do modern 'bugs' use?

 

If you haven't heard of it, this island has a population that the world has collectively decided to leave alone, mostly because they have proven, on multiple occasions, that they absolutely do not want visitors. Like, arrow-to-death anyone attempting to land or even visit near their shores.

This probably cannot go on forever... but maybe, it could. Essentially, we are already implementing a 'Prime Directive' of sorts here. Would the 23rd, 24th, ... centuries in Star Trek canon still have this little island on Earth, isolated from not just from Earth's own unified Federation society, but from the greater Federation races? What steps would the Federation and Earth take to maintain their isolation and the ecosystem on which they depend?

Would make for an interesting episode, or at least a cool side-note reference in one :)

23
submitted 1 year ago* (last edited 1 year ago) by Arghblarg@lemmy.ca to c/synths@midwest.social
 

Best book for learning the ins and outs of MIDI I've ever encountered. Relatively obscure, but an invaluable reference book for anyone wanting to dig into the details of how MIDI works.

 

Nothing we apes don't already know (at least those of us who've been here for 84 years or so), but an interesting take from the MSM on it.

The system is rigged, this is one of the reasons why I Buy, HODL, DRS!

 

See linked posting. I've commented there with a link to a CLI tool in Python that allows downloading of IA collections. I've submitted a patch to enable specifying start and end points so that it's easier to resume downloading a huge collection, or to allow multiple people to split up the work.

https://archive.org/details/georgeblood

https://archive.org/details/78rpm_bowling_green

F*ck the RIAA and absurdly long copyright.


EDIT: There is more than one collection of 78s on IA, so I updated the title.


The issue with these collections are that they're absolutely HUGE. And yes, IA offers torrents for them, but as a separate torrent for every. single. album. And the torrents have all data in them -- FLAC, fixed-rate MP3, VBR MP3, PDF liner notes, etc. etc... there may be some extremely hardcore data-hoarders out there who want everything, but IMHO as these are scratchy old 78 records, FLAC is overkill to just save the audio in a listenable format. The George Blood collection, just the VBR MP3s, is looking to be about 6TB. With ALL data it might be over 40TB! I can't afford that many hard drives :)


So, my approach at the moment is to save just the VBR MP3s (they seem to be done at up to 320kbps VBR) and the JPEG album cover. If I have a chance and any storage left afterwards, I can make a separate pass to get the album liner PDFs...


Tool used: https://github.com/jjjake/internetarchive


Patch to allow setting start and end item indices for downloads: https://github.com/jjjake/internetarchive/pull/605


Example usage to grab just the VBR MP3 and record label JPG for each (note the --start-idx and --end-idx arguments):

#ia download --start-idx=4001 --end-idx=8000 -a -i --format="VBR MP3" --format="JPEG" --search collection:georgeblood

I'm going to concentrate on the George Blood collection for now.. I'm starting at item 1. It would be great if others started at index 50,000, 100,000, 150,000, ... and others started at the end and worked backwards in similarly-sized chunks, so that it's assured someone gets each of them.

 

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

(Credit to rexxit user u/JackTheTranscoder)

Could this be the start of a big foreign ownership dump?

 

Marked NSFW just in case :)

 

!outoftheloop@lemmy.ca

view more: next ›