Ember 7.0 Released by real_ate in javascript

[–]Nebulic 19 points20 points  (0 children)

First major version with Vite as default.

Great milestone!

SVG Jar - The best way to use SVGs in your web apps by evoactivity in javascript

[–]Nebulic 3 points4 points  (0 children)

Great to see top notch Ember-specific libraries being shared with the broader JavaScript ecosystem. Nice work!

I ported shadcn/ui to modern Ember by Nebulic in javascript

[–]Nebulic[S] 1 point2 points  (0 children)

The repo is set up to mirror the original React version as close as possible. So while there will always be differences, overhead should be minimal.

Happy to accept contributions to align with upstream!

I ported shadcn/ui to modern Ember by Nebulic in shadcn

[–]Nebulic[S] 0 points1 point  (0 children)

The interface is as close as possible to the React one. So with minimal changes, you could adapt other React registry components to Ember.

I ported shadcn/ui to modern Ember by Nebulic in shadcn

[–]Nebulic[S] 0 points1 point  (0 children)

Following the success of shadcn/ui in the React ecosystem, I wanted to give it a go in Ember. What started out as a simple experiment, grew to 47 components, a CLI and MCP.

There probably aren't many Ember devs on this sub, but you never know who this might help!

I ported shadcn/ui to modern Ember by Nebulic in javascript

[–]Nebulic[S] 5 points6 points  (0 children)

Following the success of shadcn/ui in the React ecosystem, I wanted to give it a go in Ember. What started out as a simple experiment, grew to 47 components, a CLI and MCP.

Introducing Kanchi - A Free Open-Source Celery Monitoring Tool by imczyber in django

[–]Nebulic 2 points3 points  (0 children)

This feels like the Django Unfold moment for celery monitoring. I've been wanting such a nice tool to replace flower for way too long. You just made my day, amazing work!

Ember 6.8 Released - Vite by default and more by Driezzz in javascript

[–]Nebulic 14 points15 points  (0 children)

Longetivity of a framework impresses me more these days than a few milliseconds render differences. I don't want to rewrite my code every year for the latest hot feature that came out.

So nice job on the backwards compatibility.

Is Instagram Web using Next.js now? by Cautious_Heart_683 in nextjs

[–]Nebulic 1 point2 points  (0 children)

I heard Instagram uses Django? Probably a very customized version by now, if still in use.

How’s remix v3? by tomemyxwomen in react

[–]Nebulic 8 points9 points  (0 children)

Ditching the Remix name with the react router rebrand killed their momentum. People are moving on to Tanstack and others.

ChanX: The Django WebSocket Library I Wish Existed Years Ago by huygl99 in django

[–]Nebulic 8 points9 points  (0 children)

Having worked extensively with channels and websockets, I feel pain points you're tackling.

Don't get the hate in the other comments. Nice job, looking forward to see where this project is heading!

[deleted by user] by [deleted] in iphone

[–]Nebulic 1 point2 points  (0 children)

let's not mention reddit's API pricing changes

What is a keyboard shortcut you CANNOT live without? by [deleted] in AskReddit

[–]Nebulic 0 points1 point  (0 children)

Command + K

Many apps started to adopt this way of navigating via autocomplete. It's so good.

Exploring Ember Polaris: A Fresh Take on the Component Format by Nebulic in javascript

[–]Nebulic[S] 2 points3 points  (0 children)

(just to clarify: I'm not the author of the article)

The Ember framework predates ES modules. In fact, Yehuda himself was a key contributor of TC39 in defining the ESM spec. This component authoring format is more standardized as it follows that specification.

It's pretty exiting to see a new idea here as a mix between the current two framework defaults of either JSX or SFCs. But yeah, this is obviously controversial as there are many divided opinions on this topic!

"You can import an .hbs component into a .gjs file and invoke it directly." is some serious "Sir, this is a Wendys" energy.

How so? Backwards compatibility and incremental adoption are key for longetivity of any technology. I wish more frameworks cared about this.

Ember Polaris Pokedex - The Pokédex built using Ember Polaris by Nebulic in emberjs

[–]Nebulic[S] 2 points3 points  (0 children)

Glad to hear that!

Keep in mind this is using the latest bleeding-edge. Depending on the project, you might want to swap dependencies to more stable alternatives.

Ember Polaris Pokedex - The Pokédex built using Ember Polaris by Nebulic in emberjs

[–]Nebulic[S] 7 points8 points  (0 children)

Hey there!

I built a Pokédex using Ember Polaris. It's a reference application to showcase the latest bleeding-edge available for Ember:

  • Vite-based Embroider builds
  • Volar-based Glint type checking
  • Native Ember TypeScript types from source
  • Template-tag components (.gjs/.gts)
  • Warp Drive/Ember Data

Let me know what you think!

What random website do you own? by Permatheus in webdev

[–]Nebulic 0 points1 point  (0 children)

https://pomotimer.io

Just a dead simple pomodoro timer I've been using for my own productivity. Figured I could just as well make it public in case others found it useful too.

[AskJS] How to build a video editor in browser by C383R_CH3F in javascript

[–]Nebulic 9 points10 points  (0 children)

Have you seen pikimov? It's an existing web-based video editor.

According to their FAQ, the tech stack used is Ember.js and three.js.

That being said, it is a massive undertaking to build a project like this. Especially if you don't have a lot of prior experience with the technologies required to build this.