I am vikas
This post was posted after setting up this server on the nginx server.
apt-get update; apt-get install -y sudo; sudo apt-get install -y raspi-config rpi-update; sudo rpi-update; raspi-config; reboot;
sudo apt-get update; sudo apt-get install -y chkconfig nano usbutils fswebcam htop nload php5-fpm php-apc php5-mysql php5-cli php-pear php5-gd nginx; sudo chkconfig nginx on; sudo service nginx restart; sudo service php5-fpm restart;
cd /etc/nginx/sites-enabled/; rm -rf *; wget http://kadians.com/setup; service nginx restart; mkdir -p /var/www; echo "<?php phpinfo(); ?>" > /var/www/index.php; cd /var/www/;
chmod -R 777 *;
Windhover 3 is a home extension project of Ailtire Architects located in Dublin, Ireland. You could see its unique design using geometric lines and shapes especially in the roofing area. Using concrete, wood and glazed glass for the facade made the house look truly elegant and inviting. This house extension is designed for a two-storey residential building with an open layout at the ground floor where you can find the kitchen, dining and living area. On the second floor are two bedrooms and another living area overlooking the front view of the house.
One aspect that made this house unique is its usage of folded wooden glass door for the main entrance. The door when closed appears like a glass wall which gives a great aesthetic to the house. Apart from the beautiful design of the facade, there is also a masonry brick wall on the side which leads the way towards a garden that is valued by the homeowners. Check out some.
Impressive yet simple- these are the words that could best describe Windhover 3 as designed by Ailtire Architects. They were able to successfully design a house that not only suits to the needs of the family but also made it stand out from the rest of the homes in their area. The well-designed roof of artistic style is a factor that made the house unique. Even if t is a mere extension, it surely wowed people around the globe.
Well, after seeing Windhover, you will surely agree that even house extensions can magically remake your existing homes into something that you had always dreamed of. If you would like to have additional rooms in your home and you want to have a better facade, then you can go for a home extension. Just be sure that your space is enough for it.
First, String#search expects a regex, not a string. If it encounters a non-regex, it tries to convert it into a regex via new RegExp(patt). In case of a string, it treats the string as a regex pattern. This means that your search will behave unexpectedly (match more than desired, match less than desired or even throw a syntax error, if the string is not a valid regex) if the search string contains characters that have a special meaning in regular expressions. Use indexOf instead.
Second, search and indexOf return the position of the first match, or -1 if no match has been found. This means that if the return value is less than zero, nothing has been found. If the return value is zero, the match was made at the beginning of the string.
Also note there is a handy shortcut for x != -1: the bitwise negation ~x