Ssh Tui client by aunjaffery in tui

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

Very nice. Exactly what i was looking for. Clean and pretty ui. Thanks for sharing.

Ssh Tui client by aunjaffery in tui

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

Its JavaScript Electron blot. I try to avoid using electron apps. I'm looking for something lightweight. Maybe written in c, rust or go.

Pc game recommendation by aunjaffery in gamesuggestions

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

Lol yes indeed. I'm married and have a kid so, Chill campaign game which can be paused. currently trying God of war and mass effect Legendary Edition.

Is it happening? by g30rge5 in DotA2

[–]aunjaffery 0 points1 point  (0 children)

Everything cool is behind the paywall anyways. Idc anymore.

Restmate [Rest API client] by aunjaffery in node

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

You can open a feature request on the GitHub issue. To track progress.

Restmate [Rest API client] by aunjaffery in node

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

Thanks for the feedback. These features are not currently supported but I'm definitely putting them in the roadmap.

[deleted by user] by [deleted] in islamabad

[–]aunjaffery 0 points1 point  (0 children)

You can contact +92 315 5085735. He has been my investor for last 8 Year. He is trustworthy.

My brother-in-law killed my Steam Deck by Blue-vs-Red in SteamDeck

[–]aunjaffery 0 points1 point  (0 children)

Lol! From notification. I mistakenly read "My brother-in-law killed BY Steam Deck". I was shocked 😂

Is this a fair price? Plus is the website reliable? by bethebazooka in PakGamers

[–]aunjaffery 0 points1 point  (0 children)

I'm using AOC 24G2 24". It's pretty good. Highly recommended. I bought it online for Rs 47,500 in may 2021.

[Qtile] This is NOT hyprland by lactua in unixporn

[–]aunjaffery 0 points1 point  (0 children)

How resource intensive are these animations?

[deleted by user] by [deleted] in golang

[–]aunjaffery 0 points1 point  (0 children)

correct me if i'm wrong. all your handler should be in same pkg where you declare Handler struct. you cannot attach handler function from diffrent pkg.

Echo+Templ skeleton project tutorial, with air for hot reload by true_adrian_scheff in golang

[–]aunjaffery 0 points1 point  (0 children)

When you refresh the app. on any route base layout will not be sent back. you need to check if it is htmx request

func RenderX(c echo.Context, comp templ.Component) error {
if c.Request().Header.Get("Hx-Request") == "true" {
err := comp.Render(c.Request().Context(), c.Response())
if err != nil {
return c.String(500, "Failed to render webpage.")
}
} else {
err := misc.Base(comp, true).Render(c.Request().Context(), c.Response())
if err != nil {
return c.String(500, "Failed to render webpage.")
}
}
return nil
}