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

Block or report joakimriedel

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. culture-switcher culture-switcher Public

    Quick hack to be able to modify the current thread's culture in a using scope.

    C# 7

  2. dotnet-cldr-resx dotnet-cldr-resx Public

    Dotnet tool that generates RESX files based on CLDR data.

    C#

  3. Vue component for SVG icons using Vu... Vue component for SVG icons using Vue 3, async import using Vite, and Typescript strict typings
    1
    <!-- This script for defining icon sources and type could be put in external ts file -->
    2
    <script lang="ts">
    3
    /** define all the icons that we want to make available here */
    4
    const iconSources = {
    5
      signin: () =>
  4. Strictly typed mappers for vuex 4 an... Strictly typed mappers for vuex 4 and vue 3 using Typescript 4.4+
    1
    [Vuex 4](https://github.com/vuejs/vuex) is a great companion to [Vue 3](https://github.com/vuejs/vue-next), but Vuex is falling behind on Typescript support. While waiting for better typing support in Vuex 5 or using Pinia, this wrapper might help.
    2
    
                  
    3
    Using this wrapper will correctly infer arguments and return types on your state, actions, getters and mutations.
    4
    
                  
    5
    It works both within your store(s) and any Vue components where you use the `mapActions`, `mapState`, `mapGetters` or `mapMutations` helpers from Vuex.
  5. Plugin for svgo to set fill to curre... Plugin for svgo to set fill to currentColor
    1
    import svgToMiniDataURI from "mini-svg-data-uri";
    2
    import type { Plugin } from "rollup";
    3
    import fs from "fs";
    4
    import { optimize, OptimizeOptions } from "svgo";
    5