Skip to content

Instantly share code, notes, and snippets.

View SergiyOsadchyy's full-sized avatar

Sergii Osadchyi SergiyOsadchyy

View GitHub Profile
@SergiyOsadchyy
SergiyOsadchyy / Geometric Modelling Lab_2
Last active January 24, 2018 18:01
Geometric Modelling Lab_2
// main.cpp
// lab_2
//
// Created by Sergiy on 22.01.18.
#include <GLUT/GLUT.h>
#include <stdio.h>
#include <iostream>
@SergiyOsadchyy
SergiyOsadchyy / Geometric Modelling Lab_1
Last active January 16, 2018 18:41
Geometric Modelling Lab_1
// Lab_1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <Windows.h>
#include <glut.h>
#include <stdio.h>
@SergiyOsadchyy
SergiyOsadchyy / Geometric Modelling Lab_0
Last active January 11, 2018 17:09
Geometric Modelling Lab_0
// Lab_0.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <Windows.h>
#include <glut.h>
#include <stdio.h>
// main.cpp
// RSA
//
// Created by Sergiy on 06.06.17.
#include <iostream>
#include <math.h>
#include <string.h>
#include <string>
#include <stdio.h>
@SergiyOsadchyy
SergiyOsadchyy / Queue
Created February 24, 2017 09:35
Queue
// queue.hpp
// Queue
//
// Created by Sergiy on 24.02.17.
#ifndef queue_hpp
#define queue_hpp
#include <stdio.h>
#include <iostream>
@SergiyOsadchyy
SergiyOsadchyy / Stack_Class
Created February 23, 2017 06:45
Stack_Class
// Stack.h
// Stack_Class
//
// Created by Sergiy on 23.02.17.
#ifndef Stack_h
#define Stack_h
#include <iostream>
@SergiyOsadchyy
SergiyOsadchyy / Linux_Lab_43
Last active February 14, 2017 05:11
Linux_Lab_43
// Linux_Lab_43
//
// Created by Sergiy on 12.02.17.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
@SergiyOsadchyy
SergiyOsadchyy / Linux_Lab_42
Last active February 11, 2017 17:05
Linux_Lab_42
// Linux_Lab_42_Version_2
//
// Created by Sergiy on 11.02.17.
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
@SergiyOsadchyy
SergiyOsadchyy / Linux_Lab_41
Created February 4, 2017 12:16
Linux_Lab_41
// Linux_Lab_41
//
// Created by Sergiy on 28.01.17.
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <stdlib.h>
@SergiyOsadchyy
SergiyOsadchyy / Linux_Lab_3
Created February 1, 2017 05:13
Linux_Lab_3
// Linux_Lab_3
//
// Created by Sergiy on 25.01.17.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <string.h>