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

Block or report vossjannik

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. flamencist/ldap4net flamencist/ldap4net Public

    OpenLdap port for DotNet Core (Linux\OSX\Windows)

    C# 209 37

  2. utilities utilities Public

    A few useful algorithms and classes implemented in C++.

    C++

  3. dotfiles dotfiles Public

    My personal vim configuration.

    Vim Script 1

  4. SuperSocket.ClientEngine SuperSocket.ClientEngine Public

    Forked from kerryjiang/SuperSocket.ClientEngine

    A .NET library which can make your socket client development easier

    C#

  5. C++ Easy To Use SHA1 Function Based ... C++ Easy To Use SHA1 Function Based On Boost
    1
    std::string sha1(const std::string& str)
    2
        {
    3
        using boost::uuids::detail::sha1;
    4
    
                  
    5
        sha1 sha;
  6. C++ Narrow To Wide String Conversion C++ Narrow To Wide String Conversion
    1
    std::wstring widen (const std::string& narrow)
    2
        {
    3
        std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> converter;
    4
        return converter.from_bytes(narrow);
    5
        }