Skip to content

Instantly share code, notes, and snippets.

@MrCyjaneK
MrCyjaneK / MooMoo.io UserScript.js
Created August 4, 2017 12:07
created by t.me/H4ck3rsTeam
// ==UserScript==
// @name moomoo auto aim / aimbot and auto heal, working after patch
// @namespace -
// @version 1.2
// @description aims at nearest player and heals when you're hurt (Toggle key: I)
// @author H4ck3rsTeam
// @match *://moomoo.io/*
// @grant none
// ==/UserScript==
// ==UserScript==
// @name Cyjan's Hack for eduinf.waw.pl
// @namespace https://eduinf.waw.pl/*
// @version 0.1
// @description Pozdrawiam nauczycieli
// @author You
// @match https://eduinf.waw.pl/*
// @grant none
// ==/UserScript==
@MrCyjaneK
MrCyjaneK / userscipt.js
Created October 18, 2019 09:56
https://quizlet.com Hack :) Doesn't work well, and I'm too lazy to finish it
apikey = "trnsl.1.1.20191018T093555Z.b6bd9f9ec98d78a9.134f73cb647d78dc17a4723deb47325790d768f0"
// Get apikey from https://tech.yandex.com/translate/
setInterval(() => {
try {
totranslate = document.getElementsByClassName('FormattedText notranslate TermText lang-pl');
totranslate[0].innerText = translate(totranslate[0].innerText);
totranslate[1].innerText = translate(totranslate[1].innerText);
totranslate[2].innerText = translate(totranslate[2].innerText);
totranslate[3].innerText = translate(totranslate[3].innerText);
} catch (e) {
@MrCyjaneK
MrCyjaneK / index.js
Created November 3, 2019 20:32
NodeJS 10kHits browser
(async () => {
const puppeteer = require('puppeteer');
const fs = require('fs').promises
if (process.argv[2] == "new") {
const browser = await puppeteer.launch({headless: false});
const page = await browser.newPage();
await page.goto('https://www.10khits.com/');
await page.waitFor(5000);
await page.goto('https://www.10khits.com/login');
await page.waitFor(5000);
@MrCyjaneK
MrCyjaneK / gist:bae7c016827d468d60d0fc84343bd54a
Created December 10, 2019 11:14
fish line to convert image to translated plaintext
tesseract image1.jpg stdout > input.txt && tgecho (trans :pl (tr '\n' '-------------' < input.txt) -show-original N -e bing) image1.jpg; rm input.txt

Keybase proof

I hereby claim: * I am mrcyjanek on github. * I am mrcyjanek (https://keybase.io/mrcyjanek) on keybase. * I have a public key ASB6JlkWWVP5d_YabxfvZdy2x4yJyGuODrYrAydW6Dt5Hwo To claim this, I am signing this object:

{   "body": {     "key": {       "eldest_kid": "01207a2659165953f977f61a6f17ef65dcb6c78c89c86b8e0eb62b032756e83b791f0a",       "host": "keybase.io",       "kid": "01207a2659165953f977f61a6f17ef65dcb6c78c89c86b8e0eb62b032756e83b791f0a",       "uid": "72fd0e005142c096633e811625a62919",       "username": "mrcyjanek"     },     "merkle_root": {       "ctime": 1578582513,       "hash": "ff88df190ea9636d359624130a631ab6de602358a29598c19936ae6b7464e49fdd45420c49531ad9083a80da80189fd9eebcb5351cfad96e198867fcb257daac",       "hash_meta": "b910d88ec6338efed3e73be3ee65bf37b08b561e7d1f5987669ad48975e19b2b",       "seqno": 14155072     },     "service": {       "entropy": "Wjemw/oIQMcRh5u5EJTpOiGW",       "name": "github",       "username": "mrcyjanek"     },     "type": "web
@MrCyjaneK
MrCyjaneK / get_all.sh
Last active April 9, 2020 14:02
Extract android tor static binary (latest)
#!/bin/bash
DONE=0
while true;
do
num=$SECONDS
min=0
hour=0
day=0
if((num>59));then
((sec=num%60))
#!/bin/bash
time1="$( date +"%r" )"
install_ubuntu () {
directory=ubuntu-fs
UBUNTU_VERSION=20.04
if [ -d "$directory" ];
then
first=1
echo "[${time1}] [WARNING]: Skipping the download and the extraction, remove $directory to reinstall"
@MrCyjaneK
MrCyjaneK / index.php
Last active July 13, 2020 18:47
Generate calendar in php
<?php
// My target is to create script to generate something like this:
//
// ------------------------
// | January |
// | s m t w t f s |
// | 1 2 3 4 |
// | 5 6 7 8 9 10 11 |
// | 12 13 14 15 16 17 18 |
// | 19 20 21 22 23 24 25 |
@MrCyjaneK
MrCyjaneK / index.php
Created July 24, 2021 16:41
5sim.net get cheapest price
<?php
$prices = json_decode(file_get_contents("https://5sim.net/v1/guest/prices"));
$what = 'telegram';
$endprice = [];
foreach ($prices as $key => $value) {
if (!isset($value->$what)) continue;
$endprice[$key] = $value->$what;
}
$min = 9999;