Skip to content

Instantly share code, notes, and snippets.

View Knewest's full-sized avatar
🧠
I may be slow...

ニューエスト Knewest

🧠
I may be slow...
View GitHub Profile
@Demiu
Demiu / move_appdata_win10.md
Last active May 23, 2024 11:03
How to properly move AppData in Windows 10

Moving AppData folder on Windows 10

  1. Create a new user with administrator permissions
  2. Sign out of the current user and sign in as the newly created user
  3. Navigate to C:\Users in File Explorer
  4. Click into the account you want move AppData from
    • There could be a popup telling you that you need to allow yourself to access that user's data, do so
  5. Cut the AppData folder
    • If invisible, go to View and check Hidden Items
  6. Paste in the desired location
@Knewest
Knewest / 1_QuickReinstallBetterDiscord.md
Last active June 28, 2024 11:25
Reinstall BetterDiscord seconds after Discord uninstalls it against your will. Avoid using the time consuming installer with this trick.
@Knewest
Knewest / How to implement better anti-aliasing (AA) into Roblox and other games too).md
Last active June 10, 2024 02:22
Guide on how to implement better anti-aliasing (AA) into Roblox (and other games too).

How to implement better anti-aliasing (AA) into Roblox:


Introduction:

It should be noted that not all games will have the same process, and this guide mainly focuses on implementing AA in Roblox. This is because different games have different rendering engines and techniques, which may or may not make this possible. Sometimes AA is a built-in feature you can modify and change in the game.


What anti-aliasing (AA) is:

Anti-aliasing is a technique used in computer graphics to smooth out jagged edges and reduce visual artifacts, such as aliasing or "jaggies," which occur due to the limitations of rendering pixels on a digital display. AA works by blending the colors of pixels along the edges of objects to create a smoother transition between them. This results in a more visually pleasing and realistic appearance of curved or diagonal lines and edges.

Comparison o