Skip to content

Instantly share code, notes, and snippets.

View naonao0001777's full-sized avatar
🥵
hot

nao naonao0001777

🥵
hot
View GitHub Profile
@naonao0001777
naonao0001777 / gist:7dbbf0d0e41946c7bc94cdc045e5cb7f
Created December 19, 2020 15:50
UNIXという考え方 The UNIX philosophy

UNIXという考え方 The UNIX philosophy

定理

1. Small is beautiful. 小さいものは美しい

小さいものは、大きい物にない利点がいくつもある。小さいもの同士なら簡単に独特の便利な方法で組み合わせることができる
@naonao0001777
naonao0001777 / MyAnswerAtCoder.md
Last active December 19, 2020 16:29
AtCoder問題回答集

GreenBin

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace GreenBin
@naonao0001777
naonao0001777 / CheckOverrapString.md
Last active December 19, 2020 16:54
世界で闘うプログラミング力を鍛える本-コーディング面接189問とその開放-の解

重複を調べる

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CheckOverrapString
{

入力した文字をASCIIに変換する

using System;

namespace CharConvertAscii
{
    class Program
    {
        static void Main(string[] args)
        {
@naonao0001777
naonao0001777 / curl-roop.sh
Last active January 3, 2021 16:36
bash curl roop
### curl無限ループ
# change <URL>
while true;do curl https://google.com ;done
# correct? syntax
while [ ture ]; do curl https://google.com; done

マルウェアを解析するための素養

怪物と闘う者は、その過程で自らが怪物と化さぬよう心せよ。おまえが長く深淵を覗くならば、深淵もまた等しくおまえを見返すのだ。 (フリードリヒ・ニーチェ)

URL:引用 マルウェア解析に必要な素養

@naonao0001777
naonao0001777 / interface-philosophy.md
Last active January 16, 2021 16:39
HHKBキーボード名言 by PFU

インターフェース

アメリカ西部のカウボーイたちは、馬が死ぬと馬はそこに残していくが、どんなに砂漠を歩こうとも、鞍は自分で担いで往く。 馬は消耗品であり、鞍は自分の体に馴染んだインタフェースだからだ。 いまやパソコンは消耗品であり、キーボードは大切な、生涯使えるインタフェースであることを忘れてはいけない。

東京大学 名誉教授 和田英一

引用元サイト:HHKB

@naonao0001777
naonao0001777 / get-current-file.bat
Last active January 16, 2021 16:49
カレントディレクトリのファイルをすべて表示するbatファイル
rem 拡張子を変更して使用
@echo off
setlocal enabledelayedexpansion
set /a count=0
echo display current directory file content
for %%i in (*.txt) do (
echo ファイル名:%%i