Skip to content
View cgeorg08's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report cgeorg08

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

Welcome to my profile 🤖

Check out my repositories and who knows you might find something useful. In this README you can find the most important code snippet for every programming language I used so far (starting from the most recent one).

C++
#include <iostream>
int main() {
    std::cout << "Hello World";
    return 0;
}
Python
print("Hello World")
C
#include <stdio.h>
int main() {
   printf("Hello World");
   return 0;
}
Bash
echo "Hello World"
Dart
main(){
    print('Hello World');
}
Java
import java.io.*;
class printHelloWorld {
    public static void main (String[] args) {
       System.out.println("Hello World");
    }
}

Popular repositories Loading

  1. Drawing-CoCreative-Agent Drawing-CoCreative-Agent Public

    Python 2

  2. Deep_Learning_suite Deep_Learning_suite Public

    Jupyter Notebook 1 1

  3. snacs_CELF snacs_CELF Public

    Implement the CELF algorithm with different variations

    Jupyter Notebook

  4. cgeorg08 cgeorg08 Public

    profile repo

  5. FTP-server FTP-server Public

    FTP multithread server in C (compatible with FileZilla)

    C

  6. Unix-shell-in-C Unix-shell-in-C Public

    Bash instructions implemented in C

    C