\\wsl$\docker-desktop-data\version-pack-data\community\docker\volumes
\\wsl$\docker-desktop-data\mnt\wsl\docker-desktop-bind-mounts\Ubuntu-22.04
\\wsl$\docker-desktop-data\version-pack-data\community\docker\volumes
\\wsl$\docker-desktop-data\mnt\wsl\docker-desktop-bind-mounts\Ubuntu-22.04
| <html> | |
| <body> | |
| <div id="mediv"> | |
| </div> | |
| <script> | |
| var mediv = document.findElementById("mediv"); | |
| localStorage.setItem("bob", "the builder"); | |
| for (var i = 0; i < localStorage.length; i++) { | |
| var key = localStorage.key(i); | |
| var value = localStorage.getItem(key); |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import os | |
| import binascii | |
| VERSION=2 | |
| def random_number(bits): | |
| return int(binascii.hexlify(os.urandom(bits/8)), 16) |
| Verifying that +djpnewton is my blockchain ID. https://onename.com/djpnewton |
| /* | |
| Analog input, serial output | |
| Reads an analog input pin, maps the result to a range from 0 to 255 | |
| and prints the results to the serial monitor. | |
| The circuit: | |
| * freetronics sound input module with SPL connected to analog pin 0. | |
| * freetronics sound input module with SPL connected to analog pin 2. | |
| */ |
| set nocompatible | |
| source $VIMRUNTIME/vimrc_example.vim | |
| source $VIMRUNTIME/mswin.vim | |
| behave mswin | |
| set diffexpr=MyDiff() | |
| function MyDiff() | |
| let opt = '-a --binary ' | |
| if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif | |
| if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif |
| package main | |
| import ( | |
| "fmt" | |
| "flag" | |
| "image" | |
| "image/png" | |
| "math" | |
| "os" | |
| ) |
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| "flag" | |
| "runtime" | |
| ) | |
| // basic fibonacci routine |