--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
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
/* hide ads */ | |
.adg-rects { | |
display: none !important; | |
} | |
.button { | |
transition: all 250ms ease-in; | |
} | |
.opContainer .name { |
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
// ==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")) { | |
{ |
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
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. |
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
#%% | |
import requests, numpy as np | |
from typing import TypedDict | |
#%% | |
EMail = TypedDict("EMail", | |
{ | |
"id": str, | |
"sender": str, | |
"subject": str, | |
"sendDateFormated": str, |
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
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(): | |
""" |
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
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 |
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
-- 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 |
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
-- 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" |