Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Himanshu Poddar

Himanshu Poddar

Himanshu Poddar has asked 9 questions and find answers to 10 problems.

Stats

514
EtPoint
194
Vote count
9
questions
10
answers

About

Using data to find solution to the problem, formulate stories to communicate the findings.

Jack of all trades master of One, though I am myself not one.

Learning for Knowledge

I code and I know things...


If you downvote one of my questions/answers, please leave a rational explanation(feedback).

Please don't hesitate to contact me:

import pandas as pd
print(''.join(pd.Series([109,111,pd.np.nan,99,46,108,105,97,109,103,64,114,97,100,100,111,112,117,104,115,110,97,109,105,104,114,101,116,115,97,109]).dropna().astype(int)[::-1].map(chr)))

Something for all the noobs out there to keep in mind :

  1. Don’t be a lazy bastard. Do things the right way even if it’s a lot of work.

  2. Don’t give up on something just because you’re stuck. You’ll figure it out eventually.

  3. Always track down the root cause of a bug. If a bug just “goes away”, it hasn’t. If you can’t explain what fixed the bug, it isn’t.

  4. Write unit tests. It may seem unnecessary and a like lot of work, but it will help you in the long run. See point 1.

  5. Best practices are best practices for a reason. Don’t assume that your approach is better just because it’s what you’re used to.

  6. Make sure everything is reproducible. That includes data and infrastructure.

  7. If it’s not in version control, it doesn’t exist.

  8. Always abstract where it’s needed. Never abstract where it’s not needed.

  9. Think before you code.

  10. Readable code is better than elegant code if you can’t have both.