Skip to content

Instantly share code, notes, and snippets.

View TheEpicFace007's full-sized avatar

Charlie Levasseur TheEpicFace007

View GitHub Profile
/* hide ads */
.adg-rects {
display: none !important;
}
.button {
transition: all 250ms ease-in;
}
.opContainer .name {
@TheEpicFace007
TheEpicFace007 / notable-option.md
Last active May 2, 2021 17:49
information of the v8 js engine options
  • --optimize-for-size Optimize the v8 engine to use less ram
  • --always-opt always try to optimize function
  • --jitless run the functionn without jittng
  • --stress-inline inline as much as possible functions
  • --print-code (print generated code) print the generated asm and generated code
@TheEpicFace007
TheEpicFace007 / remove pro article nknews.js
Created September 22, 2021 02:14
remove all the pro article off of nknews
// ==UserScript==
// @name Hide Pro Article
// @description This is your new file, start writing code
// @match https://www.nknews.org/*
// ==/UserScript==
function clearPayWall () {
for (const proArticle of document.querySelectorAll(".proLabel")) {
{
@TheEpicFace007
TheEpicFace007 / LICENSE
Last active October 20, 2021 01:42
rocha
Copyright © 2021 ViniDalvino
This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.
#%%
import requests, numpy as np
from typing import TypedDict
#%%
EMail = TypedDict("EMail",
{
"id": str,
"sender": str,
"subject": str,
"sendDateFormated": str,
@TheEpicFace007
TheEpicFace007 / space_to_speak.py
Created January 25, 2022 15:16
Hold the space bar to speak in microsoft teams.
import pynput
from pyautogui import click
from sys import platform
from rich.console import Console
from pynput import keyboard
from time import sleep
def get_active_window():
"""
@TheEpicFace007
TheEpicFace007 / biblebot.lua
Created October 14, 2022 21:14
roblox bible bot
local _ = loadstring(game:HttpGet('https://raw.githubusercontent.com/TheEpicFace007/lua-lodash/master/lodash.lua'))()
local Players = game:GetService('Players')
local t = tick()
local nbOfChat = 0
local timeToWait = 0
local function chat(content)
if
if tick() - t <= 0.60 and nbOfChat < 5 and nbOfChat > 2 then
timeToWait = 10
@TheEpicFace007
TheEpicFace007 / Bible bot.lua
Last active April 1, 2023 10:13
official port of bible bot for all exploit
-- Please credit me (The epic face 007) when sharing this script.
local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
local _ = loadstring(game:HttpGet("https://raw.githubusercontent.com/TheEpicFace007/lua-lodash/master/lodash.lua"))()
local Players = game:GetService("Players")
request = syn ~= nil and syn.request or http_request ~= nil and http_request or request
local function findPlayer(nameOrDisplayName)
local players = game:GetService("Players")
for k, v in pairs(game:GetService("Players"):GetPlayers()) do
@TheEpicFace007
TheEpicFace007 / mining inc xray.lua
Created October 30, 2022 02:04
mining inc xray script
-- please credit me if you share it
local Material = loadstring(game:HttpGet("https://github.com/Kinlei/MaterialLua/raw/master/Module.lua"), "MaterialLua")()
local Lightning = game:GetService("Lighting")
local ui = Material.Load({
Title = "Mining Inc Xray",
Style = 3,
SizeX = 300,
SizeY = 300,
Theme = "Dark"
@TheEpicFace007
TheEpicFace007 / fix.md
Created November 27, 2022 04:55
how to fix tkinter for mac osx

How to fix tkinter for mac osx

  1. use python version 3.6
  2. install tkmacosx with pip