Skip to content

Instantly share code, notes, and snippets.

View LiuinStein's full-sized avatar
🙁
*beep boop* overworked!

Shaoqun Liu LiuinStein

🙁
*beep boop* overworked!
View GitHub Profile
@LiuinStein
LiuinStein / gist:d1e7347d4ac1e7ea666009890460c1c6
Created July 8, 2018 13:38
Performs code before the main function has been invoked.
#include <iostream>
static int x = []()
{
std::cout << "x - Performs before main function" << std::endl;
return 0;
}();
class y
{
@cnDelbert
cnDelbert / How to install tcpping on Linux.md
Last active May 7, 2024 04:31
How to install tcpping on Linux

To install tcptraceroute on Debian/Ubuntu:

$ sudo apt-get install tcptraceroute

To install tcptraceroute on CentOS/REHL, first set up RepoForge on your system, and then:

$ sudo yum install tcptraceroute