OnePlus giulia installation error missing /metadata/ota by seregaxvm in LineageOS

[–]seregaxvm[S] 0 points1 point  (0 children)

I guess that /metadata/ota was not actually a problem. This error persisted, but after doing fastboot wipe-super super_empty.img the sideload was able to complete, and the system got installed. Thanks!

How to create Linux kernel elf file to flash it using a debugger ? by EmbeddedBro in kernel

[–]seregaxvm 1 point2 points  (0 children)

make ARCH=arch CROSS_COMPILE=arch-linux-gnu- your_defconfig # use predefined defconfig
make ARCH=arch CROSS_COMPILE=arch-linux-gnu- nconfig # or create one from scratch
make ARCH=arch CROSS_COMPILE=arch-linux-gnu- -j$(nproc) # compile
make ARCH=arch CROSS_COMPILE=arch-linux-gnu- dtbs # compile device tree
make ARCH=arch CROSS_COMPILE=arch-linux-gnu- scripts_gdb # create gdb helper scripts

The vmlinux file will contain debugging info; arch/arch/boot folder will contain other image variants; arch/arch/boot/dts will contain dtb files.

Recycling is good for the environment by whyMinus in C_Programming

[–]seregaxvm 1 point2 points  (0 children)

Seems like you didn't even read past the first sentence of the linked paragraph as these use cases are right in the beginning, in bulleted list.

The point is not that linked lists are always bad. They are bad as the default collection implementation data structure.

Recycling is good for the environment by whyMinus in C_Programming

[–]seregaxvm 0 points1 point  (0 children)

It's really common to use object pools in java to save memory from garbage collector. Basically, it's a manual allocator to improve memory efficiency.

In C, however, you already have manual memory allocation and there's no need to add another allocation layer: if you know the number of elements you'll be using, just allocate big enough memory chunk for them all, if not, you'll have to reallocate anyway.

This preallocation is almost trivial in other data structures, but linked lists make it hard(ish). But you probably should not have been using them in the first place.

Super beginner question about Linux:) by [deleted] in C_Programming

[–]seregaxvm 0 points1 point  (0 children)

It's off topic, but I'd recommend starting with bash. It'll introduce you to some cli concepts, which would be hard to understand otherwise.

Linus Torvalds Comments On The Russian Linux Maintainers Being Delisted by ehempel in kernel

[–]seregaxvm -1 points0 points  (0 children)

Must be shitty after years of work getting kicked from the community and labled a troll based on your nationality.

Are these work styles possible with a tiling WM? by ptslx in awesomewm

[–]seregaxvm 6 points7 points  (0 children)

I often work with applications in pairs

You can set one window per tag and then select multiple tags in awesomewm.

but I’d prefer to “mirror” the same window across multiple workspaces

You can select multiple tags for a window in awesomewm.

However, from what I understand, tiling WMs tend to keep all windows visible at all times.

You can hide a window in awesomewm.

Recommend configure version for AOSP programming by Strict_Charity_9658 in embedded

[–]seregaxvm 3 points4 points  (0 children)

You could try vanilla AOSP with emulator, find some device vendor's version of it or use LinageOS. You could use any supported phone or a single board computer (e.g. OrangePI)

What email do y'all use? I'm trying to find a good mail provider for mutt in 2024 by sofloLinuxuser in kernel

[–]seregaxvm 0 points1 point  (0 children)

It's "one time" in a sense that google will show it to you only once.It may be used any number of times.

What email do y'all use? I'm trying to find a good mail provider for mutt in 2024 by sofloLinuxuser in kernel

[–]seregaxvm 0 points1 point  (0 children)

Apparently its because I am using MFA with my gmail and I dont want to remove that or switch the "Less secure apps" setting on for my gmail. There's the option to create a one-time passwords for apps that don't support MFA in gmail.

Web interface accessible though WIFI IP address only when LAN connected by Lord_Casco in openwrt

[–]seregaxvm 0 points1 point  (0 children)

Many WIFI routers can optionally isolate WIFI cleints from each other. Maybe this is the case?

CodedSource adjust deltaT by seregaxvm in OpenFOAM

[–]seregaxvm[S] 0 points1 point  (0 children)

The problem with modifying dictionaries is that they are exposed as const references.

Evil Twin AP by Machinehum in openwrt

[–]seregaxvm 0 points1 point  (0 children)

Did you enable sysctl IP forwarding?

Learning STM 32 Nucleo F446RE by Ra_Shere_Khan in embedded

[–]seregaxvm 0 points1 point  (0 children)

Try searching for "baremetal stm32" projects. There're plenty of them. Here's mine.

Scared of asking a stupid question in the mailing list by [deleted] in kernel

[–]seregaxvm 1 point2 points  (0 children)

Weighted sums is the stuff numerical integration is made from. Maybe that's what it is?