Multicast 技術介紹(相關Portocol皆有介紹)
http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html_single/Multicast-HOWTO.html
IP Multicast技術簡介
http://ntrg.cs.tcd.ie/undergrad/4ba2/multicast/
Content Distribution Resources
http://www.cs.huji.ac.il/labs/danss/p2p/resources.html
一個Reliable Multicast的Toolkit
http://www.jgroups.org/index.html
RML- a free Reliable Multicast Library
http://www.land.ufrj.br/tools/rmcast/rmcast.html
一個 IP Multicast 的產品
http://www.streaming21.com/printpage.cfm?pageID=6
2010年2月24日
2010年2月17日
台大資訊所行動雲端運算課程內容投影片
前往MMDays部落格的這篇文章
http://mmdays.com/2009/11/20/cloud_computing_and_mobile_platforms/
就可以看到作者提到
台大資訊所行動雲端運算課程的敘述,
重要的是這篇文章可以下載Google葉平老師第一堂Overview的投影片講義檔案,
內容真是豐富紮實, 看了以後覺得受益很多, 但是自己一時也還看不完(103頁!)...
可參考上述網頁(http://mmdays.com/2009/11/20/cloud_computing_and_mobile_platforms/)中如下的圖示位置:
http://mmdays.com/2009/11/20/cloud_computing_and_mobile_platforms/
就可以看到作者提到
台大資訊所行動雲端運算課程的敘述,
重要的是這篇文章可以下載Google葉平老師第一堂Overview的投影片講義檔案,
內容真是豐富紮實, 看了以後覺得受益很多, 但是自己一時也還看不完(103頁!)...
可參考上述網頁(http://mmdays.com/2009/11/20/cloud_computing_and_mobile_platforms/)中如下的圖示位置:
貼原始程式碼到網頁的必備工具網站
提供"Format My Source Code for Blogging"這個網站
http://formatmysourcecode.blogspot.com/
可以用來將要貼上部落格的Source Code格式化成HTML的版本供網頁使用.
例如上一篇文章貼了一段strtok( )函數的程式範例,
才發現碰到了困難:
1. #include 後面的"<" 與 ">"敘述都不能直接貼.
2. 連"|"字元也會無法顯示.
3. 行與行之間多了空白行.
後來就是要用上述的網站提供轉換後的html格式來轉貼,
才解決程式碼貼網頁的問題, 非常方便!
http://formatmysourcecode.blogspot.com/
可以用來將要貼上部落格的Source Code格式化成HTML的版本供網頁使用.
例如上一篇文章貼了一段strtok( )函數的程式範例,
才發現碰到了困難:
1. #include 後面的"<" 與 ">"敘述都不能直接貼.
2. 連"|"字元也會無法顯示.
3. 行與行之間多了空白行.
後來就是要用上述的網站提供轉換後的html格式來轉貼,
才解決程式碼貼網頁的問題, 非常方便!
C語言取出token或字串的最簡單程式碼
就是用strtok這個標準的C函數, 範例如下:
#include <stdio.h>
#include <string.h>
int main(int argc,char **argv)
{
char * buf1="aaa, ,a, ,,,bbb-c,,,ee|abc";
/* Establish string and get the first token: */
char* token = strtok( buf1, ",-|");
while( token != NULL )
{
/* While there are tokens in "string" */
printf( "%s ", token );
/* Get next token: */
token = strtok( NULL, ",-|");
}
return 0;
}
訂閱:
文章 (Atom)