Skip to content

Instantly share code, notes, and snippets.

View shoemoney's full-sized avatar

Jeremy Schoemaker shoemoney

View GitHub Profile
@shoemoney
shoemoney / nginx-tuning.md
Created February 18, 2022 07:16 — forked from denji/nginx-tuning.md
NGINX tuning for best performance

NGINX Tuning For Best Performance

For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.

Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon with HyperThreading enabled, but it can work without problem on slower machines.

You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.

@shoemoney
shoemoney / bybit.js
Created February 11, 2022 13:11 — forked from coindegen/bybit.js
bybit.js
const { WebsocketClient } = require("bybit-api")
const API_KEY = "key goes here"
const PRIVATE_KEY = "replace me"
const wsConfig = {
key: API_KEY,
secret: PRIVATE_KEY,
/*
@shoemoney
shoemoney / ETHPool.sol
Created February 10, 2022 22:17 — forked from mingderwang/ETHPool.sol
ETHPool test
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "hardhat/console.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
contract ETHPool is AccessControl {
event Deposit(address indexed _address, uint256 _value);
event Withdraw(address indexed _address, uint256 _value);
skeithc@freedom ~ % ethminer --help
Usage ethminer [OPTIONS]
Options:
Work farming mode:
-F,--farm <url> Put into mining farm mode with the work server at URL (default: http://127.0.0.1:8545)
-FF,-FO, --farm-failover, --stratum-failover <url> Failover getwork/stratum URL (default: disabled)
--farm-retries <n> Number of retries until switch to failover (default: 3)
-S, --stratum <host:port> Put into stratum mode with the stratum server at host:port
-SF, --stratum-failover <host:port> Failover stratum server at host:port
@shoemoney
shoemoney / aws_assign_eip.sh
Created February 2, 2022 22:32 — forked from mrchristine/aws_assign_eip.sh
Assign an elastic ip with a bootstrap script.
#/bin/bash
# Set Params
k=YOUR_AWS_KEYS
s=YOU_AWS_SECRETE
r=YOUR_REGION
# Assign EIP ID
eip_id=eipalloc-XXXXXXX
# Install awscli
@shoemoney
shoemoney / sample.php
Created January 24, 2022 11:50 — forked from robertuniqid/sample.php
PHP : empty vs == vs ===
<?php
$t = '';
$before = microtime(true);
for ($i=0 ; $i<100000 ; $i++) {
$dummy = empty( $t );
}
#!/bin/bash
############################---Usage---#########################################
#source this function in your bashrc
# Copy below functions (delay and progress fuctions) into your shell script directly
# Then invoke progress function to show progress bar
# In other way, you could import source indirectly then using. Nothing different
@shoemoney
shoemoney / backup.tar
Created December 28, 2021 12:56 — forked from jasontbradshaw/backup.tar
A simple backup script using tar.
#!/usr/bin/env sh
# arguments
name="${1}"
src="${2}"
dest_dir="$(dirname "${3}/gets_removed")"
# validate arguments
if [ -z "${name}" ]; then
echo "Invalid backup name (first argument)"
@shoemoney
shoemoney / backup.bup
Created December 28, 2021 12:56 — forked from jasontbradshaw/backup.bup
A backup script using bup.
#!/usr/bin/env bash
# Strict mode (see: http://redsymbol.net/articles/unofficial-bash-strict-mode/).
set -euo pipefail
IFS=$'\n\t'
# We name the repository directory after the system's hostname and the current
# year/month. We include the year/month combo so our backup repository doesn't
# continue to grow forever, and we can manually delete old ones as necessary.
name="$(hostname)"
@shoemoney
shoemoney / AllowSSHFromIP.php
Created October 20, 2021 20:19 — forked from HSPDev/AllowSSHFromIP.php
Complementary code and IAM policy for "You don't need that Bastion host"
<?php
// For laravel 5 based systems
// /path/to/project/app/Console/Commands/AllowSSHFromIP.php
namespace App\Console\Commands;
use Aws\Ec2\Ec2Client;
use Carbon\Carbon;
use Illuminate\Console\Command;