dotnet-console-games VS Towel

Compare dotnet-console-games vs Towel and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
dotnet-console-games Towel
16 10
748 699
4.3% -
8.5 0.0
4 months ago 3 months ago
C# C#
MIT License 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.

dotnet-console-games

Posts with mentions or reviews of dotnet-console-games. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-10.
  • downloadable already made projects for practice
    2 projects | /r/csharp | 10 Dec 2023
    https://github.com/dotnet/dotnet-console-games ?
  • Dotnet-console-games (beginner-level coding project ideas)
    3 projects | news.ycombinator.com | 26 May 2023
    I have been working on the https://github.com/dotnet/dotnet-console-games, which is a bunch of simple, open-source games written in C# with the goal of providing educational examples to new software developers. There are more than 40 games in the repository, and I plan on continuing to make more in the future, and contributions are very welcome. I also ported the games to the web using C#'s blazor webassembly so you can play the games right in the browser: https://dotnet.github.io/dotnet-console-games/.

    I have gotten a lot of positive feedback from the C# community, but I wanted to share the repository here as I feel it could be helpful to other communities too. Even if you are not interested in C#, each of the games could be easily coded in other languages too. So, if you know someone who is learning to code and is looking for fun beginner-level coding projects maybe encourage them to give the repository a look.

    Thanks. :)

  • Math Game Project
    3 projects | /r/csharp | 14 May 2023
    However if you don't want to use releases you can just use a dedicated branch that is not your source code branch. For example, in the dotnet-console-games repository, the source code is in the "main" branch and there is another branch called "binaries" that stores the compilation output. https://github.com/dotnet/dotnet-console-games. There is an action in github that automatically builds the code from the "main" branch and pushes the output to the "binaries" branch. That action is here: https://github.com/dotnet/dotnet-console-games/blob/main/.github/workflows/Binaries%20Deploy.yml
  • Gravity Console Game
    1 project | /r/csharp | 13 May 2023
    Source Code: https://github.com/dotnet/dotnet-console-games/blob/main/Projects/Gravity/Program.cs You can also play it in your web browser here: https://dotnet.github.io/dotnet-console-games/Gravity
  • Projects to learn C#
    1 project | /r/csMajors | 20 Jan 2023
  • Why websites?
    3 projects | /r/learnprogramming | 7 Nov 2022
  • How to clear text at a certain point in visual studio code
    1 project | /r/learncsharp | 15 Aug 2022
    There is https://docs.microsoft.com/en-us/dotnet/api/system.console.setcursorposition, used very liberally in https://github.com/ZacharyPatten/dotnet-console-games
  • Project Ideas
    10 projects | /r/csharp | 3 Apr 2022
  • More C# Console Games
    2 projects | dev.to | 9 Feb 2022
    If anything here caught your interest, or if you know someone who is looking for fun beginner C# projects, I encourage you to check out the repo where all the games are open source: https://github.com/ZacharyPatten/dotnet-console-games.
  • Hello I am rather new to c# and was wondering the best projects for beginners. Would really appreciate it:)
    3 projects | /r/csharp | 11 Dec 2021
    Make a small game: rock paper scissors, snake, simon, flappy bird, an rpg, sudoku, etc. If you would like some examples I have some here: https://github.com/ZacharyPatten/dotnet-console-games

Towel

Posts with mentions or reviews of Towel. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-10.
  • What your hidden nuget gems ?
    32 projects | /r/dotnet | 10 Mar 2023
    Towel - Throw in the towel! data structures, algorithms, mathematics, metadata, extensions, console, and more - https://github.com/ZacharyPatten/Towel
  • More C# Console Games
    2 projects | dev.to | 9 Feb 2022
    PacMan is... a PacMan clone in the console. Get the dots. Dodge the ghosts. It's not intended to be very faithful though. I didn't research the AI of the ghost, I just came up with my own AIs that worked. Here is what I did for the ghost AIs:     - Ghost a: follows you via Dijkstra Path Finding and updates every 6 frames (faster)     - Ghost b: randomly moves and updates every 6 frames (faster)     - Ghost c: follows you via Dijkstra Path Finding and updates every 12 frames (slower)     - Ghost d: randomly moves and updates every 12 frames (slower) Note: for this game I pulled in a reference to my nuget package Towel because it includes generic versions of the Dijkstra Path Finding algorithm.
  • Best data structures and algorithms packages?
    2 projects | /r/dotnet | 21 Jan 2022
    Can you give an example? BCL covers the most common algorithms and data structures, so...? There's also a whole pack of additional algorithms and data structures by u/ZacharyPatten: https://github.com/ZacharyPatten/Towel
  • SLazy<T> (a struct alternative Lazy<T>)
    1 project | /r/csharp | 31 Jul 2021
    Unit Tests
  • SLazy<T> (a struct alternative to Lazy<T>)
    1 project | /r/csharp | 31 Jul 2021
    Source Code
  • DSA and time complexities
    1 project | /r/csharp | 22 Jul 2021
    I have a GitHub project with generic data structures and algorithms here: https://github.com/ZacharyPatten/Towel It has 18 of the common comparison-based sorting algorithms.
  • Mathematics/Scientific computing libraries
    1 project | /r/csharp | 27 Jun 2021
    I don't know specifically what you are looking for, but I have a project called Towel that has generic vectors. If interested: https://github.com/ZacharyPatten/Towel.
  • What I learned about C# from job interviews
    2 projects | /r/csharp | 1 Feb 2021
    https://github.com/ZacharyPatten/Towel/blob/070d454f3fcdc5c632bf68547911718b324cf6ae/Examples/DataStructures/Program.cs#L247
  • Random Generation (with efficient exclusions)
    1 project | dev.to | 30 Jan 2021
    Notice how algorithm #1Pool Tracking is dependent on the range of possible values while algorithm #2 Roll Tracking is not. This means if you have a relatively large range of values, then algorithm #2 is faster, otherwise algorithm #1 is faster. So if you want the most efficient method, you just need to compare those runtime complexities based on the parameters and select the most appropriate algorithm. Here is what my "Next" overload currently looks like: See Source Code Here
  • How to parse console app arguments and auto create help pages
    1 project | /r/dotnet | 25 Jan 2021
    Here is an example if interested: https://github.com/ZacharyPatten/Towel/blob/master/Examples/CommandLine/Program.cs All I have to do is add the [Command] attribute onto the methods and call "HandleArguments".

What are some alternatives?

When comparing dotnet-console-games and Towel you can also consider the following projects:

Cocona - Micro-framework for .NET console application. Cocona makes it easy and fast to build console applications on .NET.

C# Algorithms - :books: :chart_with_upwards_trend: Plug-and-play class-library project of standard Data Structures and Algorithms in C#

dotnet-blazor-games - Game examples implemented in .NET blazor components primarily for educational purposes.

Algorithmia - Algorithm and data-structure library for .NET 4.5.2+/Netstandard 2.0+. Algorithmia contains sophisticated algorithms and data-structures like graphs, priority queues, command, undo-redo and more.

OpenRA - Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X.

awesome-software-architecture - A curated list of awesome articles, videos, and other resources to learn and practice about software architecture, patterns, and principles.

SnakeGame - This game was coded for a competition organized by Selman Kahya.

xaml-math - A collection of .NET libraries for rendering mathematical formulae using the LaTeX typesetting style, for the WPF and Avalonia XAML-based frameworks

GameConsole2048 - A simple console app version of 2048 written in C#.

Akade.IndexedSet - A convenient data structure supporting efficient in-memory indexing and querying, including range queries and fuzzy string matching.

prose - Microsoft Program Synthesis using Examples SDK is a framework of technologies for the automatic generation of programs from input-output examples. This repo includes samples and sample data for the Microsoft Program Synthesis using Example SDK.