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

Block or report dlOuOlb

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
dlOuOlb/README.md

Pinned Loading

  1. Example-Server-Node.js Example-Server-Node.js Public

    A server example based on Node.js.

    JavaScript

  2. Example-Server-Python Example-Server-Python Public

    A server example based on Python.

    Python

  3. A CMake example, trivial but desperate. A CMake example, trivial but desperate.
    1
    # Project Definition
    2
    CMake_Minimum_Required( VERSION 3.12 )
    3
    Project( "Your Project" LANGUAGES "C" DESCRIPTION "Put some description here." HOMEPAGE_URL "https://gist.github.com/dlOuOlb/331b2539d1cf38e9cf61698c04815bc3" VERSION "0.0.0.0" )
    4
    
    
    5
    # Project Configuration
  4. Changing the font color on a console. Changing the font color on a console.
    1
    CMake_Minimum_Required( VERSION 3.12 )
    2
    Project( "MyColor" LANGUAGES "C" VERSION "0.0.0.0" DESCRIPTION "Changing the font color on a console." HOMEPAGE_URL "https://gist.github.com/dlOuOlb/6a491c71081bfa8189ed6553ac250bf4" )
    3
    
    
    4
    Set( CMAKE_C_STANDARD "90" )
    5
    Set( CMAKE_SUPPRESS_REGENERATION "ON" )
  5. A little more defined 'gets' and 'pu... A little more defined 'gets' and 'puts'.
    1
    #if __STDC__ && ( 199901L <= __STDC_VERSION__ )
    2
    /*...... Standard C99 Conformance Test ......*/
    3
    #else
    4
    # error At least a standard C99 compiler is required!
    5
    #endif
  6. Checked basic arithmetic operations ... Checked basic arithmetic operations ( + - * / ).
    1
    #if __STDC__ && ( 199901L <= __STDC_VERSION__ )
    2
    /*...... Standard C99 Conformance Test ......*/
    3
    #else
    4
    # error At least a standard C99 compiler is required!
    5
    #endif