minimicro-editor-themes VS advent-of-code

Compare minimicro-editor-themes vs advent-of-code and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
minimicro-editor-themes advent-of-code
9 16
4 0
- -
5.4 7.2
3 months ago 5 months ago
MAXScript PHP
The Unlicense -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

minimicro-editor-themes

Posts with mentions or reviews of minimicro-editor-themes. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-08.
  • The making of Kip and the Caves of Lava
    2 projects | dev.to | 8 May 2024
    Last weekend I participated in Micro Jam 013, which had a theme of "Lava" and a prerequisite of "Time is Limited". As I'm a sponsor of that jam, I wasn't eligible for any prizes, but I wanted to enter anyway, both for fun and to demonstrate what can be done with MiniScript and Mini Micro.
  • MiniScript and Micro Jam Join Forces for Mega Fun
    1 project | dev.to | 10 Apr 2024
    “Coding joyfully” couldn’t be a better description of the goals of MiniScript and Mini Micro as well. MiniScript is a relatively new language, created in 2017 to provide a clean, simple, powerful, and fun language for computer programming. It’s small enough that the language core can be described in a single page. But with functions as first-class objects, support for object-oriented programming, and sophisticated handling of lists and maps, it’s powerful enough for real work.
  • MiniScript on a bare-metal Raspberry Pi
    4 projects | dev.to | 2 Mar 2024
    I recently discovered a C++ library (circle) that simplifies writing C++ programs to run on the Raspberry Pi, directly "on the metal" — without any operating system. I've had a Raspberry Pi 400 on my side table for a couple years now, running the standard Linux distribution, but not getting much use. What I really wanted was an experience like the classic home computers of the 80s: turn it on, and within seconds you are at a friendly blinking cursor, waiting for you to type some BASIC (or in our case, MiniScript) code.
  • MiniScript Ports
    10 projects | dev.to | 7 Feb 2024
    Since its introduction in 2017, MiniScript's community has been steadily growing. And a delightful community it is — it spans the gamut from brand-new, never-coded-before beginners to experienced software engineers.
  • -❄️- 2023 Day 10 Solutions -❄️-
    141 projects | /r/adventofcode | 9 Dec 2023
    [LANGUAGE: MiniScript]
  • Private leaderboard/contest for MiniScript solutions (with $prizes$!)
    1 project | /r/adventofcode | 30 Nov 2023
    I am sponsoring a private leaderboard/contest for people tackling AoC 2023 using MiniScript, a new(ish), simple, clean programming language. Join us! No previous experience in MiniScript is needed; check out the 1-page Quick Reference and you will quickly see what the language is like.
  • Is MiniScript a dialect of BASIC?
    1 project | dev.to | 19 Oct 2023
    is MiniScript a dialect of BASIC
  • "MiniScript, a simple, elegant language for embedding or learning to program."
    1 project | /r/altprog | 3 Aug 2023
  • Customizing the Mini Micro code editor
    1 project | dev.to | 5 Jul 2023
    We've started a community collection of themes for the Mini Micro code editor at https://github.com/JoeStrout/minimicro-editor-themes. The README file there explains how to browse and install the themes therein, either temporarily, or more permanently by loading them in your startup script.

advent-of-code

Posts with mentions or reviews of advent-of-code. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-10.
  • -❄️- 2023 Day 11 Solutions -❄️-
    145 projects | /r/adventofcode | 10 Dec 2023
    Part 1: Over complicated, does several twists on the map, adding in extra .... lines where needed. Then plots where each galaxy [x,y] is, loop through each against any further galaxies. Simple difference between the x and y cords gives the distance. Sum all together.
  • -❄️- 2023 Day 10 Solutions -❄️-
    141 projects | /r/adventofcode | 9 Dec 2023
    Part 2: Using the Part 1 as a start point for moving around the path, this time I created a grid twice the size and then tracked each space I moved around filling in the gap between the neighbouring cells, this then left a 1 "pixel" gap for later. Ran a flood fill function at 0,0. My first attempt at a recursive function caused JS to RangeError: Maximum call stack size exceeded so I Googled some JS flood fill functions and adapted one. Finally I ran through all the even pixels, counting any that remained empty.
  • -❄️- 2023 Day 9 Solutions -❄️-
    196 projects | /r/adventofcode | 8 Dec 2023
    Part 1: Loop creating an array of differences to add to the main array, until you reach 0,0,0. Take the last number from each and add to get the next in the sequence.
  • -❄️- 2023 Day 8 Solutions -❄️-
    200 projects | /r/adventofcode | 7 Dec 2023
    Part 1: Pretty simple, sure I could reduce it a bit, but was quick with the answer.
  • -❄️- 2023 Day 7 Solutions -❄️-
    262 projects | /r/adventofcode | 7 Dec 2023
    Part 1: Parsed the input first, creating two scores for each hand, the first was how good the hand was giving 7 for a five of a kind, down to just 1 for high card. The second was an integer value of the hand in sudohex (T -> a, J -> b, Q -> c, K -> d, A -> e). I then just ran a quick sort on the array, using these two values to compare. (Thinking about it, I could have just appended the score from the first calc to the sudohex as it would have been the most significant digit).
  • -❄️- 2023 Day 6 Solutions -❄️-
    298 projects | /r/adventofcode | 6 Dec 2023
    Part 1 - simple brute force loop
  • -❄️- 2023 Day 5 Solutions -❄️-
    149 projects | /r/adventofcode | 5 Dec 2023
    Part 1 - Brute force, but was please with my parsing logic. Solved on day 5. When I realised what Part 2 needed, tried the brute force option whilst going away for lunch, but when I returned and it was still running knew that it wasn't going to be a great idea.
  • -🎄- 2022 Day 5 Solutions -🎄-
    263 projects | /r/adventofcode | 4 Dec 2022
    Part 1 Part 2
  • -🎄- 2022 Day 4 Solutions -🎄-
    230 projects | /r/adventofcode | 3 Dec 2022
  • -🎄- 2021 Day 25 Solutions -🎄-
    38 projects | /r/adventofcode | 24 Dec 2021

What are some alternatives?

When comparing minimicro-editor-themes and advent-of-code you can also consider the following projects:

minimicro-sysdisk - Contents of the /sys disk for the Mini Micro virtual computer

adventOfCode2022

srcery-terminal - Srcery theme terminal configurations

advent-of-code

daily-miniscript - fun little daily practice tasks in MiniScript to help your skills grow!

advent-of-code - Advent of Code

leonardo - Generate colors based on a desired contrast ratio

AdventOfCode-Day4-CampCleanup - .NET Core console app that solves the AdventOfCode Day 3 puzzle - Camp Cleanup

minibasic - BASIC interpreter for Mini Micro

advent-2022 - advent of code 2022 solutions in rust

delta - A syntax-highlighting pager for git, diff, and grep output

advent2022