Skip to content

Instantly share code, notes, and snippets.

View jukefr's full-sized avatar
🌈
be the inspiration you want to see in the world, beat up a fascist :)

memory leak jukefr

🌈
be the inspiration you want to see in the world, beat up a fascist :)
View GitHub Profile
@jukefr
jukefr / README.md
Last active October 23, 2023 22:34
Windows Auto Dark Mode
@jukefr
jukefr / Ionic Android Development on WSL2.md
Last active September 7, 2023 11:07 — forked from samuelyee/Ionic Android Development on WSL2.md
Ionic Android Development on WSL2 (Windows Subsystem for Linux)

Ionic Android Development on WSL2

This setup is assuming that GUI Linux apps can run in your WSL2.

Installing the required software

Execute the following commands to install Node, npm, git, Java, Ionic CLI:

cd ~
sudo apt update
sudo apt upgrade
@jukefr
jukefr / type.bash
Created February 11, 2020 23:52
convert text to keystrokes and send to a Virtualbox machine via VBoxManage (scuffed clipboard)
#!/usr/bin/env bash
# requires bash 4+ (for associative arrays)
# description: convert text to keystrokes and send to a Virtualbox machine via VBoxManage
# (when guest additions are not an option, for adding ssh-keys and such, it is quite slow)
# usage: ./type $1 $2
# $1: virtual machine name
# $2: text to type
@jukefr
jukefr / asciiplayer.vue
Created August 15, 2018 20:18
Asciinema Player Vue Component
<template>
<figure :id="id"></figure>
</template>
<script>
export default {
props: ['id'],
data() {
return {
source: `https://asciinema.org/a/${this.id}.js`,