This kept growing and I wanted to add some pictures, so I moved it to a blog post:
This file contains hidden or 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
{ '0': 'Record', | |
'1': 'Index', | |
'2': 'Field', | |
'3': 'Field Format', | |
'4': 'Translate Values', | |
'5': 'Page', | |
'6': 'Menu', | |
'7': 'Component', | |
'8': 'Record PC', | |
'9': 'Menu PC' |
This file contains hidden or 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 ( | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"path" | |
"github.com/lucas-clemente/quic-go/http3" |
This file contains hidden or 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
CREATE TABLE Persons ( | |
PersonID int, | |
FirstName varchar(255), | |
LastName varchar(255), | |
Address varchar(255), | |
City varchar(255), | |
PostalCode varchar(255), | |
Country varchar(255) | |
); |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
address=/01mspmd5yalky8.com/0.0.0.0 | |
address=/01mspmd5yalky8.com/::1 | |
address=/0byv9mgbn0.com/0.0.0.0 | |
address=/0byv9mgbn0.com/::1 | |
address=/analytics.247sports.com/0.0.0.0 | |
address=/analytics.247sports.com/::1 | |
address=/www.analytics.247sports.com/0.0.0.0 | |
address=/www.analytics.247sports.com/::1 | |
address=/2no.co/0.0.0.0 | |
address=/2no.co/::1 |
This file contains hidden or 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 <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <netdb.h> | |
#include <arpa/inet.h> | |
#include <err.h> | |
This file contains hidden or 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 <iostream> | |
#include <thread> | |
#include <chrono> | |
using namespace std; | |
int main(int argc, char const *argv[]) | |
{ | |
cout << "Hello, world"; | |
this_thread::sleep_for (chrono::seconds(5)); | |
cerr << "this is an error"; |
This file contains hidden or 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta name="description" content=""> | |
<meta name="author" content="bmcculley"> | |
<meta name="generator" content="e42.xyz"> | |
<title>Narrow Jumbotron Template for Bootstrap 4</title> |
This file contains hidden or 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
import subprocess | |
MyOut = subprocess.Popen(['ls', '-l', '.'], | |
stdout=subprocess.PIPE, | |
stderr=subprocess.STDOUT) | |
stdout,stderr = MyOut.communicate() | |
if stdout: | |
print(stdout.decode('utf-8')) |