- Generating a private key:
openssl genrsa 2048 > private.pem
- Generating the self signed certificate:
openssl req -x509 -new -key private.pem -out public.pem
using System; | |
using System.Diagnostics; | |
using System.Numerics; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
[Serializable] | |
[DebuggerDisplay("{DDisplay}")] | |
public struct BigDecimal : IComparable, IComparable<BigDecimal>, IEquatable<BigDecimal> | |
{ | |
private const int MaxFactorials = 200; |
using System; | |
using System.Diagnostics; | |
using System.Globalization; | |
using System.Numerics; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
[DebuggerDisplay("{" + nameof(DDisplay) + "}")] | |
[Serializable] | |
public struct BigRational : IComparable, IComparable<BigRational>, IEquatable<BigRational> | |
{ |
// ==UserScript== | |
// @name Wordfrick | |
// @namespace https://www.chosenfewsoftware.com | |
// @version 1.0 | |
// @description Screw up any text on any webpage with the click of your mouse | |
// @author Yodadude2003 | |
// @match *://*/* | |
// @grant none | |
// @require https://code.jquery.com/jquery-3.4.1.min.js | |
// ==/UserScript== |
openssl genrsa 2048 > private.pem
openssl req -x509 -new -key private.pem -out public.pem
import numpy as np | |
from matplotlib import pyplot as plt | |
mu0 = 4 * np.pi * 1e-7 # H/m | |
a = 470 # A/m | |
alpha = 9.38e-4 | |
c = 0.0889 | |
k = 483 # A/m | |
Ms = 1.48e6 # A/m |
#include <websocketpp/config/asio_no_tls_client.hpp> | |
#include <websocketpp/client.hpp> | |
#include <iostream> | |
typedef websocketpp::client<websocketpp::config::asio_client> client; | |
using websocketpp::lib::placeholders::_1; | |
using websocketpp::lib::placeholders::_2; |
using System; | |
using System.IO; | |
namespace Contribs.aynurin | |
{ | |
/// <summary> | |
/// SeekStream allows seeking on non-seekable streams by buffering read data. The stream is not writable yet. | |
/// </summary> | |
public class SeekStream : Stream | |
{ |
Audio compression is used to reduce the dynamic range of a recording. Dynamic range is the difference between the loudest and softest parts of an audio signal. It was originally used to guard against defects when cutting wax and vinyl phonograph records, but generally became useful as a way of increasing the loudness of an audio recording without achieving distortion.
The goal of most compression applications is to increase the amplitude of the softest parts of a recording, without increasing the amplitude of the loudest parts.
Compressors generally all have the same conceptual parts. However, not all compressors present variable controls for all parts to the user. If you don't see all of your compressor's controls here, there's a chance it either has a fixed value (and no control), or is named something else:
// | |
// Regular Expression for URL validation | |
// | |
// Author: Diego Perini | |
// Created: 2010/12/05 | |
// Updated: 2018/09/12 | |
// License: MIT | |
// | |
// Copyright (c) 2010-2018 Diego Perini (http://www.iport.it) | |
// |