Skip to content

Instantly share code, notes, and snippets.

View t3mp-0xCC's full-sized avatar
🍵

てんぷ t3mp-0xCC

🍵
View GitHub Profile
local M = {
"neoclide/coc.nvim",
branch = "master",
build = "yarn install --frozen-lockfile",
}
M.config = function()
-- Some servers have issues with backup files, see #649
vim.opt.backup = false
vim.opt.writebackup = false
@liba2k
liba2k / ghidra.py
Last active April 6, 2024 04:21
Script to run Ghidra from the command line including automatic analysis and lunching Ghidra for existing projects.
#!/usr/bin/env python3
import os
import sys
import click
import subprocess
import tempfile
import itertools as IT
import select
from time import sleep