C# Programming Tips and Examples

C# Programming and Cryptography Blog

Sunday, February 25, 2024

My Arbitrary Precision Arithmetic Libraries

›
Hello C# code enjoyers. It's been a long time since I updated this blog, but that is going to change. I've been keeping a folder ...
Friday, September 9, 2022

The Self-Debugging-Code Design Pattern

›
Behold! The self-debugging-code design pattern: try { // Dodgy code here } catch (Exception ex) { System.Diagnostics.Process.Start(...
Friday, April 13, 2018

Pascal's Triangle

›
Pascal's triangle has a lot of mathematically interesting properties; It represents binomial coefficients (n choose k or combination o...
Tuesday, December 20, 2016

Equidistribution of ornaments across your Christmas tree's lateral surface area

›
Introduction I have been learning a lot of math lately. I now know more math than I ever fathomed I would, more than I knew there was o...
Tuesday, December 6, 2016

Javascript inside svg?

›
Readers might or might not be aware that an SVG file is really just an XML document. And yes, as you suspected, it allows javascript and v...
2 comments:
Thursday, November 24, 2016

EntropyGlance

›
Entropy at a glance In a hurry? Skip straight to the C# source code - EntropyGlance; Entropy at a glance - A C# WinForms project - https:/...
Wednesday, September 21, 2016

RC4 stream cipher variants and visualization of table permutation state

›
Here, I present some work I have been doing on two RC4 stream cipher variants. The first variant, as seen below, I wrote to help me visual...
Tuesday, August 16, 2016

Lorenz Chaos Attractor

›
This project was inspired by one of Daniel Shiffman's 10 minute coding challenge YouTube videos, The Lorenz Attractor in Processing . ...
Tuesday, July 5, 2016

True hardware random number generator with the Raspberry PI

›
So, I have been getting into cryptology lately, (For my most recent projects that I may or may not have blogged about at this point, see B...
Wednesday, June 29, 2016

Bloom Filter - A novel, space efficient data structure like a hash-table for billions of values.

›
Introduction A bloom filter is a truly novel data structure. Similar to a hash table, it can tell you if you've hashed a particular...
›
Home
View web version