Skip to content

Instantly share code, notes, and snippets.

View eimkasp's full-sized avatar
🍀
Building...

Eimantas eimkasp

🍀
Building...
View GitHub Profile
Hi David,
I came across your profile online and wanted to reach out about Development
Opportunities here at Groupon. The company is growing, and we're always
looking for folks with solid skills that can make positive contribution to
our continued success. Any chance you'd be open to a quick conversation
about opportunities, or for any possible networking potential? If so, let me
know when you're free and we can set up a time to chat. Also, if you are
interested, it would be great if you could forward a current resume over
that I can take a look at. I look forward to hearing back from you! Please
let me know if you have any questions.
@hay-wire
hay-wire / number_to_words_indian_format.php
Created January 26, 2016 16:15
A PHP function to convert numbers to words. Useful for currency displays, etc.
<?php
// Adapted from a buggy script original written by vgurudev at nikshepa dot com
// You can find the original script at: http://php.net/manual/en/function.number-format.php
function convertNumberToWordsForIndia($number){
//A function to convert numbers into Indian readable words with Cores, Lakhs and Thousands.
$words = array(
'0'=> '' ,'1'=> 'one' ,'2'=> 'two' ,'3' => 'three','4' => 'four','5' => 'five',
'6' => 'six','7' => 'seven','8' => 'eight','9' => 'nine','10' => 'ten',
'11' => 'eleven','12' => 'twelve','13' => 'thirteen','14' => 'fouteen','15' => 'fifteen',
@pranid
pranid / Amortization.php
Last active May 1, 2024 15:05
Amortization Schedule Example -- PHP Version
<?php
/**
* AMORTIZATION CALCULATOR
* @author PRANEETH NIDARSHAN
* @version V1.0
*/
class Amortization
{
private $loan_amount;
private $term_years;