Skip to content

Instantly share code, notes, and snippets.

View samratmazumder91's full-sized avatar

Samrat Mazumder samratmazumder91

View GitHub Profile
@samratmazumder91
samratmazumder91 / n2w.php
Last active August 29, 2015 14:17
Number to Word Conversion
<?php
function n2w($a){
$word = array();
$deno = array(1000=>'hundred',100000=>'thousand',10000000=>'lac',1000000000=>'crore');
$ones = array(1 => 'one',2 => 'two', 3 => 'three', 4 => 'four', 5 => 'five', 6=>'six',7=>'seven',8=>'eight',9=>'nine');
$tens = array(1 => 'ten',2 => 'twenty', 3 => 'thirty', 4 => 'forty', 5 => 'fifty', 6=>'sixty',7=>'seventy',8=>'eighty',9=>'ninety');
$exception = array(1 => 'eleven',2 => 'twelve', 3 => 'thirteen', 4 => 'fourteen', 5 => 'fiveteen', 6=>'sixteen',7=>'seventeen',8=>'eighteen',9=>'nineteen');
<h1>Flickr Loading Animation</h1>
<div class="loader">
<i class="dot-pink"></i>
<i class="dot-blue"></i>
</div>
<p>…as seen in the new Flickr iOS app.</p>
@samratmazumder91
samratmazumder91 / default
Created February 9, 2015 07:13
Apache host configuration file
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks