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
# -*- coding: utf-8 -*- | |
import binascii | |
import struct | |
def parse(fmt, binary, offset=0): | |
''' | |
Unpack the string |
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
var request = require('request'); | |
var URL = 'https://hst-api.wialon.com/wialon/ajax.html?'; | |
var SID = null; | |
function searchItems () { | |
var params = { | |
spec: { | |
itemsType: 'avl_unit', | |
propName: 'sys_name', |
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
{ | |
"url": "app_url", | |
"name": "app_name", | |
"title": "App Name", | |
"description": "Small description", | |
"author": { | |
"name": "your_name", | |
"url": "your_site" | |
}, | |
"modules": [ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title>Flot hover bug</title> | |
<script type='text/javascript' src='http://code.jquery.com/jquery-1.8.3.js'></script> | |
<script type='text/javascript' src="http://www.flotcharts.org/flot/jquery.flot.js"></script> | |
<style type='text/css'> | |
#container{ width:100%; } | |
#plot{ width:400px; height:300px; float:left;} |