I hereby claim:
- I am devhawk on github.
- I am devhawk (https://keybase.io/devhawk) on keybase.
- I have a public key ASAw8V89tsBo90LPFK3CEtaIIKKvO7kAZDIKBTHEW_h1Ugo
To claim this, I am signing this object:
| parameters: | |
| buildArchitecture: 'x86' # defaults for any parameters that aren't specified | |
| hostArchitecture: 'x86' | |
| steps: | |
| - script: | | |
| @echo off | |
| set vswherepath="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" | |
| for /f "usebackq delims=" %%i in (`%vswherepath% -latest -property installationPath`) do ( |
| import { disassembleByteCode } from '@neo-one/node-core' | |
| import * as fs from "fs"; | |
| async function mainAsync() { | |
| const PATH = String.raw`path\to\avm\file` | |
| let avmByteCodes = await fs.promises.readFile(PATH); | |
| const lines = disassembleByteCode(avmByteCodes) | |
| for (const line of lines) | |
| { |
| 'use strict' | |
| const { fetchPackage, getLatestVersion } = require('../nuget/nuget-v3-helpers') | |
| const { renderVersionBadge } = require('../nuget/nuget-helpers') | |
| const { BaseJsonService } = require('..') | |
| const { NotFound } = require('..') | |
| class AzureArtifactsNugetVersionService extends BaseJsonService { | |
| static get category() { | |
| return 'version' |
| using System; | |
| namespace DevHawk | |
| { | |
| public class FNVHash | |
| { | |
| public const uint Prime32 = 16777619; | |
| public const uint Offset32 = 2166136261; | |
| public const ulong Prime64 = 1099511628211; | |
| public const ulong Offset64 = 14695981039346656037; |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using Microsoft.Extensions.DependencyModel; | |
| using Microsoft.Extensions.DependencyModel.Resolution; | |
| namespace TestDependencyModel | |
| { | |
| class Program |
| { | |
| "homepage": "https://iobureau.com/byenow/", | |
| "version": "0.2", | |
| "url": "https://iobureau.com/byenow/byenow-0.2.zip", | |
| "architecture": { | |
| "32bit": { | |
| "bin": "32-bit/byenow.exe" | |
| }, | |
| "64bit": { | |
| "bin": "64-bit/byenow.exe" |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| namespace DumpAvm | |
| { | |
| readonly struct Instruction | |
| { | |
| public readonly AvmOpCodes OpCode; | |
| public readonly ReadOnlyMemory<byte> Operand; |
I hereby claim:
To claim this, I am signing this object:
| $pwsh = get-command pwsh -ErrorAction SilentlyContinue | |
| if (-not $pwsh) { | |
| write-error "cannot locate pwsh, exiting" | |
| break | |
| } | |
| $psLinkPath = "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Windows PowerShell\Windows PowerShell.lnk" | |
| $WshShell = New-Object -ComObject WScript.Shell | |
| $psLink = $WshShell.CreateShortcut($psLinkPath) | |
| Write-Output $psLink.TargetPath |
| using System; | |
| using System.Collections.Generic; | |
| using System.Globalization; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Numerics; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Neo; | |
| using Neo.Cryptography.ECC; |