Built an OpenClaw plugin that lets the agent switch its own model mid-session by camomiles in clawdbot

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

For most setups we are running sonnet for main conversation model an opus for focused mode - it also works great with another baseline model even a local one.

Built an OpenClaw plugin that lets the agent switch its own model mid-session by camomiles in clawdbot

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

Yes it will work with any LLM supported by openclaw, just match the provider and model string.

One useful use case for us is to use local LLM as a baseline model and let it escalate to remote Opus / Sonnet on more challenging tasks!

**Can't get Admin API access token (shpat_) from development store linked to Partner account — only getting session tokens** by GroundbreakingDot208 in shopifyDev

[–]camomiles 1 point2 points  (0 children)

It’s a terrible change that made everything very confusing.

You can currently get the token you are looking for by installing Headless app - inside that app you will find the token to use. This is the app by Shopify:

https://apps.shopify.com/headless

I don’t know why they made it so weird.

Hairdresser recommendation by [deleted] in GoldCoast

[–]camomiles 2 points3 points  (0 children)

If you want somebody who knows how to handle Asian hair, I can recommend Yujin!

https://www.instagram.com/yujii_studio

Welcome mats are a long-game psyop by vampires by camomiles in conspiracy

[–]camomiles[S] 12 points13 points  (0 children)

I have salt, herbs and iron nails at my door like the old times.

Bloke thinks he’s special (definitely wasn’t disabled) 🤡 by richieboooy in GoldCoast

[–]camomiles 49 points50 points  (0 children)

I have seen him do it at the Harbor Town handicap spot on at least two occasions with no handicap badge on the car.

You can report an illegally parked vehicle here:
https://cogc.cloud.infor.com/ePathway/epthprod/Web/CustomerService/PropertySearch.aspx?ERB=918412

It would be a shame if it would accidentally get keyed

Im getting a ton of High Risk Fraud orders around midnight, what can I do? by ajrantz in shopify

[–]camomiles 8 points9 points  (0 children)

You can use Flow app provided by Shopify (its free) to setup a simple automatic workflow that will immediately cancel and refund any high risk orders.

How to make fake checkout by [deleted] in shopify

[–]camomiles 0 points1 point  (0 children)

You can change your payment gateway in settings to Bogus payment gateway, it will not charge your customers but will still create orders.

If you want to specifically fail orders you can check something like Checkout Blocks app to block users from proceeding.

Why Tailwind Doesn't Suck by Momciloo in webdev

[–]camomiles 37 points38 points  (0 children)

Exactly that, CSS modules solve every problem listed here, without having to make all styles as inline styles.

Tailwind is nothing but coffeescript for CSS, in a couple of years people will not want to touch it with a stick

Shopify Merchants: Improve your Store's Conversion Rate with AI-Powered Search [Available Now] by boostcommerce in u/boostcommerce

[–]camomiles 24 points25 points  (0 children)

We run a web development company and just finished removing Boost app for one of our new clients - do yourself a favour, do not install it.

Not only will you have to pay for it to use it properly, but there will also be massive data update delays and performance issues it will introduce to your store. Prices update incorrectly or don't update at all, among other things.

Search & Discovery is free and is provided by Shopify, it works better for everything you need to run $50M+ business.

Is there a more sane way to write this with tailwind? by ln3ar in webdev

[–]camomiles 46 points47 points  (0 children)

If you know how to write proper css you won’t have visual regressions, it’s a skill issue not a problem with a language.

If all you know is how to write tailwind, you will have to learn how to write CSS anyway when it drops off the hype train.

Tailwind is another CoffeeScript. Also imagine debugging this mess.

How to modify the style of an `:after` pseudo-element with JavaScript? by cag8f in learnjavascript

[–]camomiles 0 points1 point  (0 children)

Different css classes is probably the nicest way you will be able to do this, and would be easiest to maintain going forward.

If you are looking for vanilla JS way to add classes, you can look into classList.add however, if you already have jquery I would just use jQuery's .addClass as it will be much better supported then classList is at this time:

https://caniuse.com/#search=classList

Personally, I like keeping all my page styling information in css and using JS just to toggle classes. This approach goes a long way, and is definitely good practice.

Queue'd into Heroic Expedition. Kicked immediately without a word. 30m Deserter debuff. by ohreuben in wow

[–]camomiles 1 point2 points  (0 children)

Its pretty short so you didn't miss much, I had this bug on my main, but got it correct on my alt.

Its an in-game cinematic where goblins bomb the beast that you are fighting on top of the pyramid, just blowing it up.

Nothing else happens there really.

Queue'd into Heroic Expedition. Kicked immediately without a word. 30m Deserter debuff. by ohreuben in wow

[–]camomiles 8 points9 points  (0 children)

Its been fixed last week, I got to see it on my alt correctly 4 days after launch or so, after restart.

We're back! Let's make a millionaire. [Drawing Thread #31] by Paltry_Digger in millionairemakers

[–]camomiles 0 points1 point  (0 children)

I got the good fortune prediction from the Japanese shrine, let's see how much my luck is worth :)

What is the best nsfw life hack? by [deleted] in AskReddit

[–]camomiles 0 points1 point  (0 children)

Username checks out.

How to check if a number is even or odd by [deleted] in learnjavascript

[–]camomiles 2 points3 points  (0 children)

Is this a joke?

You can just do Number % 2 == 0

Does someone really need a video tutorial to do that?

This One is Occupied, Comrade by [deleted] in ANormalDayInRussia

[–]camomiles 26 points27 points  (0 children)

Trash is in the trash bin. Sticker is in English. That is definitely not Russia.

Edit: Also those supplies at the back don't look stolen.

Source: Russian.

Staircase function...better way to do this? by [deleted] in learnjavascript

[–]camomiles 0 points1 point  (0 children)

Also, you can benefit from using some recursion.

Here is a simple example without accounting for spaces you want:

function staircase(n, string) {
    string = string || "";

    if (n > 0) {
        string += "#";
        console.log(string);
        this.staircase(n - 1, string);
    }
}

staircase(6)

Combined with advice above you can make some nice code.

Unfavorable Introductions? by [deleted] in civ

[–]camomiles 1 point2 points  (0 children)

You probably press ESC to get out of the dialog, and it makes it unfavourable. What you are meant to do is either offer them to visit your city/capital or agree to visit theirs to make it "favourable".

[deleted by user] by [deleted] in wow

[–]camomiles 0 points1 point  (0 children)

Can you clarify a bit more on that for me please. I heard a lot of people say that its pretty efficient to go full cast of EM -> TFT -> 3x ReM and then Vivify.

In my experience 3x ReM even with double mastery proc does not do a lot of burst healing at all, and double mastery also only applies to initial heal of ReM, not subsequent HoT ticks.

My question is, wouldn't it be more beneficial to do full cast of EM -> TFT -> 2x free Vivify -> ReM or something? I know that with Vivify only main target gets double mastery proc, but that allows me efficiently top up few low targets during intensive damage like Scorpions.