Post

Test Post

Testing what different site elements look like.

Heading level 1

Don’t put tabs or spaces in front of your paragraphs.

Keep lines left-aligned like this.

This is the first line.
And this is the second line.

Heading level 2

I just love bold text this way.
I just love bold text this other way too.

Italicized text is the cat’s meow.
Italicized text is the cat’s meow.

This text is really important.
This text is really important.
This text is really important.
This text is really important.
This is really very important text.

Heading level 3

  1. First item
  2. Second item
  3. Third item
  4. Fourth item

  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item

  • First item
  • Second item
  • Third item
  • Fourth item

  • First item
  • Second item
  • Third item
    • Indented item
      • Inden Indented
    • Indented item
  • Fourth item

Heading level 4

Dorothy followed her through many of the beautiful rooms in her castle.

The cat followed.

The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

Heading level 5 - the bongo kitty code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Bongo cat

import time
import board
import displayio
import adafruit_displayio_ssd1306
import adafruit_imageload

displayio.release_displays()

i2c = board.STEMMA_I2C()
oled_reset = board.D9
display_bus = displayio.I2CDisplay(i2c, device_address=0x3D, reset=oled_reset)
WIDTH = 128
HEIGHT = 64
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=WIDTH, height=HEIGHT)

group = displayio.Group()
display.root_group = group

bitmap, palette_bit = adafruit_imageload.load(
    "/bongo.bmp",
    bitmap=displayio.Bitmap,
    palette=displayio.Palette,
)
tile_grid = displayio.TileGrid(bitmap, pixel_shader=palette_bit,
                                width=1, height=1,
                                tile_height=64, tile_width=105,
                                default_tile=0, x = 7)
group.append(tile_grid)

bongo = 0
index = 0
delay = 0.15

while True:
    if (bongo + delay) < time.monotonic():
        tile_grid[0] = index
        index = 1 if index == 0 else 0
        bongo = time.monotonic()

Snakey octo cat

https://www.markdownguide.org
fake@example.com

I love supporting the EFF.
This is the Markdown Guide.
See the section on kitty code.

Tables

SyntaxDescriptionTest Text
HeaderTitleHere’s this
ParagraphTextAnd more
he he hehe he hehe he he
andanotherhe he he
πŸˆβ€β¬› Project πŸˆβ€β¬›πŸˆβ€β¬›πŸˆβ€β¬›πŸˆβ€β¬› Description πŸˆβ€β¬›πŸˆβ€β¬›πŸˆβ€β¬›
Breathe Easy - an air quality monitorProject built for the β€œMaking Embedded Systems” class held by the embedded systems expert and author Elicia White. Made soon after the pandemic, so a useful item to have around. It involved project design, advanced embedded systems topics, low level C coding, working with different sensors, battery monitoring, and 3D printing a lithophane earth shaped warning light.
Mushu memorial - lithophane lampAs a memorial for my beloved cat, Mushu, who passed away due to cancer. Our veterinary oncologist loved Mushu, wanted a memento of him, and asked for a photo. I decided a simple photo would not do justice to his memory, so I created an easy to use battery powered lamp, with a lithophane picture of him, that made a beautiful and unique gift for our vet.
Heart Beats in the NightFreeform circuit sculptures are made using a fascinating technique that I’ve seen online, and I wanted to try for myself. It involved creating a circuit out of bare brass rods, shaped as a heart, with simple LEDs and a battery connected to the sculpture.
  • Write the press release
  • Update the website
  • Contact the media
CompanyContactCountry
This guide gets folks started with CircuitPython, a version of Python particularly suited to use on hardware like microcontrollers and single board computers like Raspberry Pi.This guide gets folks started with CircuitPython, a version of Python particularly suited to use on hardware like microcontrollers and single board computers like Raspberry Pi.Maria AndersGermany
Centro comercial MoctezumaThis guide gets folks started with CircuitPython, a version of Python particularly suited to use on hardware like microcontrollers and single board computers like Raspberry Pi.This guide gets folks started with CircuitPython, a version of Python particularly suited to use on hardware like microcontrollers and single board computers like Raspberry Pi.Mexico
Ernst HandelRoland MendelThis guide gets folks started with CircuitPython, a version of Python particularly suited to use on hardware like microcontrollers and single board computers like Raspberry Pi.This guide gets folks started with CircuitPython, a version of Python particularly suited to use on hardware like microcontrollers and single board computers like Raspberry Pi.
Island TradingHelen BennettUK

πŸˆβ€β¬›πŸˆβ€β¬›πŸˆβ€β¬›πŸˆβ€β¬›πŸˆβ€β¬›πŸˆβ€β¬›πŸˆβ€β¬›

Tips for collapsed sections ### You can add a header -- ?????? not in github pages .md You can add text within a collapsed section. You can add an image or a code block, too. ```ruby puts "Hello World" ```

Trending Tags