If your laptop’s CPU is running very hot and you’ve tried to undervolt it, you’ve probably discovered there’s no easy way to do so—especially on laptops whose BIOS doesn’t expose those controls. I ran into the same issue with my Ryzen 7 5800H, despite numerous attempts, I couldn’t undervolt because the firmware simply wouldn’t allow it. While it may seem drastic, disabling Turbo Boost is one workaround—and you might be surprised how little real-world performance you lose by turning it off.
Discover gists
Note
This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.
How to use this script:
- Accept a quest under Discover -> Quests
- Press Ctrl+Shift+I to open DevTools
- Go to the
Consoletab - Paste the following code and hit enter:
Moved to git repository: https://github.com/denji/nginx-tuning
For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.
Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon with HyperThreading enabled, but it can work without problem on slower machines.
You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.
Here's the list with the additional points:
-
Ensure that you have OpenJDK 17, Android Studio, and its associated tools and NDK (Native Development Kit) installed on your system.
-
Initialize a new Expo project by executing the following command in your terminal:
pnpm create expo-app@latest. This command will prompt you to provide some details about your project, such as the project name and configuration options. -
Before building the Android app, you need to prebuild the
androiddirectory. Run the commandpnpm expo prebuildto generate the necessary files. Additionally, you should provide your app's package name during this step. For example, if your app's package name iscom.example.app. -
Generate a keystore file. Use an administrator shell to create the keystore. Run the following command:
keytool -genkeypair -v -storetype PKCS12 -keystore my-upload-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000and enter your password (store it safely somewhere) and details.
| # wsl Help | |
| wsl --help | |
| # Check WSL status | |
| wsl --status | |
| # Check WSL version | |
| wsl --version | |
| # Update WSL |
| #===================================================================== | |
| Dorking is the practice of crafting advanced search queries to uncover publicly available but sensitive information. URLscan.io allows users to filter through indexed scans using Lucene-based query syntax | |
| Examples: | |
| page.domain:example.com → Searches all scans related to example.com | |
| page.ip:192.168.1.1 → Finds all URLs hosted on this IP | |
| 2. Common URLscan Dorking Queries | |
| a) Finding Open Admin Panels |
| {:ok, connection} = AMQP.Connection.open | |
| {:ok, channel} = AMQP.Channel.open(connection) | |
| message = Enum.join(System.argv, " ") || "Hello World!" | |
| AMQP.Exchange.declare(channel, "logs", :fanout) | |
| AMQP.Basic.publish(channel, "logs", "", message) | |
| IO.puts " [x] Sent '#{message}'" |
These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
This script makes it easier to copy Gnome settings and extensions from one pc to the other. It supports python>=3.5.
To use it, download it, then run python3 migrate_gnome_settings.py --export-settings to create a tar.gz file with all the settings.
Then, on your new system, copy the script and the gzip to your user's home directory and run python3 migrate_gnome_settings.py --import-settings.
For now, the script migrates:
| #!/usr/bin/env python3 | |
| import os | |
| import sys | |
| import argparse | |
| from decimal import Decimal, ROUND_DOWN, getcontext | |
| import requests | |
| from requests.auth import HTTPBasicAuth | |
| getcontext().prec = 28 |