Skip to content

Instantly share code, notes, and snippets.

@omar2205
Last active April 21, 2025 05:59
Show Gist options
  • Save omar2205/78d42f815e91397995ab07d84cafbdcf to your computer and use it in GitHub Desktop.
Save omar2205/78d42f815e91397995ab07d84cafbdcf to your computer and use it in GitHub Desktop.
WE speed tester

مقدمة

لما الباقة بتاعتك تخلص، السرعه بتفضل لمواقع معينة زي وي و speedtest.net لما باقتك تخلص تقدر تفضل عامل ضغط على الشركة، بانك تفضل تعمل اختبار للسرعه طول الوقت

ده سكربت بيعمل كدا، بيشتغل ويفضل يعمل اختبار طول مانتا عامل صح وفاتح الموقع

Note/ملحوظة

عملت سكربت بايثون بدل كروم بيفضل ساحب السرعه طول الوقت الاسكربت موجود تحت لو معاك بايثون شغله python we_test.py او حمل برنامج جاهز Link: we_test_v1.zip

الاستخدام

حمل الاضافة دي

Tampermonkey بعد متثبتها على كروم اعمل

image

هتلاقيه فتح سكربت فاضي

image

بدله بمكونات tampermonkey.js

ملحوظة: فيه الجزء ده، بدل 46 بكام ثانية فى العادي الاختبار بيتعمل

    // Every 46 seconds,
    // change with how long it usually takes for the full test to finish
    let INTERVAL = 46*1000

واعمل File > Save

كدا لما تخش على https://www.speedtest.net/run

هتلاقي ده ظهر لما تعمل صح هيفضل يعمل اختبار حسب معدل ال INTERVAL فى الاسكربت image

// ==UserScript==
// @name Check Speed
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author oskr.nl
// @match https://www.speedtest.net/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=speedtest.net
// @grant none
// ==/UserScript==
(function() {
// copyright 2022, oskr.nl. For "Educational" use only.
// Activate this script on speedtest.net and keeps
// checking your speed. ;)
// Every 46 seconds,
// change with how long it usually takes for the full test to finish
let INTERVAL = 46*1000
let keep_checking = false
let startBtn
window.n_times = 0 // keep track of how many times we ran
// the loop function
const speed_test_loop = (el) => {
// return/exit if loop checkbox is off
if (!keep_checking) return
startBtn.click()
n_times++
lbl_input_toggle.textContent = `Loop? n:${window.n_times}`
}
// create a custom element and inject into the page
// which will toggle the loop
const div_toggle_check = document.createElement('div')
div_toggle_check.classList.add('custom_toggle_check')
div_toggle_check.innerHTML = `
<style>
.custom_toggle_check {
position: fixed;
margin: 1rem;
padding: 0.2rem 1rem;
outline: 1px solid hotpink;
border-radius: 5rem;
}
</style>
<input type="checkbox" id="input_toggle">
<label for="input_toggle" id="lbl_input_toggle">Loop?</label>
`
document.body.appendChild(div_toggle_check)
window.lbl_input_toggle = document.querySelector('#lbl_input_toggle')
// listen for the checkbox change event and toggle the loop
const input_toggle_loop = div_toggle_check.querySelector('input')
input_toggle_loop.addEventListener('change', e => {
keep_checking = e.target.checked
})
startBtn = document.querySelector('div.speedtest-container.main-row > div.start-button > a > span.start-text')
// the actual loop
setInterval(speed_test_loop, INTERVAL)
})()
import requests
try:
print('Speed test ... started. For... testing your line speed only ;')
print('Plz dont sue me :(\tCTRL+C to Exit')
while True:
r = requests.get('https://speedtest3.tedata.net.prod.hosts.ooklaserver.net:8080/download?nocache=06de935f-8550-4a43-889a-b6a7f2aa4cee&size=25000000&guid=57369329-3387-4d48-81aa-e02bbc5b3937')
except KeyboardInterrupt:
pass
@brmgha
Copy link

brmgha commented Dec 24, 2022

كان الافضل تعمل سكربت بايثون يستغل الموضوع ده في تصفح مواقع اخري

@omar2205
Copy link
Author

كان الافضل تعمل سكربت بايثون يستغل الموضوع ده في تصفح مواقع اخري

دي مش ثغره. متقدرش تستغلها فى انك تتصفح مواقع بنفس سرعتك. فاتحين بس السرعه لمواقع سيرفر اختبار السرعه.

@jessmilligann
Copy link

بصراحة، أول مرة سمعت عن موقع 888Stars كانت من أحد أصدقائي اللي بيحبوا الألعاب أونلاين. قلت أجرب بنفسي، وبصراحة اتفاجأت بالمستوى! المنصة منظمة جدًا وسهلة الاستخدام، وفيها ألعاب ممتعة ومتنوعة. وأنا ببحث عن تفاصيل أكتر، لقيت رابط 888starz egypt وساعدني أفهم كل حاجة بسرعة. اللي عجبني كمان هو سرعة السحب والدعم الفني اللي بيرد بسرعة. حسيت كأني داخل كازينو حقيقي لكن من بيتي! صرت بدخل كل يوم تقريبًا حتى لو بس ألعب شوية وأروق. أنصح أي حد يحب الترفيه والتحدي يجربها.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment