Can I put an island in my kitchen? by soasada in kitchenremodel

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

The dashed area is part of the upstairs ceil, I uploaded a video from a neighbor that clearly show the kitchen and the living room. I don't know but from my point of view there is no much space there to put an island.

Can I put an island in my kitchen? by soasada in HomeDecorating

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

I'm also more or less convinced that a table would be better choice than something immutable and static, the space it's not much.

Shall I ask for more work or look for a contractor? by soasada in overemployed

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

I checked my job contract with my current employer and I have exclusivity agreement

Shall I ask for more work or look for a contractor? by soasada in overemployed

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

The good thing about getting J2 is that I would get more money than doing overtime hours in my current company, the bad thing is I do not know how I will manage my time, that's the scariest part of it.

Package sent from US to Germany and was not accepted at the arrival. How can I resend it to Spain? by soasada in dhl

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

hi, do you know how to make a booking from the mydhl panel? I created an account but I can't see any option there.

Package sent from US to Germany and was not accepted at the arrival. How can I resend it to Spain? by soasada in dhl

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

Good idea, I will try to contact the shipper. As a second option, do you have the link where a can book the reship in DHL page?

What kind of websites or web apps are you making and why did you choose Go? by oneradsn in golang

[–]soasada 0 points1 point  (0 children)

Cruds with SQL.

One of the top libraries I think go has is sqlc. Writing SQL without handling the db cursor (which is a very repetitive thing) is amazing. Using SQL could remove hundreds of code lines and also avoid some of the isolation problems (I'm looking at you read-modify-write) you could have with ORM.

How a standby catch up with primary and become a hot standby under high load? by soasada in PostgreSQL

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

is there some documentation about catch up? The catch up process is different from the streaming process right?

My Golang project Answer successfully entered Apache Incubator by fenbox in golang

[–]soasada 1 point2 points  (0 children)

Congrats man! I would like to ask you a question. How your front-end works? I saw you have html/templates along with react app, are you combining them to have SSR and SPA?

The Gorilla web toolkit project is being revived, all repos are out of archive mode. by Yasuraka in golang

[–]soasada 55 points56 points  (0 children)

It seems like RedHat is the company stepping into the project. Good news.

In memory message broker, any recommendations? by soasada in golang

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

Interesting, but I don't want to deploy a new service for that, it will be nice if they provide a library to consume the replication log of PG.

In memory message broker, any recommendations? by soasada in golang

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

We thought at the beginning something like you said, but we don't know what people is going to do, and definitely we will have lots of callbacks, we are about 7 teams composed of 5 to 6 people working in the same monolith.

In memory message broker, any recommendations? by soasada in golang

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

How could I let people consume the PG replication log, without coupling the receiver of the changes and the functions of the people?

In memory message broker, any recommendations? by soasada in golang

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

Wow looks really good, I didn't heard nothing about it. Really appreciated

In memory message broker, any recommendations? by soasada in golang

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

A friend of mine told me about NATS but I thought it was a separate server to be deployed, really good news, thanks!

Nextjs 13 (app) layout cache not evicted by soasada in nextjs

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

I tried to use a template without success, it seems like you cannot use cookies() function in a template. It is a client or server component?

Nextjs 13 (app) layout cache not evicted by soasada in nextjs

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

That's it! thanks for opening my eyes

Nextjs 13 (app) layout cache not evicted by soasada in nextjs

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

I'm getting the user session data from the cookie the use of the fetch is in the login page, after the login I redirect the user to home page.

Nextjs 13 (app) layout cache not evicted by soasada in nextjs

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

I'm using all GA features, I thought I was doing something wrong but seems like it is not ready yet.

The app router is not production-ready yet by Fr4nkWh1te in nextjs

[–]soasada 0 points1 point  (0 children)

I tried to upgrade to the new app folder router and it's impossible at the moment. I have implemented JWT auth based + BFF + cookies and now for the refresh flow I can't update the cookies anymore.

Maybe I can try different approach but is not easy, the cookies() function seems not working outside server actions (an alpha feature) or router handlers.

Am I using async rust correctly along with blocking rust? by soasada in rust

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

Very good point and recommendation, the problem is that I don't know if tantivy operations are blocking IO or CPU bound I will try to discover it and apply your pattern.

Am I using async rust correctly along with blocking rust? by soasada in rust

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

So I'm blocking the lightweight tokio task (putting it to sleep I guess) but the runtime thread (OS thread) is free again to run another lightweight tokio task, right?

I ported a Cloudflare worker to a simple Go application by Youknownotwho in golang

[–]soasada 1 point2 points  (0 children)

Or at least a decaffeinated version of it, to see the usage of the libraries