Skip to content

Instantly share code, notes, and snippets.

@swickrotation
swickrotation / neovim-setup-from-scratch.md
Last active April 11, 2025 15:47 — forked from elpddev/neovim-setup-from-scratch.md
Neovim Setup from Scratch (Based on ThePrimeagen)
@akshaybabloo
akshaybabloo / get_dns_records.py
Last active December 16, 2024 13:24
Printing all DNS records using DNSPython in Python 3
#!/usr/bin/env python
# -*- coding utf-8 -*-
#
# Copyright 2016 Akshay Raj Gollahalli
import dns.resolver
def get_records(domain):
"""
@Zearin
Zearin / python_decorator_guide.md
Last active April 26, 2025 15:21
The best explanation of Python decorators I’ve ever seen. (An archived answer from StackOverflow.)

NOTE: This is a question I found on StackOverflow which I’ve archived here, because the answer is so effing phenomenal.


Q: How can I make a chain of function decorators in Python?


If you are not into long explanations, see [Paolo Bergantino’s answer][2].