Random

LetsBonus – Daily deals with discounts

LetsBonus was the first European company to ride the group buying wave. The startup offers daily deals with discounts of up to 70% on activities like gourmet dinners, luxury spas, romantic escapes and travel. Recently, the spanish site added exclusive products among their daily offers. LetsBonus has a team of more than 550 employees and now has offices in Barcelona, Madrid, Valencia, Rome, Milan, Lisbon, Buenos Aires, Mexico DF, Santiago de Chile, Bogota and Montevideo.
Read More

FancyBox – Beauty Ecommerce

Fancybox offers consumers the chance to live a complete beauty experience, from discovering new products that they can try before buying, to be informed of all the new trends and must haves. All this, of course, around a complete online beauty store offering more than 6.000 products from over 175 of the most well known brands, and at the best price. Also, a local celebrity is the co-founder and brand ambassador of the brand in each country  
Read More

CornerJob – Recruitment App

CornerJob is the leading mobile hiring app based on simplicity, interaction and immediacy, empowering companies through mobile technology. CornerJob's mission is both, for companies to empower them with mobile technology and multiple disrupting features in order for them to find the right candidate in the shortest period of time, and for candidates to find the right job in the same short timeframe. It is basically a job matching platform that enables users to find geolocated job offers, apply to them, chat directly with the recruiters and get an answer in 24 hours. For companies, it represents the perfect recruiting channel…
Read More

Strace Examples to Debug the Execution of a Program in Linux

Strace is a debugging tool that will help you troubleshoot issues. Strace monitors the system calls and signals of a specific program. It is helpful when you do not have the source code and would like to debug the execution of a program. strace provides you the execution sequence of a binary from start to end. This article explains 7 strace examples to get you started. 1. Trace the Execution of an Executable You can use strace command to trace the execution of any executable. The following example shows the output of strace for the Linux ls command. $ strace…
Read More

Most Common Mistakes That PHP Developers Make

PHP makes it relatively easy to build a web-based system, which is much of the reason for its popularity. But its ease of use notwithstanding, PHP has evolved into quite a sophisticated language with many frameworks, nuances, and subtleties that can bite developers, leading to hours of hair-pulling debugging. This article highlights ten of the more common mistakes that PHP developers need to beware of. Common Mistake #1: Leaving dangling array references after foreach loops Not sure how to use foreach loops in PHP? Using references in foreach loops can be useful if you want to operate on each element…
Read More

How to protect PHP from running out of memory

Poor programming could result in the script running out of memory rather quickly, there are a great deal of factors that could cause this – not just improper programming techniques but lack of knowledge in what affects memory. Because of this I’ve decided to write a few notes and tips on improving performance and memory usage. Memory for PHP is cleared up my PHPs garbage collector. Sadly the garbage collector is a little lazy. In fact, it never seems to get to work on time and as a result memory is not freed quick enough for the scripts to progress.…
Read More
Detrack – How a Valentine’s Day catastrophe turned into a business idea

Detrack – How a Valentine’s Day catastrophe turned into a business idea

It’s Valentine’s Day. Your ‘special someone’ has made it quite clear they’re expecting flowers. So you do the decent thing and pony up for a lovely bouquet to be delivered to them. As the day arrives, you start getting antsy. Have they delivered it yet? Maybe you should call the delivery people to find out. “Have you delivered the flowers yet? My order number? Hold on…oh you need to call your driver to find out? Okay I’ll wait.” This goes on for several hours. Now think of the delivery driver. He’s receiving calls every few minutes from the company, asking…
Read More
NFS Server and client configuration Centos

NFS Server and client configuration Centos

NFS Server side configuration Create directory which you want to share mkdir -p /nfsshare yum install nfs-utils rpcbind nfs-utils-lib chkconfig rpcbind on chkconfig nfs on chkconfig nfslock on service rpcbind start service nfs start or /etc/init.d/nfs start service nfslock start define allowed IPs on server lets suppose Server IP : a.a.a.a Client IP : b.b.b.b vi /etc/hosts.allow mountd: 127.0.0.1 b.b.b.b mkdir -p /nfsshare chown -R nfsnobody.nfsnobody /nfsshare chmod -R 750 /nfsshare or chown -R 65534:65534 /nfsshare chmod -R 755 /nfsshare vi /etc/exports /nfsshare           b.b.b.b(rw,sync,no_root_squash,no_subtree_check) or /nfsshare   b.b.b.b/255.255.255.255(rw,sync,no_wdelay,all_squash) exportfs -a service nfs restart   (The no_root_squash option…
Read More