Skip to content

Instantly share code, notes, and snippets.

View shun-shobon's full-sized avatar
🙇‍♂️
I'm sorry I'm not good at English.

NISHIZAWA Shuntaro shun-shobon

🙇‍♂️
I'm sorry I'm not good at English.
View GitHub Profile
@shun-shobon
shun-shobon / uBlacklist.txt
Last active January 3, 2022 15:13
uBlacklistのブロックリスト一覧。基本的にプログラミングスクール記事とStack Overflow&GitHub issueの転載サイトをブロックしています。
*://www.tlcannon.com/*
*://www.it-swarm.jp.net/*
*://techacademy.jp/*
*://www.sejuku.net/*
*://living-sun.com/*
*://www.it-mure.jp.net/*
*://gitmemory.com/*
*://www.javaer101.com/*
*://bleepcoder.com/*
*://www.it-swarm-ja.com/*
@shun-shobon
shun-shobon / Dockerfile
Created April 11, 2021 05:04
FontForge Image
FROM debian:buster-slim AS build-env
RUN apt update
RUN apt upgrade
RUN apt install -y --no-install-recommends \
libjpeg-dev \
libtiff5-dev \
libpng-dev \
libfreetype6-dev \
libgif-dev \
@shun-shobon
shun-shobon / tsconfig.json
Created March 28, 2021 19:59
TypeScriptの設定ファイル(コピペ用)
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"lib": ["esnext"],
"outDir": "./dist",
"rootDir": "./src",
"removeComments": true,
"isolatedModules": true,
"strict": true,

Keybase proof

I hereby claim:

  • I am shun-shobon on github.
  • I am shunshobon (https://keybase.io/shunshobon) on keybase.
  • I have a public key ASBm4a9qGzOI-u1yvt5KA4mNfHoQurxp7ASZLUAIROG2zwo

To claim this, I am signing this object:

@shun-shobon
shun-shobon / vector.h
Last active July 23, 2022 02:46
C言語でベクタを実装してみました
#pragma once
// 可変長配列の宣言
#define VEC_DECLARE(T) \
typedef struct { \
size_t cap; \
size_t len; \
T *ptr; \
} vec_##T; \
void vec_init_##T(vec_##T *vec); \
@shun-shobon
shun-shobon / README.md
Last active May 1, 2022 13:55
Customize code font of GitHub.
@shun-shobon
shun-shobon / README.md
Last active January 12, 2025 07:18
Hide private address on Amazon
@shun-shobon
shun-shobon / ci.yml
Created November 6, 2020 15:10
GitHub Actionsのテンプレート
name: ci
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
@shun-shobon
shun-shobon / README.md
Last active May 24, 2020 05:46
SECCON for Beginners、TweetstoreのWriteup

このサイトへ攻撃を行う。

ツイート一覧が表示されているサイト。search wordに文字列、limitに数字を入力することで絞り込みが可能。

とりあえずSQLインジェクションかなと思ってsearch wordに1' OR 1 = 1; --と入力してみるとあっさり成功。

次にサーバーのソースコードを読んで見る。

// ...
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.