Skip to content

Instantly share code, notes, and snippets.

View mrkz's full-sized avatar
👍
Don't Panic!

Marcos Simental mrkz

👍
Don't Panic!
View GitHub Profile
@LeoIannacone
LeoIannacone / monokai-exteded.xml
Last active June 15, 2025 23:29
Monokai Extended - GtkSourceView Theme
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2014 Leo Iannacone <[email protected]>
This file was generated from a textmate theme named Monokai Extended
with tm2gtksw2 tool. (Alexandre da Silva)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
@ijt
ijt / http_get.go
Last active August 21, 2024 05:11
Example of using http.Get in go (golang)
package main
import (
"fmt"
"io"
"log"
"net/http"
"os"
)