recursive_recursion

joined 1 year ago
[–] recursive_recursion@programming.dev 2 points 7 hours ago* (last edited 7 hours ago)

while I'm not sure about the tiling WM front I can help with the KDE optimization on Arch part:

To preface I'm sharing sections of my Bash script that I'm in the process of eventually releasing under AGPL-3.0 which should help explain the editing/verboseness of them.

For base/minimal Arch Linux Packages:

## `btrfs-progs` is dependent/only required if you use BTRFS as your file system.
## `grub` is also dependent if you use GRUB instead of Systemd as your init system.
## intel-ucode replaces amd-ucode (as discerned from your comment on this post) which installs Intel-based microcode for your processor/CPU.
pacstrap -K /mnt intel-ucode base base-devel btrfs-progs efibootmgr grub iptables-nft linux linux-firmware linux-lts man nano networkmanager pipewire pipewire-alsa pipewire-jack pipewire-pulse sudo

For Installing Core Packages

### grub-btrfs is omitted as it is orphaned as of Sept 3, 2024. https://archlinux.org/packages/extra/any/grub-btrfs/.
pacman -Sy --needed bash-completion cryptsetup dnsmasq e2fsprogs efibootmgr firewalld man-db networkmanager sddm sddm-kcm

KDE Focused Packages

## Installing plasma Group Packages
## https://archlinux.org/groups/x86_64/plasma/
pacman -Sy --needed breeze breeze-gtk discover drkonqi kactivitymanagerd kde-cli-tools kde-gtk-config kdecoration kdeplasma-addons kgamma kglobalacceld kinfocenter kmenuedit kpipewire kscreen kscreenlocker ksystemstats kwallet-pam kwayland kwin kwrited layer-shell-qt libkscreen libksysguard libplasma milou plasma5support plasma-activities plasma-activities-stats plasma-desktop plasma-disks plasma-firewall plasma-integration plasma-nm plasma-systemmonitor plasma-thunderbolt plasma-vault plasma-workspace plasma-workspace-wallpapers polkit-kde-agent powerdevil qqc2-breeze-style systemsettings xdg-desktop-portal-kde

## Installing kde-applications Group Packages
## https://archlinux.org/groups/x86_64/kde-applications/
pacman -Sy --needed dolphin kate kmix konsole kwalletmanager

AMD GPU Related Packages

## Installing Video Drivers
## FOSS AMD GPU Drivers
## Please see the table on https://wiki.archlinux.org/title/Xorg
pacman -Sy --needed mesa vulkan-radeon libva-mesa-driver mesa-vdpau xf86-video-amdgpu

## Enable the multilib repository for 32-bit application support:
sed -i "/\[multilib\]/,/Include/"'s/^#//' /etc/pacman.conf

## To enable 32-bit application support, the multilib repository is enabled by default using the sed command above. This allows the necessary drivers to be installable from the multilib repository.
pacman -Sy --needed lib32-mesa lib32-libva-mesa-driver lib32-vulkan-radeon lib32-mesa-vdpau
## Owners of older AMD graphics cards (GCN 1&2) may also want to install the ATI driver:
#pacman -S --needed xf86-video-ati

Some packages were omitted from the installation lines above as this was taken from my custom installer for self-hosting services.
I'd recommend checking the links provided above to to figure out what additional packages you want for yourself🤗

If you still have issues with KDE X11/Wayland on Arch or Ubuntu, feel free to DM me and I'll try my best to help👍

[–] recursive_recursion@programming.dev 1 points 4 days ago* (last edited 4 days ago)

I recently learned that Strawberry has native built-in streaming capabilities

Repo

not sure if this is what you're looking for but it's an option that might be useful for you🤗

I'm guessing it's maybe because of the cell-shading artstyle?🤔

[–] recursive_recursion@programming.dev 8 points 5 days ago (2 children)

with the successful launch of Bomb Rush Cyberfunk they're gonna need to bring the heat and stick the landing if they want to compete🔥

[–] recursive_recursion@programming.dev 147 points 6 days ago* (last edited 6 days ago) (1 children)

I'd recommend using Godot

  • Free Open Source Game Engine under the MIT License

Repo
Godot Stable Release Docs

[–] recursive_recursion@programming.dev 7 points 6 days ago (3 children)

well..by selling both the cable and wall adapter as separate items it doubles the packaging by necessity so it was still never about reducing waste

which is why I never have and never will own any of their products.

✊👍

[–] recursive_recursion@programming.dev 7 points 6 days ago* (last edited 6 days ago)

The coverage was to be for birth control and diabetes drugs and supplies, but B.C. Health Minister Adrian Dix said oral contraceptives are already covered under a provincial program so that share will be used to cover hormone therapy for women.

"We are taking that money, the between $30 and $40 million in B.C., that will come from the federal government for contraception, and applying it to something else, to make something else free at point-of-purchase, free for British Columbia women," Dix said.

British Columbia has become the first province in Canada to sign a pharmacare agreement with the federal government that would help the province fund hormone replacement therapy and diabetes expenses.

I've reordered the statements to make the overview the last paragraph but damn someone call 911 cause B.C's killing it with actually meaningful progress🤌✨

 

https://www.cbc.ca/news/politics/air-canada-labour-dispute-1.7321527

Obligatory fuck the CEOs and Shareholders

"We are bargaining. We are committed to reaching a deal. But we are saying that if that fails, the government should be ready to intervene and avoid the disruption," - Christophe Hennebelle (Air Canada’s vice-president of corporate communications)

this is not what a company that's negotiating in good faith does


NDP won't support interference

NDP Leader Jagmeet Singh said Thursday morning the party would not support efforts to force pilots back to work.

"We're going to send a clear message again that we are opposed to Justin Trudeau and the Liberals, or any government, interfering with workers," said Singh.

 

seeing the consequences of our actions can change a person for better or for worse

yeahh :/

not wanting to be born due to our current and future dystopian outlook is unfortunately totally understandable

[–] recursive_recursion@programming.dev 2 points 1 week ago* (last edited 1 week ago)

+273 EXP
Level Up!!

Fish has gained +1 resistence to Blunt Force Damage

Evolutionary Trait Unlocked!:
THICKER SKIN

Next Level in _he_p_ EXP

[–] recursive_recursion@programming.dev 1 points 1 week ago (2 children)

IMO everyone has the right to live a healthy and happy life

[–] recursive_recursion@programming.dev 5 points 1 week ago (1 children)

just curious but from your experience is Displayport just as bad or is it worse than HDMI for this exploit?

 
 

cross-posted from: https://programming.dev/post/19007507

For context:
I've encrypted the swap partition with:

cryptsetup -v luksFormat /dev/${DEVICE}
cryptsetup luksOpen /dev/${DEVICE} swap

And what I want is for the user to be able to enter their password only once to decrypt their root partition which would contain a keyfile to then decrypt their swap partition.

Does anyone know if this is possible?
Just thought I'd ask to see if anyone's done this already

Links:

 

cross-posted from: https://beehaw.org/post/15787798

Archived version

Naomi Wu has disappeared. Perhaps she has been disappeared. That’s not rare in China.

[...]

The proximate cause of her apparent disappearance, as Jackie Singh explains in detail here, was a discovery that Naomi Wu, an experienced coder, had made. It seemed that the cute little cellphone keyboard applications developed by the Chinese company Tencent, and used by just about everyone, were spyware. They could log keystrokes, and did it outside of even very secure applications such as Signal, so things that were sent securely could be “phoned home” by the keyboard app itself.

It seems, though the evidence is coincidental, that this was one too many cats let out of the bag, and the Chinese communist government of Winnie Xi Pooh acted quickly, with the results (probably understated) in the Tweet quoted above.

[...]

The silence has been deafening. People on the internet, especially young, enthusiastic websters, have long been thought unbelievably shallow, in it for whatever they could get out of it, and unwilling to take a stand on something important unless there was profit in it for them. We needn’t think that anymore — now we know it’s true.

What can be done? [...] Our government won’t lift a finger even for American citizens or very well known Chinese figures trapped under the thumb of the Disney-character’s evil lookalike, or the Uyghurs, unless there’s some political gain to be had, such as with the tattooed LGBT WNBA player who couldn’t be bothered to leave her dope at home during a visit to Russia.

[...]

China was afraid that silencing Naomi Wu would make the government there look bad. Let’s prove them right.

 

cross-posted from: https://lemmy.blahaj.zone/post/15873568

holy shit

if this is true AMD gamers just got a huge free boost in gaming performance

Windows was very unoptimized for Ryzen

 
 
 

It's the MinisForum V3


Pros:

  • Touchscreen (currently works best on KDE Plasma)
  • AMD CPU (Ryzen 7 8840U) [8 cores, 16 threads] + GPU (Radeon 780M)
  • Power button + Fingerprint reader (built into the tablet portion thankfully)
  • 3.5mm audio jack
  • 65W PD power adapter (likely to be GaN)
  • Magnesium alloy body
  • the inclusion of gyroscopes means display auto-rotation is supported
  • 1x stylus pen included
    • [4096 level pressure, up to MPP 2.6 SLA]
      • (I have no idea what any of that means, hopefully it's useful to yall)
  • Keyboard that is/has:
    • Detachable
    • Backlight LED lighting
    • Even-surface actuation pressure touchpad
    • an optional purchase (which can be deselected before checkout)

Alt text: An image of the purchase checkout options for the MinisForum V3 Tablet with the Magnetic Detachable Keyboard (both which are on sale for $999.00 and $149.00 USD respectively as of Aug 21, 2024)

Cons:

  • Made in China: "Motherboard Manufacturer: Shenzhen"
  • Supported storage: M.2 (2280) 2TB max
  • cursed Microsoft Copilot button (thankfully on the detachable keyboard rather than on the tablet itself)
  • Limited customization/configuration options in BIOS
  • Weak magnets on kickstand
  • Inaccessible user manual/BIOS(Windows users be damned)
  • Ryzen AI (locked to Windows, personally I find this as a gimmic anyways)
  • due to MinisForum disuading customers from opening up their devices I'm adding that the battery is not replaceable (void warranty at your own risk)

Features/Specifications

  • Weighs: 946g
  • Battery: 50.82Wh
  • Display: 14", 16:10 ratio, 2560*1600, 165Hz
  • 2x [type c] USB-4 at 40Gbps max
  • 1x [type c] USB VLink(DP-in)
  • 1x SD card (UHS-II)
  • Volume rocker button
  • Bluetooth: BT5.3
  • RAM (assumed both configurations are LPDDR5 with speed/frequency: 6400MHz)
  • 2x cameras:
    • [Front]: 2M, Windows Hello, Dual D-mic, Face ID, ESS
    • [Rear]: 5M, Auto focus

Extra Info

VLink TL;DR:

  • (on laptops) it's a special type of port that's primarily meant for extending ports with a USB-C hub or driving as a secondary monitor
view more: next ›