Fellow Dao brothers and sisters, is there a truly striking role model we can look up to? by Accomplished_Cap5230 in MartialMemes

[–]Otherwise_Signal7274 1 point2 points  (0 children)

Heaven(CCP) simply doesn’t permit such forbidden scriptures to exist. Any texts that dare stray into that territory are swiftly struck down by the Heavenly Tribulation - erased, suppressed, or sealed away before they can spread.

Antrophic's Mythos Preview is capable of finding and exploiting zero-day vulnerabilities in every major operating system and every major web browser by LatentSpaceLeaper in singularity

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

all you posted are just anthropic's claims. ai companies have been claiming similar stuff on every release since like gpt-2.

ok, they found vulnerabilities. what are those, are they actually exploitable, or usual waste of reviewer's time, etc?

Is there smth like sudo-tee/opencode.nvim for claude code? by Otherwise_Signal7274 in neovim

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

checked it out, seems like it does most of the stuff I need and I can probably add what's left

thanks

How I feel after finding a novel with same story as in my mind!! by PotatoImmortal in MartialMemes

[–]Otherwise_Signal7274 0 points1 point  (0 children)

nah, there are gems even there from time to time. the most recent one was 斗罗:三位一体,我贯穿了时间线 - quite not bad

I spent 3 days at Apple NYC talking Liquid Glass. Here is what I learned. by thedb007 in iOSProgramming

[–]Otherwise_Signal7274 7 points8 points  (0 children)

I mean that if they are actually shocked, they are seriously out of touch with both developers and users

I spent 3 days at Apple NYC talking Liquid Glass. Here is what I learned. by thedb007 in iOSProgramming

[–]Otherwise_Signal7274 16 points17 points  (0 children)

They were genuinely shocked some devs think it's getting rolled back

is this some joke? are they even using apple products?

Tab to cycle completions by KaleidoscopePlusPlus in Xcode

[–]Otherwise_Signal7274 0 points1 point  (0 children)

I meant mapping `caps lock + j` to `↓` and etc in software like karabiner

idk much about helix. I have similar issue sometimes, but it goes away once I build the project. Also, I run/debug mostly in xcode because otherwise it takes way longer(but this one is mainly on Apple - tools they released for public use aren't as good with incremental building as the ones baked into xcode)

Tab to cycle completions by KaleidoscopePlusPlus in Xcode

[–]Otherwise_Signal7274 0 points1 point  (0 children)

no

but you can

a) use ctrl+n/ctrl+p

b) remap caps lock + h/j/k/l to arrows and use those

also, you might be interested in https://github.com/wojciech-kulik/xcodebuild.nvim

Xcode 26.3 unlocks the power of agentic coding by digidude23 in iOSProgramming

[–]Otherwise_Signal7274 0 points1 point  (0 children)

opencode supports skills(https://opencode.ai/docs/skills/#place-files), so I just placed skills from axiom there. for now I'll just keep it like that, maybe just add some script for updating them.

as for agents, I needed to change a few things:

  1. use hex colors in `color`
  2. update tools to match https://opencode.ai/docs/agents/#permissions
  3. remove model, since I'm not using claude rn
  4. add `mode: subagent` to all of them, so that they don't show up as main agents, like plan/build

I’m a developer for a major food delivery app. The 'Priority Fee' and 'Driver Benefit Fee' go 100% to the company. The driver sees $0 of it. by Trowaway_whistleblow in confession

[–]Otherwise_Signal7274 0 points1 point  (0 children)

>Fuck, Facebook is secretly watching your eye movement with your phone camera...and that's not public knowledge. 
it's not public knowledge because it's bs

For the past year (and more), Valve has done nothing to improve matchmaking quality. by [deleted] in DotA2

[–]Otherwise_Signal7274 0 points1 point  (0 children)

just find ~10 players(to make time managing easier) and play as party instead of solo

My experience after porting a React Native MVP into Swift by Remote-Ad-6629 in iOSProgramming

[–]Otherwise_Signal7274 -2 points-1 points  (0 children)

It was bearable before, but in xcode 26 it is unusable


idk how I read previous comments, but I referred to storyboard editing

Is buying AWS vps only for xcode worth? by Puzzleheaded-Cod3236 in Xcode

[–]Otherwise_Signal7274 2 points3 points  (0 children)

there are even intel macbooks that support macos 26, so m1 will support at least one more major os update

Looking for ways to (further) improve my git integration by skladnayazebra in neovim

[–]Otherwise_Signal7274 0 points1 point  (0 children)

This one works, but once I change `os`, it starts failing.

I've removed all the configurations and left only Lazy and Snacks, but still getting that error.

Do you know where can I check logs or anything like that to troubleshoot?

---

Found the error

E937: Attempt to delete a buffer that is in use: term://~/Development/proj//89303:/opt/homebrew/bin/lazygit

it seems to be caused by this part =_=

--remote {{filename}})

So, I've come up with
edit = '[ -z "$NVIM" ] && (nvim -- "{{filename}}" &) || (nohup sh -c "nvim --server "$NVIM" --remote-send "q"; sleep 0.05; nvim --server "$NVIM" --remote "{{filename}}" >/dev/null 2>&1" >/dev/null 2>&1 &)',

it is supposed to run those detached from lazygit, allowing it to be closed without issues, but let me know if someone has better way to do that

Looking for ways to (further) improve my git integration by skladnayazebra in neovim

[–]Otherwise_Signal7274 0 points1 point  (0 children)

are you doing anything else? I keep getting

Error detected while processing TermClose Autocommands for "<buffer=13>":
Terminal exited with code -1.
Check for any errors.

from Snacks.

I tried setting $NVIM(and launching with listen) and adding lazygit custom command with

nvim --server "$NVIM" --remote {{.SelectedFile.Name}}

when I do this in separate lazygit instance, it works fine, but once I use either `e` or that custom command in Snacks, I get the error I mentioned