Skip to content

Instantly share code, notes, and snippets.

View leonurium's full-sized avatar
🦁
Ongoing Projects

leonurium leonurium

🦁
Ongoing Projects
View GitHub Profile
@mattupham
mattupham / @mattupham Omegle IP Location Finder
Last active January 15, 2026 10:12
@mattupham Omegle IP Location Finder - Ask Questions in our Discord, links below
// Subscribe on YouTube, and follow on TikTok (@mattupham)! Socials found below:
// https://mattupham.com/links
// @ me on Discord with any questions!
https://link.mattupham.com/discord
// --------------------------------------------
// PLEASE REPLACE "your-api-key-here" WITH AN
// API KEY FROM https://ipgeolocation.io/
let apiKey = "your-api-key-here";
<?php
header("Content-Type: image/jpeg");
$curl = curl_init();
$id=$_GET['id']; //Id Message
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.line.me/v2/bot/message/".$id."/content",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
<?php
/**
* @author Ammar F. <ammarfaizi2@gmail.com>
*/
$_p['value(user_id)'] = ""; // username
$_p['value(pswd)'] = ""; // password
$_p['value(Submit)'] = "LOGIN";
$a=curl("https://m.klikbca.com/login.jsp");
$a = explode('type="hidden"', $a);
for ($i=1;$i<count($a);$i++) {
@corbanb
corbanb / JavaScript.sublime-build
Last active August 25, 2024 00:42
Sublime Text - Tools > Build System > New Build System
// Sublime Text - Build System for Javascript
{
"cmd": ["node", "$file"],
"selector": "source.js"
}