Skip to content

Instantly share code, notes, and snippets.

View taik0's full-sized avatar

Daniel Ortiz taik0

View GitHub Profile
@kpacha
kpacha / main.go
Last active July 17, 2018 16:15
Serve all the requests with a given distribution of response times and status codes
package main
import (
"flag"
"math/rand"
"net/http"
"sync"
"time"
"github.com/gin-gonic/gin"
@shortjared
shortjared / list.txt
Last active October 2, 2024 19:57
List of AWS Service Principals
a4b.amazonaws.com
access-analyzer.amazonaws.com
account.amazonaws.com
acm-pca.amazonaws.com
acm.amazonaws.com
airflow-env.amazonaws.com
airflow.amazonaws.com
alexa-appkit.amazon.com
alexa-connectedhome.amazon.com
amazonmq.amazonaws.com
@Kovrinic
Kovrinic / .gitconfig
Last active October 10, 2024 21:39
git global url insteadOf setup
# one or the other, NOT both
[url "https://github"]
insteadOf = git://github
# or
[url "git@github.com:"]
insteadOf = git://github

NES emulator development guide

Overview of document

#EXTINF:-1,Nickelodeon
http://B29273.cdn.telefonica.com/29273/NICK_SUB.m3u8
#EXTINF:-1,Disney Junior
http://B29285.cdn.telefonica.com/29285/DSNJR_SUB.m3u8
#EXTINF:-1,40TV
http://B31312.cdn.telefonica.com/31312/40TV_SUB.m3u8
#EXTINF:-1,Disney XD
http://B31309.cdn.telefonica.com/31309/DSNYXD_SUB.m3u8
#EXTINF:-1,Canal Cocina
http://B31305.cdn.telefonica.com/31305/COCINA_SUB.m3u8
@kbarber
kbarber / gist:6456420
Created September 5, 2013 21:26
Renewing a Puppet CA cert
Renew Puppet CA cert.
Not the perfect idea, but should alleviate the need to resign every cert.
What you need from existing puppet ssl directory:
ca/ca_crt.pem
ca/ca_key.pem
Create an openssl.cnf:
[ca]
@abhishekkr
abhishekkr / $conf_dir puppet.conf
Last active February 13, 2016 21:30
Puppet Module : No Code In Data ~ using PuppetDB in masterless puppet
[main]
storeconfigs = true
storeconfigs_backend = puppetdb
reports = store,puppetdb
pluginsync = true
@tmiller
tmiller / README.md
Last active August 30, 2024 01:22
A very simple example of using a map of channels for pub/sub in go.