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

Block or report max-dark

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. libnodave libnodave Public

    Forked from netdata-be/libnodave

    LIBNODAVE, a free library to communicate to Siemens S7 PLCs

    C 2

  2. libsnap7 libsnap7 Public

    unoficial git mirror for http://snap7.sourceforge.net/

    Pascal 2 2

  3. micro-vm micro-vm Public archive

    Micro VM

    C++

  4. sdl2puzzle sdl2puzzle Public archive

    puzzle game writlen in C++ and SDL2

    C++

  5. simple on-array allocator simple on-array allocator
    1
    // task: create two queues that will be located in one array of a fixed size
    2
    // solution: create a pool of blocks in this array.
    3
    // http://www.cyberforum.ru/algorithms/thread2569313.html
    4
    
                  
    5
    #include <stdio.h>
  6. fizz buzz without "if" fizz buzz without "if"
    1
    // task: https://en.wikipedia.org/wiki/Fizz_buzz
    2
    // compile: g++ -std=c++14 -Wall -Wpedantic -Werror fizz_buzz.cxx -o fizz_buzz
    3
    
                  
    4
    #include <iostream>
    5
    #include <string>