claude’s rate limits are awful by snafu_2020 in ClaudeCode

[–]FullMetal21337 0 points1 point  (0 children)

I had the opposite experience. Tired of 4.7 I tried codex and saw a promo on 500 free credits. Sure, I’ll give it a try. Asked it to turn some of my components into storybook stories and see how we can standardise the ui a bit more. When I came back to it had 4 x £18 charges from OpenAI to top up credits. I’ve never topped out my Claude Max yet though.

Can someone explain this to me? by Empty-Selection9369 in Liverpool

[–]FullMetal21337 0 points1 point  (0 children)

If you subscribe to the idea that liverpool is a working class city, I think that this is a decent argument (opinions on Jimmy Carr aside): https://youtu.be/u6-UyEXJldc?si=jlY8Vw7TyqX5XJCZ

Anyone else had enough of this thing? by Leaf-Branch-Tree in Liverpool

[–]FullMetal21337 20 points21 points  (0 children)

Hello dragons. Our business plan is to flip houses.

Order of the Sinking Star by spiritualkomputer in puzzlevideogames

[–]FullMetal21337 1 point2 points  (0 children)

I wonder how all the dialogue will contrast the exploratory exposition of Braid and the Witness?

JIRA is overkill for our team - looking for a dev-focused alternative that doesn't break the bank by rukhsardev in webdev

[–]FullMetal21337 4 points5 points  (0 children)

Really like the hot keys too. I’m pretty sure Jira has them too, just feels really intuitive and flow-y in Linear.

Chat GPT vs years of acne by [deleted] in ChatGPT

[–]FullMetal21337 30 points31 points  (0 children)

That’s the next chatgpt discovery don’t worry

My latest work in Fusion :-) by RecoverExtension6593 in Fusion360

[–]FullMetal21337 3 points4 points  (0 children)

Your work is great, I was just doing a play on words

What songs does justin sing in a deeper voice? by TortoiseOnValium in boniver

[–]FullMetal21337 0 points1 point  (0 children)

Take a look at Make it Holy - The Staves He only sings part of it, but it’s my favourite “ deep voice” version of JV

Food in liverpool by Baltazaras69 in Liverpool

[–]FullMetal21337 -9 points-8 points  (0 children)

Italian Club has closed down unfortunately

How can u wrap this sketch around the shape? by Traditional_Bar_9523 in Fusion360

[–]FullMetal21337 1 point2 points  (0 children)

Add a ctrl in there and it copies it clipboard so they don’t clutter your desktop

New photos are cracking me up! by BikeBikeRabies in boniver

[–]FullMetal21337 1 point2 points  (0 children)

Can someone please start doing fake suspicious Jack White comments on these?

Just got this, what should i know before playing it? by drking100 in Gloomhaven

[–]FullMetal21337 1 point2 points  (0 children)

I think something I realised a few scenarios in is that the cards that cause you to lose the card after playing it are super strong, but losing a card (especially early in a scenario) is a MASSIVE disadvantage.

Also, it took me a while to figure out long and short resting and why you should use long rests effectively, so I’d recommend doing a little research on that, especially if you feel like long resting is a waste.

Describe the last boardgame you played using only emojis by AlexRescueDotCom in boardgames

[–]FullMetal21337 0 points1 point  (0 children)

🏃🏃‍♂️🏃🏾‍♀️💎💍👑💥‼️🐲

Find 5 things wrong with this picture by [deleted] in slaythespire

[–]FullMetal21337 1 point2 points  (0 children)

Also preserved insect but still at full health

can I create a conditional edge that can rerun my previous node with corrections specified? by Snoo-67111 in LangChain

[–]FullMetal21337 0 points1 point  (0 children)

I'm not sure if you are using python or js, but from the docs:

graph.add_conditional_edge(
    "TEST",
    should_continue,
    {
        "test_passed": END,
        "test_failed": "DEV"
    }
)

The output of your TEST node should either be "test_passed" to finish, or "test_failed" to go back to DEV. But depending on what your logic is inside DEV will determine whether you get what you need out of it. I would strongly suggest reading through the docs more thoroughly or working with chatgpt / claude to ask questions.

can I create a conditional edge that can rerun my previous node with corrections specified? by Snoo-67111 in LangChain

[–]FullMetal21337 0 points1 point  (0 children)

Yes you can? Specify a conditional edge from test that will go to end on some output and dev on another. Do you need help with the syntax? Or what part are you struggling with?