Skip to content

Instantly share code, notes, and snippets.

@ceilingtilefan
ceilingtilefan / BadUpdateDowngrading.md
Last active November 28, 2025 03:05
Downgrading to Older Kernels/Dashboards with Xbox 360 Bad Update

NOTES: I AM NOT RESPONSIBLE FOR ANY DAMAGE DONE TO YOUR CONSOLE! PLEASE MAKE A NAND BACKUP AND HAVE AN EXTERNAL PROGRAMMER IN THE EVENT OF A BRICKED CONSOLE

PLEASE DO NOT SELL DOWNGRADED CONSOLES!

Please do not use this guide for any malicious or scammy behavior. I only want this guide to be used for personal projects/nostalgia.

THIS WILL NOT RE-ENABLE ANY PATCHED EXPLOITS LIKE THE JTAG EXPLOIT. THERE IS NO WAY TO DOWNGRADE CB TO RE-ENABLE THESE.

Thanks to everyone that made this possible:

grimdoomer: For the Bad Update exploit

InvoxiPlayGames: For the FreeMyXe project

Having spent the past few days just thinking about ecs replication I wanted to write down my thoughts - many thanks to nezuo and ffrostfall for their respective public replication examples which inspired parts of this.

This is ripped from my codebase with irrelevant things removed, apologies if I accidentally deleted the wrong thing and now something doesn't make sense - feel free to ask me questions though! Also it's bound to have some mistakes and definitely has room for improvement so let me know if anything comes to mind while reading it.

Feel free to take or adapt any of the code snippets, I hope it's useful for you.

Main Ideas

The code is presented below, but there's some specific points that I think deserve some extra explanation.

@rxaviers
rxaviers / gist:7360908
Last active November 28, 2025 02:58
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@ahmadawais
ahmadawais / upload-a-file.MD
Created June 18, 2017 11:07 — forked from websupporter/upload-a-file.MD
Upload a file using the WordPress REST API

Upload files

Using the REST API to upload a file to WordPress is quite simple. All you need is to send the file in a POST-Request to the wp/v2/media route.

There are two ways of sending a file. The first method simply sends the file in the body of the request. The following PHP script shows the basic principle:

@jase-perf
jase-perf / P4 Game Engine Typemap Compressed
Last active November 28, 2025 02:53
Engine-agnostic P4 typemap that will work with UE, Unity, Godot, etc.
# Perforce File Type Mapping Specifications.
#
# TypeMap: a list of filetype mappings; one per line.
# Each line has two elements:
#
# Filetype: The filetype to use on 'p4 add'.
#
# Path: File pattern which will use this filetype.
#
# See 'p4 help typemap' for more information.
@akey7
akey7 / hacker-speak.js
Created September 12, 2018 21:28
const hs3 = (orig, replacements = {'a': '4', 'e': '3', 'i': '1', 'o': '0'}) => (
Object
.entries(replacements)
.reduce((acc, el) => acc.replace(el[0], el[1]), orig)
)
console.log(hs3('life'))
console.log(hs3('air'))
console.log(hs3('none'))
console.log(hs3('javascript'))
@maxscy
maxscy / index.html
Created November 28, 2025 02:50
我的个人导航主页源码 (My Personal Landing Page)
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的个人主页</title>
<style>
/* 简单的样式设计 - 极简暗黑风 */
body {
margin: 0;
@doiftrue
doiftrue / disable-comments.php
Last active November 28, 2025 02:48
[wp-kama embed] https://wp-kama.com/2539 Disable Comments for WordPress. Original code see here: https://github.com/WPDevelopers/disable-comments-mu
<?php
/**
* Plugin Name: Disable Comments (Must Use version)
* Description: Disables all WordPress comment functionality on the entire network.
* Version: 1.1.2 (changed)
* Plugin Changed URI: https://gist.github.com/doiftrue/ab931c1d866cb113b4ff318a5faeb3b3
* Plugin URI: https://github.com/WPDevelopers/disable-comments-mu
* GitHub Plugin URI: https://github.com/WPDevelopers/disable-comments-mu
* Author: WPDeveloper
* Author URI: https://wpdeveloper.com
@mattclements
mattclements / function.php
Last active November 28, 2025 02:46
Wordpress Disable Comments (add to function.php)
<?php
add_action('admin_init', function () {
// Redirect any user trying to access comments page
global $pagenow;
if ($pagenow === 'edit-comments.php') {
wp_redirect(admin_url());
exit;
}
@Klerith
Klerith / README.md
Created March 6, 2024 16:41
Pasos para configurar y crear sub-módulos en Git y Github

Pasos para crear los Git Submodules

  1. Crear un nuevo repositorio en GitHub
  2. Clonar el repositorio en la máquina local
  3. Añadir el submodule, donde repository_url es la url del repositorio y directory_name es el nombre de la carpeta donde quieres que se guarde el sub-módulo (no debe de existir en el proyecto)
git submodule add <repository_url> <directory_name>
  1. Añadir los cambios al repositorio (git add, git commit, git push)