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

    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.

    Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
    Report abuse

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

    Report abuse

    Pinned Loading

    1. libnodavelibnodavePublic

      Forked from netdata-be/libnodave

      LIBNODAVE, a free library to communicate to Siemens S7 PLCs

      C 2

    2. libsnap7libsnap7Public

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

      Pascal 2 2

    3. yeti-vmyeti-vmPublic

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

      C++

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