Skip to content
View Tim-Otte's full-sized avatar
💻
Coding
💻
Coding

Block or report Tim-Otte

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. resume_operating_system resume_operating_system Public

    Forked from mathieupassenaud/resume_operating_system

    my resume in a home made operating system

    C

  2. Dolibarr/dolibarr Dolibarr/dolibarr Public

    Dolibarr ERP CRM is a modern software package to manage your company or foundation's activity (contacts, suppliers, invoices, orders, stocks, agenda, accounting, ...). it's an open source Web appli…

    PHP 5.4k 2.8k

  3. With this script you can convert a s... With this script you can convert a string with html tags into an array of html tags with tag name, attributes, inner text and child tags
    1
    <?php
    2
    
                  
    3
    define('HTML_REGEX_PATTERN', '/<([a-zA-Z]+)(?:\s([a-zA-Z]+(?:=(?:".+")|(?:[0-9]+))))*(?:(?:\s\/>)|(?:>(.*)<\/\1>))/');
    4
    
                  
    5
    function isHtmlTag($text) {