shady VS nephyr

Compare shady vs nephyr and see what are their differences.

shady

Nim to GPU shader language compiler and supporting utilities. (by treeform)
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
shady nephyr
6 4
143 24
- -
3.0 0.0
9 months ago almost 2 years ago
Nim Nim
MIT License Apache License 2.0
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.

shady

Posts with mentions or reviews of shady. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-04.
  • How can I add graphics to my nim program?
    10 projects | /r/nim | 4 Jun 2023
  • I learned 7 programming languages so you don't have to
    8 projects | news.ycombinator.com | 12 Feb 2023
    I have used Nim for personal projects for 6 years now and it continues to surprise me on how well versed it is for many problem domains. I am fond of it's SPA framework, karax https://github.com/karaxnim/karax for which I wrote a translation utility https://github.com/nim-lang-cn/html2karax Latest Nimv2 release candidate has improved in the ergonomics and syntax that affect compilation to js, so I was able to cleanup my webapp's code to be less verbose. On GPU programming there has been a few projects that touch GPU programming, most notably https://github.com/treeform/shady
  • Why I enjoy using the Nim programming language at Reddit.
    10 projects | /r/RedditEng | 14 Nov 2022
    This includes the GPU! Yep, that’s right. You can write shaders in Nim. This makes shader code much easier to write because you can debug it on the CPU and run it on the GPU. Being able to run the shader on CPU means print statements and unit tests are totally doable.
  • Compile time evaluation in Nim, Zig, Rust and C++
    4 projects | news.ycombinator.com | 26 Apr 2022
    You can do a lot with Nim at compile time, check out my talk on Nim Metaprogramming not just for FizzBuzz, but real world applications: https://fosdem.org/2022/schedule/event/nim_metaprogramming/

    I am working an a macro to compile Nim code into GLSL. So not only can you write Nim to C or Nim to JS, it can also (in limited way) do Nim to GLSL GPU Shaders. See here: https://github.com/treeform/shady

    I am also working on a macro system similar to SWIG, where using a some macros one can write a Nim library and generate wrappers for your NIM library for many languages like C, Python, JS, Ruby. See here: https://github.com/treeform/genny

  • Building a simple room-based chat application in Nim (using HTMX)
    9 projects | news.ycombinator.com | 17 Dec 2021
    See this as one of the examples: https://github.com/treeform/shady

    It makes debugging shaders much easier as you can use print statements and unit tests. You can also share code between CPU and GPU side.

nephyr

Posts with mentions or reviews of nephyr. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-08.
  • Microsoft DeviceScript – TypeScript for Tiny IoT Devices
    9 projects | news.ycombinator.com | 8 Jun 2023
    I use Nim on embedded precisely for that reason: https://github.com/elcritch/nesper

    I wtapped much of zephyr as well but that ones less used: https://github.com/embeddednim/nephyr

  • Compile time evaluation in Nim, Zig, Rust and C++
    4 projects | news.ycombinator.com | 26 Apr 2022
    It's funny how something like Zig's comptime of C++'s constexpr get 90% of the way to solving most compile time issues, but can't knock out that last 10%. Compile time database types sound like one of those cases. F# had a feature for compile time types via "type providers". It seemed _really_ cool at first, but in practice is was a bit fragile.

    Though on the other hand I'm using compile Nim code to parse CMake files and provide static types for configuration values. It's super easy in Nim between macros and const's. Here's a ~170 lines of code where I'm compile time checking that my Nim code can compile time check against the current build configuration of Zephyr RTOS https://github.com/EmbeddedNim/nephyr/blob/main/src/zephyr_c...

  • Launching the 2021 Nim Community Survey
    3 projects | news.ycombinator.com | 22 Nov 2021
    Nesper author here, unfortunately I haven’t had time to fix the compile issues on all the esp-idf branches. Please feel free to file an issue as I don’t use es-idf/Nesper often now but I’ll respond to issues. The main branch should be more stable too.

    I’ve been moving development to Zephyr RTOS since it supports many more boards and is more stable. I’d recommend trying it out but note it’s a WIP. I haven’t figured out templated examples yet. I’ve covered lots of api areas but not all. My goal is to make it into a broad MCU platform for Nim — Nephyr: https://github.com/EmbeddedNim/nephyr

    But yah Nim can run on most anywhere you can compile C to. Some people just got Nim CMSIS working. I’m hoping to get more people involved at github.com/EmbeddedNim project to support more mcu’s. Testers are welcome!

  • An Embedded USB Device Stack in Ada
    4 projects | news.ycombinator.com | 4 Nov 2021

What are some alternatives?

When comparing shady and nephyr you can also consider the following projects:

karax - Karax. Single page applications for Nim.

svd2nim - Convert CMSIS ARM SVD files to nim register memory mappings

RFCs - A repository for your Nim proposals.

usb_embedded - An Ada USB stack for embedded devices

flask_example - Simple examples of the power of flask

pixie - Full-featured 2d graphics library for Nim.

nesper - Program the ESP32 with Nim! Wrappers around ESP-IDF API's.

Nim - Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).

ts2c - Convert Javascript/TypeScript to C

nim_emscripten_tutorial - Nim emscripten tutorial.