shankysingh | 9 months ago | on: Google is phasing out support for ClaimReview markup in Google Search.
shankysingh's comments
shankysingh | 1 year ago | on: Ask HN: Who is hiring? (June 2024)
I am also interested but have not been able to find your email ID.
My email is shashank DOT [email protected] and github : https://github.com/shashanksingh
shankysingh | 2 years ago | on: Ask HN: Freelancer? Seeking freelancer? (March 2024)
Github : https://github.com/shashanksingh Linkedin : https://www.linkedin.com/in/singhshashank Reach out : shashank.personal+hn at gmail.com Blog : https://medium.com/fanduel-life/how-do-we-keep-our-70-data-e...
I am experienced Data Tech-lead , with track record of deploying Data products like recommenders, Realtime leaderboards, Inventory Forecasting, Streaming Platforms for Companies like Skyscanner, Fanduel and Faasos ( Rebel Food) etc.
Technologies : Python, Trino/Presto, DBT, Airflow, Kafka, PySpark, Databricks DeltaLake, AWS(Cloud), DevOps, Microservices, Docker, AWS ECS, Apache Spark, Fast API, Kubernetes(EKS), AWS EMR, PostgresSQL( At Billion Scale )
For further inquiries or collaboration opportunities, please feel free to reach out to me at shashank.personal at gmail.com
shankysingh | 4 years ago | on: Ask HN: Did anybody apply for UK Global Talent visa? How did it go?
shankysingh | 4 years ago | on: Canonical Offering Blender Support
source : https://lesterbanks.com/2018/09/rigging-next-gen-feature-fil...
shankysingh | 5 years ago | on: Ask HN: How do old (30plus) software engineers remain excited about the field?
shankysingh | 5 years ago | on: Ask HN: How do old (30plus) software engineers remain excited about the field?
shankysingh | 5 years ago | on: Ask HN: How do old (30plus) software engineers remain excited about the field?
shankysingh | 5 years ago | on: Ask HN: How do old (30plus) software engineers remain excited about the field?
I meant more 30+ without any qualifiers , would try wording it better next time :)
shankysingh | 5 years ago | on: Ask HN: How do old (30plus) software engineers remain excited about the field?
shankysingh | 5 years ago | on: Ask HN: How do old (30plus) software engineers remain excited about the field?
Probably I could have better worded my question.
shankysingh | 5 years ago | on: Ask HN: How do old (30plus) software engineers remain excited about the field?
shankysingh | 5 years ago | on: The State of FOSS in India
Was really a great experience interacting with him and other stalwarts of FOSS at thats time. I owe my first job to him and Pradeepto :)
shankysingh | 5 years ago | on: Facebook Joins the Blender Development Fund
source: https://www.blendernation.com/2018/08/20/next-gen-blender-pr...
shankysingh | 5 years ago | on: Amnesty International India Halts Its Work in India Due to Government Reprisal
shankysingh | 5 years ago | on: Patreon Raises $90M Series E at $1.2B Valuation
shankysingh | 5 years ago | on: Effective Airflow Development
For unit/integration tests we ended up doing lot of Docker in Docker setup.
shankysingh | 5 years ago | on: Huawei CEO: After September 15 No More Kirin Chips
So, this ban gives Taiwan and US businesses some breathing space to keep that lead. How its leveraged, is upto the governments and business's .
shankysingh | 5 years ago | on: Speeding up function calls with lru_cache in Python
shankysingh | 5 years ago | on: Speeding up function calls with lru_cache in Python
Just a side note: with Fibonacci + caching it solidly become Dynamic programming problem so Time complexity reduces from quadratic to o(n), IIRC .
There is a whole class of problems where recursion + memoization(caching) = Top Down Dynamic programming , The other way to Increase performance and actually reduce call stack in these class of problems including Fibonacci would be Bottom Up Dynamic Programming
Some gists I found on it https://gist.github.com/trtg/4662449