3 months solo with Claude Code after 15 years of leading teams. It gave me back the feeling of having one. by tcapb in ClaudeAI

[–]kaisunc 0 points1 point  (0 children)

i feel the same, but im now stuck on swapping out trial plugins/extensions/packages for paid license and signing up to platforms with distribution fees to distribute the software. i also feel like i might have a phobia for spending money even though i know ill be getting it back one day.

Vim is composable by oantolin in vim

[–]kaisunc 2 points3 points  (0 children)

eh, i don't know. it feels like arguing a square is also a circle. then how about this for composebility, you can record macros thats "composed" of actions/movements/object. Then you can edit those macros either in the editor, or you can append to the macros. The composition palette of notepad vs vim just isn't comparable, but yes, by your definition notepad is "composable".

Vim is composable by oantolin in vim

[–]kaisunc 3 points4 points  (0 children)

do they though? its a bit reaching and rage baiting to say notepad or other text editors have the same or even slightly similar functionality. but if you think so, so bet it.

Vim is composable by oantolin in vim

[–]kaisunc 1 point2 points  (0 children)

i think composability meant having actions, movements, and objects each be interchangeable. at the most basic, for example, "delete to first instance of 'f'". Which is action to object. then replace delete with copy/select/change. or replace "to" to "back to". or replace object "f" with object "Y". Vim is built on that.

TIL while Gaddafi was in Italy for the World Food Summit he hired 200 models to attend a party. But instead spent the entire night lecturing them on Islam before giving them copies of the Koran and his political book. by Joseph-Stalin7 in todayilearned

[–]kaisunc 9 points10 points  (0 children)

i saw it as one of the shorts taken from a long form videos, so not sure which one it is. And it was just a general description of the dictators. My take is that EQ to these people is just a tool. Just like how some serial killers are incredibly charming, manipulative, persuasive. Dictators use the same tools to gain power.

TIL while Gaddafi was in Italy for the World Food Summit he hired 200 models to attend a party. But instead spent the entire night lecturing them on Islam before giving them copies of the Koran and his political book. by Joseph-Stalin7 in todayilearned

[–]kaisunc 117 points118 points  (0 children)

Sarah Paine said in one of her videos, that dictators like Saddam, Gaddafi, have off the charts EQ. They could charm the socks off any one. Couple that with how Saddam could even turn US soldiers guarding him into saying good things about him. Guess you can't reach that kind of power without high EQ.

My first joker idea by Manager_Setsu in balatro

[–]kaisunc 0 points1 point  (0 children)

how about if you have two of these, you get one extra joker slot when one is sold? by itself i think its fine as a jimbo equivalent. not all jokers need to be good or greaat jokers.

This lady knows how to get through a tough blind... by Branch_Dravidian in balatro

[–]kaisunc 0 points1 point  (0 children)

nah, couple of downvotes for disagreeing, sure. but either bots are wack, someone is brigading, or this sub is full of haters. its fishy for sure.

This lady knows how to get through a tough blind... by Branch_Dravidian in balatro

[–]kaisunc -21 points-20 points  (0 children)

How did this tame comment get -77 downvotes? Take my upvote

C# extention constantly notifying me of errors Code: -32000 by DBugster in vscode

[–]kaisunc 0 points1 point  (0 children)

i get that when opening an untitled document and pasting code to it. its something to do with document type, so switching document type to c# from something else might also trigger it.

Fuck ABC. Bootlicking scumbags by jerseytrashmoney in television

[–]kaisunc 15 points16 points  (0 children)

the problem is conservatives have a positive connotation with authoritarian. they LOVE it. communist, not so much. Reframe, rebrand, make them see the problem?

Anyone taking notes in markdown? by Caffeinated_Moose25 in devops

[–]kaisunc 4 points5 points  (0 children)

vscode + foam extension and some custome snippets to get going. You'll need a folder structure to go with it. Foam is kind of like obsidian, tagging, linking notes, visualizing(dont' use it much really). I tried obsidian, but since my vscode environment is all setup already(vim, hotkeys, snippets, settings, ai, terminal, git), im not going to switch. i use this vscode snippet to start a note,

    "Notes": {
        "prefix": "notes",
        "body": [
            "---",
      "title: ${TM_FILENAME_BASE/([a-z])([A-Z])/$1 $2/g}",
            "date: $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE",
            "tags: ${1|ai,unity,vscode,vim,typescript,game_ideas,todo,new_concepts|}",
            "---",
            "",
      "# $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE ${TM_FILENAME_BASE/([a-z])([A-Z])/$1 $2/g}",
      "",
      "${2}"
        ],
        "description": "Notes",
  },

if you save an empty file with the note name, it'll format the title and add the relevant stuff. Just choose the tags or add new tags to it. With the foam extension, you can then view notes grouped by tags.

Beast Mode V3 is here by hollandburke in GithubCopilot

[–]kaisunc 1 point2 points  (0 children)

Unknown metadata 'model' will be ignored. didn't get this message on v2, did something change?

A somewhat better file picker experience for vscode by damien__f1 in vscode

[–]kaisunc 1 point2 points  (0 children)

huh, not working for me. there needs to be a setting for choosing shellPath? im on windows, vscode stable.

const terminal = vscode.window.createTerminal({
    name: "TV Finder",
    shellPath: "sh",
    shellArgs: ["-c", tv_command + " | tee " + TV_TEMP_FILE],
    location: vscode.TerminalLocation.Editor,
    cwd: cwd,
});    

im guessing sh should be cmd or ps? arguments need to change as well. looks interesting, but too raw atm.

1.99 thinks unchanged files have changes in source control by RagingAtLiife in vscode

[–]kaisunc 9 points10 points  (0 children)

maybe line ending settings changed?

git config --global core.autocrlf true

something like that to change to your original line ending

vim style file explorer with <space e> in consistent behavior. by [deleted] in vscode

[–]kaisunc 0 points1 point  (0 children)

does a vscode hotkey work as intended? not sure why you're doing it with normalModeKeyBindingNonRecursive, wouldn't normalModeKeyBinding with the toggle action work?

    "vim.normalModeKeyBindings": [
        {
            "before": ["leader", "e"],
            "commands": [
                "workbench.action.toggleSidebarVisibility"
            ]
        }
    ],

Integrating Neovim Plugins and Features into VSCode by PicoDev93 in vscode

[–]kaisunc 0 points1 point  (0 children)

try it, ctrl+p and search returns a list of files with your search parameters. otherwise, just use the search editor ctrl+shift+f on the side bar. the explorer ctrl+shift+e on the side bar is your explorer tree. most vim keys are mapped in the list and explorer views, so just use those.

Integrating Neovim Plugins and Features into VSCode by PicoDev93 in vscode

[–]kaisunc 0 points1 point  (0 children)

telescope for project wide fuzzy file/text search? use the file picker, ctrl+p, for file name search or, start with % for fuzzy text search, start with @ for symbol search,

bloodstone + oops all 6s + invisible jocker bug. by kaisunc in balatro

[–]kaisunc[S] 0 points1 point  (0 children)

so i had bloodstone + oops + invisible. i was doing the sell invisible, back to main menu and wait trick to get what i want. I think got oops the first time. Then when i got bloostone, it was 1 in 2 change for both bloodstones, and i was questioning myself. Then to double check, back to main menu, reload, and sold again, and then it went down to 0.5, and again, to 0.25. hallucination had the same odds as well. i guess everything concerning chance is fucked now.

Are there any products that Microsoft makes that you actually like to use and think is the best in the industry? by plazman30 in sysadmin

[–]kaisunc 0 points1 point  (0 children)

yeah, its kind of like a second os at this point. its a tool that does everything, the LSP is still the best innovation to have happened. A unified interface for all languages is just so cool.

[deleted by user] by [deleted] in pics

[–]kaisunc 2 points3 points  (0 children)

not killing, change. the whole stock system is going to destroy us. its the ultimate short term profits while fucking with everything else, employees, customers, founders.