Skip to content
View max-dark's full-sized avatar
🇷🇺
🇷🇺

Block or report max-dark

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  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. yeti-vm yeti-vm Public

    Virtual machine for Yeti Project / RISC-V Virtual machine as library

    C++

  4. convert vc project to cmake convert vc project to cmake
    1
    # add target from generated "*.cmake"
    2
    
                  
    3
    function(fill_project VC_PROJECT_FILE CONFIG_NAME)
    4
        set(_project_file "${VC_PROJECT_FILE}.cmake")
    5
        set(_all_sources)
  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>