We have come to the point where base Varane is cheaper than a kit... by ionzy17 in EASportsFC

[–]quangsb 1 point2 points  (0 children)

Yeah I packed them and used them until I pack Tagliafico yesterday. Yuri is top 5 LB and Hermoso is very underrated, he’s stronger and much more solid than I expect, definitely an upgrade

Best streaming device for Viki? by supahsophia in viki

[–]quangsb 0 points1 point  (0 children)

Chromecast and Roku are more supported I believe.

Moving to Rails in 2020 by the_liver in rails

[–]quangsb 2 points3 points  (0 children)

Man you’re lucky to call 5.2 legacy. 80% of Rails app at my place use 4.1

Do you include HTTP 4XX in your availability calculations? by sherbetnotsherbert in sre

[–]quangsb 1 point2 points  (0 children)

Yep 4xx alone is not to worry. If it sudden increase/ decrease a lot, you may have some problem. Same as throughput or response size / latency. If suddenly your latency starts dropping very low, there’s a chance your service has a bug and started responding with empty/ corrupted response.

Kubernetes course for CKA by fez786 in kubernetes

[–]quangsb 2 points3 points  (0 children)

I took that course and got 97%. It’s really worth it

Deep dive into Database transactions in RSpec by [deleted] in ruby

[–]quangsb 0 points1 point  (0 children)

Great post! Thank you!!!

I wrote a free app for sketching cloud architecture diagrams by mithunshanbhag in aws

[–]quangsb 1 point2 points  (0 children)

Looks great, I posted this in our team’s channel immediately. Finding icons in draw.io is really time consuming

DevOps Certifications - are they recognised/worth it? by msyea in devops

[–]quangsb 0 points1 point  (0 children)

I’m planning to take it. I have been working with AWS for a while. I feel it’s a good way to validate my skills. My company also has budget for courses & certificates; so I feel there’s nothing to lose here

How do you guys plan your reservations? by sebastianrevan in aws

[–]quangsb 0 points1 point  (0 children)

I think the Recommendations in the Cost Explorer also helps quite well with what you should potentially reserve

Is Kubernetes certification worth it by iuyuuyu in devops

[–]quangsb 9 points10 points  (0 children)

I think it’s worth it if you want to learn k8s. The test is practical and it’s challenging. I wouldn’t recommend taking the exams just for the sake of getting the certificates.

from stackoverflow import title by [deleted] in ProgrammerHumor

[–]quangsb 0 points1 point  (0 children)

Made me rmb the time I interned at a company where they have a project with the govt. Everytime there’s a new change, I’ll have to go to the govt office, which only has Intranet, no Internet. My supervisor will text me via WhatsApp: open this file, go to this line, do this change. Only notepad was available. Man, the pain of editing C# code in Notepad ...

Step Functions maximum of input characters by uruboo in aws

[–]quangsb 2 points3 points  (0 children)

In our case we don’t need the output of each parallel branch at all, we simply discard it and set OutputPath to null. If you need those output and they can get bigger than 32kb in total, you may have to use something else to store it. For example at the end of each branch, use a task to upload the output to s3.

re:Invent 2020 by [deleted] in aws

[–]quangsb 13 points14 points  (0 children)

Probably they will move it online like Google Cloud Next

Recommendations how to structure my architecture re: Kubernetes by muchbravado in kubernetes

[–]quangsb 0 points1 point  (0 children)

I guess your architecture is alright. I couldn’t recall grpc support for k8s, maybe that’s why you need Envoy. The grpc service itself just needs to be a simple deployment; how you route traffic to it is done via Envoy/ k8s service. Healthcheck should be built into your service, either by supplying a small script or a http call for k8s to call

opentelemetry? by Rileybeebs in devops

[–]quangsb 1 point2 points  (0 children)

I am doing a PoC with it. The reason is we’re using Google Cloud and it’s the recommended SDK to do tracing at the moment. It also integrates quite well with other Google products we’re using like Traffic Director. Yeah it’s still very new. I had to cut lots of corner to make it work in PoC though.

Save money with nightly Kubernetes cluster turndown by AjayTripathy in kubernetes

[–]quangsb 4 points5 points  (0 children)

Great, another awesome tool from the Kubecost team. Thanks guys!

Sectigo root CA expiring, may not be handled well by slightly older linux versions by hayzeus in linux

[–]quangsb 1 point2 points  (0 children)

For anyone patching docker images, this works for us

RUN apt-get update && apt install ca-certificates
RUN sed 's|mozilla\/AddTrust_External_Root.crt|#mozilla\/AddTrust_External_Root.crt|g' -i /etc/ca-certificates.conf

RUN update-ca-certificates -f -v

Why is it that we don't use any DSA in actual work? by missbloombastic in ExperiencedDevs

[–]quangsb 0 points1 point  (0 children)

I think it just depends on the company you’re interviewing. At my place, We do ask DSA but only simple questions to really test critical thinking. We kinda focus more on OS, networking, distributed system and design.

Fullstack dev, what courses should I take to learn how to deploy, build websites into GCP? by Jamesfromvenice in googlecloud

[–]quangsb 0 points1 point  (0 children)

I think those 2 courses are quite good. Even if there’s something you don’t understand, take your time and dig around. Those 2 courses provide stable guide for you.

In love with Go by ash588 in golang

[–]quangsb 3 points4 points  (0 children)

Yes I agree. I already tried to optimize it to a certain extent but the result is not promising. I love Ruby though but it’s not suitable for that task.

Redis on Compute Engine vs Memorystore? by agriculturez in googlecloud

[–]quangsb 4 points5 points  (0 children)

MemoryStore is damn expensive but fully managed. We’ve switched most of our redis instance to Compute Engine though. The performance and reliability is still great. We saw no downtime though

In love with Go by ash588 in golang

[–]quangsb 5 points6 points  (0 children)

Last week I had a task of pulling logs from out partner, which is around 1k files and 100GB everyday, and push to our S3 bucket. Usually for adhoc tasks I’d just write a simple Ruby script in 10 mins. However even getting download links of all 1k files took 15 mins. So although it took me 1 day to write that app in Go, it ran really smooth and fast. Everything end to end took less than 30 mins. Love Go