Skip to content

Instantly share code, notes, and snippets.

View takoikatakotako's full-sized avatar

Onojun takoikatakotako

View GitHub Profile
@d-date
d-date / project.yml
Last active March 17, 2024 21:17
XcodeGen Example
name: XXXX
attributes:
LastUpgradeCheck: 1140
ORGANIZATIONNAME: "kankak, Inc."
options:
bundleIdPrefix: com.xxxx.xxxxxxxx
deploymentTarget:
iOS: 13.1.3
configs:
Develop Debug: debug
@voluntas
voluntas / webrtc_now.rst
Last active May 6, 2022 06:29
WebRTC の今
@officel
officel / gist:c077f27852a01822b82e72e724b01327
Last active November 17, 2022 03:02
[terraform] map の list の中から特定の要素を抽出するやつ
$ cat test.tf
variable "employee" {
type = "list"
default = [
{
no = 1
name = "田中"
},
@voluntas
voluntas / open_ayame.rst
Last active June 30, 2024 10:33
OpenAyame プロジェクト
@knu
knu / sns_update_apns_cert.sh
Created March 8, 2016 11:28
Update an APNS certificate on SNS using aws CLI
arn=arn:aws:sns:...
p12=/path/to.p12
aws sns set-platform-application-attributes --platform-application-arn "$arn" --attributes PlatformCredential="\"$(openssl pkcs12 -in "$p12" -nodes -nocerts)\"",PlatformPrincipal="\"$(openssl pkcs12 -in "$p12" -nodes -nokeys)\""