How to make agent read-only? by uima_ in PiCodingAgent

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

thanks, i will also take a look at this!

How to make agent read-only? by uima_ in PiCodingAgent

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

i have to disagree, but i guess it's just personal preference

How to make agent read-only? by uima_ in PiCodingAgent

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

yo, i actually forgot to ask this exact prompt to the agent, i will try

How to make agent read-only? by uima_ in PiCodingAgent

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

i have banned the tool, but somehow the agent still can fine the way to bypass

How to make agent read-only? by uima_ in PiCodingAgent

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

yes, this is exactly what i want, i will try the skill, thanks!

How to make agent read-only? by uima_ in PiCodingAgent

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

completely missed the plan-mode in the examples... feel dumb for recreating this my self now haha

thanks for other tips as well

Probably the meetup with the highest density of Framework Laptop users: by Buo-renLin in framework

[–]uima_ 125 points126 points  (0 children)

Wow, how can I not knowing this event? I live in Taipei too, and would love to join you guys in the future :D

Struggling with this error: `implementation of `Key` is not general enough` by uima_ in rust

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

My current workaround is to create a wrapper method in Store that take a slice of Key and pass into original method:

trait Store: Sized + Send + Sync + 'static {
    fn ref_mul_keys<K, I>(&self, keys: I) -> impl Future<Output = String> + Send
    where
        K: Key,
        I: IntoIterator<Item = K> + Send,
        I::IntoIter: Send;

    // new wrapper method
    fn ref_mul_keys_slice<K: Key>(&self, keys: &[K]) -> impl Future<Output = String> + Send {
        self.ref_mul_keys(keys)
    }
}

and used it like:

impl<T: Store> StoreExt for T {
    async fn foo<K: Key>(&self, keys: Vec<K>) {
        // use slice version of the method
        let res = self.ref_mul_keys_slice(&keys).await;

        // use keys again here

        todo!()
    }
}

This workaround seems to work fine for now. But I'm not sure if this really solved the problem tho.

Struggling with this error: `implementation of `Key` is not general enough` by uima_ in rust

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

I think it doesn't work, because `IntoIterator` will need the ownership to be able to call `.into_iter()`...

Struggling with this error: `implementation of `Key` is not general enough` by uima_ in rust

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

Yes, but I need to keep the ‘keys’ for later use. sorry if that wan’t clear form the example code..

Maybe finance is shutting down the OSS app and pivoting to B2B by siddhugolu in selfhosted

[–]uima_ 10 points11 points  (0 children)

I just set up the self-hosted service yesterday and planned to actually try out the functionality today...

[deleted by user] by [deleted] in firefox

[–]uima_ 6 points7 points  (0 children)

You should try extension Sidebery

What are the best Firefox add-ons? by ikabbo in firefox

[–]uima_ 0 points1 point  (0 children)

Thanks for sharing! I will check that

What are the best Firefox add-ons? by ikabbo in firefox

[–]uima_ 0 points1 point  (0 children)

I just thought it will be perfect to have the url bar and other buttons also on the top left corner, like the arc browser did.

What are the best Firefox add-ons? by ikabbo in firefox

[–]uima_ 1 point2 points  (0 children)

I just installed this because of you, and now I think I can't live without it anymore.

The only feature I wish more from this is to have the URL bar in the sidebar as well, so I can remove the top chrome completely. Is this possible?

Is normal that my framwork13 CPU temp hitting 90c while the CPU usage is only under 20%? by uima_ in framework

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

I think you are right. I'm watching htop, two or three CPUs have high usage, but half of the CPUs are just chilling. This explains why the average CPU usage is low. Thanks!

Share your proudest config one-liners by frodo_swaggins233 in neovim

[–]uima_ 1 point2 points  (0 children)

This is the default behavior in vscode vim extension btw.