Tips on using DeepSeek Chat as a search engine

Tips on using DeepSeek Chat as a search engine

I’ve been using DeepSeek Chat for a while now, probably longer than I’d like to admit. Over time, I’ve stumbled onto a few methods that completely changed how I

Read Article

Hybrid line number in Neovim (Lua)

To enable hybrid line number, add the following line to your init.lua. vim.wo.number = true vim.wo.relativenumber = true Save this file by doing a :w or Shift +

Read Article

Set color scheme in Neovim (Lua)

To set a color scheme in Neovim using Lua add the following line to the init.lua file vim.cmd [[colorscheme onedark]] In the example above, I use Onedark as the

Read Article

Relative line number in Neovim (Lua)

To enable relative line number, add the following line to your init.lua. vim.wo.relativenumber = true Save this file by doing a :w or Shift + z repeat z. The ne

Read Article

How to use lscpu command to get CPU information

The lscpu command is a helpful utility for displaying information about the CPU (Central Processing Unit) on a Linux system. This command can be used to obtain

Read Article
Install Vivaldi browser using Winget

Install Vivaldi browser using Winget

Vivaldi is a web browser developed by Vivaldi Technologies, founded by Opera Software co-founder and former CEO Jon Stephenson von Tetzchner. It was released in

Read Article