MarkusTegelane++ 

devUpdate

Update reports for my software. Mainly videos uploaded to the channel.


Movement Pie (Python game)

devUpdate 1 (video)

What's new?

  1. First public release. Anyone heard of this game?
Source code

Blue Screen Simulator Plus

devUpdate 2 (video)

What's new?

  1. Fixed margins for Windows 7 blue screen
  2. Added "Add randomness to progress counters for legacy configurations" to simulator settings menu
  3. Exporting configurations to legacy formats
  4. Ability to select all configurations in simulator settings
  5. Changed a message, when re-open after prank mode checkbox was unchecked
  6. More realistic progress indicators and progress tuner!
Source code

Blue Screen Simulator Plus

devUpdate 1 (video)

What's new?

  1. Smaller improvements and technical changes
  2. Much more accurate Windows 2000 blue screen
  3. Option to close the program after ending prank mode
  4. Windows Vista and 7 were separated to make each screen more realistic
  5. Windows 11 blue screen background color changed from black to blue
Source code

Tutorials

These tutorials help you with development and other things.


How to convert icons to cursors (and vice versa)

Icon to cursor

  1. Replace the file extension. For example, if the filename is example.ico, rename it to example.cur
  2. Open the file in a hex editor, such as HxD
  3. Select the value at offset 0x2, change the value from "1" to "2"
  4. Save the file

Cursor to icon

  1. Replace the file extension. For example, if the filename is example.cur, rename it to example.ico
  2. Open the file in a hex editor, such as HxD
  3. Select the value at offset 0x2, change the value from "2" to "1"
  4. Save the file
Video tutorial

Utilities and code

Cool, simple, and useful software created by me!


ascii2pixels

This tool allows you to convert plain text ASCII images to regular grayscale low-resolution images.

Source code Demonstration video

Segment display tool

This tool allows you to visually toggle different segments on a virtual 7 or 8 segment display. It can also output the segments into a list, which is useful for development.

Download Source code