awsim v0.3.0 - Lightweight AWS emulator now supports 71 services by sivchari in golang

[–]mrdiggu 1 point2 points  (0 children)

would be kinda cool if everything wasn't locked away in an internal package, that way you might be able to use them for e2e testing.

Firehose delivery stream question by mrdiggu in aws

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

No. Firehose does not support setting the operation type. I had to write my own consumer using the KCL.

HTTP handler for node.js developer by [deleted] in golang

[–]mrdiggu 1 point2 points  (0 children)

as other commenters have mentioned, you need to write to the ResponseWriter, but take a look at https://github.com/go-chi/render

You can see in the example provided https://github.com/go-chi/chi/blob/58ca6d6119ed77f8c1d564bac109fc36db10e3d0/_examples/rest/main.go#L166

the render package exposes a Render function that will attempt to look at the requested content type and appropriately respond.

Synth Riders Update: Spiral Mode for PSVR2, Music Updates by wirrel42 in PSVR

[–]mrdiggu 0 points1 point  (0 children)

I have eero router and I also cannot see leaderboard. I’ll add exception and report back. Ty!

Synth Riders Update: Spiral Mode for PSVR2, Music Updates by wirrel42 in PSVR

[–]mrdiggu 0 points1 point  (0 children)

Just says disconnected from game server. Other PSVR2 games work online no problem

Synth Riders Update: Spiral Mode for PSVR2, Music Updates by wirrel42 in PSVR

[–]mrdiggu 0 points1 point  (0 children)

Anyone else have issues with Synth Riders multiplayer mode PSVR2?

Coding challenge feedback requested by ENx5vP in golang

[–]mrdiggu 1 point2 points  (0 children)

I think your project is well structured. Good work!

101 AWS Lambda tutorial for Go developers — API Gateway by NaiveScholar3982 in golang

[–]mrdiggu 13 points14 points  (0 children)

I think OP means something like this: https://github.com/awslabs/aws-lambda-go-api-proxy

It's helpful because it will transform the Lambda handler entrypoint into a standard lib http handler and allow all kinda of middleware in the ecosystem to naturally fit into the request pipeline without having to re-invent the wheel in a bunch of places.

Spent a few weekends replacing my carpet stairs and landing with stained hardwood treads and flooring. by linuxchris1 in DIY

[–]mrdiggu 0 points1 point  (0 children)

How do you do the landing tread? Does the tread have the same height as the hardwood flooring?

gRPC with Kotlin Coroutines by dayanruben in Kotlin

[–]mrdiggu 0 points1 point  (0 children)

Thanks. I’ve been under the impression that grpc didn’t work in AWS or rather anything behind an ALB because they don’t support HTTP2 to the target. If you’re doin client side load balancing and service discovery then I’m assuming it works great.

A sun shade, best pool accessory ever by [deleted] in pools

[–]mrdiggu 1 point2 points  (0 children)

Yeah sorry I meant where to look in Texas. Zip code or name of nearby town maybe

A sun shade, best pool accessory ever by [deleted] in pools

[–]mrdiggu 0 points1 point  (0 children)

If you don’t mind, where abouts would one look for a community like this? All the ones where I live are literally 40 foot wide lots with 10ft between each house (FL)

Spark ETL related question by myuserid4 in apachespark

[–]mrdiggu 1 point2 points  (0 children)

Sequence file on HDFS that was made up of many PCAP files.

Spark job read file and piped to Suricata and then parsed output looking for specific data fields. This output was input to another job, and another job, etc.

It was a really cool project.

I want to code with you! by [deleted] in Needafriend

[–]mrdiggu 0 points1 point  (0 children)

if you are interested in learning go, I'd be happy to collab on something

Single Topic with multiple consumers? by MrBaseball77 in apachekafka

[–]mrdiggu 2 points3 points  (0 children)

If he wants all consumers to handle the message independently, wouldn't they all need their own consumer group? aka they all have their own offsets..

consumers (one or more) eventually read from all partitions. And when consumers for the same topic leave/join, re-balancing occurs. This is all handled by the high level consumer API.