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

Block or report kevinski303

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. php-mcrypt on debian 10 & php 7.3 ap... php-mcrypt on debian 10 & php 7.3 apache
    1
    #
    2
    # The php-mcrypt extension is depricated and therefore was removed from the apt repository. 
    3
    # As of writing this, on php7.3 there is currently no other way to install mcrypt without downgrading the php version
    4
    # except for compiling it locally.
    5
    #
  2. covid-19_switzerland covid-19_switzerland Public

    just some simple curves of covid-19 cases in Switzerland

    JavaScript 1

  3. gagaseleniumskriptfordjs.py gagaseleniumskriptfordjs.py
    1
    from selenium import webdriver
    2
    from selenium.webdriver.firefox.service import Service
    3
    from selenium.webdriver.firefox.options import Options
    4
    from selenium.webdriver.common.by import By
    5
    from selenium.webdriver.support.wait import WebDriverWait
  4. make-mcrypt.sh make-mcrypt.sh
    1
    #!/bin/bash -e
    2
    echo extracting the mcrypt archive
    3
    if ls | grep mcrypt-1.0.2.tgz &> /dev/null; then
    4
            tar -zxvf ./mcrypt-*.tgz &> /dev/null && cd mcrypt-*/
    5
    else
  5. selmapp selmapp Public archive

    HTML

  6. mediawiki_migrationscript.sh mediawiki_migrationscript.sh
    1
    #!/bin/bash
    2
    
                  
    3
    # Make sure only root can run our script
    4
    if [ "$(id -u)" != "0" ]; then
    5
       echo "Diese Script muss als root ausgeführt werden" 1>&2