Skip to content

Instantly share code, notes, and snippets.

View 53R4PH1N3's full-sized avatar
🤖
Keep Learning new things and make them hobbies

Ca 53R4PH1N3

🤖
Keep Learning new things and make them hobbies
View GitHub Profile
@53R4PH1N3
53R4PH1N3 / puppeteer-prettier.js
Created March 27, 2022 13:15 — forked from jsoverson/puppeteer-prettier.js
Intercept and prettify every script
const puppeteer = require('puppeteer');
const prettier = require('prettier');
const atob = require('atob');
const btoa = require('btoa');
const requestCache = new Map();
const urlPatterns = [
'*'
]
@53R4PH1N3
53R4PH1N3 / google-dorks
Created July 14, 2020 20:29 — forked from clarketm/google-dorks
Listing of a number of useful Google dorks.
" _ _ "
" _ /|| . . ||\ _ "
" ( } \||D ' ' ' C||/ { % "
" | /\__,=_[_] ' . . ' [_]_=,__/\ |"
" |_\_ |----| |----| _/_|"
" | |/ | | | | \| |"
" | /_ | | | | _\ |"
It is all fun and games until someone gets hacked!
@53R4PH1N3
53R4PH1N3 / List.md
Created February 17, 2020 09:12 — forked from msurguy/List.md
List of open source projects made with Laravel

Other people's projects:

My projects (tutorials are on my blog at http://maxoffsky.com):

#include <stdexcept>
#include <Windows.h>
#include <Psapi.h>
#include <detours.h>
#include <d3d9.h>
#include <d3dx9.h>
char **game_ptr;
using cast_t = const void*(*)(const void*);
@53R4PH1N3
53R4PH1N3 / Database.cs
Last active January 7, 2020 21:10
My reusable MySQL Database Connection
using System;
using MySql.Data.MySqlClient;
namespace MYSQLDATABASE {
public class Database {
static MySqlConnection CONNECTION;
public static MySqlDataReader DATAREADER;
static MySqlCommand COMMAND;
static bool APP_DEBUG = true;
@53R4PH1N3
53R4PH1N3 / debloatNox.md
Created November 29, 2019 16:17 — forked from Log1x/debloatNox.md
Debloating & Optimizing Nox

Debloating Nox

Nox, despite being the most feature-filled Android emulator, has a lot of negativity surrounding it due to their antics when it comes to making income off of their program. It is known for running repeated advertisments in the background, calling home and passing along system information (outside of your Android instance) as well as a vast amount of potentially sensitive data in an encrypted payload back to their multitude of servers. With the following preventitive measures, we can stop a majority of this happening as well as greatly improve the overall performance.

  1. Download and Install a fresh copy of Nox. The latest version is fine (for now). If you already have it installed, that is fine too. No need to reinstall.

  2. Enable Root Mode on Nox by clicking the gear icon and then checking the Root Startup box.

  3. Install a new Launcher from the Play Store. ANYTHING but Nox's default. I suggest [Nova Launcher](https://play.google.com/s

@53R4PH1N3
53R4PH1N3 / iris-tensorflow-js.js
Created September 30, 2018 07:57 — forked from learncodeacademy/iris-tensorflow-js.js
Solving Iris with Tensorflow.js and Iris JSON dataset
import * as tf from "@tensorflow/tfjs"
import "@tensorflow/tfjs-node"
import iris from "./iris.json"
import irisTesting from "./iris-testing.json"
// convert/setup our data
const trainingData = tf.tensor2d(iris.map(item => [
item.sepal_length, item.sepal_width, item.petal_length, item.petal_width,
]))
const outputData = tf.tensor2d(iris.map(item => [