94 private links
Contribute to aSerbCoder/vimwiki-luasnip-config development by creating an account on GitHub.
Effortlessly embed images into any markup language, like LaTeX, Markdown or Typst - HakonHarnes/img-clip.nvim
💥 Create key bindings that stick. WhichKey helps you remember your Neovim keymaps, by showing available keybindings in a popup as you type. - folke/which-key.nvim
Write Markdown with code assist and intelligence in the comfort of your favourite editor. - artempyanykh/marksman
A markdown preview directly in your neovim. Contribute to ellisonleao/glow.nvim development by creating an account on GitHub.
Getting Started # Understanding fzf # Basically, you can think of fzf as an interactive version of “grep” (with bells and whistles, lots of bells and whistles). You feed lines of text to fzf via standard input, fzf starts an interactive terminal interface where you can narrow down the list using fuzzy matching algorithm. And when you finally make a selection, fzf prints it out to standard output. I n p u t l i n e s S T D I N f z 👀 f S T D O U T O u t p u t l i n e ( s ) What I’m trying to say here is that fzf is essentially a text filter; it’s up to you to provide the input list, and it’s up to you to do something with the filtered output.
Let's look at fzf advanced features by creating interfaces for one of the best tool we have, Git.
Manage your dotfiles across multiple machines, securely.
Creating Talos Kubernetes cluster using QEMU VMs.
Setup kubernetes cluster using Talos (Lab). GitHub Gist: instantly share code, notes, and snippets.
You certainly remember the first time you ran an Ansible playbook: a few lines of code grouped together in a bunch of tasks that did a lot of magic. Struck by curiosity, you surely asked yourself…
Ever wanted to make your command or shell call in Ansible playbook idempotent and avoid those nasty yellow changed lines in run logs? Wait no more! Here's bash trick for you: - name: Put docker package on hold shell: > apt-mark showholds | grep -q docker-ce && echo -n HOLDED || apt-mark hold docker-ce register: docker_hold changed_when: docker_hold.stdout != 'HOLDED' What do we do here? 1. We execute "check" command apt-mark showholds | grep -q docker-c
Gaphor is a UML, SysML, RAAML, and C4 modeling application written in Python. It is designed to be easy to use, while still being powerful. Gaphor implements a fully-compliant UML 2 data model, so it is much more than a picture drawing tool. You can use Gaphor to quickly visualize different aspects of a system as well as create complete, highly complex models.
Author: Kien Nguyen kiennt2609@gmail.com A minimal Hugo theme with Tailwind CSS
TIL: Mermaid Gantt diagrams are great for displaying distributed traces in Markdown - brycemecum.com
TIL: Mermaid Gantt diagrams are great for displaying distributed traces in Markdown
File transfer is a crucial step in the post-exploitation scenario while performing penetration testing or red teaming. There are various ways to do the file
There are a bunch of posts on the internet about using git worktree command. As far as I can tell, most of them are primarily about using worktrees as a replacement of, or a supplement to git branches. Instead of switching branches, you just change directories. This is also how I originally had useed worktrees, but that didn't stick, and I abandoned them. But recently worktrees grew on me, though my new use-case is unlike branching.