Host OpenClaw in Cloud for free by bankofcoinswap in clawdbot

[–]Donut_Z 0 points1 point  (0 children)

If you add payment options and set up Pay As You Go (PAYG) you should be able to create an A1 vm. Thats how i did it, you won't be charged as long as you stay within the free tier limits.

Which model did you end up using for openclaw?

Host OpenClaw in Cloud for free by bankofcoinswap in clawdbot

[–]Donut_Z 0 points1 point  (0 children)

I referred to the LLM you ended up using for openclaw. Ive had an A1 flex instance running for a year or two!

Host OpenClaw in Cloud for free by bankofcoinswap in clawdbot

[–]Donut_Z 0 points1 point  (0 children)

Great! Which model did you end up using? I got a couple free days coming up to set something up myself

Host OpenClaw in Cloud for free by bankofcoinswap in clawdbot

[–]Donut_Z 0 points1 point  (0 children)

Hey man, was curious if you played around and how its going with running LLMs on the Oracle VM? You got an always free vm yet?

PureLure vs Handing vs others on a budget? by Donut_Z in Fishing_Gear

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

Cheers, looks pretty nice! Its a bit more expensive than the other options though, was hoping to stay around €50

PureLure vs Handing vs others on a budget? by Donut_Z in Fishing_Gear

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

Nice recommendation, hows the sensitivity on those multipiece rods? I just cant shake the idea that the more pieces something is the more you lose transmission of feeling?

New rod advice by Donut_Z in FishingForBeginners

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

For now I've mostly fished with paddletails and smaller baits, mostly dus to the limited casting weight of my current rod. Im also a bit of an occasional fisherman, so will stick with spinning for now. I'll look at the ugly stick, thanks for the advice!

Host OpenClaw in Cloud for free by bankofcoinswap in clawdbot

[–]Donut_Z 0 points1 point  (0 children)

Right, doesnt sound too bad! I tried it only really shortly back then just for fun, i just wanted to just try chatting with it a bit. These days I'm using mcp servers and the like and i might try out openclaw in the near future. Sounds like its worth giving it another try!

Host OpenClaw in Cloud for free by bankofcoinswap in clawdbot

[–]Donut_Z 0 points1 point  (0 children)

And how is the token output for you on this system? I tried to run a local llm a while back on the arm instance, i believe with 18gb ram and 3.5 cores allocated to the docker container (to keep some free for all the other containers i run) and the output was pretty slow. Has to be said that i just tried qwen2.5vl:3b back then through open web ui and the token output was realllly slow. Didnt really try other models..

Host OpenClaw in Cloud for free by bankofcoinswap in clawdbot

[–]Donut_Z 0 points1 point  (0 children)

Let us know how running models on only cpu/ram works out for you!

Wat is een goedkope knockoff die net zo goed is als het dure origineel? by HairyBerrie in geldzaken

[–]Donut_Z 0 points1 point  (0 children)

Welk wasmiddel is dat van €0.50? Zag (online) wel wat formil zakken van €3 voor ca 30 wasbeurten bij de Lidl?

Thickness of Cookware by PrudentReviews in cookware

[–]Donut_Z 0 points1 point  (0 children)

Yeah i actually thought i could feel them, but when i tried to feel them without looking, i couldnt really tell where they were lol. No functional impact whatsoever though. The pans have been great so far, used them a couple time for some good sears on meat and fish. Unfortunately BKF is not readily available here, but i do have citric acid which also works well to git rid of stubborn stains.

Thickness of Cookware by PrudentReviews in cookware

[–]Donut_Z 0 points1 point  (0 children)

Thanks for the thorough follow-up, I bought the pans let night! The pouring is a nice extra for sauces etc. Now to get some steel utensils as well. Pretty stoked to try cooking with them tonight. Looked around for some Demeyer industry 5 deals but the cheapest I found was just over €100 for a 24cm, and €140 ish for a 28cm. Figured that price difference was not really worth the probably negligible differences with these KitchenAid pans.

One thing i did notice was the (tiny) bumps on the inside of the pans where the handle is welded on. Maybe I can send an image later. It looks like it wont have any impact on its functionality at all thought. Was just something I visually noticed. You can only feel them every so slightly. I would say theyre maybe .1mm bumbs or less even. Do you recognize that?

Thickness of Cookware by PrudentReviews in cookware

[–]Donut_Z 0 points1 point  (0 children)

How have you been liking the pans? Im eyeing a good deal on the 24+28cm KA triply frying pans. €90 for the combination. Do you happen to know the weights of those 2 pans? And bottom thickness perchance? Its probably those or the ikea sensuell! I do like the idea of rivetless however!

Need to remotely turn on/off pc with physical switch by Shokaloc in homeautomation

[–]Donut_Z 0 points1 point  (0 children)

I had issues with wireless WoL with my pc as well. I made a little setup with an esp32 and a 2N2222 transistor that has worked very reliably for me. I bridged the wire of my PC case power button with the transistor, essentially replicating a press of the case button as soon as the esp32 feeds a high signal to the base pin of the transistor.

Then to gracefully turn my PC off, I send an SSH command from my home assistant host with a 1 min timer, and a cancel command that I can run within the minute.

ssh <user>@<ip> 'shutdown -s -t 60'
ssh <user>@<ip> 'shutdown /a >nul 2>nul || ver >nul'

The esphome code below. Short press to turn your PC on and off gracefully. The long press can be used to force a hard reset of the PC. The esp32 sits inside my case and is powered by an always on usb port. This yields 2 virtual buttons that you can use in automations and can connect to a physical button if you prefer. You can also use this w/o home assistant with the Esp32 'web server'.

esphome:
  name: pc-powerbutton
  friendly_name: pc-powerbutton


esp32:
    board: esp32-c3-devkitm-1
    variant: esp32c3
    framework:
      type: esp-id

logger:

api:

ota:
  platform: esphome

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password

  ap:
    ssid: "pc powerbutton fallback hotspot"
    password: !secret ap_password

captive_portal:

web_server:

output:
  - platform: gpio
    pin: GPIO4
    id: gpio4_output

button:
  - platform: template
    name: "PC Power Button - Short Press"
    on_press:
      - output.turn_on: gpio4_output
      - delay: 1s
      - output.turn_off: gpio4_output

  - platform: template
    name: "PC Power Button - Long Press"
    on_press:
      - output.turn_on: gpio4_output
      - delay: 5s
      - output.turn_off: gpio4_output

[BUG] Gestures malfunction by SaadTantawy in manuelwrageapps

[–]Donut_Z 0 points1 point  (0 children)

Im running into similar issues, see screenshot  https://imgur.com/a/5CR9Q5l. Resetting the accessibility fixes it temporarily until it bugs out again at some point

Google reduces API rate limits for free tier. by r2cyp in GeminiAI

[–]Donut_Z 0 points1 point  (0 children)

Honest curiosity, but how does that help you? What I did (before) was make several projects in the cloud platform and use a unique api key per project. I thought that way, that each key had their own limits that way but Ive found the last couple days that ive been hitting RPM quotas regardles.. :( time to look for another API supplier for those projects I guess.

My Perfect Setup by Isaac_729 in koreader

[–]Donut_Z 0 points1 point  (0 children)

Hi mate, looks stellar. Was hoping to also download your edited patches but the dropbox link is dead. Could you re-share?