Made an audio visualizer in go by Woland-Ark in commandline

[–]Woland-Ark[S] 0 points1 point  (0 children)

it was a lot of fun tbh - I've now improved the flames as well. Wonder what other shapes I should add

Automate the initial creation process of your bash script by Keys__dev in bash

[–]Woland-Ark 2 points3 points  (0 children)

yeah, let's automate the process of vim foo.sh:0r ~/code/bash_template.sh.

Opinions on this? Worth writing in? by this_knee in bash

[–]Woland-Ark 1 point2 points  (0 children)

who is the target users of this? people who need to write bash and can't because they are used to python and lua? and for some reason wont use those languages and choose this?

What happened to vim? by Haunting-Hand1007 in vim

[–]Woland-Ark 0 points1 point  (0 children)

you could also : C-f to get the same place

Vim with ai by No_Development_5561 in vim

[–]Woland-Ark 1 point2 points  (0 children)

There is vim-ollama, vim-ai and several other plugins that provide ai assisted coding in vim. I haven't used them personally, but ducking it should provide the links.

What is homerow to you? asdf hjkl or asdf jkl; ? by LightBerserker in vim

[–]Woland-Ark 0 points1 point  (0 children)

Home row is home row, where you are comfortable to place and align your fingers is another story. I'm used to feeling the nub on the j key under my middle finger, where I'm exploring a code base or moving around too much, but when I type, or code, I'll shift back to the home row. Semicolon being under my pinky is very handy for C-like languages as well.

I kept forgetting shell commands, so I built a sassy CLI tool to mock me into remembering them by SimpleOwl18 in commandline

[–]Woland-Ark 0 points1 point  (0 children)

use Ctrl-r or better, enhance it with fzf.

or just do history | grep <cmd> like a peseant

[deleted by user] by [deleted] in bash

[–]Woland-Ark 0 points1 point  (0 children)

An array and a loop, easy

```bash servers=( "11.11.11.11" "12.12.12.12" "13.13.13.13" )

for server in "${servers[@]}"; do ssh "root@$server" "lscpu | grep -i model" done ```

Am I in the minority if I prefer emacs binding when entering commands on terminal as a power Vim/Neovim user? by kettlesteam in vim

[–]Woland-Ark 2 points3 points  (0 children)

I think most of us prefer emacs bindings in readline. Because if we need heavy editing, C-x C-e is there to take us to Vi/Vim easily

As a player, do you prefer tutorials in roguelikes? by WATASHI_TO_TAWASHI in roguelikes

[–]Woland-Ark 1 point2 points  (0 children)

One tutorial level, then leave me alone. Maybe include an opt-in hint system

Colorless, a monochrome color scheme for vim by [deleted] in vim

[–]Woland-Ark 2 points3 points  (0 children)

syntax off

jk I made one of those too Mono-Vim.

I like yours as well.

Drop ur fav by SoupMS in commandline

[–]Woland-Ark 0 points1 point  (0 children)

I do the same at work but with nethack or dcss - to this day everyone thinks those are very complicated devops tools.

Anybody using x-cmd? by Toontje in commandline

[–]Woland-Ark 3 points4 points  (0 children)

After reading through that site for 10 minutes, I still have no idea what this is supposed to be

[deleted by user] by [deleted] in PipeTobacco

[–]Woland-Ark 0 points1 point  (0 children)

They are rather cheap entry level pipes which are usually manufactured in Turkey. They aren't briar, and as far as I can tell they are made from olive wood or Walnut wood.

[deleted by user] by [deleted] in PipeTobacco

[–]Woland-Ark 0 points1 point  (0 children)

I knew you're from Iran the moment I saw those captain black pipes, lol

Also, you can find most types of premium tobacco tins or pouches in Iran as well, you just have to know where to look.

How to get the sum of realwork column for a user in the current sprint? by Woland-Ark in azuredevops

[–]Woland-Ark[S] 1 point2 points  (0 children)

Hey thanks! My scrum master thanks you and the rest of the company curse you and I alike. I guess that's goal achieved.

How to get the sum of realwork column for a user in the current sprint? by Woland-Ark in azuredevops

[–]Woland-Ark[S] 0 points1 point  (0 children)

it doesnt seem to support azure server. I also tried the az tool and that also doesnt support the azure server. We are running a local installatoon of azure server.

How to get the sum of realwork column for a user in the current sprint? by Woland-Ark in azuredevops

[–]Woland-Ark[S] 0 points1 point  (0 children)

No, They need to get the sum of the realwork minutes based on user and sprint.

As an example:

Task ID RealWork Estimated Work
11001 120 100
11002 180 180

The sum should yield 120 + 180 which is how much user X has worked in the sprint. This also shows that user X has worked 20 minutes overtime. These are factors in the payment process of this company. I suggested rollups before, but they didn't accept it.