Skip to content

Instantly share code, notes, and snippets.

View Akkiesoft's full-sized avatar

Akira Ouchi Akkiesoft

View GitHub Profile
@mamemomonga
mamemomonga / pi5-status.pl
Created February 21, 2024 02:56
Raspberry Pi5のいくつかの情報をvcgencmdから取得して見やすく表示するツール
#!/usr/bin/env perl
# Raspberry Pi5のいくつかの情報をvcgencmdから取得して見やすく表示するツール
# --------------------
# 主な使い方
# $ watch ./pi5-status.pl
# --------------------
use strict;
use warnings;
use feature 'say';
____-------____
__-- --__
/ \
\ _--_ _--_ / あなたはシステム管理者から通常の講習を受けたはずです。
| ,--. ,--. | これは通常、以下の3点に要約されます:
| |()| |()| |
| _______ | #1) 他人のプライバシーを尊重すること。
| \ ||| / |
| `---' | #2) タイプする前に考えること。
@brsywe
brsywe / nonomura.rb
Last active June 7, 2016 14:20
野々村先生のご活躍を祈念して
# -*- coding: utf-8 -*-
Plugin.create(:nonomura) do
command(
:nonomura,
name: '野々村',
condition: -> _ { true },
visible: true,
role: :timeline
@oleq
oleq / _README.md
Last active January 7, 2024 10:38
A2DP audio streaming using Raspberry PI (Raspbian Jessie)

What is this all about?

This tutorial will turn your Raspberry PI into a simple Bluetooth audio receiver, which plays music through connected speakers. It's like a regular car audio system, but it can be used anywhere and it's a good value.

   Audio source (i.e. smartphone) 
                |
                v
 (((  Wireless Bluetooth Channel  )))
 |
anonymous
anonymous / naniittenda_koitu.rb
Created October 16, 2014 14:26
Twitterには何言ってんだこいつボタンが必要
Plugin.create :naniittenda_koitu do
command(:naniittenda_koitu,
name: '何言ってんだこいつ',
condition: lambda{ |opt| opt.messages.size == 1 },
visible: true,
role: :timeline) do |opt|
Service.primary.post message: "何言ってんだこいつ #{opt.messages.first.parma_link}"
end
end