HackerLangs
TopNewTrendsCommentsPastAskShowJobs

willrshansen

no profile record

comments

willrshansen
·27일 전·discuss
First image I see should be a difference of how the merges work.
willrshansen
·지난달·discuss
also r/datahoarder
willrshansen
·3개월 전·discuss
Big fan overall. Designed a tension sensitive winch with this a few years back.

Doing CAD with code seems like obviously the right move to me. The ability to just write new functions in python and do version control with git are super powerful.

The big thing that struck me as innovative with CadQuery is the design intent query part. Selecting model geometry by relation to other geometry is way more resilient to changes ealier in the model's history than the regular "that point right there" you get with just clicking a point.

That the developers acknowledge that seeing the model at various steps in the script is important, and so have the CQ-editor, is also a point in their favour.

I do have a gripe though:

Having to keep all the geometry selection stuff relating to the model in my head is hard. I want gui tools that write code.

Like if I have a complex model, and variables assigned to various parts of the geometry. I want to be able to see that geometry highlighted and labeled, so I know what's easily selectable, and I want to be able to click buttons based on my design intent and get immediate visual feedback, and have each of those button presses added as code as I do them.

Look at this example model: https://cadquery.readthedocs.io/en/latest/examples.html#a-pa...

This bit that selects some points?

  # compute centers for screw holes
  topOfLidCenters = (
    cutlip
    .faces(">Z")
    .workplane(centerOption="CenterOfMass")
    .rect(POSTWIDTH, POSTLENGTH, forConstruction=True)
    .vertices()
  )

Each of those lines should be a gui tool interaction that generates that line of code.
willrshansen
·3개월 전·discuss
If there's too many lies, "source or gtfo" becomes more important
willrshansen
·3개월 전·discuss
Was hoping for a tournament bracket of best lies found in training data :(
willrshansen
·3개월 전·discuss
It's easy: bugs look icky. I wouldn't eat them. Grind them up out of sight and use them as an ingredient? Suddenly I'm fine with it.
willrshansen
·3개월 전·discuss
Helix editor is based around that. Better than vim default imo
willrshansen
·3개월 전·discuss
Off the top of my head, wouldn't it be super easy to expose lab rats to microplastics and measure results?

No way this isn't heavily studies by now.

Edit: found a whole meta-study in like 30 seconds of searching: https://www.frontiersin.org/journals/public-health/articles/...
willrshansen
·4개월 전·discuss
Sounds like you need to multiplex a terminal with a terminal multiplexer.

terminal multiplexer

term mux

tmux
willrshansen
·4개월 전·discuss
Seconded
willrshansen
·4개월 전·discuss
No, it's just propagated mistakes. Same for lose and loose.
willrshansen
·4개월 전·discuss
With nothing off the table, that includes bans on Crocker's Rules, right?
willrshansen
·4개월 전·discuss
It's called tact. It's not mutually exclusive to effective communication.
willrshansen
·4개월 전·discuss
Yeah, cause more batteries to manage is not fun.

Switch to USBC from the old audio jacks though? Negotiable
willrshansen
·4개월 전·discuss
That's still built on top of the hardcoded vim design choices though.

For example, I really like the "select then edit" approach of Helix, but Vim doesn't really play nice with that (there may be better plugins since I last looked to be fair). File handling, buffer rendering, and frames have very little to do with that, and yet I have to switch editors, lose all my plugins and configurations, and switch all those subsystems at once.

There's missed opportunities for modularization.

Edit: looks like Neovim is already split from its UI.
willrshansen
·4개월 전·discuss
This feels like two steps up from a highly customized vim config. But I want one step up.

I want to be able to piece together an editor from modular task specific executables. Different programs for file searching, input mapping, buffer modification and display, etc. Probably similar to how LSPs are already separated from most editors.

One step less hardcore than writing a whole editor.

Anyone know of any existing projects along these lines?
willrshansen
·4개월 전·discuss
Didn't even link it. :(
willrshansen
·4개월 전·discuss
The way sidebery let's you customize it's right click menu seems to be the right way to go about it
willrshansen
·6개월 전·discuss
AI is a quantum horse
willrshansen
·7개월 전·discuss
The first example on the main page has a formula with two variables being updated from changing one value. The immediate question I have is if I change the output, where does the extra degree of freedom come from on the inputs? Does one stay locked in place? Unclear.

I am a huge fan of the concept though. It's been bugging me for years that my spreadsheet doesn't allow editing text fields after filtering and sorting them down to the subset I want. I have to go all the way back to the mess of unsorted input rows to actually edit them.