This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
async fetch(request, env) { | |
/** | |
* gatherResponse awaits and returns a response body as a string. | |
* Use await gatherResponse(..) in an async function to get the response body | |
* @param {Response} response | |
*/ | |
async function gatherResponse(response) { | |
const { | |
headers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- saved from url=(0021)https://disperse.app/ --> | |
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>disperse</title> | |
<link rel="apple-touch-icon" href="https://disperse.app/logo_disperse.png"> | |
<link rel="icon" type="image/png" href="https://disperse.app/logo_disperse.png"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Hcaptcha Solver with Browser Trainer(Automatically solves Hcaptcha in browser) | |
// @namespace Hcaptcha Solver | |
// @version 10.0 | |
// @description Hcaptcha Solver in Browser | Automatically solves Hcaptcha in browser | |
// @author Md ubeadulla | |
// @match https://*.hcaptcha.com/*hcaptcha-challenge* | |
// @match https://*.hcaptcha.com/*checkbox* | |
// @grant GM_xmlhttpRequest | |
// @grant GM_setValue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ethers = require('ethers') | |
const provider = new ethers.providers.JsonRpcProvider("https://polygon-rpc.com"); | |
// const provider = new ethers.providers.JsonRpcProvider("https://psdolygon-rpc.com"); | |
(async () => { | |
// wei => gwei => hex (bignumber) | |
// gwei => ethers.utils.hexlify => hex (bignumber) | |
// wei => ethers.utils.parseUnits gwei => hex (bignumber) | |
let estimatedGasFeesWei = 30.013769176 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# set the Windows Update service to "disabled" | |
sc.exe config wuauserv start=disabled | |
# display the status of the service | |
sc.exe query wuauserv | |
# stop the service, in case it is running | |
sc.exe stop wuauserv | |
# display the status again, because we're paranoid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# /etc/init.d/xvfb_daemon | |
# Xvfb startup script. | |
# Tom Meier <tom@venombytes.com> | |
# | |
### BEGIN INIT INFO | |
# Provides: xvfb | |
# Short-Description: Start/stop/restart daemon | |
# Description: Controls the Xvfb daemon which starts/stops the X Virtual Framebuffer server | |
### END INIT INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;~ https://www.elitepvpers.com/forum/general-gaming-discussion/303245-autoit-bezier-mouse-movement.html | |
Dim $PtX[4] | |
Dim $PtY[4] | |
Dim $MaxPt = 3 | |
Func Factorial($n) | |
$value = 1 | |
For $i = 2 To $n | |
$value = $value * $i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// maybe not a good case for http-pooling but works in some case of pet project | |
let smokeBreak = false; // https://www.youtube.com/watch?v=kdRPFBJ-jVc | |
try { | |
const x = setInterval(() => { | |
if (!smokeBreak) { | |
smokeBreak = true; | |
fetch('// a long wait request maybe wait more 5 sec to read: network error ') | |
.then((res) => res.json()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cs ---------------------------------------------------------------------------- | |
AutoIt Version: 3.3.14.5 | |
Author: fckRAR | |
Script Function: | |
Just Close WinRAR "Please purchase WinRAR license" Windows | |
#ce ---------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include-once | |
Global $Bitvise_Path = "C:\Program Files\Bitvise SSH Client" | |
Global Const $Bitvise_BvSsh = "BvSsh.exe" | |
Global Const $Bitvise_BvSshCtrl = "BvSshCtrl.exe" | |
Global Const $Bitvise_BvSsh_Host = "127.0.0.1" | |
#cs | |
+> Bivise Function |
NewerOlder