Skip to content

Instantly share code, notes, and snippets.

View bonedaddy's full-sized avatar
🌷
pfSense > cisco

bonedaddy bonedaddy

🌷
pfSense > cisco
View GitHub Profile
@bonedaddy
bonedaddy / nginx.conf
Created December 21, 2020 08:25 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
// Copyright 2020 RTrade Technologies Ltd
//
// licensed under GNU AFFERO GENERAL PUBLIC LICENSE;
// you may not use this file except in compliance with the License;
// You may obtain the license via the LICENSE file in the repository root;
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
#include <wolfssl/options.h>
#include <wolfssl/wolfcrypt/sha256.h>
#include <stdio.h>
#include "mbedtls/ecdsa.h"
#include "mbedtls/pk.h"
#include "mbedtls/asn1write.h"
#include "mbedtls/bignum.h"
#include "mbedtls/config.h"
#include "mbedtls/ctr_drbg.h"
#include "mbedtls/entropy.h"
@bonedaddy
bonedaddy / ANSI-color-codes.h
Created July 5, 2020 01:40 — forked from RabaDabaDoba/ANSI-color-codes.h
The entire table of ANSI color codes working in C!
//Regular text
#define BLK "\e[0;30m"
#define RED "\e[0;31m"
#define GRN "\e[0;32m"
#define YEL "\e[0;33m"
#define BLU "\e[0;34m"
#define MAG "\e[0;35m"
#define CYN "\e[0;36m"
#define WHT "\e[0;37m"
@bonedaddy
bonedaddy / ANSI.md
Created July 5, 2020 01:01 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1b
  • Decimal: 27
@bonedaddy
bonedaddy / gtest-install.rst
Created June 27, 2020 07:15 — forked from massenz/gtest-install.rst
Describes how to install and run GTest, a Google framework to conduct unit testing in C++

Build and install Google Test

Download the latest_ (1.7.0) from Google Code (Q: where is it going to live, once GCode shuts down?)

Then follow the primer_, but more to the point, the README (YMMV) Having installed CLion and cmake, this is how I built gtest:

brew install cmake
cd gtest-1.7.0

this is a test

of gist rendering

@bonedaddy
bonedaddy / downloader.go
Created June 4, 2020 08:21
downloader for the police brutality archive
package downloader
import (
"encoding/csv"
"io"
"log"
"net/http"
"os"
"os/exec"
)
package p2plab
// defines a set of nodes of size 1 or higher
// a "node" is simply an EC2 instance provisioned of the given type
Nodes :: {
// must be greater than or equal to 1
// default value of this field is 1
size: >=1 | *1
instanceType: string
region: string

RTRADE TECHNOLOGIES LTD. CONTRIBUTOR LICENSE AGREEMENT Thank you for your interest in contributing to software products or projects (collectively, “Projects”) owned or managed by RTrade Technologies Ltd. (“RTrade Technologies”) or by our subsidiary RTrade Operations Ltd. (“RTrade Operations”) (RTrade Technologies and RTrade Operations collectively, the “RTrade Group”).

This Contributor License Agreement (“Agreement”) applies to your Contributions to Projects and sets out the intellectual property rights you grant members of the RTrade Group in your Contributions.

Contributions include, source code, object code, bug fixes, patches, configuration changes, tools, specifications, documentation, data, graphics, materials, feedback, information, and other works of authorship that you submit or have submitted, in any form and in any manner, to any member of the RTrade Group in respect of any of the Projects (collectively “Contributions”).

By submitting or otherwise making a Contribution to any member of the R