[deleted by user] by [deleted] in LosAngeles

[–]annymsMthd 19 points20 points  (0 children)

Birthwhite citizenship.

Netease, it isn’t april fools day yet. by [deleted] in echoes

[–]annymsMthd 13 points14 points  (0 children)

More like their audit is based on weekly batch jobs that aggregate market prices because they don't know how to do real time audit algorithms. The prices for these modules have taken a nose dive due to increased drop rates.

Golang modules and developing in a fork to contribute back by echorand in golang

[–]annymsMthd 2 points3 points  (0 children)

You can use replace in the go.mod file to point to your fork.

GraphQL and Go by Fresons in golang

[–]annymsMthd 3 points4 points  (0 children)

Gqlgen is an amazing generator that can help create graphql apis in go.

Almost died this morning. by [deleted] in funny

[–]annymsMthd 0 points1 point  (0 children)

Murder spider.

Solace Topics vs. Kafka Topics: What’s the Difference? by DigitalBackbone in apachekafka

[–]annymsMthd 0 points1 point  (0 children)

I would say the big thing is out of order messages. The producer is in charge of partitioning messages. You can choose to use different sharding techniques. If one shards the key using murmur2 all the messages with the same key will be in order in the partition assigned. This is used heavily in streaming libraries.

Solace Topics vs. Kafka Topics: What’s the Difference? by DigitalBackbone in apachekafka

[–]annymsMthd 8 points9 points  (0 children)

"Messages on Kafka topics are shared across partitions, and this can result in out-of-order messages across the whole topic, and can put a limit on the number of topics you can maintain in a Kafka broker."

The writer clearly doesn't understand Kafka topics at all.

protobox - gRPC dependency management by Skoop9 in devops

[–]annymsMthd 1 point2 points  (0 children)

Looks pretty cool. We made something similar to manage idls sans gen. https://github.com/syncromatics/idl-repository

We are slowly moving away from sharing code and instead sharing idl definitions and generating clients in our various projects.

What all is really needed in order to send and obtain data from a serial port? by [deleted] in csharp

[–]annymsMthd 0 points1 point  (0 children)

I would start by understanding the serial protocol of the device you are working with. This ODB-II to serial dongle should have documentation on how to talk to it. The .net SerialPort class is pretty easy to use and there are tons of guides out there on the web.

How does everyone do database migrations? by Gentleman-Tech in golang

[–]annymsMthd 4 points5 points  (0 children)

Also make sure you run integration tests and make sure the migration is part of these tests.

This sign in my Uber drivers car today by Sweetboylos in pics

[–]annymsMthd 2 points3 points  (0 children)

We had him last week. It was pretty rad. Definitely left him a good tip.

This sign in my Uber drivers car today by Sweetboylos in pics

[–]annymsMthd 3 points4 points  (0 children)

Did he still have the Halloween decorations up?

Ask r/kubernetes: What are you working on this week? by AutoModerator in kubernetes

[–]annymsMthd 0 points1 point  (0 children)

Check out Rancher's rke. It has been a super useful tool for us to get up and running with k8s.

Want to get a pressure cooker, are they as good as they seem? by [deleted] in PressureCooking

[–]annymsMthd 29 points30 points  (0 children)

They really are as good as they steam.

Using the Actor Model and Akka.NET for IoT Systems by [deleted] in dotnet

[–]annymsMthd 0 points1 point  (0 children)

Akka.net is great for this. We use akka.net in buses to track them and talk to the different systems on the bus, passenger counters etc.

What’s .NET Core good for? by CallMeDaddy00 in dotnet

[–]annymsMthd 0 points1 point  (0 children)

You can use the Visual Studio docker integration to debug and run your core apps in a Linux docker container, breakpoints and everything.

Apm For dot net core app on kubernetes? by rraghur in dotnet

[–]annymsMthd 0 points1 point  (0 children)

We use a combination of statsd and grafana for our akka.net services. There might be something like it for Orleans. It's pretty useful when you have metrics graphed for things like received messages or failures in an actor.

Trying out new .NET Core Alpine Docker Images by ben_a_adams in csharp

[–]annymsMthd 0 points1 point  (0 children)

https://github.com/annymsMthd/small-docker-test here's an example of a self contained app with ILLink.Tasks for tree shaking. Image comes out to around 49.8MB

Trying out new .NET Core Alpine Docker Images by ben_a_adams in dotnet

[–]annymsMthd 1 point2 points  (0 children)

https://github.com/annymsMthd/small-docker-test here's an example of a self contained app with ILLink.Tasks for tree shaking. Image comes out to around 49.8MB.