This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Title: Static generated websites are shit | |
# Author: Mikael Lundin | |
# Date: 2018-09-06 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Title: Recursively search and update a json javascript object | |
# Author: Mikael Lundin | |
# Date: 2018-09-02 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Title: Creating a WebAssembly binary and running it in a browser | |
# Author: Mikael Lundin | |
# Date: 2016-06-19 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Title: Beginners guide to Arexx | |
# Author: Mikael Lundin | |
# Link: http://blog.mikaellundin.name/2016/02/09/beginners-guide-to-arexx.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Title: Beginners guide to Amiga Basic | |
# Author: Mikael Lundin | |
# Link: http://blog.mikaellundin.name/2016/02/03/beginners-guide-to-amiga-basic.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Title: The value of attributes | |
# Author: Mikael Lundin | |
# Link: http://blog.mikaellundin.name/2009/02/20/the-value-of-attributes.html |
NewerOlder