Satish

Forum Replies Created

Viewing 15 posts - 196 through 210 (of 279 total)
  • Author
    Posts
  • in reply to: Payment Gateway for my website Carefree Parenting#1380
    Satish
    Keymaster

    Transaction of Rs. 49.06 made on SBI credit card xxx xxx xxx xxxx xxxx at GOOGLE on x xxx xx.

    So a fee of Rs 49.06 will be deducted from our credit card once we signup for Google Wallet.

    Just to let everyone know.

    in reply to: Payment Gateway for my website Carefree Parenting#1379
    Satish
    Keymaster

    Vinita,

    You could make use of Google Check out. I use PayPal to accept payment from my foreign clients; To send money, I have to use my credit card. Indian clients either send me a Demand Draft or Cheque or they transfer the payment directly to my bank account by getting my account number.

    I have SBI credit card, and I would recommend it:

    You have to keep a minimum fixed deposit of 20,000 Rs; for which I got 9% interest. That is I’ll get interest for the amount I keep as fixed deposit. And using my credit card I can access(pay) this 20,000Rs and pay to other people / services.

    I’ll have upto 60 days time to clear the credit.
    And you can apply for online banking for free in SBI. Even if there are hidden charges, it wont exceed 500Rs!

    Make sure to clarify all these things with your local SBI branch.

    And I’ve heard that ICICI also has similar plans available. So you can communicate with these two banks.

    ps: Just now saw that Google Checkout has been changed to Google Wallet, where people can pay for all the things Google Sell -> android apps ( android marketplace ), Google Videos, and their Online Store etc.


    Google wallet

    Sign up for Google Wallet account and follow this link to provide Google Checkout button for your customers to buy your products http://checkout.google.com/seller

    in reply to: Perform Binary Addition : I/P to the function#1372
    Satish
    Keymaster
    
    #include<stdio.h>
    #include<conio.h>
    #include<stdlib.h>
    
    long bintodeci(long n)
    {
      int base = 1, rem;
      long res = 0;
    
      while( n > 0 )
      {
        rem = n % 10;
        res = res + rem * base;
        base= base * 2;
        n   = n / 10;
      }
      return(res);
    }
    
    long decitobin(long n)
    {
      int base = 1, rem;
      long res = 0;
    
      while( n > 0 )
      {
        rem = n % 2;
        res = res + rem * base;
        base= base * 10;
        n   = n / 2;  
      }
      return(res);
    }
    
    
    char* binaryadd(const char *a, const char *b)
    {
      long no1, no2, res;
      char *ep;
    
      no1 = atol(a);
      no2 = atol(b);
    
      no1 = bintodeci(no1);
      no2 = bintodeci(no2);
    
      res = no1 + no2;
    
      res = decitobin(res);
    
      ltoa(res, ep, 10);
     
      // printf("%ld", res);
    
      return(ep);
    }
    
    
    void main()
    {
      char *result;
      clrscr();
    
      result = binaryadd("100", "111");
      
      printf("Result = %s", result);
    
      getch();
    }
    
    in reply to: Adobe Photoshop Express: android app#1361
    Satish
    Keymaster

    Open the app, goto settings and hit More….there you can set the automatic upload feature ON. Which will upload the photos taken from your camera immediately to photoshop website and hence those pics will always be with you..even if you lose the phone.

    Satish
    Keymaster

    “Govindaya Namaha” Kannada Movie Review



    Satish
    Keymaster

    Making At Bijapur Fort:

    With Komal: Part 1



    With Komal: Part 2



    With Komal: Part 3



    in reply to: Payment Gateway for my website Carefree Parenting#1332
    Satish
    Keymaster

    yes you are right:

    Indian government regulations do not allow payment from one Indian account to another using PayPal.

    In this case you can use some other payment gateways and get money directly to your Indian bank account.
    You can make use of service like: ccavenue.com for this.


    ccavenue and WordPress

    Using this gateway, you can accept payment from both India and international clients/customers.
    Customers can use their debit card, credit card, through their online bank account, mobile banking system etc.

    Major players like ICICI, SBI, Axis Bank (formerly UTI Bank), Citibank, United Bank of India, Done Card, SBH, State Bank of Mysore, Andra Bank, Tamilnad merchantile bank ltd, Indian overseas Bank, ING Vysya Bank etc.

    in reply to: Advertise/list your product on Amazon's Junglee.com#1330
    Satish
    Keymaster

    In future they may charge upto 20% or 30% of the cost for listing your product. But for now, listing the product is completely FREE.

    in reply to: Viral Advertising from 'The Hindu'#1324
    Satish
    Keymaster



    in reply to: Viral Advertising from 'The Hindu'#1323
    Satish
    Keymaster



    in reply to: Excellent Quotes by Warren Buffet: Finance#1321
    Satish
    Keymaster

    “I always knew I was going to be rich. I don’t think I ever doubted it for a minute” – Warren Buffett

    in reply to: Sigandur Trip: Technotip Team#1320
    Satish
    Keymaster

    Finally we finished the trip.. it was a nice experience. 15hrs of journey was tiresome; but worth it.

    Sigandur Trip Photos: Technotip

    in reply to: Sigandur Trip Photos: Technotip#1318
    Satish
    Keymaster

    Basavaraj & Satish

    in reply to: Sigandur Trip Photos: Technotip#1317
    Satish
    Keymaster

    Chetan and Basavaraj Sir

    in reply to: Sigandur Trip Photos: Technotip#1316
    Satish
    Keymaster

    .. with Chetan

Viewing 15 posts - 196 through 210 (of 279 total)