
公司ROS內網是 192.168.0.X pptp 進入後得到的 IP 是 192.168.119.X
外網是 WAN1
公司ROS 設定如下 :
echochio 發表在 痞客邦 留言(0) 人氣(25)

紀錄一下還真不太會使用 , 發現會寄信通知 還可以 ....
先設定 projecttype
echochio 發表在 痞客邦 留言(0) 人氣(99)

用 Teamviewer 回到家發現出現 ....
原來遠端桌面是不可以中斷或縮小的 .....挖哩 .....要將 Teamviewer 安裝成服務 ....
Teamviewer 是廠商提供的 ...且只有錄色版 ....免安裝的被控端企業板
echochio 發表在 痞客邦 留言(0) 人氣(307)

網路上翻到的 叫做 "信呼" ... 使用 起來還可以 ...有手機的 app .... 把它繁體化 ...(還沒改完)
紀錄一下 ....
http://www.rockoa.com/
echochio 發表在 痞客邦 留言(0) 人氣(49)

紀錄一下 html 的 table 寫法
<table border="1" cellpadding="5" style="border:2px #00DBDB solid;text-align:center;">
<tr>
<td>表格欄位 1 </td>
<td>表格欄位 2 </td>
</tr>
<tr>
<td colspan=2> 使用 colspan 欄位</td>
</tr>
<tr>
<td>表格欄位 3 </td>
<td rowspan="2">使用 rowspan 的欄位</td>
</tr>
<tr>
<td>表格欄位 4 </td>
</tr>
</table>
echochio 發表在 痞客邦 留言(0) 人氣(222)
清理 印表機 queue
net stop spooler
del /Q /F /S "%windir%\System32\spool\PRINTERS\*.*"
net start spooler
echochio 發表在 痞客邦 留言(0) 人氣(47)
定時刪除檔案
for /d %%x in (z:\*) do @rd /s /q "%%x"
del /q z:\*
echochio 發表在 痞客邦 留言(0) 人氣(202)
百度地圖標示地點
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
body, html,#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;font-family:"微软雅黑";}
</style>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=ZUONbpqGBsYGXNIYHicvbAbM"></script>
<title>带文字标签的覆盖物</title>
</head>
<body>
<div id="allmap"></div>
</body>
</html>
<script type="text/javascript">
// 百度地图API功能
var map = new BMap.Map("allmap");
var point = new BMap.Point(116.400244,39.92556);
map.centerAndZoom(point, 18);
var marker = new BMap.Marker(point); // 创建标注
map.addOverlay(marker); // 将标注添加到地图中
var label = new BMap.Label("公司",{offset:new BMap.Size(20,-10)});
marker.setLabel(label);
// 添加带有定位的导航控件
var navigationControl = new BMap.NavigationControl({
// 靠左上角位置
anchor: BMAP_ANCHOR_TOP_LEFT,
// LARGE类型
type: BMAP_NAVIGATION_CONTROL_LARGE,
// 启用显示定位
enableGeolocation: true
});
map.addControl(navigationControl);
// 添加定位控件
var geolocationControl = new BMap.GeolocationControl();
geolocationControl.addEventListener("locationSuccess", function(e){
// 定位成功事件
var address = '';
address += e.addressComponent.province;
address += e.addressComponent.city;
address += e.addressComponent.district;
address += e.addressComponent.street;
address += e.addressComponent.streetNumber;
alert("当前定位地址为:" + address);
});
geolocationControl.addEventListener("locationError",function(e){
// 定位失败事件
alert(e.message);
});
map.addControl(geolocationControl);
</script>
echochio 發表在 痞客邦 留言(0) 人氣(26)
要找 image zoom + select slideshow 的功能 感覺這個不錯 ...保留起來
https://github.com/echochio-tw/image-zoom-with-select-slideshow
成果 : ==>
echochio 發表在 痞客邦 留言(0) 人氣(77)
發現 RWD 對於字串長度會自動換行 ..... 廢話 ...哈
造成中文字與數字混合的算出不正確長度 ,......
echochio 發表在 痞客邦 留言(0) 人氣(44)