NNexxsysinnexxsys.hashnode.dev·Oct 17, 2025 · 1 min readFZF TipsInstall fd (brew install fd) to have a better find option # Set fd as the default source for fzf export FZF_DEFAULT_COMMAND='fd --type f --strip-cwd-prefix' # FZF default options export FZF_DEFAULT_OPTS=" --tmux 70% --header='CTRL-D: Directories...00
NNexxsysinnexxsys.hashnode.dev·May 20, 2022 · 1 min readpicoCTF - 'Secrets' - LearningLearned a little something cool today while doing a picoCTF challenge and listening to John Hammond. You can use a cURL command to pull the flag or a nice python script with some regex: #!/usr/bin/env python3 import requests import re response = re...00
NNexxsysinnexxsys.hashnode.dev·May 14, 2022 · 1 min readSimple Programming SolutionRead a data.dat file and count the number of lines where the number of 0's per line is a multiple of 3, OR the number of 1's per line is a multiple of 2: #!/usr/bin/env python3 count = 0 source = 'data.dat' with open(source) as file: content = ...00