HN user

siodine

48 karma
Posts0
Comments25
View on HN
No posts found.

I had the same problem with using the latest neo4j API and Sonnet 3.5 -- except it wasn't really a problem. I just created a project where I explain that its knowledge on neo4j is outdated and to instead use an API reference and changelog that I add to the project.

It's not magic, you need to think what you would need in a similar situation and then provide that to the LLM. It definitely does suffer from severe overconfidence, though -- if you were to think of it as a person.

Also, you need to break up your project into manageable portions and provide context to the other portions (without providing the entirety of them) for it to effectively work on the portion you want to work on.

Sublime Text 3 Beta 13 years ago

* SublimeBlockCursor works for me.

* Set `"vintage_start_in_command_mode": false` in the vintage preferences.

* You can remove the autocomplete on '.', just look through whatever plugins settings or bindings.

Also, make sure you get the plugin VintageEx.

The scorings are terrible. Rottentomatoes is fairly reliable for getting solid recommendations as a cinephile, but this site is giving high marks for what is clearly crap.

Maybe there just aren't enough book critics, or you're not aggregating them all, or you aren't selecting for the top critics like rottentomatoes.

Yup, this seems to be the best solution, and surprisingly makes the laptop the best workstation. You get to change your workspace every 30 minutes to an hour with ease. And virtual desktops + remoting into more powerful computers mitigates the problems with a laptop.

>It's a feature that lets you take poorly aligned code that is difficult to read, and fix up the alignment a la K&R et al. Hope that's clear enough for you :)

I linked you to plugins that do that. Also, you can find other such plugins through the site I linked for you. I wasn't inferring that you were a newcomer to Hacker News, I was inferring that you were new to this kind of technology in general (sort of freshmen level). And because my profile is two months old, doesn't mean I haven't been on Hacker News much longer. I'm glad I didn't hurt your feelings :)

Last I checked, there's no conclusive evidence showing a standing desk has any health benefits over sitting. Treadmill desks, on the other hand...

I think that's unlikely. ST2 is already exceptionally fast and complete as an editor. As an IDE, ST2 requires plugins. These plugins are written in Python (which can use libs written in C) as opposed to vimscript or elisp. Moreover, these plugins aren't required for editing text files (or having SublimeClang isn't going to significantly slow down editing python files).

Sorry? My response was tailored for your comment -- you didn't mention plugins and you weren't (and still aren't) clear on the features you're missing. I.e., from your comment I inferred that you are new to all this, and so I treated you as a newcomer. I guess that hurt you feelings? If so, I didn't mean to :)

The Go and Haskell support is better in ST2 than in IntelliJ. For Python and Ruby, it depends. IntelliJ is unquestionably better for Java, though.

Also, consider that ST2 is in its infancy and how developed its language support already is (see SublimeClang, for example). As ST2 becomes more popular, it might compete with the most developed IDEs.

1. The configuration time for stuff like this in ST2 is comparable with IntelliJ.

2. IntelliJ costs more.

3. IntelliJ is simply better for Java than ST2 (more significant time-saving professional features), but not necessarily so for other languages (it becomes less clear cut with languages like ruby).

4. ST2 replaces your standard text editor, IntelliJ doesn't.

Ctrl+Alt+P to get a dialog for opening all your Sublime projects.

Ctrl+R for navigating to functions or classes within the current file.

SublimeClang gives you Visual Studio-style Intellisense, static analysis, and jump to definition/implementation.

When setting up Vim emulation, you'll need to install VintageEx and change some of the default bindings (Ctrl+Shift+P+"key" to see the binding files). You'll also want SublimeBlockCursor.

For example, put the following in the user defined keymap to override the defaults: [ { "keys": ["ctrl+f"], "command": "move", "args": {"by": "pages", "forward": true} }, { "keys": ["ctrl+b"], "command": "move", "args": {"by": "pages", "forward": false} }, { "keys": ["ctrl+shift+f"], "command": "move", "args": {"by": "pages", "forward": true, "extend": true} }, { "keys": ["ctrl+shift+b"], "command": "move", "args": {"by": "pages", "forward": false, "extend": true} } ]

Hello Opera 12 14 years ago

For me, the most important missing feature is tab lazy loading -- without that my usecase is impossible (hundreds of tabs).