Skip to content

Instantly share code, notes, and snippets.

View titus-shoats's full-sized avatar

Titus Shoats titus-shoats

View GitHub Profile
@titus-shoats
titus-shoats / References.cpp
Created May 9, 2017 17:55
Passing pointers to objects
#include "stdafx.h"
#include <iostream>
using namespace std;
void FreezeWindow();
void FreezeWindow() {
char response;
cin >> response;
}
@titus-shoats
titus-shoats / Direct_ethernet_connection.md
Created April 7, 2020 00:24 — forked from JinhaiZ/Direct_ethernet_connection.md
Direct Ethernet connection to Raspberry Pi/Odroid without router (with DHCP, tested on Ubuntu 16.04)

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.

Direct Ethernet connection to Raspberry Pi/Odroid without router

The solution is based on running DHCP service at your workstation (your notebook for example), and use it to attribute an IP address to your Raspberry Pi/Odroid. Then use ssh to connect to your Raspberry Pi/Odroid through this IP address.

Terminology Explaination
Client Your Single Board Computer, such as a Raspberry Pi or an Odroid
Server Your workstation with any linux based systems, like Ubuntu