Skip to content

Instantly share code, notes, and snippets.

@Jotunn
Jotunn / Battlefield_6_sens.md
Last active October 20, 2025 14:54
Battlefield 6 PC Sensitivity Guide

Battlefield PC Sensitivity (BF6)

All of what you read below applies to Battlefield 6, as tested in Labs and the Open Beta, including my own personal settings, summarized at the bottom of this sheet.

Why should you care?

This is the new version of my old guide for BF4 through BF2042, for Battlefield 6. BF6 uses a revised mouse input system with a lower base sensitivity and a higher max sensitivity, and by quite a lot too. Editable both in-game with decimal points via arrow keys, and in config files, with input that isn't just emulated controller input like 2042, it's a paradise by comparison.

If you wish to more finely tune your sensitivity, keep reading.

@Jotunn
Jotunn / Battlefield_sens_4-2042.md
Last active October 28, 2025 15:16
Battlefield PC Mouse Sensitivity (For BF4-BF2042)

Battlefield PC Sensitivity (BF4-BF2042)

All of what you read below applies to every Battlefield game on PC from Battlefield 4 to Battlefield 2042, including my own personal settings, summarized at the bottom of this sheet.

Why should you care?

This guide existed for BF2042 in it's launch state and up until April 2022, with Update #4.0. Prior to that update, you had to finely adjust sensitivity in PROFSAVE_profile. After the update, the ability to edit sensitvity by decimal points was brought back from the dead (and BFV). Along with this was a general fix for the underpinnings of how mouselook works in 2042, reverted to the system used since BF4. This allows this guide to be relevant to multiple BF titles.

If you wish to more finely tune your sensitivity, keep reading.

@opastorello
opastorello / sublime text 4143 license key
Last active October 31, 2025 20:48
sublime text 4143 license key
> * Go to [hexed.it](https://hexed.it/)
> * Click "Open File" and choose your sublime_text.exe **(DON'T FORGET TO BACKUP YOUR EXE FILE)**
> * Go to Search and in "Search for" put: 80 78 05 00 0F 94 C1
> * In Search Type select "Enable replace" and put: 80 78 05 00 0F 94 C1
> * Click "Find next" then "Replace"
> * Do the same thing with: C6 40 05 01 48 85 C9 => C6 40 05 01 48 85 C9
> * Click "Save as" then name it: sublime_text
> * Copy your modified sublime_text.exe to directory Sublime Text
Here's a list of the most common folders in the iOS file system. Please note, if your device is still jailed you are NOT able to see these folders.
/Applications
This is where pre-installed native apps and jailbreak apps are installed.
/Library/Ringtones
This is where the pre-installed ringtones are stored. User-purchased ringtones are placed in /private/var/mobile/Media/Ringtones
/Library/Wallpaper
This is where Wallpapers and Lockscreens are stored.
@jborean93
jborean93 / Get-RegKeyInfo.ps1
Created April 29, 2021 03:34
Gets detailed information about a registry key
# Copyright: (c) 2021, Jordan Borean (@jborean93) <[email protected]>
# MIT License (see LICENSE or https://opensource.org/licenses/MIT)
Function Get-RegKeyInfo {
<#
.SYNOPSIS
Gets details about a registry key.
.DESCRIPTION
Gets very low level details about a registry key.
@JerryLokjianming
JerryLokjianming / Crack Sublime Text Windows and Linux.md
Last active October 31, 2025 18:47
Crack Sublime Text 3.2.2 Build 3211 and Sublime Text 4 Alpha 4098 with Hex

How to Crack Sublime Text 3.2.2 Build 3211 with Hex Editor (Windows | Without License) ↓

  1. Download & Install Sublime Text 3.2.2 Build 3211
  2. Visit https://hexed.it/
  3. Open file select sublime_text.exe
  4. Offset 0x8545: Original 84 -> 85
  5. Offset 0x08FF19: Original 75 -> EB
  6. Offset 0x1932C7: Original 75 -> 74 (remove UNREGISTERED in title bar, so no need to use a license)
@Rich-Harris
Rich-Harris / README.md
Last active February 27, 2025 11:20
Testing array.splice vs array.pop vs set.delete

You have an array. Its sort order doesn't matter. You want to remove an item from this array.

The obvious thing to do would be to use splice:

function remove(array, item) {
  const index = array.indexOf(item);
  array.splice(index, 1);
}
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active November 1, 2025 05:06 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy

Exporting your 2FA tokens from Authy to transfer them into another 2FA application

IMPORTANT - Update regarding deprecation of Authy desktop apps

Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.

And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.

If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.

@pierrejoubert73
pierrejoubert73 / markdown-details-collapsible.md
Last active October 31, 2025 13:24
How to add a collapsible section in markdown.

How to add a collapsible section in markdown

1. Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
  • Qux
@everget
everget / js_bitwise_hacks.md
Last active April 2, 2025 22:43
A comprehensive guide to advanced bitwise manipulation techniques in JavaScript, featuring concise code snippets demonstrating clever bit-level operations for solving various programming challenges.