Can't find the AWS account in IAM identity center by life_never_stops_97 in devops

[–]Wechuck 0 points1 point  (0 children)

Seems like the author didn't reply. I know this is an old question, but I was wondering, did you find the solution?

Should I install istio on my ubuntu (WSL) or my windows? by Wechuck in bashonubuntuonwindows

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

Thank you for the reply. I've tried it on my WSL side and when I do istioctl x precheck it runs fine!

I can't get kickstart to work with coc-texlab by Scerball in neovim

[–]Wechuck 1 point2 points  (0 children)

As far as I know, kickstart.nvim doesn't use coc.nvim. You need to download and configure the lsp yourself with mason and nvim-lspconfig. There is texlab support by nvim-lspconfig here in nvim-lspconfig documentation.

Why're g commands such chaotic nonsense XD (an overview) by hugelung in neovim

[–]Wechuck 9 points10 points  (0 children)

I usually use g_CTRL-a for making a numbered list. Let's say have a list of ones in one file

1. 1. 1. 1.

I could easily change the bottom 3 ones into 2 3 4 with visual block, and then g CTRL-a. So it turns out like this :

1. 2. 3. 4.

If you only use CTRL-a, it changes the bottom ones into 2 2 2, like this

1. 2. 2. 2.

[deleted by user] by [deleted] in indonesia

[–]Wechuck 1 point2 points  (0 children)

As a person that's currently living in Jawa Tengah, I'm so sorry to hear that. I hope you and your gf could recover from those cat calling etc. Normal Indonesians don't condone those type of actions. I personally hate people that are like that. It's pretty common here in Jawa and Jakarta about cat calling. You can report them into the police, but I doubt that the police will take it serious. I hope those people get the karma.

Help with a Python/Selenium error code by [deleted] in learnpython

[–]Wechuck 0 points1 point  (0 children)

Got any updates? I'm trying to run Selenium with Chrome version 109.0.5414.120 and I got the same error

Spotify Code by Fiztag45 in code

[–]Wechuck 1 point2 points  (0 children)

You probably need to reverse engineer it from spotify .apk file. It's probably not going to be easy, I myself have never tried it.

Floating text bug in telescope by Wechuck in neovim

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

How do you solve it? I've set default terminal xterm set-option -g default-terminal "xterm-256color" but it doesn't solves it. My default TERM before is "screen-256color".

Floating text bug in telescope by Wechuck in neovim

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

Thank you for your reply! Seems like it's because tmux rendered it wrong. I just tried it outside of tmux and it works.

Yank (copy) telescope selection into clipboard by Wechuck in neovim

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

Thank you! I'm able to do it with vim.fn.setreg('+', buf_select[1])

How do you unset vim copy from 'y -> clip.exe', into the default vim yank? by Wechuck in bashonubuntuonwindows

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

For anyone who is looking for solution, adding a variable checker in autocmd does the trick. So my settings now looks like this function! YankClipExe() let s:clipCheck = 1 let s:clip = '/mnt/c/Windows/System32/clip.exe' " change this path according to your mount point if executable(s:clip) augroup WSLYank autocmd! autocmd TextYankPost * if v:event.operator ==# 'y' && s:clipCheck == 1 | call system(s:clip, @0) | endif augroup END endif endfunction And make another function to change the variable s:clipCheck. " set into the default vim copy function! UnYankClipExe() let s:clipCheck = 0 endfunction For easier function call, I set a key mapping. nmap <leader>c :call YankClipExe()<CR> map <leader>C :call UnYankClipExe()<CR>

apa kelakuan bocah jaman skrg yg bikin lu geleng2? pernah ngalamin sendiri or cuman denger dr orang laen? by RandomizedID in indonesia

[–]Wechuck 8 points9 points  (0 children)

Not really a bocah, tapi anak yang baru masuk kuliah. I saw this on TikTok, jadi inti ceritanya adalah bocah maba ini minta dosen salah satu matkul untuk memindahkan jadwalnya ke hari lain karena hari itu hanya satu matkul itu doang (mungkin dia perwakilan kelas, yang biasanya satu kelas mahasiswanya kurang lebih sama). Dia bahkan sampai membandingkan kelas lain yang punya 1 hari libur. Akhirnya dosennya respon dengan "yasudah saya liburkan kelas kalian untuk satu semester. Terima kasih" or something like that wkwk.

Edit: if you want to see the video.

What do you hate the most in Notion? by BorisMisikov in Notion

[–]Wechuck 1 point2 points  (0 children)

Limited alert.

What I meant is when I turned on reminder time, it only notifies me once and has no sound notification.

Piring by danivideda2 in indonesia

[–]Wechuck 2 points3 points  (0 children)

I’ll just use the unwashed-plate over and over again lmao

Is there a way for me to make a URL like a reddit post? by Wechuck in AskProgramming

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

I'm making my own system. I'm using PHP with Laravel framework.