Skip to content
View ErgEnn's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report ErgEnn

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. Powershell scripts to create SSL CA ... Powershell scripts to create SSL CA and CERT and add them as IIS bindings and add IIS bindings to hosts.txt
    1
    # Generates IIS bindings based on certificate
    2
    
                  
    3
    try{
    4
        if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator"))  
    5
        {  
  2. Shows total time of Jira ticket base... Shows total time of Jira ticket based on Toggl(client side only).
    1
    // ==UserScript==
    2
    // @name         JiraTogglTotalTime
    3
    // @namespace    https://gist.github.com/ErgEnn/6fd34add5aa1d6bfdd0f1b634b93a77e
    4
    // @version      0.3
    5
    // @description  Shows total time of Jira ticket based on Toggl(client side only). Requires Toggl task descr to contain the ticket key.
  3. lighthousemap lighthousemap Public

    Forked from geodienst/lighthousemap

    OpenStreetMap's Blinking Beacons

    JavaScript

  4. UnitronicsDatalogger UnitronicsDatalogger Public

    C#

  5. Primitive wrapper for Newtonsoft.Jso... Primitive wrapper for Newtonsoft.Json library. Object Calisthenics suggests, that primitive types should be avoided in code. This JsonConverter allows every primitive to be wrapped in object and unwrapped back into primitive JSON tokens with ease.
    1
    public class PrimitiveConverter : JsonConverter
    2
    	{
    3
    		public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
    4
    		{
    5
    			var token = JToken.FromObject((value as PrimitiveWrapper)._value);
  6. AoC2023 AoC2023 Public

    Advent of code solutions

    C#