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

Block or report DreamVB

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. Simple Stack Virtual Machine in C Simple Stack Virtual Machine in C
    1
    /*
    2
        Simple stack Virtual Machine
    3
        Version 1.0
    4
        by DreamVB
    5
  2. httpServer httpServer Public

    A simple web server made in Python

    Python 1

  3. XOR File using c XOR File using c
    1
    #define _CRT_SECURE_NO_WARNINGS
    2
    #include <stdio.h>
    3
    #include <string>
    4
    
                  
    5
    int PasswordKey(char *pws){
  4. Linked List Demo Linked List Demo
    1
    //Linked List Demo
    2
    #include <iostream>
    3
    using namespace std;
    4
    
                  
    5
    template <typename T>
  5. Sorting Algorithms in C++ Sorting Algorithms in C++
    1
    //Sorting Class with 5 sorting algorithms that can sort arrays
    2
    //Compiled in Visual Studio 2013 but should work on any C++ compiler with a few tweaks.
    3
    
                  
    4
    //Incase you need som info on sorting algorithms
    5
    //https://en.wikipedia.org/wiki/Sorting_algorithm
  6. UK lotto number generator UK lotto number generator
    1
    //UK lotto generator
    2
    
                  
    3
    #include <iostream>
    4
    #include <vector>
    5
    #include <time.h>