Скрипт для получения списков с сайта https://human-nonhuman.info/
Получите два списка: humans и nonhumans
Получите два списка: humans и nonhumans
This took me a while to figure out, so here's all you need to know:
achievement_clear
command<!DOCTYPE html> | |
<html lang="ru" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Sucklabs browser matrix generator</title> | |
</head> | |
<body> | |
<form id='form' style='display: flex; flex-direction: column; width: 182px;'> | |
<textarea name="name" rows="8" cols="10" id='text'>chrome: 95 windows 11, 95 windows 10, 95 windows8 8.1, 95 mac 11.4, 95 linux *, 94 windows 11, 94 windows 10, 94 windows8 8.1, 94 mac 11.4, 94 linux *, 93 windows 11, 93 windows 10, 93 windows8 8.1, 93 mac 11.4, 93 linux *, 93 android 11, 93 android 10 | |
opera: 80 windows 11, 80 windows 10, 80 windows8 8.1, 80 windows8 8, 80 mac 11.4, 80 linux *, 63 android 11, 63 android 10 |
import { Api } from 'telegram' | |
// gram.js format | |
const insert = (text: string, start: number, substring: string) => { | |
return text.substring(0, start) + substring + text.substring(start, text.length) | |
} | |
export function styleEntitiesToHTML(text: string, entities: Api.TypeMessageEntity[]): string { | |
let html = text | |
const tags = { |
let recordedChanges = [] | |
let startRecordingSVG = () => { recordedChanges = [] } | |
let stopRecordingSVG = () => { console.log(JSON.stringify(recordedChanges)) } | |
let observer = new MutationObserver(mutationRecords => { | |
for(const record of mutationRecords) { | |
if(record.attributeName === 'd') { | |
recordedChanges.push(record.target.getAttribute('d')) | |
} | |
} |
You can find explanation here: https://stackoverflow.com/questions/71716646/golang-calculate-address-of-another-process-memory-based-on-process-handle-and-o/72674927#72674927 This is actually my answer posted by my friend because SO doesn't allow you to reclaim your own bounty :)
It's not perfect because I don't know Go and you can definetely replace windows.OpenProcess with kernel32.OpenProcess but I'm too tired to experiment. It just works!
Also keep in mind that this code only works if you have running TJoC:R game running, because I was writing it for my trainer . You should change process name and addresses if you know how to do that. Otherwise, feel free to copy any part of code and use it.
Follow these steps:
npm i
in this folder (npm and node must be installed)import bpy | |
import json | |
from mathutils import Euler | |
import math | |
base_dir = 'C:\\Users\\VityaSchel\\Documents\\umap-exporter\\' | |
objects = json.load(open(base_dir + 'mapped.json')) | |
if(len(bpy.data.collections) > 1): |
APP_ID= | |
APP_HASH= | |
PHONE= | |
TWO_FA_PASSWORD= |
#!/root/.nvm/versions/node/v16.13.0/bin/node | |
import fss from 'fs' // DO NOT change to fs/promises because 'The "path" argument must be of type string or an instance of Buffer or URL. Received type number (0)' | |
import fs from 'fs/promises' | |
const __dirname = new URL('.', import.meta.url).pathname | |
console.log('Content-type:text/plain') | |
console.log('') | |
async function processBody() { |