Recent posts

[Java] Variable Arguments in java?!

less than 1 minute read

From these posts, you’ve learned that python supports getting unfixed number of multiple parameters in functions. Dealing with multiple parameters in python ...

Safe removal of previous commits

1 minute read

How to unstage your previous commits (safely) You can see every commit on you branch by: $ git log and exit the log by q

[Python] lambda Vs. def

2 minute read

Recently, while solving math problems for many hours I ended up getting sick of solving simple calculation at the end of one problem, so I tried making a sim...