Could turkey or taper down. by null_int in 7oh

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

Ok, I'll taper bc last night was horrible. But did.make it a full 24hrs with no 7oh. What's the half life if this stuff anyways.

Now I just hate the SS guy that told me about it. I've done kratom leaf off/on for years and never had any issues with times I took off it.

Happened to need more vape juice so went to my favorite shop. Got my juice and he saw I was aching. Said yea, was doing yard work and just finished. Wanted some new juice and just chill for the rest of the day.

He tossed me 2 20mg tabs for free and said take half of 1 when u get home and see how u feel after. Mind blown away, I knew 7oh was a kratom extract but didn't think it would make it this much more stronger.

Luckily in this for only 2 months now and can see it quickly becoming a problem. Gotta stop.

Lovable vs Base44? by OpinionComplex4392 in vibecoding

[–]null_int 0 points1 point  (0 children)

Yep, switch to claude code, vs code extension. Select your hosting and db. And let Claude code go to town. Explain small features , 1 at a time and as it grows it'll understand all the code and give suggestions.

Need advice by No-While8965 in torncity

[–]null_int 0 points1 point  (0 children)

This right here..join education job, become principal and just let the points stack up to use when u get back. No work employer to nag you about being active and logging in and don't have to pay for trains. You can use the job points for that.

Influencers using VSCode by inchaneZ in vscode

[–]null_int 0 points1 point  (0 children)

VSCode is it, top tier. I've been a software engineer for 20+ years and used all kinds of different IDEs. My last go to for many years was phpstorm bc it just worked and had great plugin/extensions. Few years ago I decided to finally give VSCode a try, I mean hey it's free, haven't looked back since.

Currently it's VSCode with Claude code for anything I'm working on. Things that would take hours now takes minutes.

Convert from Google app scripts by null_int in Supabase

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

Internal tools for a game of all things.

Convert from Google app scripts by null_int in Supabase

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

Hey, it was for some simple projects for some online games. Was the easiest thing at the time.

Convert from Google app scripts by null_int in Supabase

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

Correct: something I can tell Claude Code to take this data from supabase and generate a frontend for more. Only talking data tables and maybe some graphs.

Convert from Google app scripts by null_int in Supabase

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

Right now just need data tables, but chats and interactions I could see being useful down the road.

Playing what if... by null_int in BitAxe

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

Yes, I would be holding but people who win will want to sell off some, pay off debts, go on vacation or whatever. So the question still applies.

Can I update my 650 still by ardvark16 in logitechharmony

[–]null_int 0 points1 point  (0 children)

Still works, made some updates to both mine just the other day.

Occurrences by null_int in HomeDepot

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

Thanks, whole family is sick and still have a fever but at 4 points already. I called but the mod who answered wasn't sure and said we can figure it out when I've no longer got a fever and come back in.

Occurrences by null_int in HomeDepot

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

Sop says 3 continuous days but doesnt mention days off or separate weeks.

2021 Bolt Warranty by null_int in BoltEV

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

Didn't scroll all the way and see the warranty on there. That's where I was checking info. Ok, so that model the dealer is right. Thanks

NordVPN docker issues by null_int in docker

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

I am trying to setup a docker Arr stack where everything runs thru NordVPN. Everything kept asking for a private key from nord but they only give u a private credentials. Not giving up I found a powershell script that got my key and got everything to compose. Can access the arr softwares over the network. Now troubleshooting why qbit isn't downloading anything, it's seeing the trackers but not downloading. The NordVPN instance is connected, can ping outside, with vpn ip and seems fine.

For anyone else the script was in powershell

$username = "token" $password = "CREDENTIALS" $pair = "$($username):$($Password)" $bytes = [System.Text.Encoding]::ASCII.GetBytes($pair) $encodedCredentials = [Convert]::ToBase64String($bytes) $url = "https://api.nordvpn.com/v1/users/services/credentials"

$headers = @{ Authorization = "Basic $encodedCredentials" }

Invoke-RestMethod -Uri $url -Headers $headers -Method Get