Sunday, July 29, 2018

Business Loans





Business Loans

Women Owned Business SBA


Women Owned Business - NERD Wallet


StreetShares For working capital up to $150,000, is a good choice for term loans, with APRs starting at 9%.


Credibility Capital If you need more than $150,000, try Credibility Capital.

Monday, December 15, 2014

Thiruppavai munnadi/pinnadi

 

 

1  marghazhi

2  vaiyathu

3  Oongi Ulagalandha

4  Azhi mazhai

5  maayanai

6  pullum silabina kaan

7  keechu keechu

8  keezh vaanam 

9  Thoomani madam

10 Notru suvarkam

11 Kattru Karavai

12 kanai thilam katrerumai

13 pullin vaai keendanai

14 ungal puzhakadai

15 elle ilangiliye

16 nayaganai

17 ambarame

18 undhu mdhagalirru

19 kutthu vilakku

20 muppathu moovar

21 Yetra kalangal

22 Anganma nyalathu

23 maari malai

24 annu ivulagam

25 oruthi maganai

26 male manivanna

27 koodarai

28 karavaigal

29 chitrram

30 vangam  

 

 

 

http://www.youtube.com/watch?v=axd8mN9yWTo

 

Wednesday, July 09, 2014

The List

John Wyne Hatari

Saps at sea

Laurel Hardy

Jerry Lewis - Several 

Sound of Music

Evening in Paris

Chitti Chitti Bang Bang

Those Magnificent men with their flying machines

Sangam

Love in Tokyo 67

Aradhana

Poseidon Adventure

Towering Inferno

Guns of Navrone

Diamonds are for ever

Ssssnake

Saturday, April 05, 2014

Code to spawn a process

Java
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Paths;
public class ec {
   public static void main(String[] new_dir){
    Runtime rt = Runtime.getRuntime();
    try {
        rt.exec(new String[]{"calc","start"});
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
C++
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#include <windows.h>
#include <stdio.h>
#include <tchar.h>
void _tmain( int argc, TCHAR *argv[] )
{
    STARTUPINFO si;
    PROCESS_INFORMATION pi;
    ZeroMemory( &si, sizeof(si) );
    si.cb = sizeof(si);
    ZeroMemory( &pi, sizeof(pi) );
    // Start the child process.
    if( !CreateProcess( NULL,   // No module name (use command line)
        "calc",     // Command line
        NULL,           // Process handle not inheritable
        NULL,           // Thread handle not inheritable
        FALSE,          // Set handle inheritance to FALSE
        0,              // No creation flags
        NULL,           // Use parent's environment block
        NULL,           // Use parent's starting directory
        &si,            // Pointer to STARTUPINFO structure
        &pi )           // Pointer to PROCESS_INFORMATION structure
    )
    {
        printf( "CreateProcess failed (%d).\n", GetLastError() );
        return;
    }
    // Wait until child process exits.
    // WaitForSingleObject( pi.hProcess, INFINITE );
    // Close process and thread handles.
    // CloseHandle( pi.hProcess );
    // CloseHandle( pi.hThread );
    return;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Tuesday, June 18, 2013

Inspiring Quotes



Listening
1) "When people talk, listen completely. Most people never listen." - Ernest Hemingway
2) "The most basic of all human needs is the need to understand and be understood. The best way to understand people is to listen to them." - Ralph Nichols

Storytelling
3) "Storytelling is the most powerful way to put ideas into the world today." -Robert McKee
4) "If you tell me, it's an essay. If you show me, it's a story." —Barbara Greene

Authenticity
5) "I had no idea that being your authentic self could make me as rich as I've become. If I had, I'd have done it a lot earlier." -Oprah Winfrey
6) "Authenticity is the alignment of head, mouth, heart, and feet - thinking, saying, feeling, and doing the same thing - consistently. This builds trust, and followers love leaders they can trust." -Lance Secretan

Transparency
7) "As a small businessperson, you have no greater leverage than the truth." -John Whittier
8) "There is no persuasiveness more effectual than the transparency of a single heart, of a sincere life." -Joseph Berber Lightfoot

Team Playing
9) "Individuals play the game, but teams beat the odds." -SEAL Team Saying
10) "Alone we can do so little; together we can do so much." - Helen Keller
Responsiveness
11) "Life is 10% what happens to you and 90% how you react to it." -Charles Swindoll
12) '"Your most unhappy customers are your greatest source of learning." - Bill Gates

Adaptability
13) "When you're finished changing, you're finished." -Ben Franklin
14) "It is not the strongest of the species that survive, nor the most intelligent, but the one most responsive to change." –Charles Darwin

Passion
15) "The only way to do great work is to love the work you do." -Steve Jobs
16) "I have no special talents. I am only passionately curious." -Albert Einstein

Surprise and Delight
17) "A true leader always keeps an element of surprise up his sleeve, which others cannot grasp but which keeps his public excited and breathless." -Charles de Gaulle
18) "Surprise is the greatest gift which life can grant us." - Boris Pasternak

Simplicity
19) "Less isn't more; just enough is more." -Milton Glaser
20) "Simplicity is the ultimate sophistication." -Leonardo daVinci

Gratefulness
21) "I would maintain that thanks are the highest form of thought, and that gratitude is happiness doubled by wonder." -Gilbert K Chesterton
22) "The essence of all beautiful art, all great art, is gratitude." -Friedrich Nietzsche
Leadership
23) "Management is doing things right; leadership is doing the right things." — Peter F. Drucker
24) "If your actions inspire others to dream more, learn more, do more and become more, you are a leader." —John Quincy Adams
25) "Leadership and learning are indispensable to each other." —John F. Kennedy





Thursday, December 23, 2010

UNIX bash script to send thousands of email messages to any address

#---------- Unix shell script that will send 10,000 messages to one single Email ID ---------
#
#!/bin/bash
for i in {1..10000}
do
echo Test Message $i |mailx -s "Test Email Message $i" abcd@company.com
done
#
#----------------------------------------------------------------------------------------------------------------

Wednesday, February 10, 2010

wordpress plugins