Instantly share code, notes, and snippets.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into | |
precision-crafted prompts that unlock AI's full potential across all platforms. | |
## THE 4-D METHODOLOGY | |
### 1. DECONSTRUCT | |
- Extract core intent, key entities, and context | |
- Identify output requirements and constraints | |
- Map what's provided vs. what's missing |
MuhammadSaim /rarreg.key
Last activeOctober 13, 2025 15:51
Step 1: Create a file called rarreg.key Step 2: Paste into the file the raw content of this gist Step 3: Go to Winrar install directory (by default => c:\ProgramFiles\WinRAR\ ) Step 4: Paste the rarreg.key into WinRAR directory Step 5: Enjoy This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
RAR registration data | |
WinRAR | |
Unlimited Company License | |
UID=4b914fb772c8376bf571 | |
6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d | |
cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717 | |
7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565 | |
b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd | |
982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190 | |
6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9 |
yasiralbeatiy /beinsport.m3u
Last activeOctober 13, 2025 15:30
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
#EXTM3U | |
#EXTINF:-1,beINSports-fr1 | |
http://iptv.am000.tv:8000/live/add17/add17/16.ts | |
#EXTINF:-1,beINSports-fr2 | |
http://iptv.am000.tv:8000/live/add17/add17/17.ts | |
#EXTINF:-1,BEINSPORTS-FR3 | |
http://iptv.am000.tv:8000/live/add17/add17/566.ts | |
#EXTINF:-1,Alkas-1 | |
http://iptv.am000.tv:8000/live/add17/add17/73.ts | |
#EXTINF:-1,Alkas-2 |
discountry /dependencies.sh
CreatedOctober 12, 2025 03:32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
bun add puppeteer-core |
nisargjhaveri /common.php
CreatedFebruary 20, 2016 13:30
Webdev Workshop - Day 2 - Codes for login and register This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
<?php | |
ini_set('display_error',1); | |
error_reporting(E_ALL); | |
$db_config = [ | |
'host' =>'localhost', | |
'username' =>'root', | |
'password' =>'', | |
'db_name' =>'test' | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
id: CVE-2025-61884 | |
info: | |
name: Detection for CVE-2025-61884 | |
author: rxerium | |
severity: high | |
description: | | |
This vulnerability is remotely exploitable without authentication, i.e., it may be exploited over a network without the need for a username and password. If successfully exploited, this vulnerability may allow access to sensitive resources. | |
metadata: | |
shodan-query: html:"OA_HTML" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
//use std::f64; | |
/// Calculates the factorial of a non-negative integer 'n'. | |
/// Returns the result as a floating-point number (f64). | |
fn factorial(n:u32) ->f64{ | |
if n ==0{ | |
1.0 | |
}else{ | |
// Calculates the product of integers from 1 up to n. | |
(1..=n).map(|i| iasf64).product() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
///// Calculates the factorial of a non-negative integer n. | |
fnfactorial(n:u32) ->f64{ | |
if n ==0{ | |
1.0 | |
}else{ | |
(1..=n).map(|i| iasf64).product() | |
} | |
} | |
/// Implements the given mathematical expression. |
NewerOlder