文責 mala
経緯:
- Meety退会しようと思ったがアカウントがなかったので、退会するためにアカウントを作ることにした。
免責:
- 気になった範囲ですぐに見つかったもののうち、悪用可能なものを記載しています。
- 好ましくないが仕様だろうというものは書いていません。
/Applications/Xcode.app/Contents/Developer
/Library/Developer/CommandLineTools
Rust 14 hrs 24 mins ████████░░░░░░░░░░░░░ 38.4% | |
Ruby 12 hrs 38 mins ███████░░░░░░░░░░░░░░ 33.8% | |
Markdown 5 hrs 48 mins ███▎░░░░░░░░░░░░░░░░░ 15.5% | |
Go 3 hrs 17 mins █▊░░░░░░░░░░░░░░░░░░░ 8.8% | |
Protoco... 46 mins ▍░░░░░░░░░░░░░░░░░░░░ 2.1% |
2018 年 6 月の JSConf EU で Deno が初めて発表されてから 1 年が経ちました.
日本では 2018 年 12 月ごろから Deno の周辺で作業をする人が増え, 2019 年 1 月頃から定期的に Deno もくもく会 #deno_ja
が開催されるようになりました.
#deno_ja
では毎回, 冒頭で簡単な自己紹介をするのですが, よくよく聞いていると早く Deno を始めた人でも 12 月ぐらいの人が多いことに気づきました. 自分だけが Deno 公開直後の 5 月からコントリビュートしています. そして, なぜその時期から Deno にコントリビュートしているのか, #deno_ja
の中でも自分からあまり説明できていないことに気がつきました.
この記事は, なぜ自分がそこまで Deno にコントリビュートするのかの理由を出来る限り言語化してみる試みです.
const puppeteer = require('puppeteer'); | |
const tweetText = process.argv[2] | |
const twitterId = process.argv[3] | |
const twitterPassWord = process.argv[4] | |
const tweet = async (tweetText) => { | |
try { | |
const browser = await puppeteer.launch({headless: true, slowMo: 100, args: ['--no-sandbox']}); | |
const page = await browser.newPage() |
Slack doesn't provide an easy way to extract custom emoji from a team. (Especially teams with thousands of custom emoji) This Gist walks you through a relatively simple approach to get your emoji out.
If you're an admin of your own team, you can get the list of emoji directly using this API: https://api.slack.com/methods/emoji.list. Once you have it, skip to Step 3
HOWEVER! This gist is intended for people who don't have admin access, nor access tokens for using that list.
Follow along...
IGGG Advent Calender 2015のために書いた記事です。
常設CTFで遊んでたらPwnable系の問題を解いてるうちにいろいろと勉強になったのでまとめます。
PwnableとはCTFのジャンルの1つで、プログラムの脆弱性をつき、本来アクセスできないメモリ領域にアクセスして操作し、フラグを取得する感じの問題です。
別名としてExploit
があります。
response = (narou4py.requester() | |
.word("百合") | |
.response_params(NovelInfoParams.TITLE, | |
NovelInfoParams.STORY, | |
NovelInfoParams.NOVEL_UPDATED_AT) | |
.request()) | |
time_now = datetime.datetime.now() | |
for info in response: |