Skip to content

Instantly share code, notes, and snippets.

@rafpro
rafpro / bench_test.go
Created October 29, 2022 07:42 — forked from qdm12/bench_test.go
Fast thread-safe uniformly distributed numbers generation in Go
package main
import (
"crypto/rand"
"encoding/binary"
"fmt"
"hash/maphash"
mathrand "math/rand"
"runtime"
"sync"
@rafpro
rafpro / README.md
Created August 15, 2022 14:20 — forked from acamino/README.md
Shortcuts to Improve Your Bash & Zsh Productivity

Shortcut — Action

  • CTRL + A — Move to the beginning of the line
  • CTRL + E — Move to the end of the line
  • CTRL + [left arrow] — Move one word backward (on some systems this is ALT + B)
  • CTRL + [right arrow] — Move one word forward (on some systems this is ALT + F)
  • CTRL + U — (bash) Clear the characters on the line before the current cursor position
  • CTRL + U —(zsh) If you're using the zsh, this will clear the entire line
  • CTRL + K — Clear the characters on the line after the current cursor position
  • ESC + [backspace] — Delete the word in front of the cursor
@rafpro
rafpro / compose.yaml
Created August 10, 2022 13:55 — forked from ogawa0071/compose.yaml
Docker Compose - WordPress with PlanetScale
services:
wordpress:
image: wordpress
restart: always
ports:
- 8080:80
environment:
WORDPRESS_DB_HOST: db
WORDPRESS_DB_USER: exampleuser
WORDPRESS_DB_PASSWORD: examplepass
@rafpro
rafpro / download_file.php
Created July 11, 2022 04:51 — forked from saleemkce/download_file.php
PHP File Download Script - Download large file in chunks.
<?php
/*ini settings*/
set_time_limit(0);
ini_set('memory_limit', '512M');
//DOWNLOAD SCRIPT
$filePath = "G:/Software/versions/..PATH TO DOWNLOAD FILE...zip"; // set your download file path here.
download($filePath); // calls download function
function download($filePath)
{
@rafpro
rafpro / pxc_setup.sh
Created March 30, 2022 12:07 — forked from sveesible/pxc_setup.sh
A script that attempts to create and configure a percona-xtradb-cluster setup
#!/bin/bash
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Sveesible - PXC-SS - Percona-Xtradb-Cluster-Simple-Setup-Example
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Brad Svee] - [07-17-2014] - [PXC-SS] - [1.0]
# ---------------------------------
# [A setup script to help configure a Percona XtraDB MySQL Cluster and Galera]
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
install_percona=true
@rafpro
rafpro / Makefile
Created March 15, 2022 12:15 — forked from mpneuried/Makefile
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)
http {
upstream backend_uat {
server <server 1 ip> max_fails=1 fail_timeout=5s;
server <server 2 ip>;
}
server {
listen <nginx public ip>:443 ssl default_server;
server_name *.test.com www.*.test.com
@rafpro
rafpro / AWS_S3_Presign_Download.php
Created February 17, 2022 15:27 — forked from anthonyeden/AWS_S3_Presign_Download.php
AWS S3: Pre-sign Upload & Download Requests [PHP]
<?php
function AWS_S3_PresignDownload($AWSAccessKeyId, $AWSSecretAccessKey, $BucketName, $AWSRegion, $canonical_uri, $expires = 8400) {
// Creates a signed download link for an AWS S3 file
// Based on https://gist.github.com/kelvinmo/d78be66c4f36415a6b80
$encoded_uri = str_replace('%2F', '/', rawurlencode($canonical_uri));
// Specify the hostname for the S3 endpoint
if($AWSRegion == 'us-east-1') {
@rafpro
rafpro / s3link-v4.php
Created February 17, 2022 15:27 — forked from kelvinmo/s3link-v4.php
PHP code to generate a pre-signed URL to access a restricted AWS S3 object