Skip to content

Instantly share code, notes, and snippets.

View 0xmovses's full-sized avatar
👾

Richard Melkonian 0xmovses

👾
View GitHub Profile
# Basic commands
:Git [args] # does what you'd expect
all of your `~/.gitconfig` aliases are available.
:Git! [args] # same as before, dumping output to a tmp file
Moving inside a repo.
@paolocarrasco
paolocarrasco / README.md
Last active November 7, 2025 17:25
How to understand the `gpg failed to sign the data` problem in git

Problem

You have installed GPG, then tried to perform a git commit and suddenly you see this error message after it 😰

error: gpg failed to sign the data
fatal: failed to write commit object

Understand the error (important to solve it later!)

@bradtraversy
bradtraversy / mysql_cheat_sheet.md
Last active November 16, 2025 17:42
MySQL Cheat Sheet

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

@davidteren
davidteren / nerd_fonts.md
Last active November 11, 2025 12:52
Install Nerd Fonts via Homebrew [updated & fixed]
@danielgross
danielgross / ai-plugin.json
Created March 23, 2023 22:59
ChatGPT Plugin for Twilio
{
"schema_version": "v1",
"name_for_model": "twilio",
"name_for_human": "Twilio Plugin",
"description_for_model": "Plugin for integrating the Twilio API to send SMS messages and make phone calls. Use it whenever a user wants to send a text message or make a call using their Twilio account.",
"description_for_human": "Send text messages and make phone calls with Twilio.",
"auth": {
"type": "user_http",
"authorization_type": "basic"
},
@areshand
areshand / gist:76f49d32dbe94456d7fe1eedf51fc16a
Last active October 16, 2025 15:00
feature comparison
#!/usr/bin/env python3
"""
Feature audit script to generate CSV comparison of Aptos and Movement features for testnet and mainnet
This Python script provides the same functionality as the comprehensive feature comparison shell script
"""
import urllib.request
import urllib.error
import json