Technoholic

Programming and Productivity tips and tricks

Master any tool with fuzzy search and aliases

February 07, 2021 — Vinayak Gadkari

tool-icon

Mastering any tool requires learning what that tool does and how we can effectively use it. For example, we know that a simple mechanical tool like a hammer hammers in nails, has to be struck over a nail held in an upright manner until the nail goes in properly. On the other hand, software tools offer a huge variety of commands and options for each command and it becomes difficult to store all those command and options in your brain.

Aliases offer a second brain way to store all those commands in config files and also rename commands with intuitive names. Not all tools offer aliases though. Secondly aliases tend to grow over time and remembering those aliases itself becomes a big hassle. Enter fuzzy search. With these two techniques one can virtually master any tool, let me show you how…

Read more...

Windows Command line Gems

February 06, 2021 — Vinayak Gadkari

jewellery

For beginners, here’s a list of windows command line tools that are really useful.

  1. driverquery : installed drivers.
  2. openfiles : files opened by network users
  3. netstat : monitor port activity
  4. recover : recover corrupt file
  5. systeminfo : detailed configuration information
  6. schtasks : schedule tasks
  7. subst : use alternate drive letter
  8. net use : connect/disconnect a shared resource
  9. pushd/popd : switch directory conveniently
  10. qwinsta/rwinsta : Query/Remove Remote Desktop connections

Read more...