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 http = require('http') | |
const interval = 3000 | |
console.log('ctrl+c to stop') | |
checkUpdate() | |
let dotohtml = null | |
async function checkUpdate () { | |
try { | |
const newhtml = await getPage('http://blog.dota2.com/') |
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
import tkinter | |
import tkinter.filedialog | |
import tkinter.messagebox | |
import sys | |
root=tkinter.Tk() | |
def pass_test(): | |
pass |