This file contains 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
#include <wifiboy32.h> | |
#include <BleMouse.h> | |
#include "wb32-demo2.h" | |
BleMouse bleMouse("ChiupiMouse", "Chiupix", 90); | |
uint16_t key; | |
uint16_t lastKey; | |
bool enabled = false; | |
long lastDoTime = 0; |
This file contains 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
<? | |
$origin = @$_SERVER['HTTP_ORIGIN']; | |
$lat = round(floatval($_GET['lat']),2); | |
$lon = round(floatval($_GET['lon']),2); | |
if($lat > 90 || $lat < -90 || $lon > 180 || $lon < -180 ) { | |
die('Invalid coordinates' . $lat . 'x' . $lon); | |
} |
This file contains 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:0,Aljazeera 1 | |
http://aljazeera-eng-hd-live.hls.adaptive.level3.net/aljazeera/english2/index1296.m3u8 | |
#EXTINF:0,Al Jazeera 2 | |
http://aljazeera-eng-hd-live.hls.adaptive.level3.net/aljazeera/english2/index.m3u8 | |
#EXTINF:0 type="stream" , TeleM Botosani | |
http://webmobile.xdev.ro:81/tv11/playlist.m3u8 | |
#EXTINF:0 type="stream" , Somax | |
http://webmobile.xdev.ro:81/tv12/playlist.m3u8 | |
#EXTINF:0 type="stream" , Publika TV |
This file contains 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
// Talking console | |
// | |
// Support: http://caniuse.com/#search=SpeechSynthesisUtterance | |
// | |
// Copy paste the code into dev console or | |
// use http://mrcoles.com/bookmarklet/ to create a bookmarklet. | |
/* ✂️ ......................................................................................... */ | |
if(console.log.name !== 'talkLog') { | |
console.l = console.log; |