Skip to content

Instantly share code, notes, and snippets.

View cia-rana's full-sized avatar
🌌
get everyone involved

Koya IWAMURA cia-rana

🌌
get everyone involved
View GitHub Profile
@cia-rana
cia-rana / portfolio.md
Last active February 10, 2024 08:55
ポートフォリオ
@cia-rana
cia-rana / list.md
Last active October 19, 2023 03:32
A list of companies acquired by Epic Games
@cia-rana
cia-rana / LICENCE.md
Created May 12, 2023 14:43
ゼルダの伝説 ティアーズ オブ ザ キングダム ライセンス情報
  • immersion
  • havok
  • FidelityFX Super Resolution 1.0(FSR)
  • FidelityFX
  • An optimized AMD FSR's EASU implementation for Mobiles
  • meshoptimizer
  • Stagefirght
  • H.264
  • VP8 and VP9
  • libvorbis
@cia-rana
cia-rana / LICENCE.md
Created May 12, 2023 14:35
ゼルダの伝説 ブレス オブ ザ ワイルド ライセンス情報
  • immersion
  • Autodesk GAMEWARE
  • havok
  • simplygon Studios
  • Stagefright
  • H.264
  • VP8 and VP9
  • libvorbis
  • libwebm
@cia-rana
cia-rana / list.md
Last active April 9, 2023 22:19
A list of the translated articles in "The Go Blog"
@cia-rana
cia-rana / index.md
Created May 29, 2017 18:37
PDFjamによるPDFの加工

PDFjamによるPDFの加工

PDFjam はpdfLaTex用に作られたPDFファイルを加工するツールです.中身はpdfpagesパッケージを呼ぶスクリプトになっています.
PDFjamには様々な派生コマンドが用意されています.

コマンド一覧

pdfnup

複数ページあるPDFファイルをn-upします.ページは左から右,上から下に配置されます.

8upのPDFファイルを作成

@cia-rana
cia-rana / memo.md
Last active November 15, 2022 13:40
Webパフォーマンスチューニング関連の書籍

Webパフォーマンスチューニング関連の書籍

書籍名 出版日 サポートページ
達人が教えるWebパフォーマンスチューニング〜ISUCONから学ぶ高速化の実践 2022/06/04
Webサービスチューニングコンテスト ISUCONのススメ 2021/02/05
重いサイトを軽くする、Webページ表示速度の高速化10の基本: 初歩からのPageSpeed Insights 2019/06/12
HTMLコーダー&ウェブ担当者のための Webページ高速化超入門 2019/05/01
ボトルネックがすぐわかる 現場のための Webサーバ高速化教本 2019/03/03
Webサイトパフォーマンス実践入門 高速なWebページを作りたいあなたに 2018/03/19
@cia-rana
cia-rana / list.md
Last active May 20, 2022 04:19
裸眼立体視可能な3Dディスプレイ一覧
@cia-rana
cia-rana / list.md
Last active March 25, 2022 16:34
Holoearth 開発で使用されている OSS

Holoearth 開発で使用されている OSS

2022年3月25日にリリースされたホロアースデモアプリの開発で使用されている OSS 一覧です。 https://holoearth.com/

  • websockets/ws
  • MessagePack-CSharp
  • lz4net
  • UniRx
  • twemoji
  • DOTween
@cia-rana
cia-rana / main.go
Created March 17, 2022 02:37
How to calculate Broadcast Address(IPv4) with net/netip
package main
import (
"encoding/binary"
"fmt"
"net/netip"
)
func BAddr(s string) (netip.Addr, error) {
p, err := netip.ParsePrefix(s)