malerba118 | 2 years ago
malerba118's comments
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
And then when you decide to sign up/sign in it will restore the changes you made while you were signed out and you can pick up where you left off.
Is that still not enough?
Also, it's completely free and we have no plans to do anything with your data.
For real, i have no clue how to make it any easier/more enticing for you...
This has been 3 months of painstaking work and you can't even be bothered to try it for free?
Pretty insulting honestly and pretty hard to be an app developer these days as this mentality is becoming quite pervasive.
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
"here's an interactive simulation to illustrate my point <embed src="diode-url" />"
instead of:
"to see my point please download these files, download this version of ltspice, and then give it a run"
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
It's been challenging to say the least, but that's half the fun.
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
One thing wokwi doesn't do however is analog simulation so we're hoping to combine spice simulations with arduino, rpi, esp32, etc.
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
One major advantage of web based tools is shareability and we hope to see content creators writing articles with embedded diode projects so that tutorials can include inline interactive examples.
This is already common in the software world with tools like codesandbox and stackblitz, but not so much in the hardware world. Hardware tutorials often include fritzing diagrams, but we think the next step is interactive simulations anywhere and everywhere.
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
malerba118 | 3 years ago | on: A circuit simulator that doesn't look like it was made in 2003
malerba118 | 4 years ago
Well I made a free little utility that lets you customize those cards!
When you create a link via relink.page you're creating a proxy link that redirects to some target url of your choice. But when you paste the proxy link into twitter it will generate a card from the metadata that you specify during the link creation process. Pretty neat, heh?
Try it out: https://relink.page
Moreover many developers simply don't use it because they don't understand what it does for them and trying to adjust size/layout on the <Image /> component is kinda finicky compared to sizing a standard <img /> element with css.
Of course, this quirky layout api is to prevent layout shift but again, many developers don't know this.
Another thing i think many developers don't know is that every next app has a whole hidden image service spun up along side it at an endpoint "/_next/image" that takes the images passed to the <Image /> component and optimizes them by adjusting size, quality, and format.
The <Image /> component even tries to load different sized images based on the size of the device viewing the page and nextjs does this by filling in the srcset attribute for you on the underlying <img /> element.
But all of this is too magical imo. The developer experience when trying to use the <Image /> component is bizarre and the abstractions are leaky. To utilize it well you need to understand the underlying concepts/impl anyway.
<img /> concepts including srcset, sizes, and webp are important to understand as a web developer, especially if you find yourself outside of the context of nextjs.
Binsta does all this stuff for you but more transparently so that you're in control and get to learn about web fundamentals. Binsta also can handle videos which is cool and works outside of the context of nextjs.