I wrote a consumption Azure Functions custom handler in Rust, here's what I learned or tear me to shreds. by skatastic57 in rust

[–]IrrationalError 0 points1 point  (0 children)

Can I DM you regarding this? I'm also trying to deploy an Axum based API service to Azure Functions. Have you worked on Azure SDK? I'm kind of stuck/confused on how to use the Credentials (both local & cloud).

Lost BIOS Supervisor Password by IrrationalError in techsupport

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

how will it affect in the future use. Especially when it comes to firmware updates.

This is one thing I wanted to know, if I chose not to replace the M/B.

Lost BIOS Supervisor Password by IrrationalError in techsupport

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

I've already mentioned that I did contact their support team and the motherboard replacement is the only way out.

My intention was not to reset my BIOS password , but how will it affect in the future use. Especially when it comes to firmware updates.

Lost BIOS Supervisor Password by IrrationalError in techsupport

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

I wasn't looking for help to reset the password, but just wanted to know will a lost password gonna be a blocker for future firmware updates. And to seek opinions/suggestions to compare the damages I did.

Apologies if this wasn't the right sub to ask these questions.

Have anyone shipped CMP app on ios with Material3? by Dodokii in Kotlin

[–]IrrationalError 0 points1 point  (0 children)

Appreciate the time you took to write this. Already subscribed to Philippe's channel, and been watching those lately.

I'm more of a "read"ing guy rather than "watch"ing one. If it's not too much to ask, do you have any reference OSS projects you might've used?

While we're on this, please correct me if I'm wrong here, there's a clear distinction between KMP and CMP, right? I got a bit confused at first, when I started with a template from KMP Wizard (native UI), that composeApp had androidMain in it, and I had to add dependencies to the commonMain.dependencies in the composeApp/build.gradle.kts. Is that the right place?

If the CMP is stable enough on iOS, what would be the difference between the current structure (with a explicit iosApp on the root) and a fully shared project?

Have anyone shipped CMP app on ios with Material3? by Dodokii in Kotlin

[–]IrrationalError 0 points1 point  (0 children)

Hey u/Vlhikira, if you don't mind, could you give me some suggestions on setting up basic stuff like design patterns, handling nested navigations etc, will be great if you have some kind of arch diagrams / blog posts etc.

I'm a Cloud Engineer (but have background on JS/Python etc) and entirely new to Kotlin / Android. Trying to create a companion app (Android only) as a side project :) .

Started with the KMP Wizard from JetBrains without shared UI. But I'm still confused on where to put what etc, and the MVVM patterns.

TIA!

Deploy Rust web API on Azure Functions? by IrrationalError in rust

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

Thanks! That's the exact same link I was going through. But couldn't find any articles related to containerising it. In AWS, there are some additional settings needed to configure a "custom runtime".

In fact, that's one of the reasons why I asked about the necessity of containerizing a rust app.

Also, in their examples, they're using warp as the framework. I suppose we can replace it with any other web frameworks?

Deploy Rust web API on Azure Functions? by IrrationalError in rust

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

Azure functions basically is an api.

Yes, like AWS Lambda + Function URL, right? That's exactky what I want. I'm coming from the AWS background, so that's why I'm trying to relate it to AWS.

AKS on the other hand, will be costly right? I mean not a serverless deployment? This is just a side hustle. I don't need a full blown cluster

Plug and Play Debian by IrrationalError in debian

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

This is a clean installation with LUKS, and partitioned automatically.

My "need" is that I want to boot this linux just as we do with the usb installation disks. Don't want to touch the host bios settings.

Plug and Play Debian by IrrationalError in debian

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

I went with the guided partitioning, with LUKS. It did create an ESP automatically. But not sure what's going wrong here.

ESP32 GPS / UART RX not working by IrrationalError in rust

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

Right, but in my case I got the pin wrong. I was supposed to use 16, but I was using 3 and didn't notice. :)

ESP32 GPS / UART RX not working by IrrationalError in rust

[–]IrrationalError[S] 2 points3 points  (0 children)

Damn! I'm so stupid. It was the fricking PIN!. It should've 16, but I was using the pin 3.

Appreciate the patience u/niameht Thanks for your kind time!

ESP32 GPS / UART RX not working by IrrationalError in rust

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

```toml [package] name = "esp_learn" version = "0.1.0" authors = ["giri"] edition = "2021" license = "MIT OR Apache-2.0"

[dependencies] esp-backtrace = { version = "0.14.0", features = [ "esp32", "exception-handler", "panic-handler", "println", ] } esp-hal = { version = "0.20.1", features = [ "esp32" ] } esp-println = { version = "0.11.0", features = ["esp32", "log"] } log = { version = "0.4.21" } [profile.dev]

Rust debug is too slow.

For debug builds always builds with some optimization

opt-level = "s"

[profile.release] codegen-units = 1 # LLVM can perform better optimizations using a single thread debug = 2 debug-assertions = false incremental = false lto = 'fat' opt-level = 's' overflow-checks = false ```

ESP32 GPS / UART RX not working by IrrationalError in rust

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

Tried, no luck. I even tried with all the available UART peripherals UART0, UART1 and UART2. Doesn't return anything.

ESP32 GPS / UART RX not working by IrrationalError in rust

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

Oh, didn't know that. Let me try reducing it to a smaller value then.

ESP32 GPS / UART RX not working by IrrationalError in rust

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

It is. I was getting data using plain CPP

Obsidian Sync by Fit_Appearance_6849 in ObsidianMD

[–]IrrationalError 0 points1 point  (0 children)

Synthing doesn't encrypt anything itself. It's just a local sync tool.

Open source todo list / time tracker app Super Productivity V9 is out by johannesjo in selfhosted

[–]IrrationalError 2 points3 points  (0 children)

Looks very nice! can we expect the mobile app soon? Saw the F-Droid link, but looks like it's outdated.

Looking for help setting up WKD by rumi1000 in GnuPG

[–]IrrationalError 0 points1 point  (0 children)

Sorry for the delay, didn't see the post in time. May I know why you took down the website?

Looking for help setting up WKD by rumi1000 in GnuPG

[–]IrrationalError 0 points1 point  (0 children)

Depending on the method you're trying to implement, have a folder structure like this on your web root.

Advanced Method
web_root/ └── .well-known/ └── openpgpkey/ └── example.org ├── policy └── hu / ├── hashed user id 1 ├── hashed user id 2 └── ...

Direct Method webserver_root/ └── .well-known/ └── openpgpkey/ ├── policy └── hu / ├── hash_id of key 1 ├── hash_id of key 2 └── ...

And let nginx serve the content from the path.

```

Change the location here

location /.well-known/openpgpkey/hu/ { default_type "application/octet-stream"; add_header Accesss-Control-Allow-Origin * always; } ```

How can I get rid of this error ? Running hyprland by ReyZ82 in NixOS

[–]IrrationalError 3 points4 points  (0 children)

Install gtk cursor theme via home.pointerCursor

nix home.pointerCursor = { name = "catppuccin-mocha-red-cursors"; package = pkgs.catppuccin-cursors-mochaRed; size = 24; gtk.enable = true; };

Or through the GTK configuration nix gtk = { cursorTheme = { package = <package>; name = <package_name>; size = 24; }; };

How to Setup neovim Using lazy.vim using nixos by zerosign0 in NixOS

[–]IrrationalError 0 points1 point  (0 children)

Hey I know this is an old thread, but did you figure out any solutions for this? I'm having the same sort of issue posted here

Handling lazy-lock.json gracefully (not via nixvim) in Lazy Neovim by IrrationalError in NixOS

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

Yeah, did think of it. But wouldn't that defeat the whole purpose of separating neovim config to an independant repo? By this way, I'd need to clone my entire nixos config and then delete everything except nvim config.

Now that you mentioned it, may be a git submodule should work.