Skip to content

Instantly share code, notes, and snippets.

View juliokochhann's full-sized avatar
Turning c0ffee into c0de

Julio Cesar Kochhann juliokochhann

Turning c0ffee into c0de
View GitHub Profile
@juliokochhann
juliokochhann / curl.md
Created February 10, 2023 16:50 — forked from btoone/curl.md
A curl tutorial using GitHub's API

Introduction

An introduction to curl using GitHub's API.

The Basics

Makes a basic GET request to the specifed URI

curl https://api.github.com/users/caspyin
@juliokochhann
juliokochhann / svg2png.py
Created February 6, 2022 00:00 — forked from thomir/svg2png.py
Various ways to convert SVG -> PNG
#!/usr/bin/env python
"""Convert an SVG file to a PNG file."""
from argparse import ArgumentParser
import subprocess
import os.path
def main():