Skip to content

Instantly share code, notes, and snippets.

View kolletzki's full-sized avatar

Lukas Kolletzki kolletzki

View GitHub Profile
@kolletzki
kolletzki / netframework-version-history.md
Created December 18, 2018 07:59
.NET Framework Version History

.NET Framework Version History

Version CLR Release Date Support End Development Tool Windows Windows Server Replaces
1.0 1.0 2002-02-13 2009-07-14 VS .NET XP SP1 N/A N/A
1.1 1.1 2003-04-24 2015-06-14 VS .NET 2003 XP SP2, SP3 2003 1.0
2.0 2.0 2005-11-07 2011-07-12 VS 2005 N/A 2003, 2003 R2, 2008 SP2, 2008 R2 SP1 N/A
3.0 2.0 2006-11-06 2011-07-12 Expression Blend Vista 2008 SP2, 2008 R2 SP1 2.0
3.5 2.0 2007-11-19 2028-10-10 VS 2008 7, 8, 8.1, 10 2008 R2 SP1 2.0, 3.0
4
@kolletzki
kolletzki / Get-FrameworkVersion.ps1
Last active April 21, 2023 12:42
Get .NET Framework Version
$versionTable = @{
378389 = ".NET Framework 4.5"
378675 = ".NET Framework 4.5.1 installed with Windows 8.1"
378758 = ".NET Framework 4.5.1 installed on Windows 8, Windows 7 SP1, or Windows Vista SP2"
379893 = ".NET Framework 4.5.2"
393295 = ".NET Framework 4.6 installed with Windows 10"
393297 = ".NET Framework 4.6"
394254 = ".NET Framework 4.6.1 installed on Windows 10"
394271 = ".NET Framework 4.6.1"
394802 = ".NET Framework 4.6.2 installed on Windows 10 Anniversary Update and Windows Server 2016"
@kolletzki
kolletzki / tagesschau-eil-mute.json
Created July 3, 2018 09:35
Tagesschau.de EIL mute
[
{
"enabled": true,
"updateUrl": null,
"md5Url": null,
"url": null,
"originalMd5": null,
"installDate": 1530610380261,
"name": "Tagesschau.de EIL mute",
"sections": [
@kolletzki
kolletzki / github-restore-dashboard-layout.css
Created May 18, 2018 06:32
GitHub restore dashboard layout
/**
* Floats the GitHub sidebar to the right side
*
* url: github.com
*/
.dashboard-sidebar.column {
float: right;
padding-left: 32px;
}
@kolletzki
kolletzki / github-remove-feed-cards.css
Last active February 14, 2018 07:31
Removes the cards in the GitHub feed
/**
* Removes the cards in the GitHub feed
*
* url: github.com
*/
.news .body .border.rounded-1.p-3.my-2,
.news .body .border.rounded-1.p-3.mt-2 {
display: none;
}
@kolletzki
kolletzki / trash_black-friday_cyber-monday.txt
Created November 24, 2017 09:51
Sieve filter for moving BlackFriday/CyberMonday spam to trash
require ["fileinto"];
# Moves mails containing ("black" and "friday") or ("cyber" and "monday") in the subject header to trash
if anyof(allof (header :contains "subject" "black", header :contains "subject" "friday"),
allof (header :contains "subject" "cyber", header :contains "subject" "monday"))
{
fileinto "Trash";
}
@kolletzki
kolletzki / hide-wikipedia-banner.css
Last active July 11, 2017 18:44
Hide Wikipedia DE Banner
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("de.wikipedia.org") {
#WMDE_editor_campaign_summer_2017_b-container {
margin-top: -235px;
}
#mw-page-base {
padding-top: 0;
}

Keybase proof

I hereby claim:

  • I am kolletzki on github.
  • I am kolletzki (https://keybase.io/kolletzki) on keybase.
  • I have a public key ASBRuXoP_TlCy5V8-Gii_BD4aM3SU32QNaTfKp8GYTeHawo

To claim this, I am signing this object:

@kolletzki
kolletzki / main.js
Last active October 29, 2015 18:12
Greasemonkey mute script for greenkeeper.io pull requests
// ==UserScript==
// @name GitHub Greenkeeper Mute
// @namespace github.com
// @description Mutes greenkeeper.io PR
// @include https://github.com/
// @version 1
// @grant none
// ==/UserScript==
var elements = document.querySelectorAll('div.alert');