- Bambu Lab P1S
- Bound to the cloud
If not bound to the cloud, a Local MQTT server is a good choice.
- Login MakerWorld
- Open the
dev-tools
and move toApplication > Cookies > https://makerworld.com
- Memo your
token
string asACCESS_TOKEN
If not bound to the cloud, a Local MQTT server is a good choice.
dev-tools
and move to Application > Cookies > https://makerworld.com
token
string as ACCESS_TOKEN
Script to convert Unifi device topology map to drawio
https://twitter.com/syu_chan_1005/status/1694661374608281770
diff --git a/pkg/provider/docker/docker.go b/pkg/provider/docker/docker.go | |
index 0516620ce..488624047 100644 | |
--- a/pkg/provider/docker/docker.go | |
+++ b/pkg/provider/docker/docker.go | |
@@ -401,7 +401,7 @@ func parseContainer(container dockertypes.ContainerJSON) dockerData { | |
} | |
if container.Config != nil && container.Config.Labels != nil { | |
- dData.Labels = container.Config.Labels | |
+ dData.Labels = parseLabels(container) |
<template> | |
<div class="slider" :style="sliderStyle" ref="slider"> | |
<div class="base" :style="baseStyle"> | |
<div class="text" :style="textStyle">{{ this.text }}</div> | |
<div class="thumb" :style="thumbStyle" | |
@mousedown="mouseDown" @touchstart="touchStart" @touchend="touchEnd" @touchcancel="touchCancel"></div> | |
</div> | |
</div> | |
</template> |
# after starting | |
# run-cmd: sudo chown -R 13001:13001 Hub/ TeamCity/ Upsource/ YouTrack/ | |
version: "3" | |
services: | |
hub-server: | |
image: jetbrains/hub:2018.1.9156 | |
volumes: | |
- ./Hub/data:/opt/hub/data | |
- ./Hub/conf:/opt/hub/conf |
class Brainfuck { | |
constructor() { | |
this.functions = { | |
incrementPointer: () => { | |
this.ptr += 1; | |
if (this.debug) this.write('>', this.ptr); | |
}, // '>' | |
decrementPointer: () => { | |
this.ptr -= 1; | |
if (this.ptr < 0) this.ptr = 0; |
[ | |
'https://unpkg.com/[email protected]/lib/codemirror.js', | |
'https://code.jquery.com/jquery-3.3.1.min.js', | |
].forEach(url => { | |
const script = document.createElement('script'); | |
script.src = url; | |
document.head.appendChild(script); | |
}); | |
[ |
/* | |
ESP8266のIPのserverPortにリクエストを送信して下さい。 | |
(IPはSerialで出力しています) | |
リクエスト: | |
method: POST | |
URL: <ESP8266'sIP>:<serverPort> | |
Header: { | |
Content-Type: application/json | |
} | |
Body: "{ |
絵文字 | 文字列 | 意味 |
---|---|---|
🎨 | art | コードのフォーマットや構造にテコ入れ |
🚀 | rocket | パフォーマンスを改善 |
✏️ | pencil2 | ドキュメントを書いた時 |
🚧 | construction | 作業中 |
➕ | heavy_plus_sign | 機能を追加,完成 |
➖ | heavy_minus_sign | 機能を削除 |
🔈 | speaker | ログを追加 |
🔇 | mute | ログを削除 |