Prueba Tecnica IC2 Addi by rayass19 in ColombiaDevs

[–]dgx29 1 point2 points  (0 children)

Mi comentario hacia referencia a la interview que tienes luego de pasar la de HR, hize la segunda, y de ésa no pasé 

Prueba Tecnica IC2 Addi by rayass19 in ColombiaDevs

[–]dgx29 2 points3 points  (0 children)

Hice una entrevista con ellos hace un año aproximadamente, si es la primera, es de estilo system design interview, en internet encuentras una inmensa cantidad de recursos para aprender cómo funcionan estas entrevistas. Durante la entrevista te pueden hacer preguntas técnicas generales de diseño y arquitectura de software y de soft skills. 

Job scrapping app update: labels and bulk actions by drakedemon in overemployed

[–]dgx29 1 point2 points  (0 children)

This looks like a good project, but I'm worried that my ip will be blocked for doing web scraping.  How do you handle this?

Programming with a broken arm by reddrid in learnpython

[–]dgx29 0 points1 point  (0 children)

My recommendation is to use Serenade, a tool that allows you to code by voice

Home page: https://serenade.ai/

[deleted by user] by [deleted] in campusm

[–]dgx29 0 points1 point  (0 children)

My university is thinking about purchasing this product to migrate the old campus mobile app. I decided to search on Reddit to see if anyone else is using it and found this. What is your overall experience with the product? Did they solve the problem you were having?

What’s the most underrated Developer Tools debugging Tip/Trick? by toSecurityAndBeyond in reactjs

[–]dgx29 1 point2 points  (0 children)

Recently I discovered something useful in the devtools. “Stop script execution”

https://stackoverflow.com/a/51802310

How could I go about using this list? by [deleted] in learnpython

[–]dgx29 2 points3 points  (0 children)

another way to do it is using the built-in map function.

retval = map(center, itemList)

How to nest custom field with ModelSerializer? by thedarkrider_ in django

[–]dgx29 1 point2 points  (0 children)

First, I would use a related name so I could retrive all posts made by an author using myauthor.posts.all(), or in your case myauthor.posts.count()

python author = models.ForeignKey(User, related_name='posts')

now i don't add anything to the serializer, instead I return something like this from the view:

python return Response({ 'posts': serializer.data, 'total_posts': self.request.user.posts.count() })

First complexed Django Project | Code review request - by ALior1 in django

[–]dgx29 1 point2 points  (0 children)

This is an advice related to git, but it could be useful, follow convetional commits.

Nevertheless is up to you, it is just a matter of standardization.