My collection of notes and code snippets
Notes
December 17, 2024
Leetup list command with query
leetup list --tag array -q eLD
November 19, 2024
Font to try
November 19, 2024
Python - Get x most largest items from dict
heap = [[value, key] for key, value in dict.items()]
xFrequent = heapq.nlargest(x, heap)
#python
November 19, 2024
Change extension shortcut
edge://extensions/shortcuts
November 18, 2024
WSL - Certificate signed by Unknown Authority
Export the root certificate using a browser. Copy the certificate to the /usr/local/share/ca-certificates/ folder and then run the command sudo update-ca-certificates.