This file contains hidden or 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 { faker } = require('@faker-js/faker'); | |
| const puppeteer = require('puppeteer'); | |
| const puppeteerExtra = require('puppeteer-extra'); | |
| const Stealth = require('puppeteer-extra-plugin-stealth'); | |
| puppeteerExtra.use(Stealth()); | |
| //Vars | |
| const grades = ['Kindergarten', '1st', '2nd', '3rd', '4th', '5th', '6th', '7th','8th', '9th', '10th', '11th', '12th']; |
This file contains hidden or 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 | |
| #By: NotPike | |
| #About: Bash envirement script and logging | |
| #Usege: > Start.sh [FileName] | |
| #End process: > exit | |
| ## check for file name | |
| if [ $# -eq 0 ] |
This file contains hidden or 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 | |
| UNAME="" | |
| PASS='' | |
| echo "== START ==" | |
| for file in *; do | |
| if [ -f "$file" ]; then |
This file contains hidden or 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
| #!/usr/bin/python | |
| from rflib import * | |
| import time | |
| def init(freq): | |
| d.setFreq(freq) | |
| d.setMdmModulation(MOD_FORMAT_2_FSK) | |
| d.setMdmDeviatn(4500) | |
| d.setMdmDRate(1200) |
This file contains hidden or 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 | |
| #Update UNAME and PASS and run from the directory where the .ovpn files reside | |
| UNAME="" | |
| PASS='' | |
| echo "== START ==" |
This file contains hidden or 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
| #! /usr/bin/python3 | |
| import sys | |
| #MainUnit | |
| key = b'\x7a\x49\x1e\xeb\x33\x28\x2b\x8b\x84\xa7\xad\x47\xb8\x31\x03\xd0' | |
| def main(): | |
| fileIn = open(str(sys.argv[1]), "rb") | |
| fileOut = open("file.out", "ab") |
This file contains hidden or 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 | |
| ####################################################### | |
| # FILE: TX.SH # | |
| # AUTHOR: NOTPIKE WU7ANG # | |
| # LICENSE: MIT # | |
| # FUNCTION: RPI TX SCRIPT FOR YAESU VX-7R # | |
| # # | |
| # ==REQUIRED SOFTWARE== # | |
| # ~:$ sudo apt update # |
This file contains hidden or 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 <complex.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| // rtlsdr-to-gqrx Copyright 2014 Paul Brewer KI6CQ | |
| // License: GNU GPL 3.0 | |
| // | |
| // IQ file converter for Software Defined Radio Programs rtl_sdr, gqrx | |
| // from rtl_sdr recording format -- interleaved unsigned char | |
| // to gqrx/gnuradio .cfile playback format -- complex64 |
This file contains hidden or 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 | |
| # This script allows you to chroot ("work on") | |
| # the raspbian sd card as if it's the raspberry pi | |
| # on your Ubuntu or Fedora desktop/laptop | |
| # just much faster and more convenient | |
| # credits: https://gist.github.com/jkullick/9b02c2061fbdf4a6c4e8a78f1312a689 | |
| # make sure you have issued |
NewerOlder
