Skip to content

Instantly share code, notes, and snippets.

View MrBuBBLs's full-sized avatar
🎯
QuickBasic2GoLang

Philippe Boblet MrBuBBLs

🎯
QuickBasic2GoLang
View GitHub Profile
@julesbou
julesbou / install.sh
Last active September 9, 2019 09:26
Debian 6.0 (Squeeze) 64 bits - (NodeJS/Nginx/Mongodb) - Suited for Frontend/Backend
###
### Debian configuration
###
# --- Bashrc ---
echo "
@jacqinthebox
jacqinthebox / post-install.md
Last active January 29, 2022 10:47
Post Install Ubuntu

Post Install Ubuntu 19.04 and deriviates

Update System

sudo apt-get update -y && sudo apt-get upgrade -y
sudo apt-get install -y curl git gitk vim-nox p7zip-full \
    build-essential linux-headers-$(uname -r) \
    dkms gdebi zsh gnome-tweak-tool gparted \
    software-properties-common \
@mmv-ru
mmv-ru / burp on QNAP.md
Last active June 25, 2022 23:27
burp backup on qnap nas

BURP

ipkg dependencies

ipkg install openssl-dev librsync zlib

ipkg install gcc ipkg install make automake autoconf libtool binutils autoconf

ipkg install optware-devel

ipkg install crosstool-native

@IngmarBoddington
IngmarBoddington / git
Last active September 15, 2022 13:54
Git Reference
git add . [-A]
- Recursively add all modified files to staging area
-A - Include removed files
git blame
- Show last modigified timestamp / author for each line of a file
git branch [-a] [-r] [-m] [-d] [-D] [<branch-name>]
- Lists local branches, give name to create branch
- Flags:git
@ogrrd
ogrrd / Handy Varnish commands.md
Last active October 20, 2022 07:12
Handy Varnish commands

Handy Varnish commands

See what Varnish is currently processing

$ varnishlog

Show the referer (sic) header for requests

@stereobooster
stereobooster / 0-react-maps.md
Last active August 16, 2023 12:19
React Maps
[Raster tiles][rt] [Vector tiles][vt] GeoJSON virtual-dom offline map quality React component React Native
google maps + + good [4 unsupported][gm-react] [+][gm-native]
leaflet * + [+][ll-vt] + [+/-][ll-offline] depends [+][ll-rect]
d3 * + [+/-][d3-vdom] +/- depends [+][d3-react]
MapboxGL + + depends [+][mb-react] [+][mb-native]
Yandex Maps +
@greinacker
greinacker / master_pg_hba.conf
Last active September 11, 2023 01:10
PostgreSQL 9.2.x replication
hostssl replication replicator 5.6.7.8 md5
@montanaflynn
montanaflynn / pget.go
Last active October 21, 2023 06:12
Bounded Parallel Get Requests in Golang
package main
import (
"fmt"
"net/http"
"sort"
"time"
)
// a struct to hold the result from each request including an index
# https://hakibenita.com/fast-load-data-python-postgresql
from typing import Iterator, Dict, Any, Optional
from urllib.parse import urlencode
import datetime
#------------------------ Profile
import time
@steve-jansen
steve-jansen / README.md
Last active February 23, 2024 22:38
Stop and start Symantec Endpoint Protection on OS X

This script enables you stop and start Symantec Endpoint Protection on OS X

Installation

sudo curl https://gist.githubusercontent.com/steve-jansen/61a189b6ab961a517f68/raw/sep -o /usr/local/bin/sep
sudo chmod 755 /usr/local/bin/sep
sudo chown root:staff /usr/local/bin/sep