Skip to content

Instantly share code, notes, and snippets.

View SeriousM's full-sized avatar
🌟
Focusing

Bernhard Millauer SeriousM

🌟
Focusing
View GitHub Profile
@SeriousM
SeriousM / .md
Last active February 14, 2022 14:39
Logout all users from meteor application
To catch errors during script execution:
WHENEVER SQLERROR EXIT FAILURE
@SeriousM
SeriousM / introrx.md
Created January 26, 2016 17:49 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
using System;
using System.Runtime.InteropServices;
// ReSharper disable SuspiciousTypeConversion.Global
// ReSharper disable InconsistentNaming
namespace VideoPlayerController
{
/// <summary>
/// Controls audio using the Windows CoreAudio API
/// from: http://stackoverflow.com/questions/14306048/controling-volume-mixer
@SeriousM
SeriousM / gist:fd6091ac72501405fb2ed82b4cc0d421
Created April 2, 2016 17:54
Kill steam.exe on Windows Shutdown/Restart
Task Scheduler
Name: Kill SteamApp on Shutdown or Restart
Trigger:
When: On an Event
Log: System
Source: USER32
EventID: 1074
Start a program:
Program/Script: taskkill
Arguments: /f /t /im Steam.exe
@SeriousM
SeriousM / ngrxintro.md
Created October 30, 2016 22:55 — forked from btroncone/ngrxintro.md
A Comprehensive Introduction to @ngrx/store - Companion to Egghead.io Series

#Comprehensive Introduction to @ngrx/store By: @BTroncone

Also check out my lesson @ngrx/store in 10 minutes on egghead.io!

Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!

Table of Contents

@SeriousM
SeriousM / gist:eb7b35bc44c02f1cc1f7e4c80a42eb87
Created January 15, 2017 20:45 — forked from LukasBombach/gist:2943fc2a1cb5fd4bbd1c3e6b477ce033
Installing Plex Media Server on Debian on a Pine64
sudo apt-get install apt-transport-https
sudo dpkg --add-architecture armhf
echo "deb [arch=armhf] https://dev2day.de/pms/ jessie main" | sudo tee /etc/apt/sources.list.d/pms.list
sudo apt-get update
sudo apt-get install binutils:armhf plexmediaserver-installer -y --force-yes
@SeriousM
SeriousM / openssl.MD
Created October 31, 2017 13:30 — forked from jchandra74/openssl.MD
HOWTO: Create Your Own Self-Signed Certificate with Subject Alternative Names Using OpenSSL in Ubuntu Bash for Window

HOWTO: Create Your Own Self-Signed Certificate with Subject Alternative Names Using OpenSSL in Ubuntu Bash for Window

Overview

My main development workstation is a Windows 10 machine, so we'll approach this from that viewpoint.

Recently, Google Chrome started giving me a warning when I open a site that uses https and self-signed certificate on my local development machine due to some SSL certificate issues like the one below:

Self-Signed SSL Issue in Chrome