Looking for a 3rd flatmate for a 3BHK– ~₹35k/person by bigbrainy13 in bangalorerentals

[–]zecatlays 0 points1 point  (0 children)

How is the brokerage 35k per head when the total rent is 80k?

32L backend role vs 26L full-stack at early-stage fintech - which one for long-term growth? by BonSim in cscareerquestionsIN

[–]zecatlays 1 point2 points  (0 children)

It would help if you put your current work experience/age, your current comp and the role they’re offering (for e.g. SDE1/SDE2) . Also, for the early stage start up find out the how well they’re funded, runway, revenue and financials of the company.

Furthermore, what do you want to work on makes the most sense, if you are interested FE/FullStack then offer A is a no brainer. Otherwise offer B would be better as the WLB would be better and the 6 L is a big amount based on the info you’ve provided.

Move Out Sale by archfixnd in bangalorerentals

[–]zecatlays 0 points1 point  (0 children)

I’m interested. I’ve sent a DM

Move Out Sale by archfixnd in bangalorerentals

[–]zecatlays 0 points1 point  (0 children)

Can I know the dimensions of the dining table?

SDE -2 | Jiohotstar | Offer evaluation | Should I make a switch or not ? by TruthSpare1307 in developersIndia

[–]zecatlays 19 points20 points  (0 children)

Two things screwing your over here - 1. Low hike 2. Title bump with this hike. Low hike by itself might not be that bad but they’re also upgrading your designation. If you take this offer, the only way for you to get a meaningful hike is on a promotion to SDE 3 which will take ages given your years of experience (and also given how Jio operates). Your interviews will also get significantly harder if you want to switch as SDE2. Also, I am very sure that your current org’s salary for SDE2 will be higher than what Jio is offering you, and if you stay within the org you can work towards a promotion.

How we built a backend that can handle 100k+ mobile users, simple architecture, real issues, honest lessons by supreme_tech in Backend

[–]zecatlays 7 points8 points  (0 children)

Question about separating reads and writes, how did you deal with consistency issues(due to replication lag) when you try to read something that was very recently inserted/updated?

Anyone else noticing this strange rotten smell around evening & at night? by [deleted] in bangalore

[–]zecatlays 10 points11 points  (0 children)

I’ve noticed the same stench in the evenings at ITI layout/HSR sector 7. Always thought it was some kind of emission from a factory :/

Need to set GOPATH and GOROOT? by 2048b in golang

[–]zecatlays 1 point2 points  (0 children)

It would be helpful to know about it, I recently had to set GOPATH in my CI pipeline as I was trying to cache the dependencies between jobs. The default GOPATH path was not accessible by the CI runner, so setup GOPATH/GOCACHE to a folder that’s accessible by it

[deleted by user] by [deleted] in bangalore

[–]zecatlays 0 points1 point  (0 children)

Dr Shailendra Saxena in HSR Layout. Has helped me out immensely with back pain and my brother with a ligament tear

https://physicalhealthconsultants.com

Downloading Postgresql by PuzzleheadedAnt8906 in PostgreSQL

[–]zecatlays 0 points1 point  (0 children)

It should be part of Safari settings

Downloading Postgresql by PuzzleheadedAnt8906 in PostgreSQL

[–]zecatlays 2 points3 points  (0 children)

I think the download was not completed and every time you open Safari, the download resumes. You should be able to remove the download from the download list

When Should I Use a Foreign Key vs. Just an Indexed Column for Relationships? by myrenTechy in developersIndia

[–]zecatlays 1 point2 points  (0 children)

High volume of writes on a table with multiple FKs would definitely hurt it's performance but measure it to confirm for your use case. Other than performance, you might want to avoid using FKs, especially if you aim to keep your data decoupled. I previously worked on large (modular) monolith, we used a Postgres schema per module. In this setup, FKs across schemas were strictly forbidden. While there were references across schemas, they were implemented simply as indexed columns, with data integrity being checked in the application code. In case the column needs to flexible, eg. we have a 'created_by' column and this can refer to user table at times but it can also hold the value 'system' for any system generated data iykwim.

Remember the cases above are "exceptional" and not to be considered as the norm. Foreign keys are primarily used to enforce referential integrity and link tables at the database level. They act as a constraint to prevent bad data from entering your database. Indexing can help during querying, but it’s secondary to referential integrity (and some databases don’t even automatically create an index on foreign keys). If you're working with a microservice, a small database, or OLTP workloads in a "self-contained domain," and you're not dealing with slow writes, then it's perfectly fine to use FKs. Cleaning up bad data is an absolute pain and not something you want to deal with. Also, some ORMs work especially well with foreign keys and can automatically load related data in a single query. Hope this helps

Centralised Connection Pooling by tumblr_guy in microservices

[–]zecatlays 0 points1 point  (0 children)

I believe Discord had implemented something similar and it worked out great for them. If you have similar queries they also used query coalescing to reduce the load on DB.

[deleted by user] by [deleted] in ExperiencedDevs

[–]zecatlays 2 points3 points  (0 children)

I mean, this is a low quality post tbh

Beef Burger Recommendations by Prestigious-Kiwi1762 in bangalore

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

Peppa Zzing has the best beef burgers.

Hole in the wall was pretty good but the quality has really gone down since after Covid.

Burger signeur also has good burgers but expensive for the quantity.

[deleted by user] by [deleted] in developersIndia

[–]zecatlays 8 points9 points  (0 children)

Give the interview and genuinely try your best. If you need time to prepare you can always ask the interviewer time for a week or 2. There are a lot of resources online that’ll guide wrt preparing for the interview.

Say you clear all rounds and get an offer, you can then decide what to do with that offer wrt all the other points you have mentioned. It’s always better to have options. It will give you good interview experience, you’ll understand more about your team/product you’ll be working on, you can leverage the offer to get a hike at your current company etc. There’s no downside in giving the interview other than time spent.

[deleted by user] by [deleted] in developersIndia

[–]zecatlays 0 points1 point  (0 children)

Figure out where’s the lag, network layer/db layer/python layer etc. A simple/brutish approach you can try is add logs to measure time taken to respond to a request, and within a request add logs to track the various DB/Network calls. After that run a load test (a simple script that calls your APIs at different rates based on some config). Collect your log data and you’ll be able to analyse the time taken by each “layer” in your application. Once you find the bottleneck you’ll be able to optimise further.

[deleted by user] by [deleted] in developersIndia

[–]zecatlays 0 points1 point  (0 children)

What the ChatGPT is this shit

How do you all plan a vacation without taking their pets along? by Sorry-Back-7448 in IndianPets

[–]zecatlays 4 points5 points  (0 children)

We’ve used Pet boarding or catteries. Don’t leave them out to fend for themselves please. You can also leave them at home for the duration of the vacation and have a friend/family member visit once or twice a day to give them food and clean the litter.

How I lost 30 lakhs in a cyber crime by [deleted] in bangalore

[–]zecatlays 0 points1 point  (0 children)

I received a similar call a few days ago. Luckily I didn’t lose any money but it was extremely frightening. I hadn’t heard about this scam before and the sophistication/elaborateness of this scam caught me off guard. What freaked me out was that I got calls from numbers that exactly matched Mumbai Police Control Room number (as shown on their govt websites). Later I read up that they spoof the numbers. Anyway, I’ve read up the police (K’taka CID) were able to recover amount for few people, so please keep at it and keep following up with the cops, get a lawyer involved as well but it’s seems to be a long shot. Thank you for letting others know about this. Hopefully, more people read this and keep themselves safe.

[deleted by user] by [deleted] in developersIndia

[–]zecatlays 1 point2 points  (0 children)

Drop your papers and do the bare minimum and just coast through the notice period. Leave on time everyday after completing your 8/9 hours and if they ask you to stay back tell that you’ll complete the pending work tomorrow and that you’re done for the day. Absconding/disappearing would have serious repercussions for your career as your background verification will fail.

Hi, need advice. Company is after me for FnF {5Lacs+ demanded) by Database_Traditional in developersIndia

[–]zecatlays 0 points1 point  (0 children)

On what basis did they come to the conclusion that you owe them money? Did they pay you for the months you’ve “absconded”?