Simple!
$images = glob('/folder/*.{jpg,jpeg,gif,png}', GLOB_BRACE);
Continue reading Scan a directory and retrieve images with PHP
Simple!
$images = glob('/folder/*.{jpg,jpeg,gif,png}', GLOB_BRACE);
Continue reading Scan a directory and retrieve images with PHP
Polo menos douscentos cincuenta mil vigueses están chamados ás urnas para decidir en referendo o futuro da cidade de Vigo.Habitante de Vigo defensor da incorporación á República de Portugal
Despois de anos de rumores e difamacións acerca da procedencia e nacionalidade dos habitantes vigueses, o levantamento popular das clases lusistas da cidade, fará posíbel este pronuciamento.
Read more at http://temposgalegos.com/2014/03/17/vigo-pedira-en-referendo-a-adhesion-a-portugal/
Using an address alias
Gmail doesn’t offer traditional aliases, but you can receive messages sent to [email protected]. For example, messages sent to [email protected] are delivered to [email protected].You can set up filters to automatically direct these messages to Trash, apply a label or star, skip the inbox, or forward to another email account.As seen on https://support.google.com/mail/answer/12096?hl=en
Read all points at http://www.websanova.com/blog/laravel/10-reasons-why-laravel-is-better-than-codeigniter
I’m installing a Plesk on a virtual machine, in a fresh CentOS.
For non-fresh CentOS or with f Apache, PHP, MySQL and/or Cyrus, remove them.
yum remove http* yum remove php* yum remove cyrus* yum remove mysql*
1. Disable SELinux status
setenforce 0
3. Make a working directory and go inside her 😉
mkdir /root/plesk cd /root/plesk
4. Download the plesk auto installer
wget http://autoinstall.plesk.com/plesk-installer
5. Run it
sh ./plesk-installer
Now is just follow the screens! 🙂
Congratulations! All stages of the installation/upgrade have been finished. psa is now running on your system. To complete the system configuration process, please proceed to URL: https://localhost.localdomain:8443/ or https://127.0.0.1:8443/ Use 'root' and '<YOUR root PASSWORD>' as login name and password in case of fresh installation. Use 'admin' and '<YOUR admin PASSWORD>' as login name and password in case of upgrade, or if Plesk is already configured. Further, use the following commands to start and stop the system: /etc/init.d/psa start and /etc/init.d/psa stop respectively.
Your host name must resolve to the correct IP address of your server, unless you are using network address translation (NAT). Please quit Parallels Installer, fix the host name resolution problem, and then try installing again. You can skip the hostname check and continue the installation, however, in such a case, the installer cannot guarantee successful installation.
I’v edited /etc/hosts/ and added
127.0.0.1 webhostplesk
to it.
It worked… dunno if is the right solution, but it worked. 🙂
#twitter blocked in #turkey tonight. folks are painting #google dns numbers onto the posters of the governing party. pic.twitter.com/9vQ7NTgotO
— Engin Onder (@enginonder) 21 março 2014
Today we’re releasing Hack, a programming language we developed for HHVM that interoperates seamlessly with PHP. Hack reconciles the fast development cycle of PHP with the discipline provided by static typing, while adding many features commonly found in other modern programming languages.
We have deployed Hack at Facebook and it has been a great success. Over the last year, we have migrated nearly our entire PHP codebase to Hack, thanks to both organic adoption and a number of homegrown refactoring tools.
We’re also proud to release an open source version of Hack to the public http://www.hacklang.org/ as part of our HHVM runtime platform, which will now support both Hack and PHP.

I have a bunch of wordpress blogs, two of them getting 1k unique visitor each.
Both of homepage was taking almost 3 seconds to be compiled…
I’v installed a small WordPress Plugin named Quick Cache, to make cache of pages, and from almost 3 seconds now they are served in less that half of a second.
Before Quick Cache plugin
After Quick Cache plugin

History from some tests on the 10th of March and 17th of March.

So, if you plan to change some of image properties with CSS filter is your solution.
-webkit-filter: filter(value); -moz-filter: filter(value); -o-filter: filter(value); -ms-filter: filter(value);
You can replace filter with the following values
Example
filter: invert(100%); // Browser Specific -webkit-filter: invert(100%); -moz-filter: invert(100%); -o-filter: invert(100%); -ms-filter: invert(100%);
Concat/concatenate then
filter: blur(5px) brightness(0.5);
More readings
http://codepen.io/rss/pen/ftnDd
http://www.inserthtml.com/2012/06/css-filters/