Mostly, I used to found java programmers having difficulties with getting date and time. Other programming languages have straight forward way to access date and time from the computer. But in java it is bit difficult; We have to use…
Programming
Php function to format the number in Nepalese currency format
by Rupak • • 0 Comments
Find the source in Gist Use is very simple // calling // if you need the number format in unicode format then call using money_format_nep(“12121244”,true); // if you dont need unicode characters then just pass false money_format_nep(“12121244”,false); https://gist.github.com/rupakraj/2ff589c2cc3fc23c8ad3
Generic programming
by Rupak • • 0 Comments
Generic are getting popularity in the current context. By definition generics are nothing, its just a way of drifting the code say function in such a way that can be used for multiple , we don’t need to reproduce same…