| 動画 | セミナー | 書籍 | 仕事としてやる | ガルこれ
--- | --- | --- | --- | --- | ---
とっつきやすさ | ○ | × | × | ○ | △
最初の一行を書くまでの敷居が低いか | △ | ○ *1 | × | ○ | ○
文法や基本的な関数の習得に向いているか | × *2 | ○ | × | ○ | ○
モチベーションを保ちやすいか | △ | ○ | × | ○ | ○
プログラミング以外のことを学べるか
(デザイン、ディレクション、マネジメント、テストの仕方、ライブラリのこと、などなど) | △ | ○ | ○ | ○ | ×
お金がかからない | ○ | × | △ | ○ *3 | ○
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install deps | |
yum install gcc kernel-devel make ncurses-devel | |
# DOWNLOAD SOURCES FOR LIBEVENT AND MAKE AND INSTALL | |
wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz | |
tar -xvzf libevent-2.0.21-stable.tar.gz | |
cd libevent-2.0.21-stable | |
./configure --prefix=/usr/local | |
make | |
sudo make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for keg in /usr/local/Library/LinkedKegs/*; do | |
kegname="$(basename $keg)" | |
dir="$(find $keg/ -maxdepth 1 -type d | grep '\/\(sbin\|bin\|etc\|var\|lib\|include\|libexec\|share\)$' | head -n1)" | |
[ -z "${dir}" ] && continue | |
testee="$(find $dir -type f | head -n1 | sed -e "s|${keg}||")" | |
[ -f /usr/local/$testee ] || (echo $keg && brew unlink $kegname; brew link --force $kegname) | |
done |
- CloudWatch によるインスタンスのモニタリング
- 自分なりにはこちらに纏めた
- 今更ウンチクを語る必要も無い
AWS
ではポピュラーツール - と言いつつ、今更気付いたけど
Java
版とPython
版がある
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function searchAndSave() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet = ss.getSheets()[0]; | |
var offset = 0; | |
var limit = 500; | |
while (true) { | |
var threads = GmailApp.search('(subject:日報 AND [report) after:2013/5/31 before:2013/7/1', offset, limit); | |
offset += limit; |
日時: | 2025-03-15 |
---|---|
作: | 時雨堂 |
バージョン: | 2025.2 |
URL: | https://shiguredo.jp/ |
時雨堂クラウドサービスを支える技術
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/ruby | |
# -*- encoding: utf-8 -*- | |
require 'net/http' | |
require 'uri' | |
require 'pp' | |
configs = [ | |
{ desc: '正常', url: 'http://mikeda.jp/wiki/', regex: /MikedaWiki/, timeout: 1}, | |
{ desc: '中身がおかしい', url: 'http://mikeda.jp/wiki/', regex: /XXXYYYZZZ/, timeout: 1}, |
NewerOlder