Skip to content

Instantly share code, notes, and snippets.

View tenpoku1000's full-sized avatar
🏠
Working from home

市川 真一 tenpoku1000

🏠
Working from home
View GitHub Profile
@tenpoku1000
tenpoku1000 / low_priority_matter.txt
Last active January 22, 2022 09:14
やらないこと・低優先度のリスト
やらないこと・低優先度のリスト
(1)Web/スマホのアプリ開発は行わない
(2)ハードウェア開発は行わない
(3)3D プリンタは扱わない
(4)ドローンは扱わない
(5)IoT/Wot は扱わない
(6)ブロックチェーン技術は扱わない
(7)量子計算は扱わない
@tenpoku1000
tenpoku1000 / new_railway.txt
Last active April 25, 2025 07:50
新線計画
2025年度
8月3日 広島電鉄駅前大橋線
夏 広島電鉄循環線
2026年度
末 山形新幹線 福島駅 上りアプローチ線
末 岡山電気軌道 岡山駅乗り入れ
2028年度 アストラムライン西風新都線延伸(広域公園前~石内東)
4月 大阪メトロ中央線支線
2029年度 熊本市電延伸(秋津新町)
@tenpoku1000
tenpoku1000 / osdev_plan.txt
Last active May 10, 2019 07:06
OS 開発予定(基本機能)
OS 開発予定(基本機能)
フェーズ1:事前準備 - 2015/02 ~ 2018/07
・開発工程の検討
・資料収集
・デバイス購入検討
・サンプルコード開発
フェーズ2:32 ビット整数式の x64 JIT コンパイラを試作する - 2018/07 ~ 2018/12
@tenpoku1000
tenpoku1000 / regexp.md
Last active May 26, 2016 12:57
正規表現を学習した際の問題点を掲載
@tenpoku1000
tenpoku1000 / global.cpp
Last active June 9, 2016 07:11
C++ でグローバル定数を宣言する場合のイディオム。定数の唯一の定義をマクロ HEADER_H_ で指示することで実現する
(1) Header.h
#if defined(HEADER_H_)
extern const int global = 100;
#else
extern const int global;
#endif
(2) consumer.cpp
#include "Header.h"
@tenpoku1000
tenpoku1000 / efi_main.c
Last active September 22, 2015 06:03
EFI 内部変数の CustomMode に CUSTOM_SECURE_BOOT_MODE:1 を書き込み後に再起動し、値を取得すると常に STANDARD_SECURE_BOOT_MODE:0 が返る
// Copyright 2015 Shin'ichi Ichikawa. Released under the MIT license.
/**
Copyright (c) Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php