Skip to content

Instantly share code, notes, and snippets.

@Iridium-IO
Iridium-IO / README.md
Last active January 30, 2024 10:36
Collapsible Markdown Code Blocks

Example Collapsible Content

Style 1

Click to see more:
Given the following python code
from pychartjs import BaseChart

class myChart(BaseChart):
@Iridium-IO
Iridium-IO / OneBillion.vb
Last active October 31, 2018 13:45
Counts the time needed to say all numbers up to 1 billion
Imports System.Threading
Module OneBillion
'Time needed to say numbers (in milliseconds)
Const unit = 158 'From 0-9
Const tens = 262 ' From 10-90
Const magnitude = 282 'time to say 'hundred, thousand, million'
Sub Main()