Skip to content

Instantly share code, notes, and snippets.

View gWOLF3's full-sized avatar
๐ŸŒŠ

glenn wolfe gWOLF3

๐ŸŒŠ
View GitHub Profile
@gWOLF3
gWOLF3 / RHEL7-Kubernetes-Setup-Notes
Created April 30, 2019 21:42
RHEL 7 Kubernetes Server Bootstrap Notes
# Created By: glenn wolfe
# Email: [email protected]
This gist pertains to some idiosyncracies of bootrapping your RHEL 7 server instance with a single or multi-cluster kubernetes network.
The goal here was to simply aggregate the documentations resources you will need (including debugging) that will be required to get started.
RHEL 7 - kubernetes startup
Installing docker:
@gWOLF3
gWOLF3 / UnixPipeActivity.java
Created February 24, 2019 01:11 — forked from rbochet/UnixPipeActivity.java
How to write in pipes for Android
package fr.stackr.android.upt;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
@gWOLF3
gWOLF3 / stuns
Created December 5, 2018 17:28 — forked from zziuni/stuns
STUN server list
# source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list
# A list of available STUN server.
stun.l.google.com:19302
stun1.l.google.com:19302
stun2.l.google.com:19302
stun3.l.google.com:19302
stun4.l.google.com:19302
stun01.sipphone.com
stun.ekiga.net
@gWOLF3
gWOLF3 / Android Pass Variable
Created December 5, 2018 06:08 — forked from uknowmeright/Android Pass Variable
How to pass variables to a new activity in Android (Android Studio)
//step 1:
import android.content.Intent;
//step 2: add to activity you want to sav variables from
Intent i = new Intent(getApplicationContext(), ActivityName.class);
i.putExtra("someVariable","variableValue");
startActivity(i);
//step 3: add to activity you want to pulll variables from
@gWOLF3
gWOLF3 / Android Studio .gitignore
Created November 18, 2018 05:25 — forked from iainconnor/Android Studio .gitignore
A .gitignore for use in Android Studio
# Built application files
/*/build/
# Crashlytics configuations
com_crashlytics_export_strings.xml
# Local configuration file (sdk path, etc)
local.properties
# Gradle generated files