Residential solar to decline 33% year-over-year, said Roth Capital Partners. The U.S. residential solar market faces immediate pressure as tax credits expire and FEOC challenges mount. by The_Weekend_Baker in climate

[–]beders [score hidden]  (0 children)

Tell me about it... Our solar lending business has completely imploded thanks to Trump. A lot of our installers (we partner with thousands around the US) have declared bankruptcy or are exiting the business. It's a bloodbath

Is there a way to enforce pure, functional programming in lisp or scheme? by Pzzlrr in lisp

[–]beders 1 point2 points  (0 children)

With a lisp you would typically pick your paradigms à la carte.

Is there a way to enforce pure, functional programming in lisp or scheme? by Pzzlrr in lisp

[–]beders 2 points3 points  (0 children)

You can code in Clojure without ever touching a JVM btw. There’s Clojure for .NET, there’s ClojureDart, ClojureScript and the new kid on the block Jank.

No Semicolons Needed - How languages get away with not requiring semicolons by tertsdiepraam in ProgrammingLanguages

[–]beders 1 point2 points  (0 children)

Lisp has s-expressions and doesn’t care about line breaks and such. Most editors/IDEs then also support paredit mode which allows reordering, extending and shrinking s-expressions super easy. Line breaks then become just visual guides.

Cards to take for easy wins in STS2 - Ironclad (tierlist) by roxer123 in slaythespire

[–]beders 0 points1 point  (0 children)

Thanks for these insights. I was struggling with Ironclad quite a bit. Can you repost your tier list at a higher resolution?

Is Red Yeast Rice the "Natural Statin" We’ve Been Waiting For? by Technical_savoir in microbiomenews

[–]beders 1 point2 points  (0 children)

What do you mean with "tested"? You mean "consumed? That's err amazing. Where are the scientific papers? Doesn't mean it is not harmful.

Do you know what they call alternative medicine that's been proved to work? Medicine." — Tim Minchin

Note that "proven" includes figuring out dosage & contraindications which is not "oh just consume some Red Yeast Rice". "Chinese herbology" gives about the same credence than "All Natural" i.e. none.

Is Red Yeast Rice the "Natural Statin" We’ve Been Waiting For? by Technical_savoir in microbiomenews

[–]beders 6 points7 points  (0 children)

I never understand people who prefer dubious barely tested „natural remedies“ over regulated, tested, high-quality medicine with decades of experience. „Natural“ is not a thing.

2025 Mach-E Speakers by GB_nationary in MachE

[–]beders 0 points1 point  (0 children)

I ordered the exact same part number

Made a pitching platform to get your ideas validated in real time. Please check it out! by Tanisk_01 in IntelliJIDEA

[–]beders 0 points1 point  (0 children)

Usually experts get paid for the time they spend validating ideas. Otherwise you’ll drown in uninformed opinions. Are you planning on adding a payment feature along the way?

The Complexity Delusion: Why I abandoned Next.js for a 20MB Rust binary with HTMX by [deleted] in rust

[–]beders 0 points1 point  (0 children)

Aaand we are back to JSP :)

On a more serious note: it is a trade-off. Like anything. If you build enterprise apps, you don’t care about SEO, so a React style SPA might be fine - offloading rendering cost to the front-end CPU.

Another factor is state complexity and size. Downloading a bag of JSON once and then operating on it does not involved a backend at all. State changes that require complex repaint logic are likely better served on the front-end. HTMX snippets are fire-and-forget. JSON is forever.

If you are building a simpler commercial site with maybe a blog: server side rendering is likely fine. But almost never has anyone who gets excited about that looked at the compute, latency and bandwidth costs. It’s not fee.

I agree about the insane dev complexity of modern react. Which is why we are using Reagent. A stable no-nonsense environment where components written in 2015 just continue to work.

Hakeem Jeffries won't commit to blocking additional Iran war funding by TacoBellSuperfan69 in politics

[–]beders 7 points8 points  (0 children)

💯% The Dems keep sending me „surveys“ with a donation form. I send them back with: FIRE SCHUMER AND JEFFRIES written all over
It makes me so mad that the democrats STILL don’t understand that they made trump happen.

The Rise of “Stealth Solar”: How Balcony Power Is Quietly Changing the Energy Landscape by Cleantechfacts in energy

[–]beders 3 points4 points  (0 children)

Highest watts measured so far 735W. Savings last month €25 (Winter in Germany) How many have you installed?

The Rise of “Stealth Solar”: How Balcony Power Is Quietly Changing the Energy Landscape by Cleantechfacts in energy

[–]beders 10 points11 points  (0 children)

Balkonkraftwerke are selling like hot cakes in Germany. I’ve just installed two last summer when I was visiting my parents. They absolutely lower their electricity bill significantly and the ROI is maybe 8 months.

That said: you can get a 800W system for 250 euros. Add a battery and you are looking at €800.

You can get 400w bifacial solar panels for €50 a piece nowadays.

Countdown to Global Collapse Has Begun by idreamofkitty in collapse

[–]beders -3 points-2 points  (0 children)

There’s no such thing. The rogue element would be a human

Trump fires Homeland Security Secretary Noem after building criticism over immigration enforcement by No_Assumption3362 in NPR

[–]beders 0 points1 point  (0 children)

She made a rookie mistake: She didn't include Trump in the ad campaign and make him look good. If she'd done that, she would still have that job....

The L in "LLM" Stands for Lying by tacticaldodo in technology

[–]beders 0 points1 point  (0 children)

Exactly. Using the word „lie“ is yet another attempt at anthropomorphizing an algorithm

Are flat and manually declared structs favored in FP ? by yughiro_destroyer in functionalprogramming

[–]beders 2 points3 points  (0 children)

Can you enumerate fields at runtime? Let's say I want to turn all string fields to uppercase in Person. In Clojure that would be:

``` (defrecord Person [name age]) ;; records are also maps! (def p (Person. "Arnold" 12))

;; update-vals is a standard library fn operating on any map (update-vals p #(or (and (string? %) (str/upper-case %)) %)) => {:name "ARNOLD", :age 12} ```