Skip to content

5th September 2021

Computer Science

GNULinux

MariaDB

  • New: Gain root access without the pass.

    mysqld_safe --skip-grant-tables --skip-networking &
    mysql -u root
    

OpenLDAP

  • New: Don't check TLS cert.

    Add TLS_REQCERT never to /etc/openldap/ldap.conf.

OpenSSL

  • New: Get information about a certificate.

    openssl s_client -connect [host]:[port] | openssl x509 -noout -dates
    

Programming

TDD

  • New: Test-driven development (TDD).

    Test-driven development (TDD) is a software development process consisting in small development cycles. The goal is clean code that works. Some advantages of this methodology are that it reduces stress in the development process and produces functional code that is a pleasure to work with.

re

  • New: Split a string by multiple delimiters.

    import re
    re.split('; |, ', "string")