Skip to content

Instantly share code, notes, and snippets.

View RenanMsV's full-sized avatar
🎯
Focusing

Renan RenanMsV

🎯
Focusing
View GitHub Profile
@kylegg
kylegg / pspoc.php
Created June 1, 2024 05:04
The backend logic behind free Roblox private servers. Access codes are signed and then returned all right here. https://www.roblox.com/games/16875821750/Any-Game-Reserved-Server-POC
<?php
//
// kylegg 2024
//
// Response is always text/plain for our API.
header('Content-Type: text/plain');
// Generic function I wrote for validating url parameters in like 30 seconds, its not pretty but it works.
function getQueryParameter(string $name, Closure $cl): mixed
@MaximumADHD
MaximumADHD / Animate.lua
Last active January 21, 2026 00:18
Rewrite of Roblox's Animate script to be more flexible/robust and easier to read.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Animate
-- maximum_adhd
-- September 21st, 2022
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--!strict
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
@MaximumADHD
MaximumADHD / R15Ragdoll.lua
Last active November 13, 2020 15:31
Ragdoll.lua
local ragdollJoints =
{
Ankle =
{
Type = "BallSocket";
Properties =
{
UpperAngle = 20;
TwistUpperAngle = 20;
-- Grab some services.
local Lighting = game:GetService("Lighting")
local RunService = game:GetService("RunService")
-- Make sure this is running from a LocalScript.
if not RunService:IsClient() then
error("This should be running in a LocalScript!")
end
-- Create a Sound object for the music.
@youtubetomp3converterapi
youtubetomp3converterapi / YoutubeDownloader.user.js
Last active December 24, 2022 07:43
This allows All browser users to download and convert YouTube videos to mp3 (320) kbps files and also videos with a variety of high quality options 2160p (4k), 1440p (2k), 1080p (HD), 720p (HD), 480p, 360p, 144p etc. This video quality is supported for all available video formats (MP4, WEBM, 3GP). Then Visit https://www.youtube.com/new
// ==UserScript==
// @name Vevioz Youtube Downloader
// @description This extension add a download tab button on any Youtube page and allows you to download MP3 & Video with just one click (1080,2K,4K,8K Ultra High Definition Supported).
// @icon https://assets.vevioz.com/addons/images/favicon.ico
//
// @author Vevioz Enterprise
// @namespace https://developers.vevioz.com
//
// @license GPLv3 - https://www.gnu.org/licenses/gpl-3.0.txt
// @copyright Copyright (C) 2022, by Developer.vevioz.com
@egyjs
egyjs / Direct Link of YouTube videos.md
Last active November 11, 2024 10:13
PHP API To get Direct Link of YouTube videos
@Killeroid
Killeroid / gpg-import-and-export-instructions.md
Created October 18, 2017 11:51
How to export and import gpg keys

Every so often I have to restore my gpg keys and I'm never sure how best to do it. So, I've spent some time playing around with the various ways to export/import (backup/restore) keys.

Method 1

Gotten from the RedHat GPG migration manual

Backup the public and secret keyrings and trust database

## Export all public keys

gpg -a --export >mypubkeys.asc

@ramnathv
ramnathv / gh-pages.md
Created March 28, 2012 15:37
Creating a clean gh-pages branch

Creating a clean gh-pages branch

This is the sequence of steps to follow to create a root gh-pages branch. It is based on a question at [SO]

cd /path/to/repo-name
git symbolic-ref HEAD refs/heads/gh-pages
rm .git/index
git clean -fdx
echo "My GitHub Page" &gt; index.html