Skip to content

Instantly share code, notes, and snippets.

View rupakraj's full-sized avatar

Rupak Raj Ghimire rupakraj

View GitHub Profile
@rupakraj
rupakraj / django-setup
Created January 25, 2015 08:34
Setup the Django and run upto hello world
Setup the Django and run upto hello world
=========================================
Install python and python-pip
then use the pip to install the python
pip install Django==1.7.3
To check if installed properly (Go to pythong CLI)
@rupakraj
rupakraj / django-setup
Created January 25, 2015 08:33
Setup the Django and run upto hello world
Setup the Django and run upto hello world
=========================================
Install python and python-pip
then use the pip to install the python
pip install Django==1.7.3
To check if installed properly (Go to pythong CLI)
@rupakraj
rupakraj / format_nepali_money
Created July 13, 2014 03:11
Php function to format the money in Rs. (Nepali)
function money_format_nep($number, $is_unicode=true)
{
//number_format($number,".");
if(strstr($number,"-"))
{
$number = str_replace("-","",$number);
$negative = "-";
}