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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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. BodyPix を getUserMedia に注入してみる BodyPix を getUserMedia に注入してみる
    1
    'use strict'
    2
    
                  
    3
    ;(async () => {
    4
    
                  
    5
      const handleSelectImage = (input, select) => {
  2. 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
  3. 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)
  4. VBA: Cdecl Thunk VBA: Cdecl Thunk
    1
    VERSION 1.0 CLASS
    2
    BEGIN
    3
      MultiUse = -1  'True
    4
      Persistable = 0  'NotPersistable
    5
      DataBindingBehavior = 0  'vbNone
  5. 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
  6. nudo.exe: Do as a normal user nudo.exe: Do as a normal user
    1
    
                  
    2
    #define STRICT
    3
    #define WIN32_LEAN_AND_MEAN
    4
    #define VC_EXTRALEAN
    5