• 4 Posts
  • 135 Comments
Joined 2 years ago
cake
Cake day: June 11th, 2023

help-circle




  • The official Anthropic post/announcement

    Very interesting read

    The math guessing game (lol), the bullshitting of “thinking out loud”, being able to identify hidden (trained) biases, looking ahead when producing text, following multi-step reasoning, analyzing jailbreak prompts, analysis of antihallucination training and hallucinations

    At the same time, we recognize the limitations of our current approach. Even on short, simple prompts, our method only captures a fraction of the total computation performed by Claude, and the mechanisms we do see may have some artifacts based on our tools which don’t reflect what is going on in the underlying model. It currently takes a few hours of human effort to understand the circuits we see, even on prompts with only tens of words.


  • I would separate concerns. For the scraping, I would dump data as json onto disk. I would consider the folder structure I put them into, whether as individual files, or a JSON document per line in bigger files for grouping. If the website has good URL structure, the path could be useful for speaking author and or id identifiers in folders or files.

    Storing json as text is simple. Depending on the amount, storing plain text is wasteful, and simple text compression could significantly reduce storage size. For text-only stories it’s unlikely to become significant though, and not compressing makes the scraping process, and potentially validating completeness of scraped data simpler.

    I would then keep this data separate from any modifications or prototyping I would do regarding modification or extension of data and presentation/interfacing.









  • I’m usually not using bash locally, and remotely don’t change the prompt, but Starship works in bash too.

    I use Nushell with Starship (cross platform prompt) in Windows Terminal.

    ~
    nu ❯                                  took 52ms
    

    Path above prompt, prompt with shell name and a character, and on the right side how long the previous command took. The Character changes color from green to red when the last command exited with a non-0/-success exit code.

    In a git repo folder it shows git info too - the branch symbol won’t show here because here is not a nerd font with symbols; I’ll add a screenshot:

    C:\dev\dotnet\meercat-monitor on  main [?]
    nu ❯                                                                took 1ms 
    

    Starship can show a bunch of status/state information for various tools, package managers, docker, etc.

    I wouldn’t show my PROMPT_COMMAND, but it’s a nu closure so not really comparable to bash. But as I said, Starship works with Bash too.




  • You like the marketplace? I dislike it. Or at least its form. I appreciate that there is sharing of actions.

    But I dislike having to navigate between repo and marketplace pages. I dislike that I have to assess who publishes them and inspect whether they and the code are trustworthy, and I have to assess risk or whether to copy or extract the relevant code. (And then you have to add and configure via text and magic strings and look up params elsewhere which of course is a consequence of the tech, not a fault of the marketplace itself.)

    I feel it adds so much indirection and diffusion it’s hard to do good trustworthy actions/code well. Which if course stands against it’s usefulness of sharing workflows and actions. I know I’m more concerned and more thorough with that stuff than most people.


  • I would dislike the first/referenced commit description as verbose as well. It describes a user or change drafting journey without ever saying concisely or separately what the commit actually does and why. If it at least had that summary up top in a first block or separated with --- separator it’d be much better.

    I like the first part of the suggested alternative but I would never put a discovery journey into the commit message, or a “an hour of my life wasted”. I would put them in a MR comment - or separated block in the MR description with the intention of it not becoming part of the merge commit description.

    The journey is not relevant to the code and changes. When you think of looking at it one year later, you can see the value of a description of the change, but I don’t see value in the discovery journey. The journey is more relevant in team-knowledge and workflow of how to work with the code base, and inter-personal team building.

    Too much bloat of irrelevant information diminishes discoverability and conciseness of descriptive and useful information. It’s noise.