u/Yha_Boiii

Good material on how cpu's fetch ram values?

Hi,

Any good read or watch on how specifically the cpu retrieves data? Stack or heap and why buffer overflows *can* occur.

reddit.com
u/Yha_Boiii — 22 hours ago

pi8 vs px8s2?

Hi,

look for the px8s2 but can be a month of saving up compared to pi8, what do we pick and why? purely on sound, not really interested in wear and other points

reddit.com
u/Yha_Boiii — 1 day ago

Force a cpu to run userspace stuff in ring 0 / EL3 ?

Hi,

I'm writing an app but kernel space restricts sys calls able to make but don't want stall time when flushing for a new security level, so is there a way to run a userspace app forced on the vlsi level to not switch. a usual 50-300 cycle penalty per switch is expensive when polling network and manipulating it in userspace, rinse and repeat?

reddit.com
u/Yha_Boiii — 2 days ago

Refer to array as names?

Hi,

I have a conf file with reference of array names, is there a way for c to read conf file at runtime and find the arrays when stripped?

reddit.com
u/Yha_Boiii — 6 days ago

how big is execution time penalty for cpu mode switching?

Hi,

If a cpu runs a program in userspace contrary to kernel space how much of execution time is penalized on context switching and cpu modes? there are two forces: cpu mode itself bit vector being flipped (eg. el0 - el3) and then the kernel switching.

nothing specific, just wet finger in air

reddit.com
u/Yha_Boiii — 10 days ago

What are the psychological benefits of following religious preachings?

Hi,

I wanted to ask how psychologically it will benefit or hurt you if you followed Jesus from the bible:

- don't steal

- dont hold grudges/vengence etc etc

Is there any benefit to it or just a lot of empty words from 200 years ago, if we subtract social disposability in a modern world, all having zero sum thinking which is what this in the end elliminates.

reddit.com
u/Yha_Boiii — 10 days ago

C bound checking

Hi,

How does bound checking and such work on a lower level?

Why is snprintf needed when a normal say normal signed ints don't need bound checking?

Today i got a reality check on stack is also not bound checked, how does it actually work, heap or stack?

Any books, videos and other material specifically on the asm level of it all the compilers story on it?

reddit.com
u/Yha_Boiii — 12 days ago

Hi,

How does dns work when comes to stuff like sending an email with curl? Seems like you can say you are any guy in the field of `from` like:

```

# Source - https://stackoverflow.com/a/16069786

# Posted by bambam, modified by community. See post 'Timeline' for change history

# Retrieved 2026-05-07, License - CC BY-SA 4.0

curl --ssl-reqd \

--url 'smtps://smtp.gmail.com:465' \

--user 'username@gmail.com:password' \

--mail-from 'username@gmail.com' \

--mail-rcpt 'john@example.com' \

--upload-file mail.txt

```

u/Yha_Boiii — 13 days ago

Hi,

I recently had an issue with clang complaining and giving an error when made a char array but when added a pointer (asterics) to it at the start the issue went away?

like this, with the second version of the char array won for the compiler.

char id[] = {"a", "baah", "raah"};
char *id[] = {"a", "baah", "raah"};
[...]
strcat(buffer, id[1]);
[...]
reddit.com
u/Yha_Boiii — 16 days ago
▲ 1 r/FPGA

Hi,

To say the least my high school grades are....

If you have a good public portfolio could you get a job in HFT or is that dream closed permanently then?

reddit.com
u/Yha_Boiii — 19 days ago
▲ 1 r/LaTeX

Hi,

with this code i want to make the line inside the triangle loosely dotted to make a field of depth, how can it be achieved?

https://preview.redd.it/dvys77xrnwxg1.png?width=773&format=png&auto=webp&s=34f925a52377d80c0c76e4773ffd7bf0796dcede

code:

\begin{tikzpicture}
    \draw -- (0,0)     
        -- (-6, 0)
        (-6,4)
        -- (0,4)
        (0,0)
        -- (4,2)
        -- (0,4);
        %-- cycle;
    \draw (-6,2) ellipse (1cm and 2cm)[rotate=90];
    \draw (0,2) ellipse (1cm and 2cm)[rotate=90];
    \end{tikzpicture}
reddit.com
u/Yha_Boiii — 22 days ago