takehome-sample

By anonanonme

Takehome-sample Alternatives

Similar projects and alternatives to takehome-sample

  • minio

    The Object Store for AI Data Infrastructure

  • testcontainers-python

    Testcontainers is a Python library that providing a friendly API to run Docker container. It is designed to create runtime environment to use during your automatic tests.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better takehome-sample alternative or higher similarity.

takehome-sample reviews and mentions

Posts with mentions or reviews of takehome-sample. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-11.
  • Ask HN: I have 10 yrs of Exp. Failed 4 takehome projects. What am I doing wrong?
    7 projects | news.ycombinator.com | 11 Jul 2023
    >If your argument is that the lambda gets optimized out, or that the benchmarked difference is insignificant (it very well could be!), then I could understand that.

    In interpreted languages I believe the thing that gets saved to mem is a pointer to the code itself. So no inherit difference here in terms of allocation. For closures reference counting is increased for the referenced variables but this is not a closure.

    Still this is a minor thing. Scoped functions are used for structural purposes performance benefits of using or not using them are negligible.

    >logN is not faster than O(1) - NLogN is in the API, not redis

    My point is log(n) is comparable to o(1). It's that fast.

    NlogN is not comparable to O(n). In fact if you look at that pic NlogN is more comparable to O(n^2).

    You definitely don't want NlogN on the application server whether its nodejs or python. That will block the python or node thread completely if n is large.

    It's preferable to use SORT in redis then in python or node because redis is highly optimized for this sort of thing (punintended) as it's written in C. Even if its not in redis, in general for backend web development you want to move as much compute towards the database and off the webserver. The webserver is all about io and data transfer. The database is where compute and processing occurs. Keep sorting off web servers and leave it all in the database. You're a nodejs dev? This is more important for node given that the default programming model is single threaded.

    Overall it's just better to use sets with scores because logN is blazingly fast. It's so fast that for databases it's often preferential to use logN tree based indexing over hashed indexing even when hashed indexing is appropriate.

    Yes hashed indexing are O(1) average case insert and read but the memory savings of tree based indexing overshadows the negligible logN cost.

    >I think my version is the least surprising one -- no one has to know about pipeline or worry about atomicity. Just an O(1) operation to redis, like most people would expect to see.

    Two things here.

    1st. Sorting on the web API is definitively wrong. This is especially true in nodejs where the mantra is always non blocking code.

    Again the overall mantra for backend web is for compute to happen via the database.

    2nd. Pipeline should 100 percent be known. Atomic operations are 100 percent required across shared storage and it's expected to occur all the time. Database transactions are fundamental and not unexpected. Pipeline should be extremely common. This is not an obscure operation. I commented about it in my code in case the reviewer was someone like you who isn't familiar with how popular atomic database transactions are, but this operation is common it is not a obscure trick.

    Additionally pipeline has nothing to do with your or my own implementation. It's there to make atomic a state mutation and retrieval of that state.

    I add one to a score then I retrieve the score and I want to make sure no one changes the score in between the retrieval and the add one. This is needed regardless of what internal data structure is used in redis.

    >I don't know if they tried to run your test, but it could have failed with a 3xx

    That'd be stupid in my opinion. 302 redirect is something I expected. Maybe I should have stated that explicitly in the docs.

    >IMO -- it's more realistic and you have full control.

    Unlikely. Even as a lead it's better to cater to the majority opinion of the team. 99 percent of the time you never have full control.

    Developers and leads typically evolve to fit into the overall team culture while inserting a bit of their own opinions.

    I'm a rust and Haskell developer applying for a python job. Do I apply my entire opinion to control the team? No, I adapt to all the bad (in my opinion) and good practices of the team. I introduce my own ideas slowly and where appropriate.

    > it is a mystery why they wouldn't give feedback.

    This is easy. It's not a mystery. It's because they don't give a shit about me. They don't want to hire me so the business relationship is over. Legally they owe me zero time to explain anything and it's more efficient for the business to not waste time on feedback.

    >Yes, but this is a small API -- you literally have to write a test that hits the server once. There are libs for doing this with flask, there is documentation showing you how. It's not rocket science, and it's crucial to catching bugs down the road.

    No there isn't. You have to spin up redis. Flask documentation doesn't talk about that. Integration testing involves code that controls docker-compose. It's a bunch of hacky scripts with external process calls that are needed to get integration tests working.

    It's not rocket science but not within the scope of a take-home. Additionally hacking with docker compose is not sustainable or future proof, eventually you will hit infra that can't be replicated with docker.

    I will probably do it next time just to cater to people who share your viewpoints.

    >If the prompt was "write this like you're at a startup that has no money and no time", then sure.

    Lol. The prompt was write it in four hours ( no time) and they aren't paying me for it ( no money).

    >Specs did specify test cases -- and none of them had a trailing slash.

    What? In the specs all examples have trailing slashes. All of them.

    https://github.com/anonanonme/takehome-sample/blob/master/RE...

    Take a look again, you remembered wrong.

    What the specs didn't specify was what to do when there is no trailing slash. So why not a 302? The client can choose what to do here. Either follow the redirect or treat it as an error.

Stats

Basic takehome-sample repo stats
4
1
1.8
10 months ago

The primary programming language of takehome-sample is Python.

Popular Comparisons


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com