2012年12月25日 星期二

7 essential tools for MySQL DBA


Linux Admin Zone - 7 essential tools for MySQL DBA



1. Percona Toolkit
2. Mydumper
3. MySQL Master HA
4. ESF Database Migration Toolkit
5. Xtrabackup
6. Mycheckpoint
7. Web based GUI Tools to manage MySQL

2012年11月15日 星期四

"選取" Gridview的某一列(RowIndex) & 那一列對應資料表的P.K.值

資料來源:MIS2000 Lab


要擷取「使用者點選了 GridView的哪一列(RowIndex)?」
有很多的寫法
當我們使用 GridView的「選取」命令欄位時,要抓取「使用者點選了哪一列?」,最好寫在 SelectedIndexChanged()事件裡面,運作起來會比較正常!



    Protected Sub GridView1_RowCommand(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewCommandEventArgs) Handles GridView1.RowCommand
        Response.Write("
== GridView1_RowCommand() ==
")
        Response.Write("GridView1.SelectedIndex--  " & GridView1.SelectedIndex)
        Response.Write("
GridView1.SelectedValue-- " & GridView1.SelectedValue)

    End Sub

'--使用「選取(Select)」命令欄位,通常會用到底下這兩個事件!--
    Protected Sub GridView1_SelectedIndexChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewSelectEventArgs) Handles GridView1.SelectedIndexChanging
        Response.Write("
== GridView1_SelectedIndexChanging() ==
")
        Response.Write("GridView1.SelectedIndex--  " & GridView1.SelectedIndex)
        Response.Write("
GridView1.SelectedValue-- " & GridView1.SelectedValue)
        Response.Write("
==============================")    '--下面這兩行,可以正常運作!
        Response.Write("
GridView1.Rows(e.NewSelectedIndex).RowIndex-- " & GridView1.Rows(e.NewSelectedIndex).RowIndex.ToString())    '--抓取那一列「對應資料表」的主索引鍵
        Response.Write("
e.NewSelectedIndex-- " & e.NewSelectedIndex.ToString())  '--抓取那一列的index鍵
    End Sub

    Protected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridView1.SelectedIndexChanged
        Response.Write("
== GridView1_SelectedIndexChanged() ==
")
        Response.Write("GridView1.SelectedIndex--  " & GridView1.SelectedIndex)
        Response.Write("
GridView1.SelectedValue-- " & GridView1.SelectedValue)
        Response.Write("
GridView1.SelectedDataKey.Value-- " & GridView1.SelectedDataKey.Value)
    End Sub

2012年11月6日 星期二

請勿將某些檔案類型的檔案簽入到 Subversion 版本庫



請勿將某些檔案類型的檔案簽入到 Subversion 版本庫



*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store

*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store *.csproj.user Bin obj Obj Release 

*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store *.suo *.webinfo *.user *.dbproj.schemaview *.docstates *.gpState *.dbmdl [Tt]est[Rr]esult [Bb]uild[Ll]og.* _notes [Tt]humbs.db .apdisk *resharp* *Resharper* *ReSharper* *.Load  *.NoLoad  *.~m2  *.cache bin obj

*.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store thumbs.db Thumbs.db *.bak *.class *.exe *.dll *.mine *.obj *.ncb *.lib *.log *.idb *.pdb *.ilk *.msi* .res *.pch *.suo *.exp *.*~ *.~* ~*.* cvs CVS .CVS .cvs release Release debug Debug ignore Ignore bin Bin obj Obj *.csproj.user *.user *.generated.cs

*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp *[Bb]in *obj *suo *resharp* *.user *.tmp *.TMP *Resharper* *ReSharper* *.Load *.gpState *.NoLoad  *.~m2 *.dbmdl *.gpState _notes *.cache [Tt]est[Rr]esult [Bb]uild[Ll]og.* *.[Pp]ublish.xml *.[Cc]ache [Tt]humbs.db lint.db *.docstates .apdisk [Ll]ogs .DS_Store



SVN:快速刪除 .svn 目錄


SVN:快速刪除 .svn 目錄


第一種方法就是下簡單的指令來刪除,
方法是用 windows 的 cmd 或 Linux 的 command line 切換到所要刪除的根目錄,
然後下這個指令:for /r ./ %a in (./) do @if exist "%a\.svn" rd /s /q "%a\.svn"
如果覺得這個指令太麻煩,也可以將他做成 batch 來執行。

第二種方法是將上面的指令換一種方式來執行,
先將以下分隔線內的文字存成 .reg 檔,
點兩下執行後就會註冊到 windows 的機碼中,
之後可以在資料夾的右鍵選單選擇「Delete SVN Folders」,
執行後就會發現要刪的東西已經被清空囉。
============================================================== 
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN] 
@="Delete SVN Folders"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command] 
@="cmd.exe /k \"TITLE Removing SVN Folders in %1 && FOR /r \"%1\" %%f IN (.svn _svn) DO RD /s /q \"%%f\" \""
==============================================================

SVN Server install


SVN Server install ( win OS )


隨意走走Blog




SVN Server install (Linux)



Subversion 權威指南

2012年11月4日 星期日

如何從Gridview中的表單物件的事件去取得其他欄位的值



http://leolin1390.pixnet.net/blog/trackback/1583727654/29128582

2012年10月28日 星期日

[轉貼]SQL安裝錯誤號碼:1045的問題

來源:http://tw.myblog.yahoo.com/davis-tseng/article?mid=206&sc=1




步驟如下:
(安裝目錄: d:\mysql, 修改密碼: 123456)
d:\mysql\bin>mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('123456') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
d:\mysql\bin>mysqld restart
d:\mysql\bin>mysql -u root -p
Enter password:
mysql> \q


2012年10月24日 星期三

[轉貼]JavaScript的四捨五入、無條件捨去、無條件進位

原文出處:Math.round() ,Math.floor(),Math.ceil() - Joejoe1991的备忘录

Math.round() ,Math.floor(),Math.ceil()

Math.round() 四捨五入
Math.floor() 取小於這個數的最大整數
Math.ceil() 取大於這個數的最小整數

例一:
alert(Math.round(12.3));   //12
alert(Math.round(12.5));   //13
alert(Math.round(12.52145)); //13


它將一個小數四捨五入為一個整數,與Java中的Math.round() 一樣,不保留一位小數!

保留兩位小數:
alert(Math.round(12.52645 * 100) / 100); //12.53

先將12.52645 乘 10 得到1252.645
將這個結果四捨五入為整數得到1253
再將1253除以100 ,得到12.53

如果要保留三位小數,乘1000再除1000就行!

例二:
一箱裝6瓶酒,現有N瓶,求裝幾箱。
function getNum(n) {
    var value = n;
    n = n / 6; //這裡拿到的結果有可能是小數,因為Js是弱類型語言。在Java中,整數除整數,結果也是整數。
    if (value % 6 != 0) { 如果不是6的倍數,也就是n箱裝不下。
        n += 1; //再裝一箱
    }

    n = Math.floor(n); //求小於這個數的最大整數,因為n / 6 可能是小數,所以這裡要化整。
    return n;
}

alert(getNum(12)); 2
alert(getNum(1)); 1
alert(getNum(0)); 0
alert(getNum(15)); 3

[轉貼]解決JS浮點數(小數)計算加減乘除的BUG



問題這樣的:
  37.5*5.5=206.08  (JS算出來是這樣的一個結果,我四捨五入取兩位小數)
  我先懷疑是四捨五入的問題,就直接用JS算了一個結果為:206.08499999999998
  怎麼會這樣,兩個只有一位元小數的數字相乘,怎麼可能多出這麼小數點出來。
  我Google了一下,發現原來這是JavaScript浮點運算的一個bug
  比如:7*0.8 JavaScript算出來就是:5.6000000000000005

  網上找到了一些解決辦法,就是重新寫了一些浮點運算的函數。
  下面就把這些方法摘錄下來,以供遇到同樣問題的朋友參考:
  
   程式碼
//除法函數,用來得到精確的除法結果
// 說明:javascript的除法結果會有誤差,在兩個浮點數相除的時候會比較明顯。這個函數返回較為精確的除法結果。
//調用:accDiv(arg1,arg2)
//返回值:arg1除以arg2的精確結果
function accDiv(arg1, arg2) {
         var t1 = 0, t2 = 0, r1, r2;
         try { t1 = arg1.toString().split(".")[1].length } catch (e) { }
         try { t2 = arg2.toString().split(".")[1].length } catch (e) { }
         with (Math) {
             r1 = Number(arg1.toString().replace(".", ""))
             r2 = Number(arg2.toString().replace(".", ""))
             return (r1 / r2) * pow(10, t2 - t1);
         }
     }

//Number類型增加一個div方法,調用起來更加方便。
Number.prototype.div = function(arg) {
         return accDiv(this, arg);
     }

//乘法函數,用來得到精確的乘法結果
//說明:javascript的乘法結果會有誤差,在兩個浮點數相乘的時候會比較明顯。這個函數返回較為精確的乘法結果。
//調用:accMul(arg1,arg2)
//返回值:arg1乘以 arg2的精確結果
function accMul(arg1, arg2) {
         var m = 0, s1 = arg1.toString(), s2 = arg2.toString();
         try { m += s1.split(".")[1].length } catch (e) { }
         try { m += s2.split(".")[1].length } catch (e) { }
         return Number(s1.replace(".", "")) * Number(s2.replace(".", "")) / Math.pow(10, m)
     }

// Number類型增加一個mul方法,調用起來更加方便。
Number.prototype.mul = function(arg) {
         return accMul(arg, this);
     }

//加法函數,用來得到精確的加法結果
//說明:javascript的加法結果會有誤差,在兩個浮點數相加的時候會比較明顯。這個函數返回較為精確的加法結果。
//調用:accAdd(arg1,arg2)
// 返回值:arg1加上arg2的精確結果
function accAdd(arg1, arg2) {
         var r1, r2, m, c;
         try { r1 = arg1.toString().split(".")[1].length } catch (e) { r1 = 0 }
         try { r2 = arg2.toString().split(".")[1].length } catch (e) { r2 = 0 }
         c = Math.abs(r1 - r2);
         m = Math.pow(10, Math.max(r1, r2))
         if (c > 0) {
             var cm = Math.pow(10, c);
             if (r1 > r2) {
                 arg1 = Number(arg1.toString().replace(".", ""));
                 arg2 = Number(arg2.toString().replace(".", "")) * cm;
             }
             else {
                 arg1 = Number(arg1.toString().replace(".", "")) * cm;
                 arg2 = Number(arg2.toString().replace(".", ""));
             }
         }
         else {
             arg1 = Number(arg1.toString().replace(".", ""));
             arg2 = Number(arg2.toString().replace(".", ""));
         }
         return (arg1 + arg2) / m
     }

//Number類型增加一個add方法,調用起來更加方便。
Number.prototype.add = function(arg) {
         return accAdd(arg, this);
     }
//減法函數,用來得到精確的減法結果
//說明:javascript的減法結果會有誤差,在兩個浮點數相減的時候會比較明顯。這個函數返回較為精確的減法結果。
//調用:accSub(arg1,arg2)
// 返回值:arg1加上arg2的精確結果
function accSub(arg1,arg2){
   var r1,r2,m,n;
   try{r1=arg1.toString().split(".")[1].length}catch(e){r1=0}
   try{r2=arg2.toString().split(".")[1].length}catch(e){r2=0}
   m=Math.pow(10,Math.max(r1,r2));
   //last modify by deeka
   //動態控制精度長度
   n=(r1>=r2)?r1:r2;
   return ((arg1*m-arg2*m)/m).toFixed(n);
}

  在你要用的地方包含這些函數,然後調用它來計算就可以了。
  比如你要計算:7*0.8 ,則改成 (7).mul(8)
  其它運算類似,就可以得到比較精確的結果。

2012年10月19日 星期五

編輯與修改時,畫面可以固定位置

在.aspx裡加上MaintainScrollPositionOnPostback="true"

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Iso_Config_Dept.aspx.cs" Inherits="WebApplication5.WebForm1" MaintainScrollPositionOnPostback="true"%>

2012年9月27日 星期四

四階文件


四階文件架構如下:
(一)第一階文件QM:政策/手冊)說明標準文件具體作法指導綱要。
(二)第二階文件QP:程序書):本院內部各相關單位,為達成文件標準化活動要求所規定之方法程序。進一步規範活動之目的與範圍、執行人員、方式以及如何對其控制與紀錄等,其目的在使相關人員明確地了解文件標準化中所述之願景與目標應如何達成。例:品質程序書或規範、要點等。
(三)第三階文件WISOPGOP:作業指導書):用於直接指導人員按技術規範要求完成標準化之文件作業時,必須依據使用的指導文件或說明文件詳細指示人員如何執行完成一件工作之方法與步驟。例:操作說明、標準作業書、作業說明書。
(四)第四階文件FM:表單、紀錄):○○○作業進行時須填寫紀錄所須用表單。例:表單、報告書、記錄、工作摘要。

2012年9月9日 星期日

Hadoop資料整理

Hadoop資料整理

http://www.wretch.cc/blog/kojenchieh/15430078

Registering ASP.NET on IIS after installing the .NET Framework


data from: http://www.devx.com/vb2themax/Tip/18849


Registering ASP.NET on IIS after installing the .NET Framework

If you install the .NET Framework on a system that has IIS already installed, IIS is automatically configured to handle requests to ASP.NET pages, and to redirect the execution to the ASP.NET runtime. However, it may happen that you installed the framework on a Windows 2000 Professional system where IIS was not already present, and just later decided to add IIS. Registering ASP.NET on IIS is not just a matter of associating the various .aspx, .asmx, .axd, .ashx and the other ASP.NET extensions to the aspnet_isapi.dll ISAPI, more has to be done to create the ASP.NET account and to set it for ASP.NET requests, register the ISAPI itself and other stuff. Doing all this manually can be a difficult operation, and requires a good understanding of many details. Fortunately there is an utility, shipped with the .NET Framework but not documented, that can take care of these configuration chores for you. The utility is aspnet_regiis.exe, it is located under %WindowsDir%\Microsoft.NET\Framework\vx.y.zzzz\ and you should call it with the -i parameter: aspnet_regiis.exe -i

2012年7月23日 星期一

嵌入式學習資料整理


尊重他人勞動成果,本文copy自:
http://www.ourdev.cn/bbs/bbs_content.jsp?bbs_sn=3979142&bbs_page_no=1&bbs_id=1032


嵌入式入門篇:

什麼是嵌入式系統                         http://www.helloarm.com/Embedded- Learn/58.htm

嵌入式資深工程師白話說“嵌入式”         http://www.helloarm.com/Embedded-Learn /52.htm

嵌入式系統的學習途徑與基本方法(硬體)   http://www.helloarm.com/Embedded-Learn/50.htm

如何學習嵌入式(軟體)                   http://www.helloarm.com/Embedded-Learn /51.htm          

ARM入門學習方法                          http://www.helloarm.com/Embedded- Learn/46.htm

嵌入式linux學習步驟                      http://www.helloarm.com/Embedded- Learn/48.htm

嵌入式學習方法 關於ARM+linux            http://www.helloarm.com/Embedded- Learn/47.htm

我的嵌入式之路(必看必看!)             http://www.helloarm.com/Embedded-Learn /45.htm

-------------------------------------------------------------------------------------------------

ARM學習思路

什麼是ARM                               http://www.helloarm.com/ARM- knowledge/59.htm

ARM77與ARM9的區別                       http://www.helloarm.com/ARM- knowledge/61.htm

ARM開發:一 ARM微處理器概述             http://www.helloarm.com/ARM-knowledge /107.htm

ARM開發:二 ARM微處理器的編程模型       http://www.helloarm.com/ARM-knowledge /106.htm

ARM開發:三 ARM微處理器的指令系統       http://www.helloarm.com/ARM-knowledge /105.htm

ARM中C和彙編混合編程及示例              http://www.helloarm.com/ARM-knowledge /62.htm

ARM 開發軟體及實用工具介紹              http://www.helloarm.com/ARM-knowledge /60.htm

ADS集成開發環境詳細介紹                 http://www.helloarm.com/ADS-Learn /113.htm

ads調試工程的設置                       http://www.helloarm.com/ADS-Learn /112.htm

----------------------------------------------------------------------------------------------------------

嵌入式作業系統學習

七款嵌入式Linux作業系統簡介            http://www.helloarm.com/Linux/193.htm

使用虛擬機嵌入式Linux開發前的必要準備  http://www.helloarm.com/Linux/183.htm

Linux啟動的簡析                        http://www.helloarm.com/Linux /210.htm

Linux上的C/C++編譯器gcc/egcs詳解       http://www.helloarm.com/Linux /188.htm

arm linux 下最小的hello world程式      http://www.helloarm.com/Linux /123.htm

Linux檔和目錄訪問許可權設置            http://www.helloarm.com/Linux/185.htm

tar命令的使用                          http://www.helloarm.com/Linux /176.htm

Linux下各種壓縮包的解壓方法            http://www.helloarm.com/Linux/177.htm

linux內核裁剪的具體過程和方法          http://www.helloarm.com/Linux/187.htm

Linux 系統內核的調試                   http://www.helloarm.com/Linux /219.htm

基於嵌入式Qt的車載GUI平臺的設計        http://www.helloarm.com/Linux/184.htm

在U-Boot中實現對Yaffs鏡像的支持        http://www.helloarm.com/Linux/205.htm

ARM Linux根檔系統的製作              http://www.helloarm.com/Linux/217.htm

基於μCLinux的USB晶片FT245BL驅動實現   http://www.helloarm.com/Linux/203.htm

fcntl函數詳解                          http://www.helloarm.com/Linux /199.htm

BusyBox 簡化嵌入式 Linux 系統          http://www.helloarm.com/Linux /218.htm


---------------------------------------------------------------------------------------------------------------

進一步學習Linux

arm2410的Linux系統移植——vivi、內核、根檔系統的編譯    http://www.helloarm.com/Linux /120.htm

在s3c2410開發板上移植u- boot1.1.4                          http://www.helloarm.com/Linux/127.htm

NFS for Linux(網路檔系 統)                             http://www.helloarm.com/Linux/171.htm

Linux 下串口編程入 門                                      http://www.helloarm.com/Linux/180.htm

Makefile經典教 程                                          http://www.helloarm.com/Linux/166.htm

linux Shell編程入門 實例講解詳 解                          http://www.helloarm.com/Linux/173.htm

嵌入式Linux下NAND存儲系統的設計與實現                     http://www.helloarm.com /Linux/121.htm

s3c2410/s3c2440的USB HOST不穩定的原因及解決方法           http: //www.helloarm.com/Linux/124.htm

ARM平臺上藍牙協定棧Bluez的移植使用和配置                  http://www.helloarm.com /Linux/122.htm

Linux液晶屏驅動開發 [1]                                    http://www.helloarm.com/Linux/175.htm

Linux液晶屏驅動開發 [2]                                    http://www.helloarm.com/Linux/178.htm

Linux液晶屏驅動開發 [3]                                    http://www.helloarm.com/Linux/179.htm

-------------------------------------------------------------------------------------------------------------------

windows CE學習

WinCE 菜鳥問 答                                           http://www.helloarm.com/Wince/111.htm

Windows CE嵌入式作業系統的優 勢                           http://www.helloarm.com/Wince/213.htm

WinCE 編程的十點忠 告                                     http://www.helloarm.com/Wince/160.htm

淺談WinCE應用程式的可移植 性                              http://www.helloarm.com/Wince/78.htm

詳解WinCE的控制面 板                                      http://www.helloarm.com/Wince/81.htm

Windows CE5.0 I/O操作基礎(1)                             http: //www.helloarm.com/Wince/76.htm

Windows CE5.0 I/O操作基礎(2)                             http: //www.helloarm.com/Wince/77.htm

wince中的BSP工程的pbcxml檔介 紹                         http://www.helloarm.com/Wince/190.htm

WinCE 下用DirectShow播放音頻和視 頻                       http://www.helloarm.com/Wince/137.htm

Explorer註冊表鍵值歸 納                                   http://www.helloarm.com/Wince/110.htm

WinCE 5.0 virtual memory space                           http://www.helloarm.com/Wince/138.htm

關於EVC中的預編譯頭文 件.pch                              http://www.helloarm.com/Wince/146.htm

WinCE下對文件的基本操 作                                  http://www.helloarm.com/Wince/72.htm

WinCE 在CF卡上實現冷啟動自動保存註冊表                   http://www.helloarm.com /Wince/75.htm

WinCE 驅動開發學習筆 記                                   http://www.helloarm.com/Wince/73.htm

讓程式在WinCE系統啟動時自動運行-兩種方法                 http://www.helloarm.com /Wince/74.htm


-------------------------------------------------------------------------------------------------------------------------

UCOS-II作業系統

UC/OS和UCLinux比較                                      http: //www.helloarm.com/ucos/98.htm

μC/OS-II的即時性能分析                                 http: //www.helloarm.com/ucos/161.htm

μC/OS-II的多工系統即時性分析與優先順序分配             http://www.helloarm.com/ucos /90.htm

μC/OS-II下通用驅動框架的設計與實現                     http://www.helloarm.com /ucos/103.htm

UC/OS II多工切換常式                                  http: //www.helloarm.com/ucos/96.htm

基於μC/OS-II的時間片調度法設計                         http://www.helloarm.com /ucos/94.htm

ucos II+ucGUI+s3c2410+LCD+觸摸屏整 合                    http://www.helloarm.com/ucos/89.htm

LPC2292的μC/OS-II硬體抽象層構建                        http: //www.helloarm.com/ucos/97.htm

-----------------------------------------------------------------------------------------------------------------------------

UCOS移植篇

uC/OS-II即時操作系統在嵌入式平臺上進行移植的方法與技巧  http://www.helloarm.com/ucos/86.htm

基於Nios軟核CPU的uC/OS-II和LwIP移植                     http: //www.helloarm.com/ucos/85.htm

μCOS-II在ATmega128單片機上的移植與開發                 http://www.helloarm.com /ucos/104.htm

μC/OS-II在Cortex-M3系列單片機上的移植                  http://www.helloarm.com /ucos/92.htm

uC/OS II在S3C2410上的移植                               http: //www.helloarm.com/ucos/79.htm

uCOS II在SkyEye上的移植分 析                             http://www.helloarm.com/ucos/68.htm

------------------------------------------------------------------------------------------------------------------------------

經典案例分析

即時內核μC/OS-II下的網路監控系統的設計                http://www.helloarm.com/ucos /99.htm

基於uC/OS-II的MP3檔播放系統設計                     http://www.helloarm.com /ucos/82.htm

基於ARM和μC/OS-II的人造提花毛皮機控制系統            http://www.helloarm.com/ucos /100.htm

基於uC/OS-II的智慧窗系統設計                          http://www.helloarm.com /ucos/83.htm

uC/OS-II在電能計量電錶中的應用研究                     http://www.helloarm.com /ucos/80.htm



--------------------------------------------------------------------------------------------------------------------------------
上次的帖子:

因為資料較多,先整理這一部分,後續還會完善並相繼推出ARM11 6410專區,以便大家學習交流。

    如果這個帖子對您有幫助,煩請各位頂貼,小弟先謝謝了O(∩_∩)O

(一)2440專區:
優秀論壇專區:
第一:http://www.ourdev.cn/bbs/
第二:http://community.csdn.net/
第三:http://***.cn/bbs/
第四:http://www.witech.com.cn/bbs/
第五:http://www.helloarm.com/
轉帖專區:
【轉貼】2440使用常見問題解析: http://bbs.witech.com.cn/thread-353-1-1.html
【轉帖】讓您愛不釋手的專業串口調試軟體:http://bbs.witech.com.cn/thread-282-1-1.html
【轉帖】嵌入式入門筆記 :http://bbs.witech.com.cn/thread-272-1-1.html
【轉帖】軟硬體協同設計技術:http://bbs.witech.com.cn/thread-315-1-1.html
【轉帖】北大嵌入式開發講義:http://bbs.witech.com.cn/thread-321-1-1.html
【轉帖】Windows CE開發初步:http://bbs.witech.com.cn/thread-235-1-1.html
下載專區:
【PDF下載】飛淩2440開發板技術手冊:http://blog.sina.com.cn/s /blog_6536a9450100hq1y.html
【PDF下載】JLINK用戶手冊:http://blog.sina.com.cn/s /blog_6536a9450100hq1y.html
【PDF下載】攝像頭晶片DATASHEET: http://blog.sina.com.cn/s /blog_6536a9450100hq1y.html
【RAR下載】UCOS-II:http://blog.sina.com.cn/s/blog_6536a9450100hq1y.html
【PPT下載】ARM相關:http://bbs.witech.com.cn/thread-391-1-1.html
【PPT下載】Linux相關:http://bbs.witech.com.cn/thread-391-1-1.html
圖文專區:
【源碼文章】Bootloader源碼: http://blog.sina.com.cn/s /blog_6536a9450100hpw1.html
【源碼文章】2440下的流水燈實驗:http://blog.sina.com.cn/s /blog_6536a9450100hpw3.html
【源碼文章】2440下的CAN匯流排實驗:http://blog.sina.com.cn/s /blog_6536a9450100hpw7.html
【源碼文章】2440下的fork實驗:http://blog.sina.com.cn/s /blog_6536a9450100hpw7.html
【源碼文章】2440下的IIC實驗:http://blog.sina.com.cn/s /blog_6536a9450100hpwb.html
【源碼文章】2440下的看門狗實驗:http://blog.sina.com.cn/s /blog_6536a9450100hpwb.html
【源碼文章】2440下的USB實驗:http://blog.sina.com.cn/s /blog_6536a9450100hpwf.html
【源碼文章】2440下的觸摸屏測試:http://blog.sina.com.cn/s /blog_6536a9450100hq1y.html
【源碼文章】2440下的溫度感測器:http://blog.sina.com.cn/s /blog_6536a9450100hpwi.html
【源碼文章】Linux檔系統移植詳解:http://blog.sina.com.cn/s /blog_6536a9450100hq1u.html
【源碼文章】Linux內核移植詳解1:http://blog.sina.com.cn/s /blog_6536a9450100hisp.html
                       
            Linux內核移植詳解2:http://blog.sina.com.cn/s /blog_6536a9450100hisp.html

視頻專區:
【線上視頻】《嵌入式系統綜述》:http://www.tudou.com/programs/view/KL0y2VqgZOs/
【線上視頻】《嵌入式學習基礎》:http://www.tudou.com/programs/view/W6XpvmGZfG4/
【線上視頻】《嵌入式環境》:http://www.tudou.com/programs/view/W6XpvmGZfG4/
【線上視頻】《嵌入式BootLoader》:http://www.tudou.com/programs/view/1kY_23UccC0 /
【線上視頻】《嵌入式ARM學習-上》:http://www.tudou.com/programs/view/BWy4tXo4o5A/
            《嵌入式ARM學習-下》:http://www.tudou.com/programs/view /dFxXjq8nEm0/
【線上視頻】《嵌入式ARM精華理論》:http://www.tudou.com/programs/view/dFxXjq8nEm0/