If you want to have nice output colouring of your PHP scripts or those from Symfony Console, you should install POSIX extension to your PHP version.
sudo port install php56-posix
If you want to have nice output colouring of your PHP scripts or those from Symfony Console, you should install POSIX extension to your PHP version.
sudo port install php56-posix
Title: To jak zrobimy ten projekt? Czyli o doborze technologii słów kilka
Venue: StartUp LAB #5, 02.03.2016
Slides: Slideshare
Yes, this is total basic but still useful 🙂
git pull git checkout -b stage origin/stage
Title: Jak łączyć mobile i desktop? Node.js w aplikacjach czasu rzeczywistego
Venue: Business Link Kraków, 05.08.2015
Slides: Slideshare
So, you have to use SFTP in your console? Very good article!
$ wget \ --recursive \ --no-clobber \ --page-requisites \ --html-extension \ --convert-links \ --restrict-file-names=windows \ --domains website.org \ --no-parent \ www.website.org/tutorials/html/
source: Linux Journal
Sometimes you have to remove directories from your VCS tool.
find . -name .svn -exec rm -rf {} \;
find . -name .svn -exec echo {} \;
--head
– performs HEAD http request (not GET).
curl --head https://www.wp.pl/
--get
– performs GET request
-i
– include headers
curl --get -i https://www.wp.pl/
Simple thing if you want to have min
and max
in SQL query.
ROUND((RAND() * (max-min))+min)
So, you have to copy one directory into another on your server and you don’t want to kill the machine?
Instead of
cp -r master master_copy
use
rsync --bwlimit=30000 -av master/ master_copy/
The –bwlimit=KBPS switch is for limiting I/O bandwidth.