Skip to content

Instantly share code, notes, and snippets.

@zonuexe
zonuexe / socket-http.php
Created December 12, 2020 06:05
ソケットでHTTP/1.1通信する
<?php
$request = implode("\r\n", [
'POST /post HTTP/1.1',
'Host: httpbin.org',
'Accept: application/json',
'Content-Type: application/json',
'Connection: close',
'',
json_encode(['foo' => 'bar']),
@tomhicks
tomhicks / plink-plonk.js
Last active March 18, 2024 02:23
Listen to your web pages
@ndxbn
ndxbn / 2019-11-25.md
Last active August 12, 2020 02:16
Error や Exception について考えた。 https://qiita.com/ndxbn/items/b7c9dfa51aeccdbe49b2
title tags author slide
PHP の Error/Exception の分類方法やまとめ方を考えてみたときのメモ。
PHP JavaScript error exception メモ
ndxbn
false

LogicException と RuntimeException の、子クラスの関連

Logic | Runtime | 意味

@acutmore
acutmore / README.md
Last active January 21, 2024 20:30
Emulating a 4-Bit Virtual Machine in (TypeScript\JavaScript) (just Types no Script)

A compile-time 4-Bit Virtual Machine implemented in TypeScript's type system. Capable of running a sample 'FizzBuzz' program.

Syntax emits zero JavaScript.

type RESULT = VM<
  [
    ["push", N_1],         // 1
    ["push", False],       // 2
 ["peek", _], // 3

非破壊 TypeSctript

mizchi / TypeScript Meetup 2


About Me

  • mizchi / 竹馬光太郎
  • フロントエンドと Node.js
@kenmori
kenmori / TypeScriptPractice.md
Last active May 19, 2024 01:52
TypeScript 練習問題集
@aeschright
aeschright / npm-strike.md
Last active September 8, 2021 16:32
A note about npm cli work status

When will npm@6.9.1 be released (and other PRs merged?)

On March 22, npm fired several members of the open source and community team for discussing workplace conditions and other labor organizing activities. As a result, core employee contributors to the npm cli were removed from the project, and others have left in solidarity or put their work on hold.

Multiple claims were filed with the NLRB on this matter. The NLRB has investigated and found sufficient evidence of validity to proceed. The National Labor Relations Act of 1935 protects US employees' right to engage in discussions of workplace concerns without threat of retaliation -- and awareness of the importance of how we treat each other is something I valued so much in collaborating with the cli team. How can we work together if we aren't free to discuss what we need?

It's disappointing for all of us to find the work we were doing interrup

@voluntas
voluntas / loadtest.rst
Last active April 3, 2024 03:25
負荷試験コトハジメ
@lhorie
lhorie / longest-keyword-sequence.md
Last active November 14, 2022 23:21
What's the longest keyword sequence in Javascript?