Skip to content

Instantly share code, notes, and snippets.

View theweekendcoder's full-sized avatar

Michael Rodriguez theweekendcoder

View GitHub Profile
@sfdesigner
sfdesigner / MainPage.xaml
Created July 23, 2016 00:06
Copy and Paste from Clipboard in C# for Universal Windows App
<Page
x:Class="ClipboardSandbox.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ClipboardSandbox"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" Padding="20">
@ShawnHymel
ShawnHymel / app.js
Created February 11, 2016 23:10
Getting Started with Intel Edison - Part 8
window.socket = null;
function connect() {
var ip = document.getElementById("ip").value;
var port = document.getElementById("port").value
window.socket = io.connect("http://" + ip + ":" + port);
window.socket.on("connect_error", function() {
@laurenorsini
laurenorsini / MakeOpenVPN.sh
Last active June 25, 2025 05:19
MakeOpenVPN.sh by Eric Jodoin
#!/bin/bash
# Default Variable Declarations
DEFAULT="Default.txt"
FILEEXT=".ovpn"
CRT=".crt"
KEY=".3des.key"
CA="ca.crt"
TA="ta.key"