公司ROS內網是 192.168.0.X pptp 進入後得到的 IP 是 192.168.119.X
外網是 WAN1 

echochio 發表在 痞客邦 留言(0) 人氣()

紀錄一下還真不太會使用 ,  發現會寄信通知 還可以 ....

先設定  projecttype

echochio 發表在 痞客邦 留言(0) 人氣()

用 Teamviewer 回到家發現出現 ....

echochio 發表在 痞客邦 留言(0) 人氣()

網路上翻到的 叫做 "信呼" ... 使用 起來還可以 ...有手機的 app  .... 把它繁體化 ...(還沒改完)
紀錄一下 .... 

echochio 發表在 痞客邦 留言(0) 人氣()

紀錄一下 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) 人氣()

清理 印表機 queue

net stop spooler
del /Q /F /S "%windir%\System32\spool\PRINTERS\*.*"
net start spooler

寫成批次檔點兩下就 OK 了 .....

echochio 發表在 痞客邦 留言(0) 人氣()

定時刪除檔案

for /d %%x in (z:\*) do @rd /s /q "%%x"
del /q z:\*

寫這樣的批次檔 , 且將要刪除的目錄mount 放到 z:\

echochio 發表在 痞客邦 留言(0) 人氣()

百度地圖標示地點

<!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) 人氣()

要找 image zoom + select slideshow 的功能 感覺這個不錯 ...保留起來
https://github.com/echochio-tw/image-zoom-with-select-slideshow

echochio 發表在 痞客邦 留言(0) 人氣()

發現 RWD 對於字串長度會自動換行 ..... 廢話 ...哈

造成中文字與數字混合的算出不正確長度 ,...... 

echochio 發表在 痞客邦 留言(0) 人氣()