Skip to content

Instantly share code, notes, and snippets.

@umarizulkifli
umarizulkifli / ntop.md
Created August 23, 2016 08:20 — forked from JosefJezek/ntop.md
How to use ntop
@umarizulkifli
umarizulkifli / pritunlMigration.md
Created October 7, 2016 10:09 — forked from makenova/pritunlMigration.md
move pritunl between servers

Migrating your pritunl install between servers

This is a small write up about how to migrate your pritunl install between servers. It's not especially detailed because I'm lazy and your migration story will most likely be different. All this can be avoided by using a remote/hosted mongo instance(compose.io, mongolab, etc.) and simply pointing your pritunl instance at that. If you want more details ask, and I'll do my best to answer and update this write-up accordingly. Also, feel free to criticize my grammar and spelling.

@umarizulkifli
umarizulkifli / V4A earphone setting
Created June 1, 2017 07:49 — forked from CHEF-KOCH/V4A earphone setting
My ViPER4Android Profile -> I'm using in-earphone from sennheiser
FX:
<Headset>
1. Master Power: ✔
2. Playback Gain Control: ✘
3. FIR Equalizer: ✘
4. Convolver: ✔
(ii) Impulse Response: Sony Xperia Rev2 ClearAudio+
5. Field Surround: ✘
6. Headphone Surround +
7. Reverberation: ✘
@umarizulkifli
umarizulkifli / README.md
Created January 15, 2019 04:31 — forked from adambom/README.md
Backup Kubernetes Cluster State

Run this in order to backup all you k8s cluster data. It will be saved in a folder bkp. To restore the cluster, you can run kubectl apply -f bkp.

Please note: this recovers all resources correctly, including dynamically generated PV's. However, it will not recover ELB endpoints. You will need to update any DNS entries manually, and manually remove the old ELB's.

Please note: This has not been tested with all resource types. Supported resource types include:

  • services
  • replicationcontrollers
  • secrets
  • deployments
  • horizontal pod autoscalers
@umarizulkifli
umarizulkifli / Dockerfile
Last active May 6, 2020 06:27 — forked from evanj/Dockerfile
connectbug: Make lots of outbound connections to cause DNS errors in Kubernetes. See https://github.com/kubernetes/kubernetes/issues/45976
FROM python:2.7-alpine
COPY . /app/
WORKDIR /app
ENTRYPOINT ["python", "connectbug.py"]