This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this keeps getting turned off | |
set -s set-clipboard on | |
# tmux+vim in some configurations behaves *extremely* stupidly/slowly when changing modes | |
# 0 works too but may cause issues with multi-key sequences (arrrow keys, etc.) | |
set -sg escape-time 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/riscv 5.15.0 Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="riscv64-linux-musl-gcc (GCC) 9.4.0" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=90400 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_AS_IS_GNU=y | |
CONFIG_AS_VERSION=23301 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
; https://www.elevenforum.com/t/add-or-remove-learn-about-this-picture-desktop-icon-in-windows-11.7137/ | |
; https://serverfault.com/questions/268423/changing-desktop-solid-color-via-registry | |
; https://leitchronicle.wordpress.com/2009/11/07/remote-desktop-with-clear-type-on-windows-xp/ | |
; get rid of "change/about/etc. this picture" icon/windows spotlight desktop | |
[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{2cc5ca98-6485-489a-920e-b3e88a6ccce3}] | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel] |
Micropython works on a variety of different boards, but originally it was written to work on STM32 microcontrollers. Their PYBOARD is based on STM32.
At the moment micropython is ported to several STM32 developer boards, ESP32, linux, MacOS and even webassembly.
I started porting micropython to STM32F469-Discovery board - I want to
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var r = std.urlGet("http://your.host.name:12345/tmp/blah.out", {binary: true, full: true}); | |
function parseHeaders(r) { | |
var h = {}; | |
var a = r.responseHeaders.split(/\r\n/); | |
for (const l of a) { | |
const t = l.toString().trim().split(":"); | |
const k = t.shift().toString().trim(); | |
if (k.length != 0) { | |
const v = t.join(":").toString().trim(); | |
h[k] = v; |
OlderNewer