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
| #show settings: | |
| uci show wireless | |
| #edit settings | |
| uci set wireless.radio0=wifi-device | |
| uci set wireless.radio0.type='mac80211' | |
| uci set wireless.radio0.channel='36' | |
| uci set wireless.radio0.hwmode='11a' | |
| uci set wireless.radio0.htmode='VHT80' | |
| uci set wireless.radio0.distance='2' | |
| uci set wireless.wifinet1=wifi-iface |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| </head> | |
| <body> | |
| <video id="video" autoplay playsinline></video> | |
| <canvas id="canvas" onclick="this.webkitRequestFullscreen()"></canvas> | |
| <style>:-webkit-full-screen {position:fixed;width:100%;height:auto;top:0;left:0;}</style> |
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
| var fs = require('fs'); | |
| var paths = [ | |
| __dirname+"/data", | |
| __dirname, | |
| ]; | |
| mimeTypes = { | |
| "html": "text/html", | |
| "htm": "text/html", |
NewerOlder