Skip to content
View PetarKirov's full-sized avatar

Sponsoring

@ibuclaw
@kinke

Organizations

@dlang @dlang-tour @dlang-bots @dlang-community @jarvis-network
Block or Report

Block or report PetarKirov

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. dlang.nix dlang.nix Public

    Nix expressions for building D compilers

    Nix 6 1

  2. dotfiles dotfiles Public

    My personal system and $HOME configuration managed by Nix

    Nix 7 8

  3. rxd rxd Public

    Type and value transducers

    D 5

  4. UFCS-enabled algorithms on alias seq... UFCS-enabled algorithms on alias sequences and "template lambdas"
    1
    /++
    2
        module rxd.meta2;
    3
    4
        # UFCS-enabled algorithms on alias sequences and "template lambdas"
    5
  5. Implementing run-time dispatch in D Implementing run-time dispatch in D
    1
    import std.conv : to;
    2
    import std.meta : ApplyLeft, Filter;
    3
    import std.stdio : writef, writefln, writeln;
    4
    import std.variant : Variant;
    5
    
                  
  6. Parsing logic formulas with pegged Parsing logic formulas with pegged
    1
    /++ dub.sdl:
    2
        name "pegged_logic"
    3
        dependency "pegged" version="~>0.4.2"
    4
    +/
    5