Skip to content
View fheck's full-sized avatar

Organizations

@IEEE-SB-Passau @se-passau
Block or Report

Block or report fheck

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. Informative "uptime" function for po... Informative "uptime" function for powershell on Windows
    1
    function runtime {
    2
        function extractDate($text, $type) {
    3
            $regex = '.*?' + $type + ' Time: (?:.?(\d{4}).?-.?([01]\d).?-.?([0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+(?:[+-][0-2]\d:[0-5]\d|Z))).*?'
    4
            $date = ( % {[regex]::Match($text, $regex)}).Groups
    5
            return Get-Date($date[1].Value + "-" + $date[2].Value + "-" + $date[3].Value)
  2. IEEE-SB-Passau/adventcalendar IEEE-SB-Passau/adventcalendar Public

    Evaluation system for programming advent calendar.

    JavaScript 1