pixie

Full-featured 2d graphics library for Nim. (by treeform)

Pixie Alternatives

Similar projects and alternatives to pixie

  1. TypeScript

    1,412 pixie VS TypeScript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. rfcs

    680 pixie VS rfcs

    RFCs for changes to Rust

  4. FrameworkBenchmarks

    Source for the TechEmpower Framework Benchmarks project

  5. Nim

    356 pixie VS 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).

  6. Transmission

    Official Transmission BitTorrent client repository

  7. nimbus-eth2

    Nim implementation of the Ethereum Beacon Chain

  8. LevelDB

    29 pixie VS LevelDB

    LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. karax

    15 pixie VS karax

    Karax. Single page applications for Nim.

  11. Arraymancer

    A fast, ergonomic and portable tensor library in Nim with a deep learning focus for CPU, GPU and embedded devices via OpenMP, Cuda and OpenCL backends

  12. nlvm

    11 pixie VS nlvm

    LLVM-based compiler for the Nim language

  13. prologue

    13 pixie VS prologue

    Powerful and flexible web framework written in Nim

  14. tiny-skia

    17 pixie VS tiny-skia

    A tiny Skia subset ported to Rust

  15. cps

    9 pixie VS cps

    Continuation-Passing Style for Nim 🔗

  16. jester

    10 pixie VS jester

    A sinatra-like web framework for Nim.

  17. awesome-nim

    A curated list of awesome Nim frameworks, libraries, software and resources.

  18. godot-nim

    Nim bindings for Godot Engine

  19. shady

    6 pixie VS shady

    Nim to GPU shader language compiler and supporting utilities. (by treeform)

  20. canvas

    9 pixie VS canvas

    Cairo in Go: vector to raster, SVG, PDF, EPS, WASM, OpenGL, Gio, etc. (by tdewolff)

  21. httpbeast

    A highly performant, multi-threaded HTTP 1.1 server written in Nim.

  22. windy

    5 pixie VS windy

    Windowing library for Nim using OS native APIs.

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better pixie alternative or higher similarity.

pixie discussion

Log in or Post with

pixie reviews and mentions

Posts with mentions or reviews of pixie. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-07-08.
  • State of Text Rendering 2024
    2 projects | news.ycombinator.com | 8 Jul 2024
    On rasterization & basic typesetting (no ligatures/gsub lookups): check out pixie https://github.com/treeform/pixie
  • Nim v2.0 Released
    49 projects | news.ycombinator.com | 1 Aug 2023
    We have written pixie: https://github.com/treeform/pixie . Pixie is a 2D graphics library similar to Cairo and Skia written entirely in Nim. Which I think is a big accomplishment. It even has python bindings: https://pypi.org/project/pixie-python/
  • How can I add graphics to my nim program?
    10 projects | /r/nim | 4 Jun 2023
  • Simple Gamepad Support
    7 projects | /r/nim | 10 May 2023
    I made it because I really like pixie/boxy/windy combo, but there is no gamepad support built-in.
  • Why I enjoy using the Nim programming language at Reddit.
    10 projects | /r/RedditEng | 14 Nov 2022
    With Nim, you can continuously optimize and improve the hot spots in your code. For example, in the Pixie graphics library, path filling started with floating point code, switched to floating point SIMD, then to 16-bit integer SIMD. Finally, this SIMD was written for both x86 and ARM.
  • Is Fidget usable for implementation of 3D rendering?
    9 projects | /r/nim | 12 Nov 2022
    The author Fidget actually has a number of other great libraries that are part of the rendering stack. Notably, Pixie for text and shape rendering in 2D, Boxy for rendering textures to the GPU via opengl, and then Windy for an OS window context and user events, and a number of other libraries related to 3D rendering.
  • Ask HN: What's the best source code you've read?
    46 projects | news.ycombinator.com | 10 Sep 2022
    Perhaps not the "best" source code I've ever read, but libVF.io had some beautiful code for what's generally gnarly system-glue code. The iommu setup code is a good example and inspires me to think that system-glue code doesn't need to be gross or impenetrable: https://github.com/Arc-Compute/LibVF.IO/blob/master/src/libv...

    Another one I've appreciated reading (and learned more about 2d graphics from) is Pixie, a 2d graphics library written in Nim. Here's the implementation of a fair subset of SVG paths: https://github.com/treeform/pixie/blob/master/src/pixie/path...

    And one last one for basic algorithms: https://github.com/nim-lang/Nim/blob/version-1-6/lib/pure/al...

    Of course Knuth's original code is still some of the best classic code. K&R's original C book is a classic.

  • How are Images Compressed? An explanation of JPEG [video]
    1 project | news.ycombinator.com | 27 Jun 2022
    I recently helped work on a new open source JPEG decoder in Nim. (Over here on GitHub: https://github.com/treeform/pixie/blob/master/src/pixie/file...)

    This video was extremely helpful to understand the "why" of all the things the spec was trying to explain. It made a huge difference in us being able to get things working.

    We talk a bit about JPEG and actually writing our decoder in Nim here: https://www.youtube.com/watch?v=vYwD7OynFcg

    Overall, our concluding opinion is that JPEG has some extremely cool and really smart ideas for how to compress images but the binary file format itself has some very painful things in it (progressive and restart markers as a couple examples).

  • Nim: Curated Packages
    7 projects | news.ycombinator.com | 27 May 2022
    I am working on OpenStreetMap renderer in Nim - see https://github.com/severak/lunarender3/ (but work somewhat stalled)

    I needed some language which is:

    - compiled to binaries

    - and really fast

    - has needed libraries (HTTP server, protocol buffers, sqlite and image generation)

    - it's easy to set up

    It was nice experience and Nim simply worked for my needs. People on Nim forum were nice and helped me when I ran into problems. It has nice and usable built-in library and I was really impressed by graphic library pixie - https://github.com/treeform/pixie

    I would use Nim again when I when I will see this application is suited for it (e.g. some command line apps).

  • Building a simple room-based chat application in Nim (using HTMX)
    9 projects | news.ycombinator.com | 17 Dec 2021
    > but not so small that there are no useful libraries written...

    Says the person responsible for a ton of really useful, well-done Nim libraries, such as this amazing Cairo/Skia-like library: https://github.com/treeform/pixie#readme

    Thank you for all the things you've made for Nim!

  • A note from our sponsor - SaaSHub
    www.saashub.com | 26 Mar 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic pixie repo stats
23
756
4.1
4 months ago

treeform/pixie is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of pixie is Nim.


Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that Nim is
the 50th most popular programming language
based on number of references?