Skip to content

Instantly share code, notes, and snippets.

View Tksi's full-sized avatar

Tksi Tksi

  • Japan
  • 07:35 (UTC +09:00)
View GitHub Profile
@agyild
agyild / NVScaler.glsl
Last active April 23, 2025 04:05
NVIDIA Image Scaling v1.0.2 for mpv
// The MIT License(MIT)
//
// Copyright(c) 2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files(the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions :
@azu
azu / READ.md
Last active May 8, 2021 14:23
JavaScriptの本を書くときに参考にしてるもの

jsprimerというJavaScriptの書籍を書いている。 これを書いてるときに参考にしているものを書いていく。

ECMAScriptのLiving Standardな仕様書ページ。 スナップショットなECMAScriptの仕様書ページもあるけど、基本的にはLiving Standardの方しか見てない。

@azu
azu / findAll.js
Last active June 8, 2019 07:20
windowのkey/valueを検索するSnnipet
function __findAllName(query, isStrict){
__findAll("byName", query, isStrict);
}
function __findAllValue(query, isStrict){
__findAll("byValue", query, isStrict);
}
/*!
* Chrome JS runtime inspector plugin v0.1
* Copyright 2013 Andrei Kashcha <https://github.com/anvaka/>
* Based on Spotlight.js v1.0.0-pre <http://github.com/bestiejs/spotlight.js/>
@teppeis
teppeis / es-class-fields.md
Last active March 13, 2022 13:57
ES Class Fieldsのプライベートフィールドがハッシュな変態記法なのは何でなんだぜ?

ES Class Fields (Stage 2 now)

プライベートフィールドがハッシュな変態記法なのは何でなんだぜ?

class Point {
    #x;
    #y;
 constructor(x = 0, y = 0) {
@kenmori
kenmori / JavaScript.md
Last active April 23, 2025 06:20
JavaScript練習問題集(ECMAScript2015,2016,2017,2018,2019,2020, 2021, 2022, 2023, 2024, 2025, other Library)

JavaScript練習問題集

JavaScript

更新情報

・constをletに修正、問題を追加(2024/9/27)
・問題を追加(2024/7/20)
・問題を追加(2024/4/12)
@lennonjesus
lennonjesus / instructions.md
Last active December 1, 2021 08:22
CloudReady ChromeOS Manual Installation Via the Cmd Line

CloudReady ChromeOS Manual Installation Via the Cmd Line

The following walkthrough for a cmd line installation may be useful to you if you are having issues with the UI button "Install CloudReady".

The instructions were (mostly) written up by Jaymes Driver. Thanks Jaymes!

  • After creating your Installer stick, boot from USB
  • When the first screen comes up and asks you to select your network, press Ctrl + Alt + F2.
  • You will find yourself at a command line.
  • the username is: chronos
@voluntas
voluntas / webrtc.rst
Last active March 28, 2025 06:01
WebRTC コトハジメ
@iamtekeste
iamtekeste / Download Google Drive files with WGET
Created July 8, 2015 11:00
Download Google Drive files with WGET
Download Google Drive files with WGET
Example Google Drive download link:
https://docs.google.com/open?id=[ID]
To download the file with WGET you need to use this link:
https://googledrive.com/host/[ID]
Example WGET command:
@willurd
willurd / web-servers.md
Last active April 26, 2025 11:40
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000