跳到主要內容

發表文章

目前顯示的是 12月, 2009的文章

2010年網路趨勢--轉載

網路科技在二○一○年將有哪些變化?全球知名社群網絡資訊部落格Mashable創辦人暨執行長凱許摩爾(Pete Cashmore)鐵口直斷,網路即時互動仍將持續發燒,雲端運算發展突飛猛進,虛擬貨幣和虛擬交易可能成為生財妙方。他列舉出二○一○年十大網路趨勢: 一、網路即時互動風起雲湧 推特(Twitter)、臉書(Facebook)等社群網站帶動的網路即時互動風潮將繼續如日中天,Google Wave提供涵括即時通訊、電子郵件和維基百科等的整合服務平台,預料這類「即時滿足」服務將發揚光大。 擴增實境行動定位 它抓得住你 二、行動定位無往不利 藉由智慧型手機「無所不在」(ubiquity)運用的推波助瀾,Foursquare、Gowalla、Brightkite與Google Latitude等「行動定位資訊分享服務」蔚然成風。 三、擴增實境水到渠成 拜全球衛星定位系統之賜,加上能偵測動作方位的手機內建加速度感測器(accelerometer)日新月異,「擴增實境」(augmented reality)技術,已可將圖像與文字等虛擬資訊,與使用者感知的周遭實體環境相結合,並即時互動。 四、內容管理呼朋引伴 近年來網路遭逢的最大挑戰,莫過於資訊量大幅超越人們消化吸收的能力。臉書等提供網頁內容個人化管理服務的網站,有助於解決這項困擾。 看電影辦公不出門 手機功能多 五、雲端運算蒸蒸日上 雲端運算(cloud computing)讓網友將數位資訊儲存於網路伺服器,從任何地點都可以存取。微軟預定二○一○上半年推出免費的線上版辦公室應用程式集,Google也將推出以網路為核心的Chrome免費作業系統,雲端運算將突飛猛進。 六、電視電影風靡網路 我們觀賞的電視電影節目將有不少來自網路。目前Hulu視頻網、Boxee、Netflix的「熱酷盒子」(Roku box)、蘋果電視(Apple TV)與Epix,均已在這個市場占得一席之地。 七、聚合難題弔詭難測 智慧型手機等數位行動裝置,透過安裝應用程式與小工具,整合行車導航、電子書等諸多功能,以及衛星導航系統、電子書閱讀器等特定用途電子產品,但這類整合服務的市場前景尚不明朗。 付款遊戲網上搞定 私事全都露 八、社交遊戲欣欣向榮 臉書的「線上農場」(FarmVille)與美商藝電的「Playfish」系列等網路社交遊戲所衍生的虛擬貨幣及虛擬

[Java] HttpComponents Client (Http Client 4.0) Upload File

It use HttpClient-4.0.1, Httpmime4.0.1, HttpClient client = new DefaultHttpClient(); HttpPost httppost = new HttpPost("http://yourUploadUrl"); FileBody file = new FileBody(new File("YourLocalFile")); MultipartEntity reqEntity = new MultipartEntity(); reqEntity.addPart("image", file); httppost.setEntity(reqEntity); ResponseHandler responseHandler; responseHandler = new BasicResponseHandler(); System.out.println( client.execute(httppost,responseHandler)); it need the mime4j. you can download here .

[.Net]VB.net Code<--> C# Code

Find a useful web site. convert csharp to vb You can convert your VB.net code to C# code, Or C# code to VB.net code It's very useful for developer. Sometimes, you use VB.net to write the Application. By you find some reference code written by C# Code.. Now you will Need it.

[Flash]Color Wall : A timer sample

Use code in each Square. changeColor(); var myTimer:Timer = new Timer(1000, 0); myTimer.addEventListener(TimerEvent.TIMER, timerHandler); myTimer.start(); function timerHandler(event:TimerEvent):void { changeColor(); } function changeColor(){ var myColor:ColorTransform =square.transform.colorTransform; var r:uint=Math.random()*256; var g:uint=Math.random()*256; var b:uint=Math.random()*256; myColor.color =r*256*256+g*256+b; square.transform.colorTransform = myColor; }

[asp.net]使用ajax時發生javascript Sys未定義

在VS2005中如果使用AJAX Extensions的元件 可是卻發生java script出現 Sys未定義的錯誤 Microsoft JScript runtime error: Sys.ArgumentUndefinedException: Value cannot be undefined. 可以在Web.Config中 下面加入以下Code: <httpHandlers>       <remove verb="*" path="*.asmx"/> <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/> </httpHandlers> <httpModules> <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&