Skip to content

Instantly share code, notes, and snippets.

View TheEpicFace007's full-sized avatar

Charlie Levasseur TheEpicFace007

View GitHub Profile
@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 / how-to.md
Last active January 8, 2022 17:26
North korean sites I found

How to find north korean sites:

To find north korean website you simply need to google this: site:.kp it's gonna search for all website that have the top level domain of north korea

import requests
def format_bytes(size):
# 2**10 = 1024
power = 2 ** 10
n = 0
power_labels = {0: '', 1: 'K', 2: 'M', 3: 'G', 4: 'T'}
while size > power:
size /= power
@rlan
rlan / ffmpeg_video_jpg.md
Last active September 13, 2023 23:00
Convert video to jpg and back using ffmpeg

Video and JPG conversion using FFMPEG

Grab one frame from video

#!/bin/sh -x
# $1 - input video file, e.g. video.mp4
# $2 - timestamp, e.g. 00:33
# $3 - output image file, e.g. output.jpg
ffmpeg -ss $2 -i $1 -vframes 1 -q:v 2 $3
@gchudnov
gchudnov / cpp_utf8_utf16.cpp
Created November 6, 2014 19:33
C++ string conversion UTF8 <-> UTF16
#include <string>
#include <locale>
#include <codecvt>
//UTF-8 to UTF-16
std::string source;
//...
std::wstring_convert<std::codecvt_utf8_utf16<char16_t>,char16_t> convert;
std::u16string dest = convert.from_bytes(source);
@bjornblissing
bjornblissing / CMakeManifest.txt
Last active February 22, 2022 08:27
CMake script to add manifest to exe-file
# Amend manifest to tell Windows that the application is DPI aware (needed for Windows 8.1 and up)
IF (MSVC)
IF (CMAKE_MAJOR_VERSION LESS 3)
MESSAGE(WARNING "CMake version 3.0 or newer is required use build variable TARGET_FILE")
ELSE()
ADD_CUSTOM_COMMAND(
TARGET ${TARGET_TARGETNAME}
POST_BUILD
COMMAND "mt.exe" -manifest \"${CMAKE_CURRENT_SOURCE_DIR}\\dpiawarescaleing.manifest\" -inputresource:\"$<TARGET_FILE:${TARGET_TARGETNAME}>\"\;\#1 -outputresource:\"$<TARGET_FILE:${TARGET_TARGETNAME}>\"\;\#1
COMMENT "Adding display aware manifest..."
using System;
using System.Linq;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
namespace Blog_CSharpAsync
{
class Program
{