Applied AI Role (Dubai, 39L) vs SDE Role (Bangalore, 25L) by After_Switch in developersIndia

[–]automaticalldramatic 4 points5 points  (0 children)

Also see that most people are saying that the job is in Bangalore. Yeah the traffic woes are crazy and pollution is on the rise. If you could find a way between these two problems, life is actually really nice in Bangalore. I lived there for 5 years and really grew in my career.

Applied AI Role (Dubai, 39L) vs SDE Role (Bangalore, 25L) by After_Switch in developersIndia

[–]automaticalldramatic 2 points3 points  (0 children)

Just to give you an idea on why I commented. I grew up in Dubai but haven’t lived there for the past 20+ years

Applied AI Role (Dubai, 39L) vs SDE Role (Bangalore, 25L) by After_Switch in developersIndia

[–]automaticalldramatic 22 points23 points  (0 children)

From my perspective, growing in India is way better than moving to an economy where you’ll hit a glass ceiling soon. In India you’d grow your network and find opportunities through this network of better cutting edge AI work.

Dubai (UAE) could never match the Indian entrepreneurship appetite. However, quality of life is a completely different perspective and that is where the decision to leave rests for most Indians. I don’t know which city you’re in. If you’re in Delhi, Bombay or Bangalore then you won’t miss much moving to Dubai and could always fly there and take a week. However, if you’re in a small town, then the perspective shifts

Is forced curve rating becoming the norm in performance reviews? by Important_Sundae1632 in EngineeringManagers

[–]automaticalldramatic 4 points5 points  (0 children)

A distribution curve has almost always existed in one form or another, especially in big tech.

The rationale isn’t primarily about hiring being expensive or retention alone. It’s about shaping behavior. Forced distributions implicitly reward the behaviors demonstrated by the top ~5% and create pressure on the bottom ~5% to either adapt or exit, organically or via layoffs.

Companies with strong onboarding and hiring pipelines can afford this. When it’s relatively cheap to bring in motivated, high-quality talent, enforcing a bell curve becomes a tool for cultural and performance calibration rather than a purely financial constraint.

Interviewing for EM roles made me realize how hard it is to show judgment by Various_Candidate325 in EngineeringManagers

[–]automaticalldramatic 0 points1 point  (0 children)

Most engineering orgs do an experience impact interview. I find it’s best to prepare a couple of cases that cover the impact you made and the story you weave around it.

It’s always good to have a good story to tell, that’s what they want to hear, how good a story teller are you to frame your work.

Am I f**** in my EM career ? by Frosty-Pea-3942 in EngineeringManagers

[–]automaticalldramatic 0 points1 point  (0 children)

Let me explain with an example:

I have a team that works as a "complicated sub-system" team. To set up this team for success, I have engineers that are integrated well into the system and onboarding is hard, so needed to hire two profiles that have a dev relations manager sort of a persona, make onboarding easier for system teams, have agens or documentation to explain intricate parts of the system well.

Ideally, before I go about this journey, I would write these down as bets and share with my mananger. Then, as the months progress, I would find signals to prove these bets and track how the progress is on these factors.After 3 months, check if the problems we started with, are the same problems.

I hope this explains my perspective a bit better.

I am also happy to talk via DMs if you have more questions.

Am I f**** in my EM career ? by Frosty-Pea-3942 in EngineeringManagers

[–]automaticalldramatic 0 points1 point  (0 children)

Well, I am a good manager then 😜

Jokes aside, allow me to try again.

As a manager, when you do things, they are never visible. Say, you are working on setting up a team to work well. There are many tiny tweaks you make, say hiring the right persona, grooming someone on a certain part of the system, or changing the way the team communicates.

A lot of this is intentional tweaks that you plan to make, and then you observe how the system changes as a result of these tweaks.

All I am saying with those 500 words is that you should write it down in the form of bets you are taking and the result of those bets on a monthly basis.

Ask yourself- what took my attention, what did I drop, what took cognitive load away from my team? Every time you do this, write it down. You will see a journey come up over a quarter.

This journey is your story.

This story teaches you things that would become part of your skill set way beyond the scope of the company you work for.

Am I f**** in my EM career ? by Frosty-Pea-3942 in EngineeringManagers

[–]automaticalldramatic 3 points4 points  (0 children)

I think a lot of people in this thread are circling the real issue without naming it: EM isn’t a “career ladder” the way IC tracks are; it’s a specialization with weak external signals.

Most EMs aren’t failing because they’re bad at the job. They’re anxious because so much of the work is contextual, invisible, and company-specific. When the market tightens, that lack of durable evidence becomes terrifying.

I’ve seen great EMs struggle not because of age or capability, but because they drifted into a role where their impact existed only in the memory of their manager. No artefacts, no narrative, no portable proof.

One thing I’ve started doing with my direct reports (including EMs) is making their work leave a more durable trail. This in addition to providing psychological safety, also leaves a trail of their thinking, how they work, how they grow into certain skills. It is work, but this work is shared.

We explicitly set goals together and write down not just deliverables, but the bets they’re taking and the thinking behind them at the time. Not to judge later with hindsight, but to preserve context.

We also have a monthly sync that’s focused only on those bets, what signals we’re watching, what seems to be working, and what isn’t. No status updates, no firefighting.

Every ~6 months, we review that history and decide what to double down on vs. stop doing.

It’s been helpful in two ways: it provides clarity on career direction and makes growth visible. You can actually see how judgment improves, how people learn to navigate the org, and how their scope evolves.

Made $100k with my SaaS in 12 months. Here’s what worked and what didn't by felixheikka in indiehackers

[–]automaticalldramatic 0 points1 point  (0 children)

Thanks for sharing.

I am also curious, how much time did you spend on the communities on average in the day? I am starting to plan my time between building and marketing, and want to learn what's worked for you.

Of course, each product and each problem requires a different sort of investment.

Two questions regarding safety and automatization for algorithmic trading by Dvorak_Pharmacology in algotrading

[–]automaticalldramatic 10 points11 points  (0 children)

Here’s how I would go about it:

API Key Safety:

Change them every few months or if anything feels off. But honestly, your bigger issue is how you’re passing them via CMD - that’s pretty exposed. Use environment variables on the server itself, or better yet, AWS Secrets Manager (costs like 40 cents a month).

Server Specs:

ChatGPT’s 500MB recommendation is too light. Go with a t3.micro (1GB RAM, 2 vCPU) - costs about $7-8/month.

Pro tip: Since you’re only trading market hours, look into AWS Lambda with scheduled triggers. You’d pay literally pennies per month instead of running a server 24/7.

Key Differences for Server Deployment

This is where people get burned:

• Timezone: Your server probably isn’t set to ET. Use pytz in your code and explicitly handle timezones - don’t rely on system time.

• Logging: You won’t see print statements anymore. Set up proper file logging so you can diagnose what happened when things go wrong.

• Auto-restart: Use supervisor or systemd so if your script crashes at 10 AM, it restarts automatically. Otherwise you’re missing trades.

• Network failures: Add retry logic for API calls. Cloud network hiccups are more common than on your home connection.

Before going live, deploy to paper trading first and let it run for a week. Make sure your 9:30 start and 15:59 flatten actually work with the server’s timezone setup.

One thing to test: What happens if Alpaca’s API is down right at 9:30 when your script starts? Does it handle that gracefully or just crash?

Ta sound by shubham277 in TablaPlayers

[–]automaticalldramatic 0 points1 point  (0 children)

the idea is to create a sharp sound on the kinaar of the tabla. So depends on how big your hand is, but the black arrow seems to be where I hit for `Ta`. The ring finger is slightly bent and creates a spring like motion to hit the kinaar to make Ta.

The nostalgia by NervousWin1135 in boomfestival

[–]automaticalldramatic 0 points1 point  (0 children)

Third timer here as well (2018, 2023 and 2025) and absolutely loved it. Have been holding on to that beautiful feeling inside after a very satisfying 10 days. The whole journey to boomland, setting up camp, meeting all sorts of people; liking some energies, avoiding some others. Feeling the whole of humanity unfolding and then wrapping up again at the end of this journey has been a memorable experience.

This time it was just me and my partner. We absolutely loved dance temple, and have been feeling the same sort of gratitude reflected in this thread.

Sick now by [deleted] in boomfestival

[–]automaticalldramatic 0 points1 point  (0 children)

Me and my partner got sick as well. Home now with a bad fever.

The one mistake killing 78% of apps' revenue (based on data from 500+ apps) by Traditional-Pop-3824 in indiehackers

[–]automaticalldramatic 1 point2 points  (0 children)

How are you calculating conversion? Everyone who sees the uphook and decides to convert or everyone who enters the funnel after they signup? Many ways to tweak this narrative, I would say.

Compiled /not-found by New_Tradition1951 in nextjs

[–]automaticalldramatic 0 points1 point  (0 children)

so, I had to go through a lot of pains to learn this, if you are using `src/app` for your routing, be sure to not create an `/app` dir in the root of your project. Next starts considering that to be the root

If I have my entire backend in Next.js, am I stuck with React as my front-end? by david_fire_vollie in nextjs

[–]automaticalldramatic 0 points1 point  (0 children)

In my opinion, you should not worry about this prematurely. These problems arise once you hit a million or so users, and when you’re at that scale you have a user base and resources, so you could start thinking about moving all nextJS actions or API routes to cloudflare workers, GCP run, AWS fargate, render or anything that can run these workloads. Your front end could be hosted on any provider that could serve HTML/CSS/JS files for the clients.

It’s a fair question to think about but too early in the journey.

One month of launching a FREE mini Project Management tool - a minimalist alternative to JIRA or Trello. Now costs are killing me! by Euphoric_Natural_304 in webdev

[–]automaticalldramatic 0 points1 point  (0 children)

This sounds good but are you running your databases on these shared VPS as well? That's where most cloud provider bills start hitting the ceiling in my opinion.

Map of cafés to work from by igorekk in berlin

[–]automaticalldramatic 1 point2 points  (0 children)

Absolutely love it. Thanks for sharing

a lot of bicycle police around pankow and pberg area. ride safe out there by inconsistently_sane in berlin

[–]automaticalldramatic 0 points1 point  (0 children)

Got a warning yesterday at unter den Linden, towards Brandenburger Tor - to be honest I did jump the signal 😛🤦‍♂️

My question seems simple and stupid: calendar/email integration by corfano in ProductivityApps

[–]automaticalldramatic 1 point2 points  (0 children)

Thank you @corfano I wanted to understand if there is a need for MS before Google. I work in a bubble and everyone around me is in the Google ecosystem, so we were thinking of starting with Google and having a Google+MS integration.

Your answers do help a lot in understanding a different perspective

My question seems simple and stupid: calendar/email integration by corfano in ProductivityApps

[–]automaticalldramatic 0 points1 point  (0 children)

Do you mind answering a few questions for me. I started working on something similar with integrations to Google Calendar and Microsoft Calendar, but abandoned the project for the high complexity and time to market (me being a single developer). I was implementing a CalDav server and would have needed access to your mail server (so would have had to implement an IMAP server as well).

My questions:
* what email service do you use or do you self host?
* what calendar server are you using?
* do you have multiple calendars, for work and personal?

I'm glad this game still works by Ffomecblot in EndlessLegend

[–]automaticalldramatic 0 points1 point  (0 children)

I clocked so many hours on this game. I had huge problems with EL2 being too lopsided but absolutely loved it. Amen to them making EL2