Skip to content
View iso2022jp's full-sized avatar
🌌
Working in the metaverse
🌌
Working in the metaverse

Organizations

@nicosys @odorana

Block or report iso2022jp

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ZIP on the web ZIP on the web
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
    
                  
    4
    <head>
    5
      <meta charset="utf-8">
  2. Structured Field Values for HTTP Structured Field Values for HTTP
    1
    'use strict';
    2
    
                  
    3
    const base32 = require('./base32'); // IETF HTTP Working Group Structured Field Tests JSON Schema support
    4
    
                  
    5
    /** @module RFC9651 */
  3. Download as Excel Download as Excel
    1
    
                  
    2
    const download = (blob, filename, type = blob.type || 'application/octet-stream') => {
    3
        const a = document.createElement('a')
    4
        a.href = window.URL.createObjectURL(blob)
    5
        a.download = filename
  4. TextDecoder を使って無理矢理 Windows-31J の E... TextDecoder を使って無理矢理 Windows-31J の Encoder を作る
    1
    
                  
    2
    const encodeWindows31J = text => {
    3
        const range = (from, to) => [...Array(to - from + 1).keys()].map(b => b + from)
    4
    
                  
    5
        const islead = b => (b >= 0x81 && b <= 0x9F) || (b >= 0xe0 && b <= 0xef)
  5. rdp-ping.sh rdp-ping.sh
    1
    exec 3<>/dev/tcp/$server/3389
    2
    
                  
    3
    xxd -r -p <<REQ >&3
    4
      03 00 00 2a
    5
      25 e0 00 00 00 00 00
  6. M5Stack Basic/Gray/Core2 BLE Active ... M5Stack Basic/Gray/Core2 BLE Active Scan sample
    1
    #ifndef ARDUINO_M5STACK_Core2
    2
    #include <M5Stack.h>
    3
    #else
    4
    #include <M5Core2.h>
    5
    #endif