CPUのハードウェア設計ができるようになる。
CPLD,FPGAの設計ができるようになる。
新しい回路を設計する勇気が出る。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ACCESS_TOKEN = | |
"hogehogehogehoge"; | |
const Masto = require("mastodon"); | |
const M = new Masto({ | |
access_token: `${ACCESS_TOKEN}`, | |
api_url: "https://mstdn.jp/api/v1/" | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const path = require('path'); | |
function search_gt_lt(tmp_path) { | |
fs.readdir(tmp_path, (err, files) => { | |
if (err) throw err; | |
files.forEach(file => { | |
const next_path = path.join(tmp_path, file); | |
fs.stat(next_path, (err, stats) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pprint | |
nfa = [] | |
with open("input.txt", "r") as f: | |
# アルファベットの種類数と始状態を読み取る | |
n, nfa_initial_state = f.readline().split() | |
n = int(n) | |
for i in range(n+1): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass | |
@dataclass(order=True) | |
class Human: | |
age: int | |
name: str | |
boy = Human(2, "suzuki") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dir | rename-item -newname { $_.name -replace 'hoge', 'fuga' } |
OlderNewer