Skip to content

Instantly share code, notes, and snippets.

View gmtek's full-sized avatar

gmtek gmtek

  • Oslo, Norway
View GitHub Profile
@gmtek
gmtek / vpn-cloudformation-template.yaml
Created July 30, 2024 08:55 — forked from pbzona/vpn-cloudformation-template.yaml
Roll your own VPN with AWS CloudFormation - part three
# Credit to John Creecy
# Original can be found at https://gist.github.com/zugdud/b39eea02faa6926305f57fbde8d31b68
AWSTemplateFormatVersion: '2010-09-09'
Description: OpenVPN Stack
Parameters:
OpenVPNPort:
Type: Number
Default: 1194
@gmtek
gmtek / Animation Fade
Created July 4, 2018 07:17 — forked from aloisdeniel/Animation Fade
Xamarin.iOS view common animations
public static void Fade (this UIView view, bool isIn, double duration = 0.3, Action onFinished = null)
{
var minAlpha = (nfloat)0.0f;
var maxAlpha = (nfloat)1.0f;
view.Alpha = isIn ? minAlpha : maxAlpha;
view.Transform = CGAffineTransform.MakeIdentity ();
UIView.Animate (duration, 0, UIViewAnimationOptions.CurveEaseInOut,
() => {
view.Alpha = isIn ? maxAlpha : minAlpha;