graph TB
subgraph "Slack Interface"
SC[Status Command]
EM[Edit Modal]
DM[Declare Modal]
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
78a79,81 | |
> type StatusHistoryID string // UUID v7 typed string | |
> type IncidentID string // typed string | |
> | |
80,85c83,88 | |
< ID string // 履歴ID | |
< IncidentID string // インシデントID | |
< Status IncidentStatus // 変更後のステータス | |
< ChangedBy User // 変更実施者 | |
< ChangedAt time.Time // 変更日時 |
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
package main | |
import ( | |
"context" | |
"encoding/json" | |
"os" | |
"cloud.google.com/go/bigquery" | |
"cloud.google.com/go/bigquery/storage/apiv1/storagepb" | |
mw "cloud.google.com/go/bigquery/storage/managedwriter" |
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
package utils | |
import ( | |
"io" | |
"os" | |
"sync" | |
"github.com/m-mizutani/goerr" | |
"golang.org/x/exp/slog" | |
) |
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
complete -c zenv -n '__fish_use_subcommand' -xa '(zenv secret list)' -d 'Secret' |
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
package main | |
import ( | |
"errors" | |
"github.com/m-mizutani/goerr" | |
"github.com/rs/zerolog/log" | |
) | |
type Request struct { |
Masayoshi Mizutani is a security engineer. In university, he was studying and researching about network-based intrusion detection system and malware analysis. After graduation, he worked for various projects, e.g. SIEM (Security Information & Event Manager) integration, SOC (Security Operation Centor) Analyst, building visualization system of security data and so on.
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
~/t/a $ cat parse.js | |
request = require('request') | |
request.get('https://ctftime.org/api/v1/events/?limit=100&start=1422019499&finish=1423029499', (err, data) => { | |
const jdata = JSON.parse(data.body); | |
console.log(jdata); | |
}); | |
~/t/a $ node parse.js | |
[ { organizers: [ [Object] ], | |
onsite: false, |
NewerOlder