- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide, https://ios.cfw.guide/sideloading-apps/
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| // ==UserScript== | |
| // @name ZXRK'S.VIP BYPASSER | |
| // @namespace bypass.vip | |
| // @version 1.4.1 | |
| // @author ZXRK | |
| // @description Bypass ad-links using the ZXRK'S BYPASSER API and get to your destination without ads! | |
| // @match *://mega-guy.com/* | |
| // @match *://loot-link.com/* | |
| // @match *://best-links.org/* | |
| // @match *://loot-links.com/* |
Microsoft claims Visual Studio Code (VS Code) is open source, yet it restricts the use of its Marketplace extensions in non-Microsoft products like VSCodium (telemetry/tracking free open source fork), Cursor, Windsurf, Trae, and other VS Code-based IDEs, enforcing what some see as monopolistic control. This guide provides a workaround to enable the VS Code Marketplace in VSCodium and Trae (more to be added soon), allowing you to freely use extensions. Note that using the VS Code Marketplace with non-Microsoft products may violate its terms of use, which state that extensions are intended for use only with Microsoft Visual Studio products. Proceed at your discretion after reviewing the terms.
To configure VSCodium to use the VS Code Marketplace instead of the default OpenVSX Registry, you can either set environment variables or create a custom product.json file.
| #Requires AutoHotkey v2.0 | |
| #SingleInstance Force | |
| DetectHiddenWindows true | |
| ; Globals to manage the suspend/resume state | |
| global IsProcessSuspended := false | |
| global IsProcessResumed := false | |
| LockFile := A_Temp "\AutoPauseResume.lock" |
hi, i'm daniel. i'm a 15-year-old high school junior. in my free time, i hack billion dollar companies and build cool stuff.
3 months ago, I discovered a unique 0-click deanonymization attack that allows an attacker to grab the location of any target within a 250 mile radius. With a vulnerable app installed on a target's phone (or as a background application on their laptop), an attacker can send a malicious payload and deanonymize you within seconds--and you wouldn't even know.
I'm publishing this writeup and research as a warning, especially for journalists, activists, and hackers, about this type of undetectable attack. Hundreds of applications are vulnerable, including some of the most popular apps in the world: Signal, Discord, Twitter/X, and others. Here's how it works:
By the numbers, Cloudflare is easily the most popular CDN on the market. It beats out competitors such as Sucuri, Amazon CloudFront, Akamai, and Fastly. In 2019, a major Cloudflare outage k
| $rule = New-Object System.Security.AccessControl.RegistryAccessRule( | |
| "NT AUTHORITY\NETWORK SERVICE", # IdentityReference | |
| [System.Security.AccessControl.RegistryRights]::FullControl, # RegistryRights | |
| [System.Security.AccessControl.InheritanceFlags]::ContainerInherit, # InheritanceFlags | |
| [System.Security.AccessControl.PropagationFlags]::None, # PropagationFlags | |
| [System.Security.AccessControl.AccessControlType]::Allow # AccessControlType | |
| ) | |
| $registry_keys = "Dhcp", "Tcpip", "Tcpip6", "TCPIPTUNNEL", "TCPIP6TUNNEL" | |
| $registry_folder = "HKLM:\SYSTEM\CurrentControlSet\Services\{registry_key}" |
hi, i'm daniel. i'm a 15-year-old with some programming experience and i do a little bug hunting in my free time. here's the insane story of how I found a single bug that affected over half of all Fortune 500 companies:
If you've spent some time online, you’ve probably come across Zendesk.
Zendesk is a customer service tool used by some of the world’s top companies. It’s easy to set up: you link it to your company’s support email (like support@company.com), and Zendesk starts managing incoming emails and creating tickets. You can handle these tickets yourself or have a support team do it for you. Zendesk is a billion-dollar company, trusted by big names like Cloudflare.
Personally, I’ve always found it surprising that these massive companies, worth billions, rely on third-party tools like Zendesk instead of building their own in-house ticketing systems.
| /* | |
| * Vencord, a Discord client mod | |
| * Copyright (c) 2023 Vendicated, camila314, and contributors | |
| * SPDX-License-Identifier: GPL-3.0-or-later | |
| */ | |
| import definePlugin from "@utils/types"; | |
| import { Devs } from "@utils/constants"; | |
| import { findByCodeLazy } from "@webpack"; |
| import numpy as np | |
| import soundfile as sf | |
| from scipy.fftpack import fft, ifft | |
| def rotateSignal(signal,flip): | |
| if flip: | |
| signal = signal[::-1] | |
| x = np.concatenate((signal, signal[1:][::-1])) # concatenating the array with a reverse of itself makes it such that the fourier transform doesn't layer over a reversed version of itself in the inverse fft | |
| rotSig = ifft(x) |