המלצה | אתר לשידור חי מטילים מאיראן וצפי לאיזה כוון הוא נשלח ויופעל אזעקה
-
קוד לקונסול שמשמיע צליל כשיש שיגורים
לא בדקתי את זה בלייב אלא על שיגורים קודמים מההיסטוריה לכאורה אין הבדל אבל לא נוסה בפועל(function() { const AudioContext = window.AudioContext || window.webkitAudioContext; const audioCtx = new AudioContext(); let isAudioEnabled = false; function playAlarm() { if (!isAudioEnabled) return; const beepDuration = 0.15; const pauseDuration = 0.1; const now = audioCtx.currentTime; for (let i = 0; i < 5; i++) { const startTime = now + i * (beepDuration + pauseDuration); const oscillator = audioCtx.createOscillator(); const gainNode = audioCtx.createGain(); oscillator.type = 'square'; oscillator.frequency.setValueAtTime(850, startTime); gainNode.gain.setValueAtTime(0, startTime); gainNode.gain.linearRampToValueAtTime(0.8, startTime + 0.02); gainNode.gain.setValueAtTime(0.8, startTime + beepDuration - 0.02); gainNode.gain.linearRampToValueAtTime(0, startTime + beepDuration); oscillator.connect(gainNode); gainNode.connect(audioCtx.destination); oscillator.start(startTime); oscillator.stop(startTime + beepDuration); } } const btn = document.createElement('button'); btn.innerText = 'בדיקה'; btn.style.cssText = 'position: fixed; bottom: 20px; left: 20px; z-index: 999999; padding: 15px; background-color: #ff4444; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-family: sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.3);'; document.body.appendChild(btn); btn.addEventListener('click', () => { isAudioEnabled = true; btn.style.backgroundColor = '#4CAF50'; btn.innerText = 'מאזין לשיגורים'; if (audioCtx.state === 'suspended') { audioCtx.resume(); } playAlarm(); }); setInterval(() => { const markers = document.querySelectorAll('.map-marker-enter:not([data-beeped="true"])'); let newAlertFound = false; markers.forEach(marker => { const title = marker.getAttribute('title') || ''; if (title.includes('שיגור') || title.includes('Launch') || title.includes('Rocket') || title.includes('ירי')) { marker.setAttribute('data-beeped', 'true'); console.log('התראה חדשה הופיעה על המפה:', title); newAlertFound = true; } else { marker.setAttribute('data-beeped', 'true'); } }); if (newAlertFound) { playAlarm(); } }, 2000); console.log("לחץ על הכפתור לבדיקה."); })(); -
קוד לקונסול שמשמיע צליל כשיש שיגורים
לא בדקתי את זה בלייב אלא על שיגורים קודמים מההיסטוריה לכאורה אין הבדל אבל לא נוסה בפועל(function() { const AudioContext = window.AudioContext || window.webkitAudioContext; const audioCtx = new AudioContext(); let isAudioEnabled = false; function playAlarm() { if (!isAudioEnabled) return; const beepDuration = 0.15; const pauseDuration = 0.1; const now = audioCtx.currentTime; for (let i = 0; i < 5; i++) { const startTime = now + i * (beepDuration + pauseDuration); const oscillator = audioCtx.createOscillator(); const gainNode = audioCtx.createGain(); oscillator.type = 'square'; oscillator.frequency.setValueAtTime(850, startTime); gainNode.gain.setValueAtTime(0, startTime); gainNode.gain.linearRampToValueAtTime(0.8, startTime + 0.02); gainNode.gain.setValueAtTime(0.8, startTime + beepDuration - 0.02); gainNode.gain.linearRampToValueAtTime(0, startTime + beepDuration); oscillator.connect(gainNode); gainNode.connect(audioCtx.destination); oscillator.start(startTime); oscillator.stop(startTime + beepDuration); } } const btn = document.createElement('button'); btn.innerText = 'בדיקה'; btn.style.cssText = 'position: fixed; bottom: 20px; left: 20px; z-index: 999999; padding: 15px; background-color: #ff4444; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-family: sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.3);'; document.body.appendChild(btn); btn.addEventListener('click', () => { isAudioEnabled = true; btn.style.backgroundColor = '#4CAF50'; btn.innerText = 'מאזין לשיגורים'; if (audioCtx.state === 'suspended') { audioCtx.resume(); } playAlarm(); }); setInterval(() => { const markers = document.querySelectorAll('.map-marker-enter:not([data-beeped="true"])'); let newAlertFound = false; markers.forEach(marker => { const title = marker.getAttribute('title') || ''; if (title.includes('שיגור') || title.includes('Launch') || title.includes('Rocket') || title.includes('ירי')) { marker.setAttribute('data-beeped', 'true'); console.log('התראה חדשה הופיעה על המפה:', title); newAlertFound = true; } else { marker.setAttribute('data-beeped', 'true'); } }); if (newAlertFound) { playAlarm(); } }, 2000); console.log("לחץ על הכפתור לבדיקה."); })(); -
קוד לקונסול שמשמיע צליל כשיש שיגורים
לא בדקתי את זה בלייב אלא על שיגורים קודמים מההיסטוריה לכאורה אין הבדל אבל לא נוסה בפועל(function() { const AudioContext = window.AudioContext || window.webkitAudioContext; const audioCtx = new AudioContext(); let isAudioEnabled = false; function playAlarm() { if (!isAudioEnabled) return; const beepDuration = 0.15; const pauseDuration = 0.1; const now = audioCtx.currentTime; for (let i = 0; i < 5; i++) { const startTime = now + i * (beepDuration + pauseDuration); const oscillator = audioCtx.createOscillator(); const gainNode = audioCtx.createGain(); oscillator.type = 'square'; oscillator.frequency.setValueAtTime(850, startTime); gainNode.gain.setValueAtTime(0, startTime); gainNode.gain.linearRampToValueAtTime(0.8, startTime + 0.02); gainNode.gain.setValueAtTime(0.8, startTime + beepDuration - 0.02); gainNode.gain.linearRampToValueAtTime(0, startTime + beepDuration); oscillator.connect(gainNode); gainNode.connect(audioCtx.destination); oscillator.start(startTime); oscillator.stop(startTime + beepDuration); } } const btn = document.createElement('button'); btn.innerText = 'בדיקה'; btn.style.cssText = 'position: fixed; bottom: 20px; left: 20px; z-index: 999999; padding: 15px; background-color: #ff4444; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-family: sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.3);'; document.body.appendChild(btn); btn.addEventListener('click', () => { isAudioEnabled = true; btn.style.backgroundColor = '#4CAF50'; btn.innerText = 'מאזין לשיגורים'; if (audioCtx.state === 'suspended') { audioCtx.resume(); } playAlarm(); }); setInterval(() => { const markers = document.querySelectorAll('.map-marker-enter:not([data-beeped="true"])'); let newAlertFound = false; markers.forEach(marker => { const title = marker.getAttribute('title') || ''; if (title.includes('שיגור') || title.includes('Launch') || title.includes('Rocket') || title.includes('ירי')) { marker.setAttribute('data-beeped', 'true'); console.log('התראה חדשה הופיעה על המפה:', title); newAlertFound = true; } else { marker.setAttribute('data-beeped', 'true'); } }); if (newAlertFound) { playAlarm(); } }, 2000); console.log("לחץ על הכפתור לבדיקה."); })();@efishesh למה זה? לאתר של השידור חי?
-
@efishesh למה זה? לאתר של השידור חי?
@ישראל-1111
זה לאתר
מריצים בקונסול וכשיש שיגור הוא משמיע צליל -
מצורף קישור
https://iwm.diskin.net/@mnir אני מבין שזה חסום ולא- לא נבדק?

-
@mnir אני מבין שזה חסום ולא- לא נבדק?

@חכם-בלילה-1 זה אפשר לערער גם על חסימה לא ? עם כמה אנשים יבקשו סיגכוי גדול שהם יפתחו את זה שוב...
(בתקווה שבאמת אין בעיה באתר הנ''ל) -
@חכם-בלילה-1 זה אפשר לערער גם על חסימה לא ? עם כמה אנשים יבקשו סיגכוי גדול שהם יפתחו את זה שוב...
(בתקווה שבאמת אין בעיה באתר הנ''ל)@העניו-הגאה כתב בהמלצה | אתר לשידור חי מטילים מאיראן וצפי לאיזה כוון הוא נשלח ויופעל אזעקה:
זה אפשר לערער גם על חסימה לא ?
@העניו-הגאה יש להם קטע עם חדשות
אולי בגלל הדינמיות והמקורות.. -
@mnir אני מבין שזה חסום ולא- לא נבדק?

@חכם-בלילה-1 מה זה התמונה הזאת זה נטפרי?
-
@חכם-בלילה-1 מה זה התמונה הזאת זה נטפרי?
@ישראל-1111 תוסף שפרסמו כאן לדפי חסימה יותר אנושיים בנטפרי
-
מעניין שהאדם שיצר את האתר מגדיר את עצמו כאיש דאטה וחוקר אבטחה והאתר נראה כאחד שנבנה ב גוגל AI סטודיו
וגם דף הגיטהב שלו מראה יכולת כתיבת קוד והבנה ברמה גבוהה...@טופטופיסט ועוד משהו מוזר
הכתובת diskin.net מפנה ל- https://linktr.ee/d1skin -
מעניין שהאדם שיצר את האתר מגדיר את עצמו כאיש דאטה וחוקר אבטחה והאתר נראה כאחד שנבנה ב גוגל AI סטודיו
וגם דף הגיטהב שלו מראה יכולת כתיבת קוד והבנה ברמה גבוהה...@טופטופיסט עוד ימחקו את הנושא אם יעברו לנושאים אחרים
-
@חכם-בלילה-1 זה אפשר לערער גם על חסימה לא ? עם כמה אנשים יבקשו סיגכוי גדול שהם יפתחו את זה שוב...
(בתקווה שבאמת אין בעיה באתר הנ''ל)@העניו-הגאה ניסיתי והם ממש לאבקטע
הם הגיבו ואמרו שלא
ניסיתי... -
@העניו-הגאה ניסיתי והם ממש לאבקטע
הם הגיבו ואמרו שלא
ניסיתי...@רפי-סאם לא הבנתי ? מה ניסת ואמרו שלא ניסת ?

-
מעניין שהאדם שיצר את האתר מגדיר את עצמו כאיש דאטה וחוקר אבטחה והאתר נראה כאחד שנבנה ב גוגל AI סטודיו
וגם דף הגיטהב שלו מראה יכולת כתיבת קוד והבנה ברמה גבוהה...@טופטופיסט כתב בהמלצה | אתר לשידור חי מטילים מאיראן וצפי לאיזה כוון הוא נשלח ויופעל אזעקה:
מעניין שהאדם שיצר את האתר מגדיר את עצמו כאיש דאטה וחוקר אבטחה והאתר נראה כאחד שנבנה ב גוגל AI סטודיו
וגם דף הגיטהב שלו מראה יכולת כתיבת קוד והבנה ברמה גבוהה...יש לך טעות הסיוט הגדול של מתכנתים זה עיצוב הצד קליינט
ממש ממש לא מעיד על יכולת פיתוח ולפעמים בדיוק הפוך
והאמת שאני חושב שזה נראה מעולה
ככה הנראות של כל אתרי המעקב טיסות/אוניות מכ"מ-גשם מודלים לוויינים ועוד
עיצוב מקובל מאוד -
@טופטופיסט כתב בהמלצה | אתר לשידור חי מטילים מאיראן וצפי לאיזה כוון הוא נשלח ויופעל אזעקה:
מעניין שהאדם שיצר את האתר מגדיר את עצמו כאיש דאטה וחוקר אבטחה והאתר נראה כאחד שנבנה ב גוגל AI סטודיו
וגם דף הגיטהב שלו מראה יכולת כתיבת קוד והבנה ברמה גבוהה...יש לך טעות הסיוט הגדול של מתכנתים זה עיצוב הצד קליינט
ממש ממש לא מעיד על יכולת פיתוח ולפעמים בדיוק הפוך
והאמת שאני חושב שזה נראה מעולה
ככה הנראות של כל אתרי המעקב טיסות/אוניות מכ"מ-גשם מודלים לוויינים ועוד
עיצוב מקובל מאוד
