Skip to content

Instantly share code, notes, and snippets.

@miklund
miklund / 2018-09-06 static-generated-websites-are-shit
Created September 6, 2018 05:55
2018-09-06 Static generated websites are shit
# Title: Static generated websites are shit
# Author: Mikael Lundin
# Date: 2018-09-06
@miklund
miklund / 2018-09-02 recursively-search-and-update-a-json-javascript-object
Last active September 4, 2018 05:07
2018-09-02 Recursively search and update a json javascript object
# Title: Recursively search and update a json javascript object
# Author: Mikael Lundin
# Date: 2018-09-02
@miklund
miklund / FizzBuzz.cs
Last active May 16, 2018 13:39
FizzBuzz
public IEnumerable<string> GetFizzBuzz(int max)
{
var result = new List<string>();
for (int number = 1; number <= max; number++)
{
if (number % 15 == 0)
{
result.Add("fizzbuzz");
}
@miklund
miklund / 2016-06-19 creating-a-webassembly-binary-and-running-it-in-a-browser
Last active June 14, 2022 21:12
2016-06-19 Creating a WebAssembly binary and running it in a browser
# Title: Creating a WebAssembly binary and running it in a browser
# Author: Mikael Lundin
# Date: 2016-06-19
@miklund
miklund / 2016-05-25-left-rotate-a-binary-tree-in-javascript.md
Created May 25, 2016 13:54
2016-05-25-left-rotate-a-binary-tree-in-javascript
@miklund
miklund / 2016-02-09 beginners-guide-to-arexx
Last active February 14, 2016 12:25
2016-02-09 Beginners guide to Arexx
# Title: Beginners guide to Arexx
# Author: Mikael Lundin
# Link: http://blog.mikaellundin.name/2016/02/09/beginners-guide-to-arexx.html
@miklund
miklund / 2016-02-03 beginners-guide-to-amiga-basic
Last active May 31, 2022 23:20
2016-02-03 Beginners guide to Amiga Basic
# Title: Beginners guide to Amiga Basic
# Author: Mikael Lundin
# Link: http://blog.mikaellundin.name/2016/02/03/beginners-guide-to-amiga-basic.html
@miklund
miklund / 2016-01-18 exporting-comments-from-orchard-cms-to-import-them-into-disqus-part-2
Created January 18, 2016 11:07
2016-01-18 Exporting comments from Orchard CMS to import them into Disqus - Part 2
# Title: Exporting comments from Orchard CMS to import them into Disqus - Part 2
# Author: Mikael Lundin
# Link: http://blog.mikaellundin.name/2016/01/18/exporting-comments-from-orchard-cms-to-import-them-into-disqus-part-2.html
@miklund
miklund / 2016-01-17 exporting-comments-from-orchard-cms-to-import-them-into-disqus-part-1
Last active January 17, 2016 12:27
2016-01-17 Exporting comments from Orchard CMS to import them into Disqus - Part 1
# Title: Exporting comments from Orchard CMS to import them into Disqus - Part 1
# Author: Mikael Lundin
# Link: http://blog.mikaellundin.name/2016/01/17/exporting-comments-from-orchard-cms-to-import-them-into-disqus-part-1.html
@miklund
miklund / 2009-02-20 the-value-of-attributes
Created January 14, 2016 19:50
2009-02-20 The value of attributes
# Title: The value of attributes
# Author: Mikael Lundin
# Link: http://blog.mikaellundin.name/2009/02/20/the-value-of-attributes.html