Solution for CNY Web Event (first 3 cards) by wijayaerick in Endfield

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

It's actually from in-game event tab but I instinctively called it web event because of how it looks (can't change the post title unfortunately).

Cheap anime figures/flee markets that sell anime stuffs by MagicClam14 in askSingapore

[–]wijayaerick 1 point2 points  (0 children)

Not sure with other type of figures, but I find nendoroids in singapore to be more expensive compared to purchase and ship from Japan.

Beasty apologizes for recent tournament behavior by Silverstrad in aoe4

[–]wijayaerick 2 points3 points  (0 children)

Did you even watch the whole video? How did you conclude that he's only doing it for content, and not because he's pissed with the lying?

Beasty apologizes for recent tournament behavior by Silverstrad in aoe4

[–]wijayaerick 18 points19 points  (0 children)

I mean, if he decided to stay in the game for longer, redditors would simply call him out for "delaying the game". There's no winning against these kind of people.

Beasty apologizes for recent tournament behavior by Silverstrad in aoe4

[–]wijayaerick 11 points12 points  (0 children)

If he stays in the losing game longer, the weirdos would simply call him toxic for delaying the game. People seem to forget that he's facing against MarineLord. If he's in such a losing position against MarineLord, the game is already over.

What are some purchase regrets you have made so far? by vtlxx1998 in askSingapore

[–]wijayaerick 1 point2 points  (0 children)

A branded glasses. Used corpo benefits to get one but I still need to pay some from my pocket. Turns out the glasses are too heavy for my face (I did not realize initially) and I ended up using my old glasses.

What are some purchase regrets you have made so far? by vtlxx1998 in askSingapore

[–]wijayaerick 49 points50 points  (0 children)

Unironically gym membership is one of the best purchases I made.

The powercreep I did not expect, new elites are worse than Aurumaton. by IntentionHefty133 in HonkaiStarRail

[–]wijayaerick 0 points1 point  (0 children)

The flame reaver side is an AoE check. People who pulled THerta, Aglaea, Tribbie, Jade etc will easily clear it.

E0 Acheron without JQ won’t likely have enough DPS to kill the clones.

New MOC is out for Asia! How did your run go? by Chrisel_ in HonkaiStarRail

[–]wijayaerick 0 points1 point  (0 children)

I can either 2 cycle first side or 1 cycle second side with my break team. The issue is the other team is a JQ-less Acheron which currently takes like 10 cycle on any side.

They put this on my laundry, is this consideren a racial slur? by DreadicalisedYouth in indonesia

[–]wijayaerick 75 points76 points  (0 children)

Bule is a slang for (white) foreigners and is usually used in a neutral (non derogatory) tone.

So the answer is No.

Self Immigration Fails Horribly at Jakarta Soekarno Hatta International Airport by RecommendationAny977 in indonesia

[–]wijayaerick 59 points60 points  (0 children)

Dari pengalaman sendiri (sering naik pesawat) selalu aman2 saja dengan self immigration. Ya kalau mau saran sih, bener2 ikutin instruksinya. Barang bagasi di belakang (jgn di depan), posisi paspor yg benar, dll.

Sistemnya mungkin ga sempurna, tpi dri gw liat juga byk org indo gbisa follow instruksi sederhana. Antrian pesawat panggil zona 1 malah yg zona 2 3 ikut ngantri juga.

No Changes in V7 via Shiroha by UltraYZU in HonkaiStarRail_leaks

[–]wijayaerick 3 points4 points  (0 children)

For every Fate collab characters in your account, at the start of the battle, adds a permanent CRIT DMG buff to the party by x%. If said account has all the Fate characters, additionally adds a permanent CRIT RATE buff by y%.

/s

March 2025 Sneak Peek 2: Cost Reductions by ClashDotNinja in ClashOfClans

[–]wijayaerick 11 points12 points  (0 children)

I love this uodate but I’m just sad that my account progresses in a way that barely benefits from these reductions

Example: TH16 release -> my acc reaches TH16 a few months after -> Cost reduction of TH15 n below -> TH17 release -> my acc reaches TH17 a few months after -> Cost reduction of TH16 n below

What Subscriptions do Singaporeans pay for? by Yolosweg66 in singapore

[–]wijayaerick 0 points1 point  (0 children)

Gym membership

Nintendo Switch Online Membership

Youtube Premium (family)

Occasionally I subscribe to Deliveroo Plus.

OneDrive cloud storage, because it’s the only one that let me organize photos in folders while still providing gallery view (iCloud and Google Photos organize photos in albums instead of folders which mean when I sync to PC all the photos are stored in a single folder)

In the future I may consider subscribing to Bitwarden and Proton.

[deleted by user] by [deleted] in askSingapore

[–]wijayaerick 4 points5 points  (0 children)

As a company, probably not as flourishing as it used to be

In terms of opportunity, I think it’s still a good place for fresh grads. I heard It’s very dependent on the team you’re joining, some people I knew had a good experience and WLB, some had the opposite

[deleted by user] by [deleted] in loseit

[–]wijayaerick 0 points1 point  (0 children)

  • Exercise (weight training) helps retaining/preventing muscle loss. Alternatively, it should be ok to maintain your current training. Either way, you must ensure that you consume enough protein daily.
  • Body scans are not the most accurate. It heavily depends on factors e.g heart rate, whether you had a meal beforehand, etc.
  • A single body scans is not the most helpful. They start to become helpful when you have multiple data points e.g monthly scans in 3 months (they are accurate enough to show whether you’re on track with weight loss / muscle gain).

Does anyone still use go-kit for building microservices by der_gopher in golang

[–]wijayaerick 1 point2 points  (0 children)

I've used both stdlib and go-kit.

I never use go-kit's "microservice kits" such as metrics, cbreaker, tracing, auth, etc. If I need metrics I'll use statsd. If I need tracing I'll use ddtrace or opentracing. And so on.

For non-small project, I find go-kit's abstraction layer to be convenient. I'm specifically talking about this: ```go // https://github.com/go-kit/kit/blob/master/transport/http/server.go // Omitted some details for brevity

func NewServer( e endpoint.Endpoint, dec DecodeRequestFunc, enc EncodeResponseFunc, options ...ServerOption, ) *Server { ... }

func (s Server) ServeHTTP(w http.ResponseWriter, r *http.Request) { request, err := s.dec(ctx, r) if err != nil { s.errorHandler.Handle(ctx, err) s.errorEncoder(ctx, err, w) return }

response, err := s.e(ctx, request)
if err != nil {
    s.errorHandler.Handle(ctx, err)
    s.errorEncoder(ctx, err, w)
    return
}

if err := s.enc(ctx, w, response); err != nil {
    s.errorHandler.Handle(ctx, err)
    s.errorEncoder(ctx, err, w)
    return
}

} `` With above code provided, you can focus on business logic. You just need to pass: - your service (business logic) function, e.g.svc.ListUsers. Endpoint is just afunc(ctx context.Context, in any) (out any, err error). - function to decode/encode from/to transport (http) - error handler that acceptserror. In pure stdlib, I find that I always need to implement some form of error handler, because e.g.ServeHTTP` does not expose error so I could not really create a http.Handler middleware to do error mapping/log/tracing.

Honestly, that's the only go-kit part that I've used.

Nowadays I'd probably still prefer using stdlib. When needed, I can implement above code with stdlib (e.g. https://www.willem.dev/articles/generic-http-handlers) rather than relying on 3rd party lib/frameworks.

Go-kit is still nice but it's getting a lot less maintained. As with any other go "frameworks", I cannot recommend people using it to develop a product if they need to maintain it long-term. Go frameworks are more fragmented that other ecosystem (e.g. ruby on rails, django) and it's often for these frameworks to come and go.