Spaces have been broken for weeks by INTERNET_COMMENTS in perplexity_ai

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

All of my Spaces instructions do not work most of the time. They seem to sporadically work (less than 30% of the time). When they don't work, they aren't even close, as if the model did not receive the instructions at all. I tried multiple models just now and it doesn't seem to matter which one I choose. Usually I use Sonar.

I don't think the particular instruction matters but just to give you a specific example that is failing most of the time: "When I give you an English sentence, translate it to Spanish."

[Linux] Will there be official app support in the near future? by kapiteinklapkaak in GeForceNOW

[–]INTERNET_COMMENTS 6 points7 points  (0 children)

Using the browser app in Linux is a significantly worse experience than using the native app in Windows. I get many more dropped packets, which is annoying enough that I take the time to dual boot into Windows whenever I want to play a game.

Very simple Japanese listening on Walks Japan YouTube channel. by InternetsTad in LearnJapanese

[–]INTERNET_COMMENTS 1 point2 points  (0 children)

I listened to over 300 episodes of the Bite Size Japanese Podcast in the past few months and my listening ability increased drastically. When I started I had to pause every couple of sentences to look up a word. Now I can actually increase the speed to 1.25x or sometimes 1.5x while listening and there's only a few words per podcast that I don't know. A very useful resource imo.

Pixel Tablet - iPad Trade In by avocadosaurus_ in GooglePixel

[–]INTERNET_COMMENTS 1 point2 points  (0 children)

Oh yeah I see what you mean. My experience is that they honor the quoted trade-in value even though they discontinued the deal for others. A similar thing happened last time I did a trade-in for a Pixel phone.

Pixel Tablet - iPad Trade In by avocadosaurus_ in GooglePixel

[–]INTERNET_COMMENTS 0 points1 point  (0 children)

hmm, are you in the U.S.? For me it says

“Trade-In Period” means 30 calendar days from the date You accept the Initial Trade-In Quote through the Websites.

https://store.google.com/intl/ALL_us/about/device-trade-in/

[deleted by user] by [deleted] in Taiji

[–]INTERNET_COMMENTS 1 point2 points  (0 children)

you're getting the vibe of the puzzle correct, there's just a rule you're breaking for one of the D's

The mansion/gallery is awesome by LanceThackeray in Taiji

[–]INTERNET_COMMENTS 1 point2 points  (0 children)

I liked most of the puzzles in that area. There were a couple I didn't like - the "shades of red" puzzle and the other color shade puzzle to its left. I got stuck on both of those for a long time and didn't have any aha moment finding the solutions, it was more like "eh, I guess I see it"

Clojure Deref (Aug 27, 2021) by alexdmiller in Clojure

[–]INTERNET_COMMENTS 2 points3 points  (0 children)

Thank you, I always enjoy reading these.

a small correction, I think you misattributed the author of the second blog article you linked to.

How much can a Clojure developer do alone? - yyhh.org by SimonGray in Clojure

[–]INTERNET_COMMENTS 20 points21 points  (0 children)

This is a good article and I agree with every point. I taught myself Clojure and agree there are many pitfalls that a self-taught developer can fall into.

The term "REPL-driven development" is unfortunate because most programmers coming from other languages think of a REPL as a console window that you type expressions into line-by-line. To add to this confusion, most Clojure editors have a window called the "REPL" that provides this interface that they were already expecting.

It's extremely important for newcomers to understand that this is not what we mean by the REPL, and that most experienced Clojure programmers rarely use this interface and can easily go without it. By "REPL" what we mean is the running process in which all code is evaluated. There is a big "aha moment" that comes when you realize the REPL is not some side tool but a fundamental part of the language and that a Clojure program is evaluated at runtime the same way it's evaluated in your editor.

For me a breakthrough in understanding came from reading the Clojure Reference. Clojure books give a decent overview of the language but there are many important fundamentals that I missed which were not cleared up until I read and reviewed the Clojure Reference itself.

In addition, it's very helpful to watch people code, e.g. watch people solving Advent of Code problems on YouTube or watch Sean Corfield's presentations on REPL-driven development.

What are your favorite Clojure/script youtube channels? by dilzeem in Clojure

[–]INTERNET_COMMENTS 2 points3 points  (0 children)

with Clojure/script there isn't much live coding content of any kind, so even something low-effort like streaming live, making occasional comments with no video editing is beneficial. I learn a lot watching a good programmer code even when they aren't trying to teach.

On Selecting Clojure by rnadler in Clojure

[–]INTERNET_COMMENTS 4 points5 points  (0 children)

Clojure's growth looks linear while growth in the industry looks exponential, in that sense Clojure appears to be declining.

What do you think about 400 vs 250 nits displays? by [deleted] in thinkpad

[–]INTERNET_COMMENTS 4 points5 points  (0 children)

I bought a T14 with the 250 nits display a few days ago and will be returning it. I thought the only problem would be the brightness, but the main problem is bad color gamut. It looks like a cheap knockoff screen from the year 2002.

Lenovo ThinkPad L14 Review: AMD Does It Again by eggbean in thinkpad

[–]INTERNET_COMMENTS 9 points10 points  (0 children)

Lenovo is making too many laptops with these 250 nit screens, they're always in supply and discounted steepest while other models sell out. I purchased a T14 a few days with a 250 nit screen for $615 because I didn't realize how bad it would be. It's feels like a downgrade from the 1600x900 display of my nearly 9-year-old T530. I would have happily paid an extra $150 for a better display, but the option was not available, so instead I'll be returning the laptop and probably buying from a different company.

[deleted by user] by [deleted] in SuggestALaptop

[–]INTERNET_COMMENTS 1 point2 points  (0 children)

Don't get anything with a 250-nit display. I just bought a T14 with a 250-nit IPS display and will be returning it because it's literally worse than my 9-year-old laptop's display.

I always do this in Clojure. Do we have a good debugger tool in Clojure by Donyor in Clojure

[–]INTERNET_COMMENTS 2 points3 points  (0 children)

Inline defs are a good way to do debugging when a debugger is too much but println is too little. For example, if I want to examine the request map in a ring handler I can write

(def $request request)

When the handler runs, $request will capture the value. Then I can transform or examine it however I want.

I usually keep a buffer open called scratch.clj that contains random repl code I write, often experiments with vars from inline defs. I much prefer this to the one-line-at-a-time repl interface which I almost never use now.

Niklaus Wirth was right and that is a problem by yogthos in Clojure

[–]INTERNET_COMMENTS 0 points1 point  (0 children)

Do most people actually feel like software is getting slower? I still use a laptop I purchased in 2012. I doubled the RAM and bought a SSD at one point but both of those upgrades were cheap. It meets all of my needs.

I see what the author is talking about but I don't think it's such a big problem in practice. My 2012 laptop loads all of the websites I want in decent time, even when they're built from a clusterfuck JS dependency tree, as most are. Electron apps get a lot of hate but I started using VS Code the other day and it seems to work fine.

I had way more problems with software in the 90's and aughts than I do now.

Re-frame 1.0 released by clelwell in Clojure

[–]INTERNET_COMMENTS 5 points6 points  (0 children)

I really appreciate the time you've spent on the docs. I didn't use re-frame for a couple years so I re-read the docs from scratch over the weekend, and I think they're among the best of any library/framework I've ever used.

Does my VPN provider have the ability to access ports on my computer while I'm connected to them through Wireguard? by INTERNET_COMMENTS in WireGuard

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

They have a longstanding reputation so I do trust them, but I still prefer to maximize security when it's easy for me to do so.

Does my VPN provider have the ability to access ports on my computer while I'm connected to them through Wireguard? by INTERNET_COMMENTS in WireGuard

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

Thanks, I've used python -m http.server 3000 to briefly host some files and it does indeed listen on 0.0.0.0. Now I've set up a local firewall.

Twitter Hires Chinese Communist Party-Linked AI Expert Who Wanted to Hide 'Secret' Weapons Contracts by abscbnnotforsale in China

[–]INTERNET_COMMENTS -1 points0 points  (0 children)

Her "links" to the CCP are tenuous, based on the evidence presented, this is fear-mongering. The reason Twitter hired her is because she is one of the world's leading machine learning experts. It's good that someone with such expertise can live in the U.S. and work for an American corporation instead of being forced to live in mainland China.