I hereby claim:
- I am jetz on github.
- I am jetz (https://keybase.io/jetz) on keybase.
- I have a public key whose fingerprint is 9A99 FC5C 5618 35B8 6909 0843 3672 0033 3E2A D77C
To claim this, I am signing this object:
| #!/bin/bash | |
| # | |
| # w11arm_esd2iso - download and convert Microsoft ESD files for Windows 11 ARM to ISO | |
| # | |
| # Copyright (C) 2023 Paul Rockwell | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 2 of the License, or | |
| # (at your option) any later version. |
I hereby claim:
To claim this, I am signing this object:
| from pprint import pprint | |
| from typing import Union, TypeVar | |
| fields = [ | |
| { | |
| 'a': 'a', | |
| 'b': [1, 2, 3], | |
| 'c': { | |
| 'd': 'd', |
| package main | |
| import ( | |
| "fmt" | |
| "github.com/coreos/go-iptables/iptables" | |
| "log" | |
| "net" | |
| "net/http" | |
| ) |
| local bit = require('bit') | |
| local ffi = require('ffi') | |
| local band = bit.band | |
| local ffi_new = ffi.new | |
| local ffi_str = ffi.string | |
| local table_insert = table.insert | |
| ffi.cdef([[ | |
| void free(void *ptr); |
| local VERSION = "1.3.0" | |
| local load = load | |
| local type = type | |
| local error = error | |
| local assert = assert | |
| local tostring = tostring | |
| local tonumber = tonumber | |
| local setmetatable = setmetatable | |
| local insert = table.insert |
| import dis | |
| import struct | |
| import array | |
| import types | |
| import functools | |
| class _Bytecode: | |
| def __init__(self): | |
| code = (lambda: x if x else y).__code__.co_code |
| // Copyright 2017 The Go Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style | |
| // license that can be found in the LICENSE file. | |
| // 2fa is a two-factor authentication agent. | |
| // | |
| // Usage: | |
| // | |
| // 2fa -add [-7] [-8] [-hotp] name | |
| // 2fa -list |
| -- lulip: LuaJIT line level profiler | |
| -- | |
| -- Copyright (c) 2013 John Graham-Cumming | |
| -- | |
| -- License: http://opensource.org/licenses/MIT | |
| local io_lines = io.lines | |
| local io_open = io.open | |
| local pairs = pairs | |
| local print = print |