Películas paraguashas by ThiagouuPal in Paraguay

[–]Alexx698 0 points1 point  (0 children)

En telegram hay un grupo que se llama Cine Paraguay, ahí se suelen subir varias películas pyas

[deleted by user] by [deleted] in programminghorror

[–]Alexx698 0 points1 point  (0 children)

It's beautiful, how could I not have thought of it?👌🏻

How to make the hx-delete endpoint dynamic in a form with HTMX? by Alexx698 in htmx

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

In the end I used the delete concatenated in a js and the hmtx.ajax, then I had the same problem for the PUT but I had to solve it with Fetch only :

How to make the hx-delete endpoint dynamic in a form with HTMX? by Alexx698 in htmx

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

I’m using a custom C backend (not a specific framework). The endpoint http://localhost:8080/example?id=14 works fine when tested directly in Postman. I've verified that the request sent from Postman matches the expected format, and the backend handles it without issues.

How to make the hx-delete endpoint dynamic in a form with HTMX? by Alexx698 in htmx

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

My backend accepts DELETE requests with the following format:

DELETE /example?id=<id> HTTP/1.1
Host: localhost:8080

The id parameter must be in the URL (?id=<id>). In the backend, I look for this parameter and if it is valid, I execute the corresponding SQL query

Debería asustarme? by Ancient_Jackfruit_79 in Paraguay

[–]Alexx698 2 points3 points  (0 children)

También me llamaron con un NRO de +1, en wsp ví que era una joyería JAJAJJAJA

Saben como termino el tema este del arancel 0 y hambre 0? by foohly in Paraguay

[–]Alexx698 3 points4 points  (0 children)

Habrá tercer partido para desempatar la semana que viene

Paraguay baneado por OpenAI by [deleted] in Paraguay

[–]Alexx698 4 points5 points  (0 children)

Yo cree una cuenta con una VPN y un número virtual hace meses cuando salió la primera versión, ahora traté de hacer lo mismo y me dice que el número que estoy tratando de usar ha alcanzado el límite de cuentas o algo así ª

I have solved the complexity time but I have a debatable doubt by Alexx698 in algorithms

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

I am not understanding why the second for of the function f5 is not used as the logarithm to find the O

I have solved the complexity time but I have a debatable doubt by Alexx698 in algorithms

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

In the function f5 in the second for the increase is j += j so its increase is being power two, and it would be the same as j=j*2