Readit News logoReadit News
fayten commented on Pontevedra, Spain declares its entire urban area a "reduced traffic zone"   greeneuropeanjournal.eu/m... · Posted by u/robtherobber
mytailorisrich · 2 days ago
> Public transport gives much better ROI for more people

That's a bold claim without data.

fayten · a day ago
This depends on how you define ROI. Car infrastructure and lack of density reduces tax revenue for cities and strains infrastructure.

There are other human benefits to reducing car traffic and use in favor of public transportation: * Reduces air pollution * Noise pollution * Allows a focus on human centric urban planning * Allows for higher density commercial and residential increasing tax revenue * Reduces pedestrian traffic injury

Well done video essays:

Parking minimums https://youtu.be/OUNXFHpUhu8?si=xAxUHCA0xmxCIZWg

Noise pollution https://youtu.be/CTV-wwszGw8?si=Eov6X3Z3I1T0l_bd

Infrastructure strain https://youtu.be/7Nw6qyyrTeI?si=KrVJ3tDaODHNGBwm

More on Infrastructure and Sprawl https://youtu.be/SfsCniN7Nsc?si=0ulEtryX4K6Ysy-N

Articles:

https://climate.mit.edu/explainers/public-transportation#:~:...

https://www.researchgate.net/publication/379358672_Vehicle_n...

https://www.britannica.com/topic/urban-sprawl/Costs-of-urban...

Climate town videos are all well researched and provide an enormous amount of follow-up content from their sources.

Generally, I care about all of the above and I perceive investments in public transportation to have a higher ROI.

Some extra historical context is helpful too: https://youtu.be/oOttvpjJvAo?si=ZGXF81qJnD_Fgw0L

The book The Color of Law by Rothstein is worth a read.

In the end there is a balance between public transportation and car dependency and right now the scales are leaning too much in favor of cars.

fayten commented on Lab-grown salmon hits the menu   smithsonianmag.com/smart-... · Posted by u/bookmtn
oceanplexian · 24 days ago
Not allowing something to exist is a really strange way of conceptualizing reduction of harm.

I'm perfectly fine eating something that was alive, so long as it was treated with respect and was killed humanely. Doing so connects you, a living being, to other living beings that are part of the circle of life, which live and die the same way you and I will.

fayten · 24 days ago
Unless you are actively managing your own herd or actively hunting I don’t see how you are connecting to nature at the grocery store.

People don’t care as long as it tastes good. The current methods we have for farming meat do not scale and we need to work on alternatives. Meat is tasty and people want to eat it.

Innovation will continue in the lab grown meat sector and when it eventually scales it will over take traditional methods. Current factory farming is anything but natural and there is plenty of harm being done.

fayten commented on ZjsComponent: A Pragmatic Approach to Reusable UI Fragments for Web Development   arxiv.org/abs/2506.11016... · Posted by u/lelanthran
lelanthran · 3 months ago
Shameless plug; I'm the author. Criticism welcome.

I use this for client-side includes and web components.

No build process, no web-packer, no framework, no npm requirement. Just include the JS in your HTML and then you can create and include components.

fayten · 3 months ago
I always love seeing more done in the web component space. I think Lit has the no build process captured pretty well and they include things such as a router.

I do prefer the style of of your components more, where you separate out the script and styles with html tags. I don't know if one way or the other is superior for performance, I but just like the separation verse the templated strings in Lit.

With build tools being so straightforward now-a-days, I struggle to see the value in the build less approach. One use case I can think of is maybe a constrained environment where the application contains some kind of customizable user components fully in the browser like a reporting WYSIWIG of some kind.

Is there a particular reason you prefer this approach?

fayten commented on Show HN: Mermaid Chart VS Code Plugin: Mermaid.js Diagrams in Visual Studio Code   docs.mermaidchart.com/blo... · Posted by u/msfi
5Qn8mNbc2FNCiVV · 5 months ago
Never seen a bigger waste of time than when my colleague (who was given more authority for some reason) tried establishing Mermaid as our go-to diagramming tool for the company.

Had no real benefits, was way more cumbersome for almost everyone and honestly even me as a developer I'd rather have a few paragraphs instead of a diagram.

Somehow it's just never "readable"

fayten · 5 months ago
I'm curious what you prefer instead?

I find that tools like Mermaid are pretty invaluable, especially when editing very large processes. Draw.io diagrams tend to get pretty unwieldy as they scale and editing inter process stuff if you forgot something quite frustrating.

Sequence diagrams are possibly my favorite feature in Mermaid: https://jessems.com/posts/2023-07-22-the-unreasonable-effect...

Admittedly I primarily use D2 nowadays. The only features I miss in D2 from mermaid are the GitHub automatic rendering and Sequence diagram numbers. https://play.d2lang.com

fayten commented on TUI editor and Vim/Neovim alternative   github.com/tauraamui/lill... · Posted by u/znano
devnull3 · 6 months ago
I don't know V but mostly what I have read about V is that it is vaporware [1]. Is there truth to this impression?

[1] https://www.google.com/search?client=firefox-b-d&channel=ent...

fayten · 6 months ago
I have seen this thrown around a lot, but I do not think it is true anymore.

V lang had a rough launch from what I can tell, with the author overselling and mistakenly underestimating the amount of work needed to fulfill their vision.

V still has a ways to go, but it is in constant heavy development with lots of contributors. It also has a wide gambit of interesting hobby projects using it.

I'd recommend taking a look at the the examples here:https://github.com/vlang/v/tree/master/examples

I think the language has a lot of potential.

fayten commented on What's New in F# 9   learn.microsoft.com/en-us... · Posted by u/neonsunset
srid · 10 months ago
For WebAssembly, there is Bolero:

https://fsbolero.io/

Unfortunately, maintenance seems to have stopped since Jan,

https://github.com/fsbolero/Bolero/releases

(I tried creating a sample project on Linux which didn't work to begin with)

fayten · 10 months ago
I know this is a few days at this point but Bolero has been in active development. All development work was done on the now deleted streamrendering and v0.24 branches. Version 0.24 was just published today: https://github.com/fsbolero/Bolero/releases
fayten commented on JEP-455: Primitive types in patterns, instanceof and switch   openjdk.org/jeps/455... · Posted by u/ludovicianul
SillyUsername · a year ago
This actually looks like adding complexity.

Switch statements are rarely used in my experience in preference to array indexing/hashmap/properties or just if/else.

Now Java devs need to remember switches can have guards, do auto boxing, and can do work which is duplicating getters/setters or just general purpose validation by annotation (JSR 303 if memory serves).

This is a good example of Java becoming bloated imho. Something like JSRs such as streams were useful syntactic sugar for functional and threaded programming, but something like this adds no tangible benefits over what is already in the language.

fayten · a year ago
If it allows for alternative design patterns that are simpler then I think it's a win in the end. For example pattern matching is great when writer parsers as an alternative to going the visitor pattern route.

Pattern matching has finally made it out of ML land and getting increasingly implemented in mainstream languages. I'm not sure if Rust is the main driver here, but I'm glad to see it.

fayten commented on CSharpRepl: C# REPL with syntax highlighting and intellisense   fuqua.io/CSharpRepl/... · Posted by u/aragonite
Akronymus · a year ago
> Another.NET language I like is F# but I didn't invest much time in it because I don't have where to use it for work.

F# mostly replaced bash/powershell for me.

fayten · a year ago
I have been dabbling with F# for scripts as well. The F# REPL (FSI) and .fsx files make it really easy to hammer something out and share.
fayten commented on Apache Superset   superset.apache.org/... · Posted by u/tosh
marcinzm · 2 years ago
> Superset is fast, lightweight, intuitive, and loaded with options that make it easy for users of all skill sets to explore and visualize their data, from simple line charts to highly detailed geospatial charts.

I tried Superset a few years back, and maybe it's changed since then, but intuitive is about the last thing I'd use to describe it. Things which I could figure out in a few minutes on any other BI tool literally took me hours of searching. It didn't help that they decided to rename core concepts at some point so half the online documentation made no sense anymore. Others at those companies who tried it at the time said similar things.

fayten · 2 years ago
I also found Superset unintuitive to use and setup as well. I settled on standing up Metabase because it was so simple to get started with trying it since it can be launched as a single jar. The business users loved it and so did I and administration with a Postgres backend instead of the internal h2 database was a breeze.
fayten commented on Ask HN: Who is using the D language and likes/doesn't like it? Why?    · Posted by u/fuzztester
fayten · 2 years ago
It doesn’t really answer your question, but DConf was a fews ago and there are a lot of interesting talks there: https://dconf.org/2023/index.html

The recordings are on YouTube with time stamps to each talk.

https://www.youtube.com/live/uzuKqiFVNZM?si=p4GEDK4xanGcw5rJ

u/fayten

KarmaCake day254September 19, 2019View Original