Skip to content

Instantly share code, notes, and snippets.

View AlexDev404's full-sized avatar
🫀
I'm here.

Immanuel Daviel A. Garcia AlexDev404

🫀
I'm here.
View GitHub Profile
@agichim
agichim / flash-custom-rom-motog8power.md
Last active June 17, 2025 22:49
Full guide to flash Moto G8 Power (sofiar)
id title desc updated created
3UT7YPV6Qnr2UL6H6roQ0
Motog8power
1682709194077
1629568034286

Moto G8 Power guide to flash and install a custom ROM

/* global YT */
export default (function() {
function init(id, el, callback, state) {
// Set function global so the YouTube API can connect with it.
window.onYouTubeIframeAPIReady = () => {
let player = new YT.Player(el, { // eslint-disable-line no-unused-vars
videoId: id,
width: '100%',
@datio
datio / enable-wifi.ps1
Last active November 26, 2025 10:10
Enable Windows 10 & 11 WiFi Hotspot - Powershell Script
# https://stackoverflow.com/questions/45833873/enable-win10-inbuild-hotspot-by-cmd-batch-powershell/60444585#answer-60444585
[Windows.System.UserProfile.LockScreen,Windows.System.UserProfile,ContentType=WindowsRuntime] | Out-Null
Add-Type -AssemblyName System.Runtime.WindowsRuntime
$asTaskGeneric = ([System.WindowsRuntimeSystemExtensions].GetMethods() | ? { $_.Name -eq 'AsTask' -and $_.GetParameters().Count -eq 1 -and $_.GetParameters()[0].ParameterType.Name -eq 'IAsyncOperation`1' })[0]
Function Await($WinRtTask, $ResultType) {
$asTask = $asTaskGeneric.MakeGenericMethod($ResultType)
$netTask = $asTask.Invoke($null, @($WinRtTask))
$netTask.Wait(-1) | Out-Null
$netTask.Result
@m-Phoenix852
m-Phoenix852 / index.user.js
Last active September 24, 2025 19:14
Userscript to login to discord accounts with ease, just do SHIFT + T at the login page and enter the token!
// ==UserScript==
// @name Discord Token Login
// @namespace https://gist.github.com/m-Phoenix852/d63d869f16e40dac623c9aa347e8641a/
// @version 1.1
// @description Taking over discord's tokens!
// @author Phoenix852
// @match *://discord.com/login
// @updateURL https://gist.github.com/m-Phoenix852/d63d869f16e40dac623c9aa347e8641a/raw/6d1ee63df17685e4ea06018bd8b47541d4261b82/index.user.js
// @grant none
// @iconURL https://i.imgur.com/rI8GsTz.png
This file has been truncated, but you can view the full file.
#EXTM3U
#EXTINF:-1 tvg-id="" tvg-name="---β—β˜…| NBA TV |β˜…β—---" tvg-logo="" group-title="NBA TV",---β—β˜…| NBA TV |β˜…β—---
http://vip.vprotv.com:25443/Mqjdjfbdhg/Z87DA7Q5DZ/110957
#EXTINF:-1 tvg-id="" tvg-name="|.NBA.| NBA HD" tvg-logo="" group-title="NBA TV",|.NBA.| NBA HD
http://vip.vprotv.com:25443/Mqjdjfbdhg/Z87DA7Q5DZ/110958
#EXTINF:-1 tvg-id="" tvg-name="|.NBA.| NBA Network" tvg-logo="" group-title="NBA TV",|.NBA.| NBA Network
http://vip.vprotv.com:25443/Mqjdjfbdhg/Z87DA7Q5DZ/110959
#EXTINF:-1 tvg-id="" tvg-name="|.NBA.| NBA TV CALIFORNIA" tvg-logo="" group-title="NBA TV",|.NBA.| NBA TV CALIFORNIA
http://vip.vprotv.com:25443/Mqjdjfbdhg/Z87DA7Q5DZ/110960
#EXTINF:-1 tvg-id="" tvg-name="|.NBA.| NBA TV HD" tvg-logo="" group-title="NBA TV",|.NBA.| NBA TV HD
@Armster15
Armster15 / GetDiscordTokenFromConsole.js
Last active April 18, 2025 17:43
A script that, when copypasted in the Discord console, it gives you your Discord token
/*
This allows you to get your Discord token via the Discord console.
Why this method?
- Simpler, just copy paste the function and call it, no need to monitor and manually look for headers
- More accurate
- More visually appealing
This code is licensed under The Unlicense. For more information please visit https://unlicense.org/
@matsdahlin
matsdahlin / Microsoft.PowerShell_profile.ps1
Last active August 21, 2023 18:55
PowerShell Profile with Starship prompt and posh-git for git auto complete
Import-Module posh-git
Invoke-Expression (&starship init powershell)
$ENV:STARSHIP_CONFIG = "$HOME\starship.toml"
Function OpenPresenting {code --user-data-dir C:\Users\Mats\Dropbox\Apps\VSCode\PresentingUser}
Set-Alias -Name "presenting" -Value OpenPresenting
@Davoleo
Davoleo / spotify.md
Last active December 24, 2025 14:59
An in-depth guide on modding Spotify with updated methods to remove ads, bypass country restrictions and theme the application

Spotify Modding & Guides

This is a collections of script, patches and procedures to mod Mobile and Desktop Spotify Applications.

If you know about something that isn't listed here and you would like it to be feel free to tell me about it in the comments or send an e-mail to [email protected]

Table of Contents

@m-Phoenix852
m-Phoenix852 / discord-token-logger.js
Created August 26, 2020 07:45
Simple script to log in to discord account using token.
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}