Skip to content

Instantly share code, notes, and snippets.

View seiyashima's full-sized avatar

bukuro seiyashima

  • concealed
  • Nakahara-ward, Kawasaki-city
View GitHub Profile
@seiyashima
seiyashima / 20230314_Preparing for the Professional Data Engineer Examination.md
Last active September 19, 2023 13:14 — forked from YukiTominaga/20230314_Preparing for the Professional Data Engineer Examination.md
YukiTominagaさんのGist公開資料をベースに Skills Boost で学習した内容を追加した Gist です。

Google Cloud Storage

非構造化データの保管に特に優れる。

音声、画像、映像などファイル(「オブジェクト」と呼ばれる)を保存するケースで利用する。

Storage Class

アクセス頻度の高い順に、Standard, Nearline(月に1回), Coldline(3ヶ月に1回), Archive(年に1回)の4種類ある。 Standard以外のStorage Classは読み取りに対して料金が発生する。

@seiyashima
seiyashima / alias
Last active September 26, 2020 04:39 — forked from jamesls/alias
AWS CLI v2 upgrade aliases.
[toplevel]
# Put this in ~/.aws/cli/alias
# and you'll have an "aws upgrade"
# and an "aws check-upgrade" command.
#
# Only works on macOS and installs using
# the .pkg installer.
#
upgrade = !f() {
curl -s "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "/tmp/AWSCLIV2.pkg"
@seiyashima
seiyashima / 社会人の心得
Last active July 28, 2020 17:33
M担当部長という方が作成なさった社会人の心得を、社会人になった我々が新しい時代版で作り直そう
第1条. 酒と女とギャンブルには気をつけろ
第2条. リボ払いは使うな
第3条. 「まだ大丈夫」はもうダメ
第4条. 朝帰りしたらシジミ汁を飲め
第5条. 全てのカバンにビニール袋を入れろ
第6条. 酔っ払ったらSNSをやめろ
第7条. 周りのみんなに日頃から感謝しろ
@seiyashima
seiyashima / AutoMailSender.js
Last active November 24, 2019 13:14
AutoMailSenderOnGAS
// FormApp.getActiveForm()
function autoMailSender(e){
Logger.log('autoMailSender execute...');
const __NAME__ = 0;
const __MAIL__ = 1;
var itemResList = e.response.getItemResponses();
var msg = '';
var nameAsk = itemResList[__NAME__];
var nameAns = nameAsk.getResponse();
@seiyashima
seiyashima / CREATE文とINSERT文を生成
Last active March 15, 2020 09:25
【VBA】Excelに保存されたテーブルデータからCREATE, INSERT文を生成するマクロ ref: https://qiita.com/shIbaInu42/items/daad2988adb2a33b4056
'Extract, Transform, Load for TABLE information
Sub etlExecute()
Dim i As Integer
' For appending to array, Re-Extracting from array
Dim col As Integer
Dim row As Integer
' Ouput position on "Output" Worksheet
Dim opRowCount As Integer
@seiyashima
seiyashima / URL
Last active October 9, 2019 06:06
【初心者向け】Raspberry Pi 3 MODEL B + Slack でエアコンのリモコンを作ってみた ref: https://qiita.com/shIbaInu42/items/02f93e865920e08dc5c6
https://slack.com/api/users.list?token=<取得したトークン: (例)xoxbXXXXXXXXXXXXXX>
#
# airconbot can turn on as cooler or heater depends on commands
# and turn off the room aircon
#
# userID(userlist from Slack)
uid = [ 'UXXXXXXXXX' ] # ユーザーIDを入力
# For executing script from coffeeScripts
cp = require 'child_process'
@seiyashima
seiyashima / shoppingListForAirConDev
Last active August 21, 2017 07:59
This is my first step to develop my life! first run errands to Akihabara.
RaspberryAirCon
+ 赤外線受信モジュール PL-IRM2121
+ 赤外線LED OSI5FU51111
+ LEDキャップ OS-CAP-5MK-1
+ 抵抗(50Ω)
@seiyashima
seiyashima / MaterialOf8BitTape
Last active August 21, 2017 07:57
Wanna create 8 bit tape! I must buy these materials!!!!
8bit mixTape
+ potentiometer(10KΩ: Bカーブ) * 2
+ momentary button * 2
+ ATtiny45 / 85 Microcontroller (85 has been used on reference)
+ Stereo Minijack(Sunny Electonics)
+ CR2032 Battery holder * 2
+ 抵抗(10kΩ) * 2
(Ref: http://macumbista.net/wp-content/uploads/2016/10/8-bit_Mixtape_Wiring_Diagram.jpg )