Skip to content
View BlaM's full-sized avatar
Block or Report

Block or report BlaM

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

  1. cryptMD5-for-javascript cryptMD5-for-javascript Public

    JavaScript conversion of crypt_md5() (Original by Poul-Henning Kamp)

    JavaScript 7 6

  2. ip-set ip-set Public

    Forked from O-Mutt/ip-set

    Efficient mutable set data structure optimized for use with IPv4 and IPv6 addresses. The primary use case is for working with potentially large IP blacklists.

    JavaScript

  3. php-uuid php-uuid Public

    Random and Pseudo-Random UUIDs

    PHP 1

  4. search-tokenizer-php search-tokenizer-php Public

    Simple search query tokenizer

    PHP

  5. Get rid of EU Cookie Banners (Tamper... Get rid of EU Cookie Banners (Tampermonkey)
    1
    // ==UserScript==
    2
    // @name         Get rid of EU Cookie Banners
    3
    // @namespace    http://blog.deobald.org/
    4
    // @description  Get rid of EU Cookie Banners
    5
    // @license      http://creativecommons.org/licenses/by-nc-sa/3.0/
  6. PHP implementation of mysql's TO_DAY... PHP implementation of mysql's TO_DAYS() and FROM_DAYS() functions
    1
    <?php
    2
    
                  
    3
    function TO_DAYS($date) {
    4
    	if (is_numeric($date)) {
    5
    		$res = 719528 + (int) ($date / 86400);