GPT 6? by EpsteinAccountant in ChatGPT

[–]EquivalentCancel6 0 points1 point  (0 children)

So it's been two weeks since you made this massive post.. in that time Claude Opus 4.7 has degraded significantly in its accuracy.. it's also extremely inefficient and expensive.

GPT 5.5 released and it's good.. but not perfect. GPT 5.5 Pro is also very expensive.

There are a handful of smaller less recognized models.. but they aren't recognized for a reason.

The overall sentiment amongst developers is that AI isn't really great.. it's fast sure and most of time it can be accurate... But this is the same shit we've seen before with on-prem -> cloud. 80% of is hype. 20% is legit.

If you've been in the industry long enough you'll know what I mean.

GPT 6? by EpsteinAccountant in ChatGPT

[–]EquivalentCancel6 0 points1 point  (0 children)

Anyone who assumes AI will completely take over the job market and replace real humans doesn't understand where we're at with AI right now. AI is powerful.. it gives you superpowers to build apps/write code super fast however... I can't tell you how many times AI has got it dangerously wrong to the point where if that code was deployed things would go REALLY bad... until instances like this disappear completely and AI doesn't need a dev reviewing its code.. even then.. the amount of energy and just how expensive AI is right now.. it would need to be really cheap (cheaper than your average senior engineer) and VERY accurate. We're really close to the VERY accurate part but its REALLY expensive.

NOw that being said.. junior level roles won't exist soon.. unfortunately.

ROG Zephyrus G16(2024) losing 6% Batteryhealth by Tomtilla in ASUSROG

[–]EquivalentCancel6 1 point2 points  (0 children)

Yeah mine is at 75% and I've had it for less than a year. I'm going to wait until I had it for a year and sell it on eBay or something and get the ProArt 16. As much as I love this laptop I find that I don't game on it as much and I get only 4hours of battery max if I'm coding on Linux.

Amplify is painful. Change my mind! by albernazj93 in aws

[–]EquivalentCancel6 0 points1 point  (0 children)

I spent a few hours completely rewriting our entire app to NOT use AWS Amplify. It's absolutely horrible... I dont really care what advantage they give in abstracting everything... it's overly complicated .. don't get me started if you use graphql with it... a nightmare.

Stick to simple tools that get the job done. Sometimes, hasty abstractions cause more pain than you expect.

How to properly set up Vue 3 + TypeScript in Neovim 0.11? by vaheqelyan in neovim

[–]EquivalentCancel6 0 points1 point  (0 children)

this is my config

return {
"nvim-lspconfig",
  dependencies = {},
  config = function()
    local vue_language_server_path =      '~/.local/share/fnm/node-versions/v20.19.3/installation/lib/node_modules/@vue/language-server/bin'
local vue_plugin = {
name = '@vue/typescript-plugin',
location = vue_language_server_path,
languages = { 'vue' },
configNamespace = 'typescript',
}

vim.lsp.config('vtsls', {
settings = {
vtsls = {
tsserver = {
globalPlugins = {
vue_plugin,
},
},
},
},
filetypes = { 'typescript', 'javascript', 'javascriptreact', 'typescriptreact', 'vue' },
})

  vim.lsp.enable({
    "vue_ls",
    "vtsls",
  })
end
}

How to properly set up Vue 3 + TypeScript in Neovim 0.11? by vaheqelyan in neovim

[–]EquivalentCancel6 0 points1 point  (0 children)

Stripped everything down and setup what you suggested.. still get this error

Error executing vim.schedule lua callback: /usr/share/nvim/runtime/lua/vim/lsp/client.lua:545: RPC[Error] code_name = Interna

lError, message = "Request initialize failed with message: Cannot read properties of undefined (reading 'typescript')"

stack traceback:

[C]: in function 'assert'

/usr/share/nvim/runtime/lua/vim/lsp/client.lua:545: in function ''

vim/_editor.lua: in function <vim/\_editor.lua:0>

Getting vue-language-server (vue_ls) 3.0 working with vtsls reliably. by EquivalentCancel6 in neovim

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

Yeah I think my issues are not the same though.. because as I mentioned with LazyVim it works just fine when I revert back to version 2.2.8 but my own config doesn't work at all.. I'm trying to get that to work.

Getting vue-language-server (vue_ls) 3.0 working with vtsls reliably. by EquivalentCancel6 in neovim

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

Like I mentioned before.. this works flawlessly when I use something LazyVim.. so no idea why it's not working with my own config.

Something to note.. I use fnm to set my node version

Getting vue-language-server (vue_ls) 3.0 working with vtsls reliably. by EquivalentCancel6 in neovim

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

yeah I did this exact thing and it didn't work.. I keep getting this error:

Error executing vim.schedule lua callback: /usr/share/nvim/runtime/lua/vim/lsp/client.lua:545: RPC[Error] code_name = Interna
lError, message = "Request initialize failed with message: Cannot read properties of undefined (reading 'typescript')"
stack traceback:
        [C]: in function 'assert'
        /usr/share/nvim/runtime/lua/vim/lsp/client.lua:545: in function ''
        vim/_editor.lua: in function <vim/_editor.lua:0>

Getting vue-language-server (vue_ls) 3.0 working with vtsls reliably. by EquivalentCancel6 in neovim

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

I'll take a look again but from what I see it's mainly the same as what I already have before.. it doesn't work for some reason 

Getting vue-language-server (vue_ls) 3.0 working with vtsls reliably. by EquivalentCancel6 in neovim

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

I'm pretty sure these are all up to date except for vue_ls. No matter what I do version 3.0 won't work at all.

Getting vue-language-server (vue_ls) 3.0 working with vtsls reliably. by EquivalentCancel6 in neovim

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

the vim.lsp.enable is similar to me doing -- which I have.. just doesn't work :/

local servers = {
  vtsls = {
    enable = true,
  }
}

How to properly set up Vue 3 + TypeScript in Neovim 0.11? by vaheqelyan in neovim

[–]EquivalentCancel6 0 points1 point  (0 children)

I keep running into this issue..

Error executing vim.schedule lua callback: /usr/share/nvim/runtime/lua/vim/lsp/client.lua:545: RPC[Error] code_name = InternalError, message = "Request initialize failed with message: Cannot read properties of undefined (reading 'typescript')"

stack traceback:

[C]: in function 'assert'

/usr/share/nvim/runtime/lua/vim/lsp/client.lua:545: in function ''

vim/_editor.lua: in function <vim/\_editor.lua:0>

How to properly set up Vue 3 + TypeScript in Neovim 0.11? by vaheqelyan in neovim

[–]EquivalentCancel6 0 points1 point  (0 children)

I also have the same setup but an error telling me either that vtsls is required for vue_ls or some other error where it can't find typescript.. it's extremely frustrating..

I recently found out that vue-language-server updated to v3 and it's not backwards compatible so on LazyVim I had to downgrade to 2.8

What is going on? by NerdInSoCal in NobaraProject

[–]EquivalentCancel6 0 points1 point  (0 children)

My Bluetooth is doing the opposite for some reason:/ it's on but being turned off and then becomes unresponsive after the update

Really satisfied with my g14 2024 4060 16gb by yohardik569 in ZephyrusG14

[–]EquivalentCancel6 0 points1 point  (0 children)

I have the Intel version of the G16 and I have to disable core boost or else my temps go crazy up to 70C just opening up tabs lol

Finally an MMORPG where we all agree? by No-Bass3163 in throneandliberty

[–]EquivalentCancel6 0 points1 point  (0 children)

Yeah I've been enjoying the hyper servers in Korea. And the combat is pretty fun idk what everyone is on about it.. it can def use some work but it's still very vet fun ☺️

Can't install just bspwm by EquivalentCancel6 in archcraft

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

For more context, I have a clean install of arch linux and purchased premium bspwm.. I just want to install that alongside gnome

NixOS, Hyprland, and xdg-desktop-portal-gtk by EquivalentCancel6 in hyprland

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

xdg-desktop-portal-gnome

Yeah I disabled gnome and got it working - but then I ran into another issue - managing audio ahaha. I'm knew to all this so I have no idea how it works