| const { exec, spawn } = require("child_process"); | |
| const fs = require("fs"); | |
| const { promisify } = require("util"); | |
| import { WebSocket } from "ws"; | |
| async function getWebSocketDebuggerUrl() { | |
| const res = await fetch("http://localhost:9229/json"); | |
| const data = await res.json(); | |
| return data[0].webSocketDebuggerUrl; | |
| } |
############################################################################################################ ################## ############################# ################## #############################
This Gist collection contains all localstack related examples
################## ############################# ################## ############################# ############################################################################################################
| ;----------------------------------------------------------------------- | |
| ; Motospeed CK 62 Layers Fix by SmileY v0.5 | |
| ;----------------------------------------------------------------------- | |
| ;----------------------------------------------------------------------- | |
| ; Inativar a tecla caps lock | |
| ;----------------------------------------------------------------------- | |
| SetCapsLockState, AlwaysOff | |
| ;----------------------------------------------------------------------- |
Turn your smartphone or tablet (e.g., Iphone, Ipad, Samsung, Motorola, etc) camera into a WebCam to make video conference (e.g., Google Meeting, Zoom, Discord, etc) in Linux.
Examples:
| import sys | |
| import requests | |
| import threading | |
| import base64 | |
| from html.parser import HTMLParser | |
| from http.server import BaseHTTPRequestHandler, HTTPServer | |
| ''' | |
| Description: Reverse MSSQL shell through xp_cmdshell + certutil for exfiltration | |
| Author: @xassiz |
| #!/bin/bash | |
| # Inspired on https://david-kerwick.github.io/2017-01-04-combining-zsh-history-files/ | |
| set -e | |
| history1=$1 | |
| history2=$2 | |
| merged=$3 | |
| echo "Merging history files: $history1 + $history2" | |
| test ! -f $history1 && echo "File $history1 not found" && exit 1 |
The computer driven markets for instruments like stocks and exchange traded stock options, have transformed finance and the flow of capital. These markets are enabled by order matching engines (and the infrastructure that supports this software). Before computer trading networks and matching engines, stocks where traded on cavernous exchange floors and transaction costs where high. When electronic trading fully matured, floor traders were a fading anachronism and transaction costs had been reduced to pennies a share in many cases. Electronic trading could not exist without advanced network infrastructure, but without the software matching engines no shares would change hands. The computer trading networks, the matching engine software has also created a concentrated nexus of potential failure. Failures in these systems have increased as the frequency and volume on the electronic networks has increased. The position of order matching engines in the trading infrastructure makes these systems o
| /* | |
| Reads a CSV file in chunks of 10 lines at a time | |
| and returns them in an array of objects for processing. | |
| Assumes the first line of the CSV file has headings | |
| that will be used as the object name for the item you are | |
| processing. i.e. the heading is CurrentURL then refer to | |
| $item->CurrentURL |
