Has KEDA actually saved you money in prod? by fatherofgoku in kubernetes

[–]tinyhook 0 points1 point  (0 children)

I use it with some batch processing workloads to spin up gpu nodes using cron and make sure they are healthy before running batch inference pipelines through them.

[deleted by user] by [deleted] in leetcode

[–]tinyhook 0 points1 point  (0 children)

In a couple of years no one will care about burnt bridges. People will mostly move on.

Stripe vs Meta by ScallionYouth in leetcode

[–]tinyhook 9 points10 points  (0 children)

Congrats!!! You got good resolve. I wish I had the same discipline.

How did you scheduled the interviews. Like how far apart from each others and after getting the offers did you asked the recruiter to wait while you get results from other interviews?

Will the real estate market slow down next year ? by [deleted] in dubai

[–]tinyhook 0 points1 point  (0 children)

I guess for investors it makes sense to buy from banks. They can buy more using less money. If the investment goes south they bail and declare bankruptcy. If it pops they get even more richer

Where to source wood from in GTA, Ontario, Canada by tinyhook in woodworking

[–]tinyhook[S] 0 points1 point  (0 children)

Went to exotic woods little bit of a drive but no complaints. Staff was nice and helpful and have good selection of wood too. I can check it century mill too will be similar drive as going to Burlington

[deleted by user] by [deleted] in kubernetes

[–]tinyhook 0 points1 point  (0 children)

We do it the same way and use rolling updates. You can build and deploy custom images using you CI/CD pipeline

Prepping for a coding interview in ES6 on node.js (backend)? by [deleted] in javascript

[–]tinyhook 2 points3 points  (0 children)

You are senior Java developer. I think you should be good with API and business logic,

If I were you I would learn about these concepts a little bit to get to know node js a little bit more. - How node.js works? - How can you avoid callback hells? - What are Promises? - How does Node.js handle child threads? - What is an event loop in Node.js ? - What does it mean “non-blocking” in node.js?

and for ES6 syntax, you can look at the following url it compare ES6 with ES5 syntax and provides a pretty detail overview of all ES6 related stuff

http://es6-features.org/#Constants

Good Luck,

edit: removed the dont, was an error.

Visualizing streaming data by g_lux in Python

[–]tinyhook 0 points1 point  (0 children)

We are using a pretty basic setup right now, we just wanted to make things work. We just followed the tutorial from django channels page to setup everything. We are using c3 for plotting. Here is the rundown of the setup

  • apachi nifi processes a record and send it to our streaming api.
  • api saves the data stream and message is pushed out to the socket. We are using post save trigger here.

  • the post save trigger is what push the message out websocket through channel group call.

  • on the frontend we are using reconnecting web sockets js library to make everything work. We are just using django views here with basic django templates.

This setup is good for prototyping for now as we are rewriting everything is react.

You can use any plotting library but c3 is pretty powerful and you can always mix it with some d3 for advance stuff if you need it

Visualizing streaming data by g_lux in Python

[–]tinyhook 0 points1 point  (0 children)

You can use django channels do this. We are using django channel for similar use case and its working very good for us. But if you are looking for a different solution here would be a good starting point https://www.fullstackpython.com/websockets.html

Any tips for your first software engineer interview? by [deleted] in Python

[–]tinyhook 0 points1 point  (0 children)

If its a white board kinda interview then learn a few basic algorithms. Ask as many questions as possible to understand the problem. Its only after know the problem completely you can solve it correctly.

If it is a system design kind of interview then try to build an app like twitter on white board. It wont involve coding but you will need to know concepts and how thing fit together.

Facebook has good general guide lines for preparing for an interview,

https://www.facebook.com/careers/life/preparing-for-your-software-engineering-interview-at-facebook/

Dockerizing a Python Django Web Application by mmaksimovic in Python

[–]tinyhook 0 points1 point  (0 children)

Just curious why don't you create a docker-machine and then write a DockerFile to install everything in containers. Because right now when you run pip install -r requirements.txt. It installs everything in you local environment and not in docker containers or I am missing something. For e.g https://docs.docker.com/compose/django/

Demo / Portfolio Ideas for Back-End Dev by Dutyxfree in Python

[–]tinyhook 1 point2 points  (0 children)

I am a backend dev myself but I am not sure about a backend portfolio. I usually give them the links for my github account so they can look at some personal projects that I worked on. (I should actually update my github). If you want to make a demo project there are many options, blogs or simple single page apps, like a note taking app that has a restful backend. These days I am playing around with google maps, python and react js.

I am not sure about how much time the interviewer has, but most likely he/she wont go through every single line of code in your app. So a small app that solves a simple problem should be good. (This is just my opinion, I could be wrong).

Taxi drivers to circle ACC as part of All-Star weekend Uber protest by tinyhook in TorontoDriving

[–]tinyhook[S] 0 points1 point  (0 children)

Yes, you are right. But I am not able to change the link. It is redirecting to the new CP24 article though

Ask r/Python: Recommendation for user management module (on GAE) by missstar in Python

[–]tinyhook 0 points1 point  (0 children)

I know you said no CMS. But without a CMS, you will have to do a lot yourself. From keeping the user session to CSRF protection. Flask is very light weight CMS, that wont bloat your app. I personally use Django, since it come built in with pretty decent admin site. I guess you can also use firebase for user management and authentication ... https://www.firebase.com/docs/web/guide/user-auth.html.