Skip to content

Instantly share code, notes, and snippets.

View caquino's full-sized avatar

Cassiano Aquino caquino

View GitHub Profile
# Configuration for Alacritty, the GPU enhanced terminal emulator
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty it self.
# env:
# TERM env customization.
#
# If this property is not set, alacritty will set it to xterm-256color.
#
title:RokDC must haves
description:Originally found at https://docs.google.com/spreadsheets/d/1jeWnT__TQk4lWtPn1WJYFTmr1XZ9QVvTe6hxSQnhrys/edit#gid=0
// Auto Rifles
// The Forward Path
//FF/MKC
//notes:RokDC (must have - Season of Arrivals)
dimwishlist:item=1690783811&perks=2779035018,2458213969
//FF/Swash

Mars:

  • Sleeper Simulant
  • Polaris Lance

Menagerie:

  • Izanagi's Burden Catalyst (requires perfected chalice, which will take some weeks)

Titan:

  • Outbreak Perfected (Enemy of my Enemy)
  • Outbreak Perfected Catalyst (Minimum 3 weeks)
# Origin whitelist
map $http_origin $allowed_origin {
default "false";
"~*\.?test\.com" "true";
"~*\.?example\.com" "true";
}
# Methods
map $request_method $cors {
@caquino
caquino / keybase.md
Created May 9, 2019 11:18
keybase.md

Keybase proof

I hereby claim:

  • I am caquino on github.
  • I am syshero (https://keybase.io/syshero) on keybase.
  • I have a public key whose fingerprint is 6AF0 E880 9F65 1543 54A3 DF9E 5B4F A596 7A31 A61F

To claim this, I am signing this object:

function FindProxyForURL ( url, host ) {
return "PROXY 10.0.0.1:8080; DIRECT";
}
keyval_zone zone=default:32k state=default.json;
keyval $arg_text $text1 zone=default;
server {
status_zone default;
root /usr/share/nginx/html;
listen 80 default_server;
server_name _;
resolver consul:8600 valid=2s ipv6=off;
resolver_timeout 2s;
keyval_zone zone=default:32k state=default.json;
keyval $arg_text $text1 zone=default;
server {
status_zone default;
root /usr/share/nginx/html;
root@host:~# curl -v http://localhost/data 2>&1 | grep X-Cache-Status
< X-Cache-Status: HIT
root@host:~# curl -X POST --data "test=1" -v http://localhost/data 2>&1 | grep X-Cache-Status
root@host:~# curl -v http://localhost/data 2>&1 | grep X-Cache-Status
< X-Cache-Status: MISS
root@host:~# curl -v http://localhost/data 2>&1 | grep X-Cache-Status
< X-Cache-Status: HIT
resolver consul:8600 valid=2s ipv6=off;
resolver_timeout 2s;
proxy_cache_path /tmp/nginx levels=1:2 keys_zone=default:10m max_size=50m;
upstream backends {
zone backends 32k;
server service.consul service=backend resolve;
}