Posts

Happy Birthday /** * Today, the 13th day of August, is your birthday. * So I created a page to celebrate this extraordinary day. */ Girl u = new Girl( "May Zhao" ); // Aug 13th, when the bell rang, your age increased Date currentTime = new Date(); SimpleDateFormat formatter = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss" ); String dateString = formatter.format(currentTime); if( dateString.equals( "2013-08-13 00:00:00" ) ){ u.age ++; } // Our blessing will be with you simultaneously. new Thread (){ @Override // Forever and ever. I wish while(true){ // luckiness, u.fortune ++; // happiness, u.happiness ++; // and everything you wish can be achieved. }.start() // The last thing I wanna say, boring and ordinary, is: System.out.println( "Happy Birthday !" ); ...

Cloud Service Provider

Image
CLOUD SERVICE PROVIDER: Cloud service provider is commonly termed as CSP. It is a company that provides some parts of cloud computing which are: i. IaaS: infrastructure as a service ii. SaaS: Software as a service iii. PaaS: Platform as a service IaaS: this model will provide infrastructure parts which will otherwise exist in an on premises data center. It is used for the services like monitoring, security, load balancing and storage resiliency. SaaS: it offers wide range of array technologies which includes productivity suites, customer relationship management (CRM) software and human resources management (HRM) software all of which SaaS vendor hosts makes available over the Internet. PaaS: this type of cloud service provider provides cloud infrastructure and services which can be access by users to do various works or functions. It gives more service than IaaS cloud service provider such as operating systems and middleware to underlying infrastructure. GIVEN BELOW SOME NAM...