Skip to content

Instantly share code, notes, and snippets.

View asbjornu's full-sized avatar
💭
He's a loathsome offensive brute, yet I can't look away.

Asbjørn Ulsberg asbjornu

💭
He's a loathsome offensive brute, yet I can't look away.
View GitHub Profile
@asbjornu
asbjornu / SwedbankPay_CLA.md
Created September 18, 2019 09:50
Swedbank Pay Individual Contributor License Agreement

Swedbank Pay Individual Contributor License Agreement

Thank you for your interest in contributing to open source software projects (“Projects”) made available by Swedbank Pay or its affiliates (“Swedbank Pay”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to Swedbank Pay in respect of any of the Projects (collectively “Contributions”).

Contrary to “Closed Source” software or proprietary software – where a creator maintains exclusive control over his or her source code – “Open Source Software” is software with source code that anyone can inspect, modify, share, learn from and enhance. Outlined below you will find Swedbank Pay Individual Contributor License Agreement under which you as a contributor retain all of your rights, titl

@asbjornu
asbjornu / ChecklistExtension.cs
Created April 24, 2019 10:13
Markdig checklist extension
public class ChecklistExtension : IMarkdownExtension
{
public void Setup(MarkdownPipelineBuilder pipeline)
{
if (pipeline.InlineParsers.Contains<TaskListInlineParser>())
return;
if (pipeline.InlineParsers.Contains<ChecklistInlineParser>())
return;
@asbjornu
asbjornu / soundcloud-no-reposts.js
Created September 24, 2018 07:56
Removes reposts from your SoundCloud stream
// ==UserScript==
// @name SoundCloud No Reposts
// @version 1
// @grant none
// ==/UserScript==
(function repeat() {
var posts = document.getElementsByClassName('soundList__item');
var skip = [];
@asbjornu
asbjornu / thingthangthung.cs
Last active April 22, 2017 23:25 — forked from einarwh/thingthangthung.cs
Object initializer surprise.
void Main()
{
var t = new Thing(new Thang { Thung = "lol" })
{
Thang = { { "OMG" } }
};
t.Dump();
}
public class RecursiveDataAnnotationsValidator : IModelValidator
{
private readonly IModelValidator validator;
public RecursiveDataAnnotationsValidator(IModelValidator innerValidator, Type type)
{
if (innerValidator == null)
throw new ArgumentNullException(nameof(innerValidator));
@asbjornu
asbjornu / configure.sh
Created August 9, 2016 15:29
SchismTracker configure script
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for schismtracker 20160805.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
#
#
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
@asbjornu
asbjornu / GetWholeNumberAndDecimalsFromDecimal.cs
Last active January 26, 2016 12:14
Get whole number and decimals from a System.Decimal in C#
var value = 123.8723498m;
var major = (int)Math.Truncate(value);
var bits = decimal.GetBits(value);
var decimalPart = bits[3];
var bytes = BitConverter.GetBytes(decimalPart);
var decimalLength = bytes[2];
var pow = (int)Math.Pow(10, decimalLength);
var minor = (int)((value - major) * pow);
var formatted = String.Format("{0}.{1}", major, minor);
<?php
/**
* Includes a few useful predicates in the bootstrapped `infiniteScroll` JS object
* that is served along with the rest of the document upon initial page request.
*/
add_filter( 'infinite_scroll_js_settings', 'pla_extra_js_settings' );
function pla_extra_js_settings( $js_settings ) {
$js_settings['text'] = __( "Plus de contenus", "pla" );
@asbjornu
asbjornu / PayEx_CLA.md
Last active September 3, 2018 08:30 — forked from CLAassistant/SAP_CLA
PayEx Individual Contributor License Agreement

PayEx Individual Contributor License Agreement

Thank you for your interest in contributing to open source software projects (“Projects”) made available by PayEx or its affiliates (“PayEx”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to PayEx in respect of any of the Projects (collectively “Contributions”).

Contrary to “Closed Source” software or proprietary software – where a creator maintains exclusive control over his or her source code – “Open Source Software” is software with source code that anyone can inspect, modify, share, learn from and enhance. Outlined below you will find PayEx Individual Contributor License Agreement under which you as a contributor retain all of your rights, titles and interests in and to your con

@asbjornu
asbjornu / enforce-unicode.py
Last active August 29, 2015 14:14
Enforce UTF-8 Without BOM In All C# Files
#!/usr/local/bin/python
# -*- coding: utf-8 -*-
import os
import glob
import fnmatch
import codecs
from chardet.universaldetector import UniversalDetector
# from http://farmdev.com/talks/unicode/