Skip to content

Instantly share code, notes, and snippets.

View FlowingSPDG's full-sized avatar
🚬
I just can't stop smoking.

Shugo Kawamura FlowingSPDG

🚬
I just can't stop smoking.
  • Freelancer/ FL TECH
  • Tokyo
  • 12:36 (UTC +09:00)
  • X @FlowingSPDG
View GitHub Profile
@YujiTempraAida
YujiTempraAida / logout-discord-chrome-delete-downloads.bat
Created April 9, 2025 01:40
レンタルPCのログアウト系バッチ(Discordログイン情報削除、Chromeログアウト、DLフォルダクリア)
@echo off
setlocal enabledelayedexpansion
REM ユーザー名を取得
set USERNAME=%USERNAME%
REM Discordのプロセスをキル
taskkill /F /IM Discord.exe /T
REM 5秒待つ
@voluntas
voluntas / learning-webrtc_2023-09.md
Last active January 14, 2025 06:16
時雨堂 WebRTC 入門 (講師資料) v2023-09

時雨堂 WebRTC 入門 (講師資料) v2023-09

これは時雨堂が 2023 年 9 月 14 日 (木) 14:00-18:00 で開催を予定しているオンラインイベント WebRTC 入門 v2023-09 の 講師用 の資料であり、 参加者用の資料ではありません。

時雨堂 WebRTC 入門 オンラインイベント v2023-09

概要

ChatGPT がある今、学ぼうと思えば好きなだけ学べる時代がきています。

@mpppk
mpppk / clean_architecture.md
Last active October 13, 2025 07:30
クリーンアーキテクチャ完全に理解した

2020/5/31追記: 自分用のメモに書いていたつもりだったのですが、たくさんのスターを頂けてとても嬉しいです。
と同時に、書きかけで中途半端な状態のドキュメントをご覧いただくことになっており、大変心苦しく思っています。

このドキュメントを完成させるために、今後以下のような更新を予定しています。

  • TODO部分を埋める
  • 書籍を基にした理論・原則パートと、実装例パートを分割
    • 現在は4層のレイヤそれぞれごとに原則の確認→実装時の課題リスト→実装例という構成ですが、同じリポジトリへの言及箇所がバラバラになってしまう問題がありました。更新後は、実装時の課題リストを全て洗い出した後にまとめて実装を確認する構成とする予定です。

2021/1/22追記:

@cliffrowley
cliffrowley / STREAMDECK_HID.md
Last active September 4, 2025 19:14
Notes on the Stream Deck HID protocol

Stream Deck Protocol

How to interface with a Stream Deck device.

Synopsis

The device uses the HID protocol to communicate with its software.

Configuration

raspberry pi livestream to YouTubeLive
/boot/run.sh
/boot/youtube.sh
/etc/rc.local
additional line to /etc/fstab
@rgl
rgl / ss.go
Last active January 28, 2025 03:04 — forked from mitchellh/ss.go
take a screenshot of a specific Windows application window in pure Go
// +build windows
package screen
import (
"fmt"
"image"
"reflect"
"syscall"
"unsafe"
@hyg
hyg / gist:9c4afcd91fe24316cbf0
Created June 19, 2014 09:36
open browser in golang
func openbrowser(url string) {
var err error
switch runtime.GOOS {
case "linux":
err = exec.Command("xdg-open", url).Start()
case "windows":
err = exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Start()
case "darwin":
err = exec.Command("open", url).Start()
@hnakamur
hnakamur / modify_private_field.go
Created September 21, 2013 07:42
unsafeでポインタを使って構造体のプライベートフィールドの値を書き換える例。 unsafeを使っているので http://play.golang.org/ では試せず、ローカルで実行する必要があります。
package main
import (
"fmt"
"unsafe"
)
/*
void modifyN(void* p, int n) {
*(int *)p = n;
@erikusaj
erikusaj / XPression_StaticMap.vbs
Created October 18, 2012 07:59
Ross XPression script to generate a Map of your location from Google static maps API
'
' Ross XPression script to generate a Map of your location from Google static maps API
'
' Requires:
' Text1 object on scene as input for your location
' Quad1 object on scene to apply the texture
'
' System requirements:
' Ross XPression, connection to internet, MSXML2, ADODB and FSO available
'