Skip to content

Instantly share code, notes, and snippets.

View tamanobi's full-sized avatar

Kohki YAMAGIWA tamanobi

View GitHub Profile
@mala
mala / meety_vuln.md
Last active December 18, 2023 05:36
Meety脆弱性 2022-11

Meety脆弱性 2022-11

文責 mala

経緯:

  • Meety退会しようと思ったがアカウントがなかったので、退会するためにアカウントを作ることにした。

免責:

  • 気になった範囲ですぐに見つかったもののうち、悪用可能なものを記載しています。
  • 好ましくないが仕様だろうというものは書いていません。

[2021-11] メルペイを退職した

このページの概要

  • 2021-11-30、3年半(2018-06 ~ 2021-11)在籍したメルペイを退職した
  • 自分のやったことや思いを残しておく
  • メルペイで仕事をすることを考えている人の参考になればよいと思う

皆の興味のありそうなことを先に

次は?

@azu
azu / README.md
Last active March 15, 2024 09:59
スタートアップ/企業の調べ方
@MKagesawa
MKagesawa / docker-compose.yml
Created August 21, 2018 08:07
Docker-compose MySQL Image create multiple databases
# The official MySQL (https://hub.docker.com/_/mysql/) supports only one MYSQL_DATABASE environment variable.
# By modifying the entrypoint and passing shell script, you can create multiple dbs without having to make a mysql image just for this purpose.
version: '3'
services:
# Some other service connecting to mysql
db:
image: mysql:5.6
cute(uzuki).
cute(miho).
cute(kyoko).
cute(kana).
cute(sachiko).
cute(sae).
cute(noriko).
cute(yuakri).
cute(yuka).
cute(karin).
@ar-tama
ar-tama / init.lua
Last active January 21, 2024 18:23
my hammerspoon config
-- remap functions
local function keyCode(key, mods, callback)
mods = mods or {}
callback = callback or function() end
return function()
hs.eventtap.event.newKeyEvent(mods, string.lower(key), true):post()
hs.timer.usleep(1000)
hs.eventtap.event.newKeyEvent(mods, string.lower(key), false):post()
callback()
@mogya
mogya / docker-compose.yml
Last active November 11, 2018 02:35
start jordan/rundeck with JST timezone.
version: '2'
services:
volume:
image: alpine:latest
entrypoint: /bin/true
volumes:
- ./etc/rundeck:/etc/rundeck
- ./var/rundeck:/var/rundeck
- ./var/lib/rundeck/.ssh:/var/lib/rundeck/.ssh
- ./var/lib/rundeck/logs:/var/lib/rundeck/logs
@mpneuried
mpneuried / Makefile
Last active May 4, 2024 13:46
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)