This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDOh/CU9vQ2cQR8j7K4TIDJVns6T+im24OpuO8F+aPHJS7VOTaPwbHZZT+i+0hqzVRpwNceZPezIfckIlHH19YMQMu9+KcUEyBZrnaqvQZM8mSe/oXebv1L/XaZpc6y5OhV/o4SzScxlnLMZFjlgyYgVLWUJ8tCtPl2TL+MuCBt+rpa+HOZhbkbAKi992axQd/pmGlkGigpoKiY11ZIXDsWhbssoe76KFzg+x3G/k2Uds4oYt216rYia3WHcikk7GzDmAY6Svws31Q/yvl+RJByVE35cfrkpNTPZGP5LUUH8JhvjF5V0kNqrR2WUlxGtlLHVla+JvFfH3ykI38NFqMKYqhZ4ESMofAIXjmeRglC62DfuOl3ogkmJXinWBTraXLOKrGlCA7BpMf2q7vBFk7+Oa/T9hn71+E8E+h/FeWPZwhV58pUpnnvOFQDn2EpBPtSNpnMH4UZ0b3/rZKEX3bf4OemqPfbxjAofASLCZRvhUardgnUuKwxlzRPP2eiY4qVx9P5oZVAJH4sMypLf8c/xRfqhMs/r22aaI5ynQnRuk1kgGTgLaXYV6o5F9ARB8QLD0rps+7NSKVN6r3eRnTqk+nEiVqPq0cLze5aUVFNTxr8/BJq1KDSZQ0PSUZD9EtgMJnuxf3WFiE8T6eM/BKu6sB1TtJHfAoHCr5x0pT4ew== roy@clnt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in $(seq 1 254); do ping -w1 -c1 10.0.0.$i > /dev/null; if test $? -eq 0; then echo $i; fi done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <cfloat> | |
#include <cmath> | |
#include <cstdlib> | |
/** | |
* @brief Math related utility functions | |
*/ | |
namespace Math { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string_view> | |
#include <iostream> | |
using namespace std::literals; | |
struct Path { | |
class Iterator { | |
protected: | |
std::string_view _path; | |
char _separator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <functional> | |
class Exception { | |
public: | |
using StringType = const char*; | |
protected: | |
StringType _what; | |
StringType _file; | |
std::size_t _line; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
type ( | |
Shape interface { | |
GetCoords() (float64, float64) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"strings" | |
"bufio" | |
"regexp" | |
"fmt" | |
) | |
const test_data = ` |
OlderNewer