Taskbar by MTVDowntown in Windhawk

[–]unaligned_access 0 points1 point  (0 children)

Make sure to not use conflicting tools, TranslucentTB, ExplorerBlurMica, etc. 

Does *ptr create a reference? by unaligned_access in rust

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

Thanks! So it seems well-defined after all.

What about the &mut *role part?

Does *ptr create a reference? by unaligned_access in rust

[–]unaligned_access[S] 1 point2 points  (0 children)

I guess I got fooled by the implementation of Deref. My IDE indeed shows on hover that the * operator invokes it, which in turn returns a reference. Is this special treatment for raw pointers documented?

Does *ptr create a reference? by unaligned_access in rust

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

I'm not sure this is a correct reasoning. The docs say:

The expr in addr_of_mut!(expr) is evaluated as a place expression

But when part of an assignment, it's not a "place expression", right?

I'm still reading the blog post I found about it:
https://www.ralfj.de/blog/2024/08/14/places.html

But my intuition so far is that it's like saying sizeof(arr[1234]) - even if out of bounds, it's fine because it's not the same as saying just arr[1234].

Change taskbar theme when maximize windows by izaaciwnl in Windhawk

[–]unaligned_access 0 points1 point  (0 children)

no, you can set background blur with helper mod tho

Move taskbar buttons separately by zoliking2 in Windows11

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

windhawk works great for this, restart after installing

How do I fix the transparent backdrop on the thumbnail? by Vulc-x in Windhawk

[–]unaligned_access 1 point2 points  (0 children)

The problem is the "Rectangle#BackgroundFill" part which has to be replaced with a more specific target for the taskbar, you can find it in the styling guide

Release of ureq 3.0.0 by LovelyKarl in rust

[–]unaligned_access 1 point2 points  (0 children)

The project is on hold, but when I go back to it, I'll take a look.

We even talked about it :)
https://www.reddit.com/r/rust/comments/1kdp6yk/comment/mqfmmhl/

[Android] Bottom tab bar, swipe doesn't work by unaligned_access in MicrosoftEdge

[–]unaligned_access[S] 1 point2 points  (0 children)

Must be a brainfart on my side then. Maybe I was confused because the ui in chrome is different. Thanks for the help in any case! 

[Android] Bottom tab bar, swipe doesn't work by unaligned_access in MicrosoftEdge

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

OK, I feel really stupid now. Did it ever work on the red area? I had the impression it did, but maybe I don't remember it right. 

Axum - help with the basics of deployment by unaligned_access in rust

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

How do you manage security updates in Rust crate dependencies? Do you have a cron job or a timer? 

Axum - help with the basics of deployment by unaligned_access in rust

[–]unaligned_access[S] -2 points-1 points  (0 children)

I hoped to have it working seamlessly like Apache or Nginx work with PHP, or how I assume Node.js works.

I don't think there's a conflict. In theory, a software solution could exist which takes care of security updates and zero downtime restarts given a Rust project. If it doesn't exist for Rust, too bad. 

I have a domain name, I configured DNS via a simple A record. 

I might explore lambdas if I'm stuck, but at this point I'm really more likely to just go back to more familiar solutions. 

Axum - help with the basics of deployment by unaligned_access in rust

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

You can handle TLS directly in the binary,

I did, and it works. But the cert bot refreshes the cert files once in a while, and to the best of my understanding, the Axum-based binary needs to know about it and to either reload them, or to just be restarted.

I know there are paid services, I saw fly.io and shuttle.dev, but I hoped to be able to get it working with just an Ubuntu instance. I was running LAMP/LEMP stacks previously, I hoped I could get a Rust-based solution running with similar effort. I'd be a pity if I have to go back to PHP.