hac VS aoc2020

Compare hac vs aoc2020 and see what are their differences.

hac

HAC Ada Compiler - a small, quick Ada compiler fully in Ada (by zertovitch)

aoc2020

Advent of Code 2020 (by ednl)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
hac aoc2020
17 13
102 0
- -
9.1 0.0
10 days ago 6 months ago
Ada C
- MIT License
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.

hac

Posts with mentions or reviews of hac. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-02.
  • July 2022 What Are You Working On?
    7 projects | /r/ada | 2 Jul 2022
    HAC: release 0.2 with an interface between a program being run by HAC and the program running HAC as an embedded compiler. If you feel confused by reading that, it is normal ;-). Perhaps the following blog post will help clarifying things... https://gautiersblog.blogspot.com/2022/06/hac-as-embedded-compiler.html List of HAC releases here: https://github.com/zertovitch/hac/commits/master
  • Ann: HAC v.0.2
    2 projects | /r/ada | 25 Jun 2022
    Web site: http://hacadacompiler.sf.net/ From there, links to sources, and an executable for Windows.
    2 projects | /r/ada | 25 Jun 2022
  • June 2022 What Are You Working On?
    11 projects | /r/ada | 31 May 2022
    HAC: release 0.1 with support for packages; improvement of the VM with instructions that do the job of two or more instructions. List of changes here: https://github.com/zertovitch/hac/commits/master
  • Ann: HAC v.0.1
    2 projects | /r/ada | 14 May 2022
  • April 2022 What Are You Working On?
    14 projects | /r/ada | 31 Mar 2022
  • Ann: HAC v.0.0996
    2 projects | /r/ada | 22 Jan 2022
    Source repositories: #1 svn: https://sf.net/p/hacadacompiler/code/HEAD/tree/trunk/ #2 git: https://github.com/zertovitch/hac
    2 projects | /r/ada | 22 Jan 2022
  • What Did You Work On in 2021?
    15 projects | /r/ada | 30 Dec 2021
    Home page here, svn repo here, git repo here.
  • Ada and Advent of Code 2021
    12 projects | /r/ada | 26 Nov 2021

aoc2020

Posts with mentions or reviews of aoc2020. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-06.
  • Need help finding good python solutions
    5 projects | /r/adventofcode | 6 Jul 2023
    I got all but one star in 2020 when I did it in Python: https://github.com/ednl/aoc2020 but I'm afraid there may be some short variable names despite not doing it for speed.
  • 2015-2022: What solution to a problem are you the most proud of
    11 projects | /r/adventofcode | 6 Apr 2023
    I liked my solution for https://adventofcode.com/2020/day/17 Game of Life in 3D and 4D: https://github.com/ednl/aoc2020/blob/main/day17.py
  • 2020 Day 8.2 in Python - trying to figure out how to do this efficiently?
    3 projects | /r/adventofcode | 8 Nov 2021
    Day 8 runs in 0.02 s using python 3.9 on my M1 Mac Mini. Just flipping in part 2, no special optimisation. My code: https://github.com/ednl/aoc2020/blob/main/day08.py
  • [2020] [Rust] Solving Advent of Code 2020 in under a second
    5 projects | /r/adventofcode | 27 Feb 2021
    For instance, I wrote this in C for day 15 https://github.com/ednl/aoc2020/blob/main/day15.c which runs in 1.635 s on a Raspberry Pi 4 (4 GB, RPiOS 32-bit on SSD, overclocked to 1.8 GHz) when timing on the command line with "time", taking the lowest "user" value of about 10 manual runs. Compiled with gcc -Ofast (version 8.3.0).
    5 projects | /r/adventofcode | 27 Feb 2021
    Yep, linked above, or: https://github.com/ednl/aoc2020/blob/main/day15.c
  • [2020] Optimized solutions in C++ (291 ms total)
    4 projects | /r/adventofcode | 26 Dec 2020
    Day 23 part 2 in 0.06 s on a dual core 1.3 GHz i5 Haswell (2013 MB Air) https://github.com/ednl/aoc2020/blob/main/day23.c because of a simple array as a linked list.
  • [2020 Day *][C99] Computers are fast: AoC 2020 in < 2s, including compile time
    2 projects | /r/adventofcode | 26 Dec 2020
    Day 23 part 2 (1 million cups, 10 million moves) runs in 0.06 s on my 2013 dual core Haswell i5 1.3 GHz. Main reason is a super fast simulated linked list via a pre-allocated array of integers. Source https://github.com/ednl/aoc2020/blob/main/day23.c
  • -🎄- 2020 Day 24 Solutions -🎄-
    78 projects | /r/adventofcode | 23 Dec 2020
    Python, Numpy, SciPy Took me a while to figure out how to calculate the new state with different kernels for odd and even rows. In the end, it means doing almost twice the work. Still about 9x faster than the native Python version I did first. Part 2 below, full code at https://github.com/ednl/aoc2020/blob/main/day24alt.py
    78 projects | /r/adventofcode | 23 Dec 2020
    Thanks to /u/thomasahle for encouraging me to implement axial coordinates, which made it a lot easier. Also thought of a better way to parse the input in one go. And this allowed me to tighten up the grid dimensions. Runs in under a second on a very old laptop, half of which is because of the scipy import ... https://github.com/ednl/aoc2020/blob/main/day24alt2.py
  • -🎄- 2020 Day 23 Solutions -🎄-
    81 projects | /r/adventofcode | 22 Dec 2020
    Yes, definitely don't create a list for every pick up. No need to insert and delete if you use an array as a linked list. My code: https://github.com/ednl/aoc2020/blob/main/day23.py

What are some alternatives?

When comparing hac and aoc2020 you can also consider the following projects:

aoc2020 - Advent of Code 2020 - my answers

advent-of-code - My solutions for Advent of Code

aoc-2020 - Advent of Code 2020

advent-of-code-2020

aoc-2020 - My solutions for https://adventofcode.com

aoc2020apl - Advent of Code 2020 solutions in Dyalog APL

Mine_Detector - The Gnoga/Ada-GUI version of Mine Detector, an intellectually-challenging game

King - An informal decsription of the King software-engineering language

ews - The Embedded Web Server is designed for use in embedded systems with limited resources (eg, no disk). It supports both static (converted from a standard web tree, including graphics and Java class files) and dynamic pages. It is written in GCC Ada.

AdventOfCode2020

Advent_of_Code_in_Pascal - My solutions to the Advent of Code, in Free Pascal

aoc-2020 - My solutions to Advent of Code 2020.