Oscar
joined May 12, 2025
  • Which programming tasks do you still prefer to do without AI?

    AI coding assistants have become a common part of modern software development, helping with code generation, debugging, testing, documentation, and productivity. However, many developers still prefer to handle certain tasks manually to maintain code quality, deepen their understanding, or retain control over critical decisions. Some examples include: System architecture and design decisions Learning new frameworks(Read More)

    AI coding assistants have become a common part of modern software development, helping with code generation, debugging, testing, documentation, and productivity. However, many developers still prefer to handle certain tasks manually to maintain code quality, deepen their understanding, or retain control over critical decisions.

    Some examples include:

    • System architecture and design decisions
    • Learning new frameworks or technologies
    • Debugging complex issues
    • Security and code reviews
    • Performance optimization
    • Writing core business logic

    Which programming tasks do you intentionally avoid using AI for, and why? Has your approach changed as AI tools have become more capable?

    This is a great opportunity to discuss where AI adds the most value and where human judgment still matters most.

     
  • How can I automatically update post titles when a number in the content changes?

    I’m working on a system where numerical values inside content are updated dynamically. The issue is that the title often contains the same number, and when the value changes in the content, the title becomes inaccurate. I’m looking for a reliable way to automatically detect these changes and update the title accordingly without manually editing(Read More)

    I’m working on a system where numerical values inside content are updated dynamically. The issue is that the title often contains the same number, and when the value changes in the content, the title becomes inaccurate.

    I’m looking for a reliable way to automatically detect these changes and update the title accordingly without manually editing each post. Has anyone solved a similar problem or found a scalable approach for this?

  • What are the latest trends in data interviews, and what do candidates fear the most today?

    Data interviews seem to be evolving fast. It’s no longer just SQL or case studies, now it’s system thinking, real-world problem solving, and even communication. At the same time, a lot of candidates still feel uncertain going in. From what you’ve seen: What’s actually being tested today? And what do candidates tend to worry about(Read More)

    Data interviews seem to be evolving fast. It’s no longer just SQL or case studies, now it’s system thinking, real-world problem solving, and even communication.

    At the same time, a lot of candidates still feel uncertain going in.

    From what you’ve seen:

    • What’s actually being tested today?
    • And what do candidates tend to worry about the most?

    Would be interesting to hear both interviewer and candidate perspectives

  • Why do I get a NameError when sorting a pandas DataFrame column?

    I am working with a pandas DataFrame and trying to sort a numeric column (trip_distance) in descending order. However, I receive a NameError: name ‘trip_distance’ is not defined when using: trip = sorted(trip_distance) print(trip) The column exists inside my DataFrame (e.g., df). I would like clarity on: Why this NameError occurs The correct way to(Read More)

    I am working with a pandas DataFrame and trying to sort a numeric column (trip_distance) in descending order.

    However, I receive a NameError: name 'trip_distance' is not defined when using:

    trip = sorted(trip_distance)
    print(trip)
    

    The column exists inside my DataFrame (e.g., df).

    I would like clarity on:

    • Why this NameError occurs

    • The correct way to sort a DataFrame column in descending order

    • When to use sorted() versus DataFrame.sort_values()

    Any guidance on best practices for sorting columns in pandas would be appreciated.

  • How would you design an NLP-driven solution to transform unstructured text data into early

    A large customer-facing enterprise receives thousands of unstructured text inputs every day across emails, chat support, social media comments, and internal tickets. These messages include complaints, feature requests, sentiment signals, and operational issues. Currently, most of this data is reviewed manually or sampled periodically, leading to delayed insights and reactive decision-making. Leadership wants to use(Read More)

    A large customer-facing enterprise receives thousands of unstructured text inputs every day across emails, chat support, social media comments, and internal tickets. These messages include complaints, feature requests, sentiment signals, and operational issues. Currently, most of this data is reviewed manually or sampled periodically, leading to delayed insights and reactive decision-making.

    Leadership wants to use Natural Language Processing (NLP) to turn this continuous stream of text into timely, actionable intelligence that can influence product decisions, customer experience improvements, and operational prioritization.

    The Challenge
    Despite having access to large volumes of text data, the organization struggles with:

    • Identifying emerging issues early

    • Understanding true customer sentiment beyond surface-level metrics

    • Converting qualitative feedback into structured insights leaders trust

Loading more threads