Skip to content

Instantly share code, notes, and snippets.

View IrealiTY's full-sized avatar
🐻

Aleks IrealiTY

🐻
View GitHub Profile
@TameemS
TameemS / debloatMEmu.md
Last active June 9, 2024 22:17
Debloating & Optimizing MEmu

Inspired by this

More of my guides: Debloating LDPlayer - Debloating Nox (Updated)

Edit 22/8/2021: I have updated MEmu and it seems like it reinstalls the apps and re-enables the services. Repeat steps 5, 7, 8, and 9 if you update MEmu.

Debloating MEmu

In my experience, Nox can be quite slow and choppy, and looks like I'm not the only person with this problem. A lot of people say that MEmu performs better than Nox, and I could agree with that. I have no chopping issues with it so far. But like Nox, there are kinda shady stuff going on.

@jaydenseric
jaydenseric / ffmpeg-web-video-guide.md
Last active June 13, 2024 02:01
A quick guide to using FFmpeg to create cross-device web videos.

Video conversion with FFmpeg

Install

On mac:

  1. Download the latest release.
  2. Extract the binary and place it in /usr/local/bin.

Command basics

// https://gist.github.com/joonaspaakko/ace1ec3455b6959dc611
#target photoshop
// If there are any documents open, run the code...
// =================================================
if ( app.documents.length > 0 ) {
// Used later on when the layers are duplicated back to the original document.
// ===========================================================================

Moving from jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})