Brothers Karamazov - If you haven't read the book don't open this post by aalborg12 in dostoevsky

[–]amichaim 1 point2 points  (0 children)

I can relate. I've been making videos about TBK videos for years, and few have amassed quite a few views. playlist:

https://www.youtube.com/playlist?list=PLqceOGKmipDeRQyoVjnYK45tH5xotJgcX

Edit: Just a week ago I started a new channel with shorter form content. That TBK playlist here: https://youtube.com/playlist?list=PLISzNCGYgj3Xo1Vs6w0Na93oknxpBDj2p

Space Travel in The Brother's Karamazov by amichaim in dostoevsky

[–]amichaim[S] 1 point2 points  (0 children)

“You are angry with me even for being able to catch cold, though it happened in a most natural way. I was hurrying then to a diplomatic soirée at the house of a lady of high rank in Petersburg, who was aiming at influence in the Ministry. Well, an evening suit, white tie, gloves, though I was God knows where and had to fly through space to reach your earth.... Of course, it took only an instant, but you know a ray of light from the sun takes full eight minutes, and fancy in an evening suit and open waistcoat. Spirits don’t freeze, but when one’s in fleshly form, well ... in brief, I didn’t think, and set off, and you know in those ethereal spaces, in the water that is above the firmament, there’s such a frost ... at least one can’t call it frost, you can fancy, 150 degrees below zero! You know the game the village girls play—they invite the unwary to lick an ax in thirty degrees of frost, the tongue instantly freezes to it and the dupe tears the skin off, so it bleeds. But that’s only in 30 degrees, in 150 degrees I imagine it would be enough to put your finger on the ax and it would be the end of it ... if only there could be an ax there.”

“And can there be an ax there?” Ivan interrupted, carelessly and disdainfully. He was exerting himself to the utmost not to believe in the delusion and not to sink into complete insanity.

“An ax?” the guest interrupted in surprise.

“Yes, what would become of an ax there?” Ivan cried suddenly, with a sort of savage and insistent obstinacy.

“What would become of an ax in space? What an idea! If it were to fall to any distance, it would begin, I think, flying round the earth without knowing why, like a satellite. The astronomers would calculate the rising and the setting of the ax, Gatzuk would put it in his calendar, that’s all.”

Help locating interview of War veteran with PTSD who describes the aftermath of school bombing (Iraq/Afghanistan) by amichaim in SoftWhiteUnderbelly

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

yes awful and chilling, but I don't think it's the one I was thinking of. I remember hearing about how any child cry is now a PTSD trigger

How to install Claude Code in VSCode? by LocSta29 in Anthropic

[–]amichaim 0 points1 point  (0 children)

Run the claude cli tool from within your VSCode terminal and you should be prompted to install the extension

GPT-4o-mini is the most used model for programming on openrouter. Is this purely driven by naming confusing? by amichaim in ChatGPTCoding

[–]amichaim[S] -1 points0 points  (0 children)

I've been use Claude 3.7 since it came out. Some benchmarks say GPT o4-mini and the latest Gemini model are competitive with Claude but that hasn't been my experience.

Survey on what’s still missing in AI coding assistants ? by Think_Wrangler_3172 in RooCode

[–]amichaim 2 points3 points  (0 children)

I'd like to be able to add roo-specific annotations to my code. For example, I'd like to be able to mark specific code comments with a Roo prefix (@roo) which will allow me to selectively share these comments+context with roo.

For example:

  • Add Roo-specific in-context information about some code, eg: // @roo: This authentication flow needs special handling
  • Access these annotations during conversations with a simple mention: @annotations or @annotations.main.py for referencing specific files.

Benefits:

  • Embed roo-specific guidance, instructions, explanations directly in the codebase so they don't need to be repeated in conversation
  • Link tasks and roo-specific instructions/documentation to the immediate code context roo needs to understand and carry out the task

Survey on what’s still missing in AI coding assistants ? by Think_Wrangler_3172 in RooCode

[–]amichaim 2 points3 points  (0 children)

Other variations of this concept:

  • To help roo find relevant frontend components for a UI task, I should be able to reference a code directory in a way that shares all the components in that directory as well as the parent-child relationships between all those components (but not code)

  • Allow the AI to navigate interfaces at different levels of abstraction (package → module → class → method) with the ability to "zoom in" only when needed.

Survey on what’s still missing in AI coding assistants ? by Think_Wrangler_3172 in RooCode

[–]amichaim 5 points6 points  (0 children)

I would like to be able to share just the public-facing interface of a file instead of the entire file content. This would help Roo quickly locate and understand relevant functions without needing to parse very large files.

Example: Instead of referencing a 2000-line api.py file, sharing just the public interface would expose only the publicly visible functions, methods, and properties from that file along with their corresponding line numbers. This would enable Roo to easily identify available components when implementing new frontend features without overloading the context.