Thursday, December 21, 2017

2018 Bank Holidays In India

List of bank public holidays for the year 2018. In India, every 2'nd Saturday and 4'th Saturday of month as public holiday for banks.




January 26 (Friday) : Republic Day 

February 13 (Tuesday) : Maha Shivratri 
March 2 (Friday) : Holi 
March 29 (Thursday) : Mahavir Jayanti 
March 30 (Friday) : Good Friday 
April 1 (Sunday) : Annual Closing of Bank Accounts
April 30 (Monday) : Buddha Purnima 
May 1 (Tuesday) : May Day 
June 16 (Saturday) : Id-ul-Fitr 
August 15 (Wednesday) : Independence Day 
August 22 (Wednesday) : Eid al-Zuha 
September 3 (Monday) : Janmashtami 
September 13 (Thursday) : Ganesh Chaturthi 
September 21 (Friday) : Muharram 
October 2 (Tuesday) : Mahatma Gandhi Jayanti 
October 18 (Thursday) : Maha Navami 
October 19 (Friday) : Vijaya Dashami 
November 6 (Tuesday) : Deepavali 
November 7 (Wednesday) : Diwali 
November 21 (Wednesday) : Eid-e-Milad 
November 23 (Friday) : Guru Nanak Jayanti 
December 25 (Tuesday) : Christmas 

Tuesday, December 12, 2017

How to purchase bitcoin in India - Zebpay Review

Are you suffering in bitcoin fever? Are you plan to purchase bitcoin in India and want to know about bitcoin purchase and selling? Here is your answer
What is Bitcoin ?
Before investing in bitcoin first know about it at-least little bit. Bitcoin was invented by Satoshi Nakamoto in 2009. Bitcoin is a cryptocurrency, or a digital currency. It uses the rules of cryptography for the regulation and generation of units of currency. It is commonly called a decentralized digital currency through internet. We can't see that how its generates and we don't know where it stores. Bitcoins used to purchase goods and services online. Hope value of bitcoin increases over the year.  

How Bitcoin works? 
Bitcoins are completely virtual coins designed to be self-contained for their original value. Bitcoins no need banks to store the money.  Once you own bitcoins, value and trade is just as like gold in your pocket. 

Where to buy bitcoin in India?

Am not recommending to use zebpay for bitcoin purchase. Am just give sharing and giving suggestion about zebpay for bitcoin trading. Its your own risk to invest in bitcoin subject to market risk.


How to create Bitcoin account in zebpay ?

First, verify your account by uploading following documents with more quality image. Verification process generally takes few hours, in max it can take upto 3-4 business days. We need to use android or iOS app only to trade bitcoin in zebpay.
1. Pancard front side
2. Aadhar card front and back side
3. Bank passbook / cancelled cheque. If don't have passbook or chequebook take header of of your bank statement with high quality.

How to purchase bitcoin in zebpay?

We have to deposit as INR in Zebpay Wallet. While buying and sending Bitcoins, transaction fees is applied. There are three methods to deposit money. Transaction fees applied and varies baed on deposit type

Express Transfer: Min: INR 21, Max: INR 1k 
Normal Transfer: Min: INR 5k, Max: INR 20k
Payment Gateway: Min: INR 2.5k, Max: INR 50k
Once money received in wallet then start purchasing bitcoins. Check market price to purchase with your own risk. 

How to sell bitcoin in zebpay?
Sell bitcoins based upon price or bitcoin units in your zebpay mobile app. While selling check the market price and your purchased price with transaction fees. Buying and selling bitcoin price changes dynamically form 20k-50k depend upon market demand.

How to  transfer bitcoin in zebpay?
Sending Bitcoins using email address of Zebpay to Zebpay costs no money. However, for sending to another BTC address, you may have to give away min 0.0002 BTC. 


How to bid bitcoin in zebpay?
If you want to buy bit coin when price drops, you don't want to wait for long time in online. Set bid amount and wait price drop. It takes days or months depend upon market value.
While selling also you can bid to set high price from current market price. It should not exceed 50k from selling price in market

How to withdraw bitcoin in zebpay?
Just click on Withdraw in your mobile app, and your money should be transferred to Bank account linked with your zebpay account. It costs 10 INR as transaction fee to do that. If you transfer 1000 INR, you'll get 990 INR in account.

Monday, December 4, 2017

iPhone 6 Plus | How to Fix Vertical Blue Lines | Unresponsive Screen not...

Sunday, November 19, 2017

What to do when lost credit card ?

Lost your credit card in your travel or anywhere with wallet. Don't be panic suddenly, lets see what we need to do further.



1. Call to credit card help line and block your card.
2. If unable to contact credit card help line do following.

  • Few banks provided option to block credit card through online net banking.
  • Get help form your friends to get credit card helpline if you don't have internet to search. In tension you can't get correct number from internet while you search.
  • Few banks (Eg:HDFC Bank) call you if CVV number enter wrong in online purchase. Try wrong CVV number in online purchase and speak with bank agent to block card when they call you. 
3. Apply credit card insurance to redeem fraudulent money.
4. Always spend few mins time to verify your credit card bill.
5. If possible load your money to online wallet if required emergency purchase after lost card before blocking.

Second Income



Income is necessary for everyone, but with single income we can't reach our goals easily in this economical world. Lets see few points about second income and savings in this post.












As a common man 6-10 hrs week days works will not help to become rich with single income. Have to make second income to manage our economical needs. To get second income we need to find additional source.

  • Investing share market is high risk, so we can try mutual funds.
  • Need to save a part from our income each month. Need to keep 20% in bank, 20% in shares & 10% for emergency needs.
  • Implement innovative ideas in your business to compete the market.
  • Avoid unnecessary expenses from your pocket.






Monday, April 24, 2017

Bill Desk credit card payment links for all banks

Friday, January 27, 2017

How to delete entity from coredata in ios using swift

Use this code to delete all entity from coredata in iOS using swift language



Core Data:
func deleteAllData(entity: String)
{
    let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
    let managedContext = appDelegate.managedObjectContext
    let fetchRequest = NSFetchRequest(entityName: entity)
    fetchRequest.returnsObjectsAsFaults = false

    do 
    {
        let results = try managedContext.executeFetchRequest(fetchRequest)
        for managedObject in results
        {
            let managedObjectData:NSManagedObject = managedObject as! NSManagedObject
            managedContext.deleteObject(managedObjectData)
        }
    } catch let error as NSError {
        print("Detele all data in \(entity) error : \(error) \(error.userInfo)")
    }
}
Implementation:
//Call this method
self.deleteAllData("your_entityName")