Skip to content

Instantly share code, notes, and snippets.

View sonnt85's full-sized avatar

NguyenThanhSon sonnt85

View GitHub Profile
@sonnt85
sonnt85 / nignxgen.toml
Last active August 24, 2023 08:34
template for nginxgen
[[Containers]]
# IP of networks container with name (ingress, host, public)
ID = "2201" # or Name = "container's name"
State = {Running = true}#[false]true
# List addresses exposed inside the container, must configure hostport, exposed when len(Addresses) != 0
# {Proto = "tcp", IP = "", Port = "5891", HostPort = "8081", HostIP = "127.0.0.1"}, # Port is the server's port in the upstream block
Addresses = [
{Proto = "tcp", Port = "5891"}, # Port is the server's port in the upstream block, will be overwritten by VPORT
]
@sonnt85
sonnt85 / public-stun-list.txt
Created May 19, 2019 11:10 — forked from mondain/public-stun-list.txt
Public STUN server list
23.21.150.121:3478
iphone-stun.strato-iphone.de:3478
numb.viagenie.ca:3478
s1.taraba.net:3478
s2.taraba.net:3478
stun.12connect.com:3478
stun.12voip.com:3478
stun.1und1.de:3478
stun.2talk.co.nz:3478
stun.2talk.com:3478
@sonnt85
sonnt85 / update-ffmpeg-rpi.sh
Created March 9, 2019 09:15 — forked from enzanki-ars/update-ffmpeg-rpi.sh
Install/Update FFmpeg with hardware acceleration on the Raspberry Pi
#!/bin/bash
# Compile and install/update (or install via Apt) FFmpeg Codecs
# Compile and install/update FFmpeg suite
# Compile with hardware acceleration
# Modified from https://retroresolution.com/compiling-ffmpeg-from-source-code-all-in-one-script/
echo "Begining Installation of FFmpeg Suite"
#Update APT Repository
echo "Updating the APT repository information"
/*
ffmpeg -i "$file" -f s32be -acodec pcm_s32be -ar 44100 -af "volume=0.5" tcp://espip:5522
*/
#include "i2s.h"
#include <ESP8266WiFi.h>
const char* ssid = "***********";
const char* password = "**********";
WiFiServer pcmServer(5522);
static WiFiClient pcmClient;
@sonnt85
sonnt85 / Dockerfile
Created August 11, 2017 00:37 — forked from ondrik/Dockerfile
Dockerfile for running Anki inside a Docker Container on Debian Stable
# Credits:
#
# - http://fabiorehm.com/blog/2014/09/11/running-gui-apps-with-docker/
# - https://github.com/jfrazelle/dockerfiles/blob/master/spotify/Dockerfile
#
# Prepare (example):
#
# $ mkdir AnkiDocker
# $ cd AnkiDocker
# $ # Save this file to Dockerfile and adapt it to your needs.