この資料は以下のイベントの登壇用の殴り書きです
https://hack-at-delta.connpass.com/event/350588/
今までの資料を引用して話すので、この資料はアウトラインです。
この資料は以下のイベントの登壇用の殴り書きです
https://hack-at-delta.connpass.com/event/350588/
今までの資料を引用して話すので、この資料はアウトラインです。
これはDuckDB 座談会 (2025-01) の発表者向けの資料です。
こちらの資料がとてもお勧めです。
// ~/server/api/sse.ts | |
export default defineEventHandler(async (event) => { | |
if (!process.dev) return { disabled: true } | |
// Enable SSE endpoint | |
setHeader(event, 'cache-control', 'no-cache') | |
setHeader(event, 'connection', 'keep-alive') | |
setHeader(event, 'content-type', 'text/event-stream') | |
setResponseStatus(event, 200) |
import Vue from 'vue' | |
import 'aframe'; | |
Vue.config.ignoredElements = [ | |
'a-scene', | |
'a-assets', | |
'a-box', | |
'a-cylinder', | |
'a-text', | |
'a-sphere', |
This Gist is superseded by https://github.com/Ircama/PT-P300BT
The Brother P-touch Cube PT-P300BT labelling machine is intended to be controlled from the official Brother P-touch Design&Print 2 app for Android and iOS devices, instead of from a computer.
/** | |
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd. | |
* | |
* SPDX-License-Identifier: BSD-3-Clause | |
*/ | |
// !!! patched to majocairis lcd !!!! | |
#include <stdio.h> | |
#include <math.h> | |
#include "pico/stdlib.h" |
# See https://github.com/golangci/golangci-lint/blob/master/.golangci.example.yml | |
run: | |
linters-settings: | |
govet: | |
enable-all: true | |
disable: | |
- shadow | |
unused: | |
check-exported: true | |
unparam: |