A .gitignore magician in your command line. Joe generates .gitignore files from the command line for you.
Quick announcement : I've changed my Github username this morning from thekarangoel to karan.
While my old profile will give a 404, links to repos should be automatically redirected.
While my old profile will give a 404, links to repos should be automatically redirected.
Recently, I was solving the Happy Numbers project from my Projects collection (a top repo on GitHub for a few weeks now). A major part of the problem was finding sum of square of digits of a number.
Nifty, little one-liner I learned today. Instead of doing this:
def func(foo):
if foo == 0:
return "bar"
else:
return "baz"
You can simply do this:
def func(foo):
return "bar" if foo == 0 else "baz"
Pretty cool for those who didn't know.
def func(foo):
if foo == 0:
return "bar"
else:
return "baz"
You can simply do this:
def func(foo):
return "bar" if foo == 0 else "baz"
Pretty cool for those who didn't know.
Hey guys and gals
Just a plug here. My repo: https://github.com/thekarangoel/Projects
was one of the trending repos on Gh this week and I thought folks
on this list might be interested in knowing about it.
Just a plug here. My repo: https://github.com/thekarangoel/Projects
was one of the trending repos on Gh this week and I thought folks
on this list might be interested in knowing about it.