public marks

PUBLIC MARKS from calipussoftware with tag #calipus

08 April 2015

Divorce notice on Facebook? It is doable?

We always show our love on social networking sites for our loved ones like facebook and twitter but do we show our hatred on facebook, yes. In a recent case ruling by Manhattan Supreme Court Justice Matthew Cooper is making headlines for allowing Ellanora Baidoo, a nurse living in Brooklyn, NY, to serve her husband divorce papers via Facebook.

"Operator" will find solution for you

Do you want a messaging app which understands your interests and queries, which allows you to enter only necessary words and it will understand your needs itself. Uber Co-founder's Start up "Operator" is such kind of app which is designed in a smarter way which will solve much complex queries like, "give me a pair of new shirt which are reasonable in price, and comfortable in every weather".

06 April 2015

Sales of the Apple Watch are blocked in Switzerland — at least for now.

(via)
'There is already a patent for the word "Apple" appearing on a watch in the country', according to a story on the website for Swiss television network RTS. Apple Watch reportedly blocked in Switzerland over patent, at least for now.

20 February 2015

What is spl_autoload_register, spl_autoload and autoload

(via)
PHP does have some awesome function which can be very handy. SPL register function is one of them, we are going to talk about. As PHP manual says spl_autoload_register — Register given function as __autoload() implementation So what exactly it means ? Let’s try to understand with the help of an example. function Autoloader($className) { require_once $path.$className.'.php'; } spl_autoload_register('Autoloader'); $myObj = new MyClass(); Here we have just instantiated a class named as “MyClass” with out specifying include or require statements.