Skip to content

Instantly share code, notes, and snippets.

View takapiro99's full-sized avatar
Happy

Takahiro Nishino takapiro99

Happy
View GitHub Profile
@intel713
intel713 / VVVF.md
Last active May 16, 2026 02:22
VVVF 자료 모음

제가 그동안 VVVF 인버터와 관련해 조사하면서 정리한 유용한 PDF 자료 모음입니다.
단, 파일의 저작권 문제가 우려되어 파일 자체를 공유하지는 않습니다.
대신 열람하고자 하는 파일의 이름을 복사하여 구글에 그대로 검색하시면 원본 파일을 바로 찾을 수 있습니다!

EN This is a collection of useful PDF materials that I have compiled while researching VVVF inverters.
However, due to potential copyright concerns, I am not sharing the files themselves.
Instead, you can simply copy the name of the file you wish to view and search it on Google as-is to find the original file immediately!
@mala
mala / meety_vuln.md
Last active July 30, 2025 10:08
Meety脆弱性 2022-11

Meety脆弱性 2022-11

文責 mala

経緯:

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

免責:

  • 気になった範囲ですぐに見つかったもののうち、悪用可能なものを記載しています。
  • 好ましくないが仕様だろうというものは書いていません。
@sindresorhus
sindresorhus / esm-package.md
Last active June 14, 2026 16:43
Pure ESM package

Pure ESM package

The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.

This means you have the following choices:

  1. Use ESM yourself. (preferred)
    Use import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.
  2. If the package is used in an async context, you could use await import(…) from CommonJS instead of require(…).
  3. Stay on the existing version of the package until you can move to ESM.
@takapiro99
takapiro99 / 作ったものをまとめるページ.md
Last active December 13, 2024 17:02
制作物やイベント参加記録
@sounisi5011
sounisi5011 / Num2DecStr.js
Last active January 8, 2026 07:28
指数表記にしかならないようなJavaScriptの数値を整数表記や小数表記の文字列にする関数
/**
* 数値を整数・少数表記に変換する。
* 内部的には、指数表記の文字列をパースし、小数表記に変換している。
*
* @param {number|string} number 変換したい数値、または数値形式の文字列。
* 数値型であればNaNやInfinityも指定できるが、そのまま文字列化して返される。
* @return {string} 小数表記の数値文字列
* @throws 適切な形式の数値、または文字列が与えられなかった場合に発生する。
*
* Note: この関数は、JavaScriptで正確な数値演算を行うために使う**べきではない**。
@laobubu
laobubu / ABOUT.md
Last active April 13, 2026 00:55
A very simple HTTP server in C, for Unix, using fork()

Pico HTTP Server in C

This is a very simple HTTP server for Unix, using fork(). It's very easy to use

How to use

  1. include header httpd.h
  2. write your route method, handling requests.
  3. call serve_forever("12913") to start serving on port 12913
@asflash8
asflash8 / legend-source.md
Last active October 18, 2023 06:35
ISUCON秘伝のタレ

bash

# change login shell
chsh
# => Login Shell [/bin/sh]: /bin/bash

# bash completion
sudo apt-get install bash-completion