$ grep -r "#software" ./posts
Tag

#software

// 31 matches

Alert: Bash Code Injection Vulnerability

This is really serious: Red Hat Product Security has been made aware of a vulnerability affecting all versions of the Bash package shipped with Red Hat Enterprise Linux. Since many of Red Hat's...

Google Chrome Spell Check - crazy message after update

I have updated Google Chrome on Red Hat Linux. And to my surprise after restarting Google Chrome I got this: "bettar spell chek" - o la la!The first idea: maybe there is a problem with my Linux box?...

.PFX certificate installation on Apache

I have got a PFX made with Windows Certificate Services to be installed on Apache. So, using OpenSSL the file (source.pfx) has been converted to Apache compatible format: openssl pkcs12 -in...

Print-screen (screenshots) in Mac OS X

Keyboard shortcuts Command-Shift-3: Take a screenshot of the screen, and save it as a file on the desktop Command-Shift-4, then select an area: Take a screenshot of an area and save it as a file on...

Find duplicate records in MySQL

So, the task is to get duplicate records from a MySQL database. The easy way: SELECT COUNT(*), column1, column2 FROM tablename GROUP BY column1, column2 HAVING COUNT(*)>1; More complex case: shows...

Date format validation in PHP

In case of date format checking in PHP just use this function: function checkDateFormat($date) { //match the format of the date if (preg_match ("/^([0-9]{4})-([0-9]{2})-([0-9]{2})$/", $date, $parts))...

IT-Digest AI Assistant