coding最新書籤


Icon_arrow_right 814 天前 
1165783

医療事務なび Popup

医療事務なび Popup

亜琴 收藏於 2010/03/07
It is an information site for the person who wants to work as a medical coding. It introduces information such as the examination, qualifications, and the schools of the medical coding.

It is an information site for the person who wants to work as a medical coding. It introduces information such as the...    繼續閱讀...

It is an information site for the person who wants to work as a medical coding. It introduces information such as the...繼續閱讀
Icon_arrow_right 892 天前 
Image-not-available

jPlurk v2 beta - Plurk Official API in Java Popup

jPlurk v2 beta - Plurk Official API in Java Popup

原文來自 Askeing
Askeing 收藏於 2009/12/20
jPlurk v2 beta - Plurk Official API in Java。 噗浪官方API於Java上的實做。
Icon_arrow_right 1076 天前 
Image-not-available

The Old New Thing Popup

The Old New Thing Popup

小浣熊 收藏於 2009/06/19
關於Win32 API的部落格,可翻到不少關於Win32的pitfall
Icon_arrow_right 1077 天前 
Image-not-available

Optimization Manuals Popup

Optimization Manuals Popup

小浣熊 收藏於 2009/06/18
This series of five manuals describes everything you need to know about optimizing code for Intel and AMD microprocessors. 1. Optimizing software in C++: An optimization guide for Windows, Linux and Mac platforms 2. Optimizing subroutines in assembly language: An optimization guide for x86 platforms 3. The microarchitecture of Intel and AMD CPU’s: An optimization guide for assembly programmers and compiler makers 4. Instruction tables: Lists of instruction latencies, throughputs and micro-operation breakdowns for Intel and AMD CPU's 5. Calling conventions for different C++ compilers and operating systems

Suggest this bookmark to those who want to do code optimization. I have read the first document, Optizing software ...    繼續閱讀...

Suggest this bookmark to those who want to do code optimization. I have read the first document, Optizing software ...繼續閱讀
Image-not-available

Pointers to C++ Member Functions Popup

Pointers to C++ Member Functions Popup

小浣熊 收藏於 2009/06/18
Do you know how to use a function pointer pointing to your C++ member function. To declare a pointer to member function, you give the prototype of a function it can point to, and you dereference a member function pointer by using .* or ->*. Here is a simplest example, double (Foo::*funcPtr)( long ) = &Foo::One; double result =(aFoo.*funcPtr)(2); For more information, please visit http://www.goingware.com/tips/member-pointers.html
Image-not-available

How to make memcpy inline? Popup

How to make memcpy inline? Popup

小浣熊 收藏於 2009/06/18
Ever wondered how to make function calls for memset, memcpy etc inline. It’s quite easy, you can use #pragma intrinsic directive to tell the compiler to inline calls to above functions. Check out this link for a list of native functions which can be made inline with this compiler directive.

You can look up gcc manual for the description of "-fno-builtin" for GCC    繼續閱讀...

You can look up gcc manual for the description of "-fno-builtin" for GCC繼續閱讀
Image-not-available

C declaration Popup

C declaration Popup

小浣熊 收藏於 2009/06/18
Do you know the meaning of the following declaration? 1. int (*pfa)()[]; 2. int *(*pap)[]; How to observe it illegal within 1 seconds. A simple way is introduced in this article.

This is also known as "right-left walk method". you can find a PDF version in http://www.cs.uml.edu/~canning/101/RL...    繼續閱讀...

This is also known as "right-left walk method". you can find a PDF version in http://www.cs.uml.edu/~canning/101/RL...繼續閱讀
Icon_arrow_right 1141 天前 
1133545

PushLURK 未來預計功能、替書籤按鈕加上圖示 Popup

PushLURK 未來預計功能、替書籤按鈕加上圖示 Popup

原文來自 Askeing
Askeing 收藏於 2009/04/14
自從上一次 PushLURK 更新之後,陸續做了一些小更新。主要都是針對更改快速且必要性比較高的部份。此外,也整理了一些未來希望能加入的 Todo List。 另外,把 PushLURK 的按鈕加上圖示。
Icon_arrow_right 1260 天前 
1111966

Flickr 無名 Pixnet BS2 相簿瀏覽器 (FireFox 使用限定) Popup

Flickr 無名 Pixnet BS2 相簿瀏覽器 (FireFox 使用限定) Popup

原文來自 晴悠君
晴悠君 收藏於 2008/12/17
[功能] 瀏覽無名相簿時,預先一次下載所有原始尺寸的照片(寬頻網路就是要這樣用!)。 接著,當滑鼠移到某張照片縮圖上,即以浮動視窗瞬間秀出大尺寸的原始照片,滑鼠移開,浮動視窗就消失。 從此看相簿不用再點半天、開一堆視窗、不用再一張一張等待照片下載!

作者自薦,之前發表在ptt,反應不錯,分享給大家用囉。    繼續閱讀...

作者自薦,之前發表在ptt,反應不錯,分享給大家用囉。繼續閱讀
Icon_arrow_right 1326 天前 
1006882

C# 編碼規範(Coding Standard)參考文件 Popup

C# 編碼規範(Coding Standard)參考文件 Popup

原文來自 Will 保哥
Will 保哥 收藏於 2008/10/12

我長久一來一直苦惱於不知道如何訂定 C# 編碼規範(Coding Standard),雖然很久以前我就有看到微軟的開發類別庫的設計方針文件,不過內容過於嚴謹,況且我們的工程師大多是開發 ASP.NET 居多,並不常開發類別庫(Clas...    繼續閱讀...

我長久一來一直苦惱於不知道如何訂定 C# 編碼規範(Coding Standard),雖然很久以前我就有看到微軟的開發類別庫的設計方針文件,不過內容過於嚴謹,況且我們的工程師大多是開發 ASP.NET 居多,並不常開發類別庫(Clas...繼續閱讀
Icon_arrow_right 1331 天前 
1006882

SQL Server 資料庫系統開發指引文件 Popup

SQL Server 資料庫系統開發指引文件 Popup

原文來自 Will 保哥
Will 保哥 收藏於 2008/10/06
SQL Server 資料庫系統開發指引文件

最近在 Pinal Dave 的部落格看到一片蠻不錯的文章:SQL SERVER Database Coding Standards and Guidelines Complete List Download,這篇文章其實是一份 Pi...    繼續閱讀...

最近在 Pinal Dave 的部落格看到一片蠻不錯的文章:SQL SERVER Database Coding Standards and Guidelines Complete List Download,這篇文章其實是一份 Pi...繼續閱讀
Icon_arrow_right 1378 天前 
1073166

以數學的原理處理 "四捨五入" Popup

以數學的原理處理 "四捨五入" Popup

原文來自 citypig
citypig 收藏於 2008/08/21

以四捨五入取整數的例子來講,其原理就是: 任何數值+0.5 再取整數。    繼續閱讀...

以四捨五入取整數的例子來講,其原理就是: 任何數值+0.5 再取整數。繼續閱讀
Icon_arrow_right 1389 天前 
1052977

MySQL 處理字元編碼的一些心得 Popup

MySQL 處理字元編碼的一些心得 Popup

原文來自 citypig
citypig 收藏於 2008/08/10

因為我在寫程式所用的到的 MySQL,同時有 3.x 版及 5.x 版要處理,所以對 MySQL 的字元編碼問題需要特別做研究,研究了一陣子之後,終於有了一些初步的心得,列出舊版及新版的 MySQL 做為比較    繼續閱讀...

因為我在寫程式所用的到的 MySQL,同時有 3.x 版及 5.x 版要處理,所以對 MySQL 的字元編碼問題需要特別做研究,研究了一陣子之後,終於有了一些初步的心得,列出舊版及新版的 MySQL 做為比較繼續閱讀
Icon_arrow_right 1401 天前 
767399

生命親系譜: 一邊一國 Popup

生命親系譜: 一邊一國 Popup

無差別 收藏於 2008/07/29
我於是常在想,到底問題出在哪裡?這真的有那麼難懂嗎?我想,也許問題是出在人們很可能根本不知道 C 有著無限的意義,他以為當你講到香蕉時,香蕉就只有一種意義。 可是,不要說香蕉,即便是一粒沙也有著無限的意義。 再回到之前講的那段話:「即便描述一粒再單調也不過的沙子,也有著無數種描述的可能性,它永遠無法徹底。因為我們可以有無數種『看的方式』,而『看』並不是一種命題性(propositional)或語言性(linguistic)的東西。」 所謂「看」,就是一種「觀點」(point of view),一種「看事情的方式」(way of seeing)。一個平面或一個線條或一個三度空間,會有幾個點,這應該不用說了,可是,當我們像喊口號一樣老是喊些什麼「多元社會」時,我很懷疑他們真的明白自己在講什麼,因為從他們的言行中就可以看得出來,他們不但把非命題性的東西給降級成一種命題或一種主張,甚至降級成一個標語口號,甚至說這是唯一正確的路,甚至連你如何表達某個觀點的表達形式他也要干涉(優雅人士通常喜歡美美的溫馨,禁止人家說「髒話」。)。 我們不是常常可以看到這樣的恐怖標語嗎?「XX 是台灣唯一的活路」。當你這麼相信時,災難和衝突就來了,因為你違反了事物的本性,你把原本屬於無限的東西,給化約成僅剩一個「點」,這難道還不夠使人窒息? 我們能做的事之一,大概就是把這個降級的動作給還原回去,讓原本是詩一般、具有萬般意義的東西,還原為詩。

值得深思的問題...    繼續閱讀...

值得深思的問題...繼續閱讀
Icon_arrow_right 1411 天前 
1044057

An Online JRuby Programming Course Popup

An Online JRuby Programming Course Popup

CFC 收藏於 2008/07/19
JRuby is a 100% pure-Java implementation of the Ruby programming language. Recently, JRuby has been gaining more and more attention in the Java and Ruby communities. Java is a powerful platform and there are millions of lines of Java code being written each month, that the world will have to live with for a long time from now. By leveraging Java the platform with the power of the Ruby programming language, programmers will get the best from both worlds. You better not ignore JRuby any more!
Icon_arrow_right 1462 天前 
1016478

Iris Syntax Highlighter Popup

Iris Syntax Highlighter Popup

scribe 收藏於 2008/05/28

語法標亮網站,支援眾多程式語言,可以將語法標亮轉成HTML貼在網頁上。    繼續閱讀...

語法標亮網站,支援眾多程式語言,可以將語法標亮轉成HTML貼在網頁上。繼續閱讀
Icon_arrow_right 1463 天前 
Icon_arrow_right 1520 天前 
Icon_arrow_right 1580 天前 
934973

Nelson 的遊樂場 - [BCB] 用右鍵選擇 TreeNode 並顯示右鍵選單 :: PIXNET BLOG :: Popup

Nelson 的遊樂場 - [BCB] 用右鍵選擇 TreeNode 並顯示右鍵選單 :: PIXNET BLOG :: Popup

Nelson 收藏於 2008/02/01
假設你有一個 TreeView 叫做 tvArticle,有個 PopupMenu 叫做 PopupMenu1,你希望用右鍵可以點選 tvArticle 的節點,然後再顯示右鍵選單。 首先你要把 PopupMenu1 的 AutoPupop 屬性設為 false,然後在 tvArticle 的 OnMouseDown 事件加入以下程式碼。
Icon_arrow_right 1582 天前 
Icon_arrow_right 1615 天前 
911333

Rails 2.0 新特性介紹 (Javaeye Robbin翻譯) Popup

Rails 2.0 新特性介紹 (Javaeye Robbin翻譯) Popup

CFC 收藏於 2007/12/27
萬眾矚目的Ruby on Rails 2.0已經發佈了,Rails框架在2004年誕生以來,一直保持著相當快的版本升級速度:2005年發佈了Rails1.0版本,2006年初發佈 Rails1.1版本,2007年初發佈Rails1.2版本,而還沒有等到2008年,在2007年聖誕前夕的12月6日,Rails2.0已經發佈。 Rails框架每個大的版本升級都給我們帶來了相當多的新功能,新驚喜。Rails1.0帶給我們完善的單元測試和集成測試;Rails1.1帶給我們DataBase Migration和RJS;Rails1.2讓我們看到了REST的光明前景,那麼Rails2.0又將帶給我們什麼呢?我粗略的翻譯了一下Rails框架作者DHH寫的Rails2.0框架介紹文章,以下翻譯自DHH的文章,原文在: http://weblog.rubyonrails.org/2007/12/7/rails-2-0-it-s-done

這是對岸的Javaeye內的文章,由Robbin翻譯Rails官方DHH所發佈的Rails 2.0誕生文    繼續閱讀...

這是對岸的Javaeye內的文章,由Robbin翻譯Rails官方DHH所發佈的Rails 2.0誕生文繼續閱讀
Icon_arrow_right 1617 天前 
910405

[好網站] CSS Text Wrapper - 輕鬆排列你的文字 @ Nelson 的遊樂場 ::PIXNET 痞客邦:: Popup

[好網站] CSS Text Wrapper - 輕鬆排列你的文字 @ Nelson 的遊樂場 ::PIXNET 痞客邦:: Popup

Nelson 收藏於 2007/12/26
CSS Text Wrapper 是一個線上服務,它讓你透過所見即所得的方式去設定文字排版,看過以下的教學就知道怎麼用了。

我試了一下,在我的 Ubuntu 7.10 + Firefox 無法使用它的所見即所得工具 :-(    繼續閱讀...

我試了一下,在我的 Ubuntu 7.10 + Firefox 無法使用它的所見即所得工具 :-(繼續閱讀
Icon_arrow_right 1619 天前 
[推薦] 點點印,把你的照片變成寫真書/照片書!
[2012] 做自己的畢業紀念冊畢業禮物推薦

這些內容是怎麼產生的?

黑米沒有編輯,所有內容都是使用者貢獻。網站每天會分析最近最多人收藏的書籤,越多人收藏,排在越上面。綠色的數字代表收藏推薦的人數。

書籤心得

需要幫忙嗎?
黑米小工具

黑米數位版權所有 Copyright© 2006-2008 HEMiDEMi. All Rights Reserved.