Note
- If a 120 FPS version of the mod is available, it is used.
- All mods are installed manually. No modloader is used.
[Display] | |
fDefault1stPersonFOV=90 | |
fDefaultFOV=90 | |
fDefaultWorldFOV=90 | |
fFPWorldFOV=90 | |
fTPWorldFOV=90 | |
;bEnableRaytracing=1 | |
;bUseSkyLighting=1 | |
;set to 0 to disable | |
fMaxAnisotropy=2 |
Note
#!/usr/bin/env luajit | |
-- THIS IS BEING MAINTAINED AT https://github.com/TangentFoxy/.lua-files | |
-- GO THERE INSTEAD OF DOWNLOADING THIS FILE DIRECTLY. | |
-- Primarily written by ChatGPT using GPT-3.5, with corrections and modifications by me. | |
-- Do whatever the hell you want with it. | |
local lfs = require "lfs" |
import os | |
import time | |
from math import floor | |
class SnowflakeGenerator: | |
def __init__(self, mid=None, time_start=1288834974657): | |
self.time_start = time_start | |
self.mid = mid if mid else os.getpid() |
// ┏┏┓o┳━┓┓━┓┏┏┓┳━┓ | |
// ┃┃┃┃┃━┫┗━┓┃┃┃┃━┫ | |
// ┛ ┇┇┛ ┇━━┛┛ ┇┛ ┇ | |
// miasma by xero (https://x-e.ro) | |
*.foreground: #c2c2b0 | |
*.background: #222222 | |
*.cursorColor: #5f875f | |
! black | |
*.color0: #222222 |
package net.runelite.client; | |
import lombok.Setter; | |
import net.runelite.api.Client; | |
import java.awt.*; | |
import java.awt.event.MouseEvent; | |
public class Mouse { |
More of my guides: Debloating MEMu - Debloating LDPlayer
Log1x's guide is pretty outdated, so I have made an updated version
Nox, despite being the most feature-filled Android emulator, has a lot of negativity surrounding it due to their antics when it comes to making income off of their program. It is known for running repeated advertisments in the background, calling home and passing along system information (outside of your Android instance) as well as a vast amount of potentially sensitive data in an encrypted payload back to their multitude of servers. With the following preventitive measures, we can stop a majority of this happening as well as greatly improve the overall performance.
This guide is mainly targeted at Android 12. It may work on Android 5, 7 and 9 inst
/* | |
-- RSCAN -- | |
VERSION 2.5 | |
Bitburner script: https://github.com/bitburner-official/bitburner-src https://store.steampowered.com/app/1812820/Bitburner/ | |
Recursive scan terminal command for displaying an ascii art tree representation of the full network: | |
rscan --detailed | |
-------------------Network Tree-------------------|-|Balance|-|Hack Chance|-|Security LVL|-|Hacking LVL|-|Root?| | |
home----------------------------------------------| $701.293m 100% 1% 1 [X] | |
├─n00dles | $2.984k 18% 83% 1 [X] |
#!/bin/bash | |
# Function to handle the download | |
download_file() { | |
local delete_flag="${1:-false}" | |
local url="$2" | |
local filename="$3" | |
# Extract filename from URL if not provided | |
if [ -z "$filename" ]; then |
#!/bin/bash | |
# | |
# Download open watcom 1.9 from sourceforge. | |
# | |
# Requires curl or wget | |
FILENAME="open-watcom-c-linux-1.9" | |
URL="https://master.dl.sourceforge.net/project/openwatcom/open-watcom-1.9/$FILENAME" | |
# Check if curl is available | |
if command -v curl >/dev/null 2>&1; then |