Skip to content

Instantly share code, notes, and snippets.

View qt-kaneko's full-sized avatar
🇺🇦

Kaneko Qt qt-kaneko

🇺🇦
View GitHub Profile
@fnky
fnky / ANSI.md
Last active April 25, 2025 07:48
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@jimmywarting
jimmywarting / readme.md
Last active April 24, 2025 05:33
Cors proxies
Exposed headers
Service SSL status Response Type Allowed methods Allowed headers
@DanDiplo
DanDiplo / JS-LINQ.js
Last active March 28, 2025 00:15
JavaScript equivalents of some common C# LINQ methods. To help me remember!
// JS array equivalents to C# LINQ methods - by Dan B.
// First: This version using older JavaScript notation for universal browser support (scroll down for ES6 version):
// Here's a simple array of "person" objects
var people = [
{ name: "John", age: 20 },
{ name: "Mary", age: 35 },
{ name: "Arthur", age: 78 },
{ name: "Mike", age: 27 },