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
$if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >80,#26B9DA, | |
if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >60, #5ED2A1, | |
if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >40, #EEB91F, | |
if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >20, #EC612B, | |
if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >0,#EC2347)))))$ |
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
$if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >80,#26B9DA, | |
if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >60, #5ED2A1, | |
if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >40, #EEB91F, | |
if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >20, #EC612B, | |
if(tc(split(tc(split, ni(com.atmotube.app, text) , "LQI ", 1), " (",0)) >0,#EC2347)))))$ |
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
using Newtonsoft.Json.Linq; | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
namespace parseNetlist | |
{ | |
public class Entry | |
{ |
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
@echo OFF | |
cd /D "%~dp0" | |
::k hält fenster offen, c schließt es | |
cmd /c "C:\Users\User\Apps\node\nodejs-portable.exe C:\Users\User\Apps\restart\action.js" | |
pause |
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
//restart nighthawk m2 | |
const puppeteer = require('puppeteer'), | |
fs = require("fs"), | |
exec = require("child_process").exec | |
process.title = `restart`; | |
const host = "http://192.168.1.1"; | |
let browser, page; |
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
// network scanner for TL-WR841N | |
const puppeteer = require('puppeteer'), | |
fs = require("fs"), | |
exec = require("child_process").exec | |
//restart after an hour | |
setTimeout(_=>{ | |
process.exit(0); | |
}, 60*30*1000); |
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
const api = `${location.protocol}//${location.href.split("//")[1].split("/")[0]}`; | |
console.clear(); | |
function WebmailViewModel() { | |
// Data | |
var self = this; | |
self.folders = ['Inbox', 'Archive', 'Sent', 'Spam']; | |
self.chosenFolderId = ko.observable("Inbox"); | |
self.chosenFolderData = ko.observable(); | |
self.chosenMailData = ko.observable(); |
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
<h2>Your seat reservations (<span data-bind="text: seats().length"></span>)</h2> | |
<h3 data-bind="visible: totalSurcharge() > 0"> Total surcharge: $<span data-bind="text: totalSurcharge().toFixed(2)"></span> | |
</h3> | |
<style> | |
a[type=button], | |
button { | |
border: 2px solid black; | |
cursor: pointer; | |
padding: .125rem 1rem; | |
user-select: none; |
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
document.title=document.querySelector('.vivo-video-data-holder').innerText.toLowerCase().split("watch")[1].split(".german")[0] | |
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
// Opera 8.0+ | |
var isOpera = (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0; | |
// Firefox 1.0+ | |
var isFirefox = typeof InstallTrigger !== 'undefined'; | |
// Safari 3.0+ "[object HTMLElementConstructor]" | |
var isSafari = /constructor/i.test(window.HTMLElement) || (function (p) { return p.toString() === "[object SafariRemoteNotification]"; })(!window['safari'] || (typeof safari !== 'undefined' && safari.pushNotification)); | |
// Internet Explorer 6-11 |