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 / JetbrainsEvaluationReset_2020.py
Created October 27, 2020 18:42
[Activate] A Python Script To Reset The Evaluation License Of These Jetbrains Products Released In 2020 Or Later (IntelliJIdea, CLion, Rider, PyCharm, RubyMine, GoLand )
# Reset Jetbrains 2020 Products
import glob
import os
import winreg
from os import path
from os.path import expanduser
home = expanduser("~")
newJetbrainsHome = path.join(home, "AppData\Roaming\JetBrains")
@SeriousM
SeriousM / .md
Last active February 14, 2022 14:39
Logout all users from meteor application
@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 / gist:34c3701db56292d3353af42e89f0d969
Created October 13, 2020 09:55
VS2019 Xamarin iOS Development - Storage of Provisioning Certificates
C:\Users\<user>\AppData\Local\Xamarin\iOS\Provisioning\Certificates
@SeriousM
SeriousM / GOURCE.md
Last active July 30, 2020 13:17
GOURCE Fast-Forward animation without delete entries

Download: https://github.com/acaudwell/Gource

set G=C:\Users\BernhardMillauer\OWN\Tools\Gource\gource.exe
set D=C:\dev\Everything
%G% --output-custom-log - --path %D%

--> remove |D| lines # | grep -v '|D|'

%G% --path .\gource-out.txt --log-format custom --max-files 0 --file-idle-time 0 --time-scale 2 --seconds-per-day 1 --max-file-lag 1 --auto-skip-seconds 1 --bloom-intensity 1 --bloom-multiplier 1 --hide date,filenames,usernames --elasticity 0.4 --stop-at-end --disable-auto-rotate -1920x1080 -o .\everythinggit.ppm
@SeriousM
SeriousM / gist:28c8142fe38a3550f76c
Created April 16, 2015 21:56
Installing ungit on ubuntu (-like) os
nodejs is called differently on ubunto (for whatever reason) - https://github.com/FredrikNoren/ungit/issues/401
sudo ln -s /usr/bin/nodejs /usr/bin/node
sudo -H npm install -g ungit
@SeriousM
SeriousM / GetEveToWork.md
Created September 21, 2019 10:22 — forked from thomas-lange/GetEveToWork.md
Get Eve to Work

1. Install Game via Steam

  • Set Up Proton Support
  • Install Eve Online

2. Install winetricks

sudo apt install winetricks

3. Get to your game folder

This looks something like this:

Creating Neat .NET Core Command Line Apps

Every reason to get more HackerPoints™ is a good one, so today we're going to write a neat command line app in .NET Core! The Common library has a really cool package Microsoft.Extensions.CommandlineUtils to help us parse command line arguments and structure our app, but sadly it's undocumented.

No more! In this guide, we'll explore the package and write a really neat console app. We'll get good practices, a help system and argument parsing for free. Oh, it also involves ninjas. Insta-win.