Skip to content

Instantly share code, notes, and snippets.

@cb109
cb109 / vscode_python_sort_imports_isort_on_save.md
Last active July 5, 2024 13:15
VSCode: Python Sort Imports on File Save (isort)

VSCode: Python Sort Imports on File Save (isort)

Problem

VSCode does have support to sort imports inside a .py file using isort. The recommended way to turn this on is via the following settings:

"[python]": {
    "editor.formatOnSave": true,
 "editor.codeActionsOnSave": {
@tterb
tterb / README-badges.md
Last active August 9, 2024 11:07
A collection of README badges

Badges

License

MIT License GPLv3 License AGPL License

Version

Version GitHub Release

@deanveloper
deanveloper / ProxyRunnable.java
Last active April 25, 2020 14:44
Easy way to create runnable stuff in BungeeCord, compatible with lambdas as well.
//JAVA 8
import net.md_5.bungee.api.ProxyServer;
import net.md_5.bungee.api.scheduler.ScheduledTask;
import java.util.concurrent.TimeUnit;
@FunctionalInterface
public interface ProxyRunnable extends Runnable{
default ScheduledTask runAsync(){