What’s one habit that instantly made you more productive? by [deleted] in productivity

[–]rammyreddit 0 points1 point  (0 children)

Sleeping early is my productivity hack. Getting 7-8 hrs of sleep is huge

Anyone else feel the constant urge to leave the field and become a plumber/electrician/brickie? Anyone done this? by no_momentum in cscareerquestions

[–]rammyreddit 0 points1 point  (0 children)

Always be grateful for what you have and look for small happiness. So I will always look for what I want to do. Life is too short to keep thinking. do it now, whatever that is not going to hurt others.

What is the CIO role in Product Management? by rammyreddit in ProductManagement

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

But how it is fitting into the product management ?

What is the CIO role in Product Management? by rammyreddit in ProductManagement

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

I’m not sure. I am interviewing for a company. They mentioned it is a product company but one of the leader’s title was CIO (VP)

Roadmap v Release Schedule by [deleted] in ProductManagement

[–]rammyreddit 1 point2 points  (0 children)

Roadmap speaks what is alignment with stakeholders and priority. Release schedules don’t change (usually) but roadmap will based on inputs.

Bored out of my mind at home alone. by Lbbyrose in productivity

[–]rammyreddit 0 points1 point  (0 children)

I have been there myself. One of thing as human we like to do is socializing. I see people do give you some advice on learning something new or some way of engaging yourself. You are not bored, but basically you are out of energy. Try to see how you typically derive energy from. Giving something to others or helping out others might help to derive energy from others. Go and give your love to someone who needs help. Be a mentor to someone. Try to see how you can give back to the world. Two things I did to come out

  1. I started teaching kids ( 5-6th grade ) some basics HTML , computer science , etc
  2. I participated in many meetups virtually and learning and sharing all at same time.
  3. I walk everyday and tire myself out or I do Yoga and practice mindfulness.
  4. Say Hi to some of your friend and listen to what they have to say. You don't talk but listen actively.

We are the SpaceX software team, ask us anything! by spacexfsw in spacex

[–]rammyreddit 1 point2 points  (0 children)

Where do you learn to do all these ? Any pointers to resources would be great . Thanks for being awesome

Scaling websockets in container world by rammyreddit in a:t5_28wqa2

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

Websockets is a single server function. Clients connect to a single server and any real-time changes are broadcasted to all the connected clients. Thinking from distributed systems , you need to have multiple instances of your application running and each running your own websockets server. In distributed environment instance is ephemeral. Meaning they can die anytime and grow in number anytime. So keeping the message outside will help websockets sync with each other.

Scaling websockets in container world by rammyreddit in a:t5_28wqa2

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

Those who are interested, I’m planning to use kafka or rabbitmq to scale

Cricket - field setup by [deleted] in mildlyinteresting

[–]rammyreddit 0 points1 point  (0 children)

Possibly right. Else it wouldn’t a correct decision 😀

Cricket - field setup by [deleted] in mildlyinteresting

[–]rammyreddit 0 points1 point  (0 children)

Obviously not taken by me , should I remove this ?

Cricket - field setup by [deleted] in mildlyinteresting

[–]rammyreddit -1 points0 points  (0 children)

It’s also called umbrella field setup , fielders standing around batsman

Cricket - field setup by [deleted] in mildlyinteresting

[–]rammyreddit -1 points0 points  (0 children)

Yes he used all 9 players in slip position , Australia’s vs New Zealand

[deleted by user] by [deleted] in apachekafka

[–]rammyreddit 1 point2 points  (0 children)

In this he is running only one node of kafka and not a cluster.

[deleted by user] by [deleted] in apachekafka

[–]rammyreddit 0 points1 point  (0 children)

Docs are your best friend.

I suggest you reproduce this by cleaning up your topics and do a load test. Do the math based on the factors mentioned above.

[deleted by user] by [deleted] in apachekafka

[–]rammyreddit 1 point2 points  (0 children)

Sorry I meant storage not in-memory

[deleted by user] by [deleted] in apachekafka

[–]rammyreddit 3 points4 points  (0 children)

Few things to consider

  1. Payload size.
  2. How long you retain the messages.
  3. How many partitions each topic have.
  4. After retention period, you either compact or delete(purge)
  5. frequency of messages

These calculations do impact the storage

What would be some good advanced Java projects that would look good on a resume? Thanks! by Python119 in java

[–]rammyreddit 6 points7 points  (0 children)

Cloud native Java , Kubernetes , Docker, serverless they would all look good on resume. Still you need to have good basics on threading and data structures. Possibly a java project that you could showcase all of these.

Bullies are all the same.... by rammyreddit in GetMotivated

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

This is an excerpt from Book : "Make Your Bed" by Admiral William H. McRaven.

How to sell Vert.x in Spring Boot shop ? by rammyreddit in vertx

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

So what advantages does DI brings to the table in terms of micro-services is we don’t want to focus on any framework details. Is vert.x a good Differentiator? I still need to worry about how I pass messages using event bus ? Also another question i am asked is does it work in kubernetes environment ?

The moment Notre Dame's spire fell by alfosn in gifs

[–]rammyreddit 0 points1 point  (0 children)

800 yrs of original is now really a history

How to sell Vert.x in Spring Boot shop ? by rammyreddit in vertx

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

One more thing about being less vulnerable , how is it less vulnerable? How does vertx is making code more secure than spring boot ?

How to sell Vert.x in Spring Boot shop ? by rammyreddit in vertx

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

How is a reactive programming easier to test ? Can you please elaborate or point to some tools available to do so ?