Skip to content

Instantly share code, notes, and snippets.

View MarketingPip's full-sized avatar
🚬
🌳

Jared Van Valkengoed MarketingPip

🚬
🌳
View GitHub Profile
@MarketingPip
MarketingPip / coderecorder_app.js
Created December 2, 2023 20:39 — forked from shenningsgard/coderecorder_app.js
Simple code recorder/playback for the Ace code editor.
$(document).ready(function(){
ace.config.set('basePath', '../js/lib/ace');
var editor = ace.edit("editor");
editor.$blockScrolling = Infinity;
editor.setTheme("ace/theme/monokai");
editor.getSession().setMode("ace/mode/html");
editor.setOptions({
enableBasicAutocompletion: true,
@MarketingPip
MarketingPip / get_label.go
Created October 5, 2023 05:28 — forked from tobiasrohloff/get_label.go
Wikidata API: Get Label for Item ID
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
)