Bash – running scripts concurrently
Hyperthreading in Bash Sometimes in bash you need to run two scripts concurrently with one script and wait for them […]
Hyperthreading in Bash Sometimes in bash you need to run two scripts concurrently with one script and wait for them […]
MySQL – setting the mode If your application suddenly dies after updating MySQL, it is always worth checking what the
Dynamic progressbar with bootstrap and session control. Progressbar. Today I wrote a simple progressbar handler on Bootstrap – I needed
Response HTTP – linux bash How to check HTTP response in linux under bash. I have a text file containing a
MySQL url_decode – own function Below is a MySQL function that decodes URLs encoded in PHP with the urlencode function.
In short, it’s a pretty effectively broken link finder. Great news for anyone with many years of experience blogging or
Wyświetlanie zmiennej w PHP To debug variables in PHP – probably the most popular programming language for web services, it
How to rotate PDF? Exactly! Sometimes you need to quickly flip a PDF by 90 or 180 or any number
If we want to find specific text, e.g. “Ania” only in PHP files: find . -name “*.php” -print0 | xargs
Search for a string of characters in files of a specific type Read Post »
If we want to delete, for example, only *.js files in the given directory and subdirectories: find . -name “*.js”