Buy Reviews
Powered by MaxBlogPress  

Archive for the ‘LinuxDev’ Category

自由軟體界的女性:來自婦女核心小組的建議

星期一, 七月 26th, 2010點閱人數:3次

聽說將近一年前,FSF為了自由軟體界的女性舉行了一場小型的高峰會來探討如何讓女性增加參與自由軟體社群,詳細探討的內容參閱http://www.fsf.org/news/summit-on-women-in-free-software

ㄚ琪一聽到這個主題,感覺就是一個棘手的事情,感覺中ㄚ琪沒有認識自由軟體界的女性說,看來不是我太孤陋寡聞,就是她們真的是保育類動物!

1.會中有討論出女性參與的障礙,以及克服這些障礙的策略,並且也分成簡單的短期方案跟複雜的長期方案,只差沒有中期的了!並且被分成:encouraging non-coding contributors(鼓勵非撰寫程式的貢獻者)、強調團隊合作而不是競爭以及一個實施的指導方案。
* http://groups.fsf.org/wiki/Womenscaucus/resources/getting…

2.那些尚未參與自由軟體的女性通常沒有感受到受邀參與自由軟體社群或專案,FSF已經確認那些正在成長的社群以及讓他們的成員可以多樣化的策略,雖然並不總是很直覺的,許多這些程序相當容易實現,維基資源仍在增長,所以我們希望有更多的資源,在不久的將來加入。

* http://groups.fsf.org/wiki/Womenscaucus/resources

3.FSF已經注意到那些對自由軟體有卓越貢獻卻能見度頗低的女性,這會使女性對自由軟體社群有偏見並影響到存留,FSF已經建構了郵件列表來公佈自由軟體演講的機會給女性。這個會議還與FSF試辦一些成功的系統,來增加女性的參與自由軟體,並且特定針對女性設定一個旅遊基金來幫助他們參與會議。讓參與捐獻容易一點,我們就能提供旅遊基金給那些不能來參加的女性,我們也建議其他自由軟體活動組織採用這項策略希望來增加女性參與的意願。

* http://lists.nongnu.org/mailman/admin/flossspeakher

4. 沒有足夠的年輕女性接觸自由軟體,中學跟高中學校是女孩們有潛在的時間跟興趣來玩弄跟嘗試新事物的時期,但是也有太多的公用電腦使用意味著使用專屬的軟體,核心小組正在制訂一項計劃,讓女孩手頭上有免費的軟體,教她們如何使用,然後好好利用這些自由軟體,我們建議主要的GNU/Linux發行版本開始開發吸引年輕女性來使用他們發行的自由軟體。
與FSF合作,核心小組將建構一個實習的位置以幫助和促進這些資源的增長和倡議。

N-Viro – Opportunity Fuels

星期五, 三月 26th, 2010點閱人數:18次

加入BlogAD

Have you heard the news? A tiny island claimed for years by India and Bangladesh in the Bay of Bengal has disappeared beneath the rising seas! It’s amazing to me because of Global warming and Global cooling. Some cool concepts I read in Go Green, Live Rich. It is important to conserve energy and shift to an alternative energy. I think it’s a good idea to get rich from waste to energy. So we can invest our money in this renewable energy technologies. Which company is good? We can see the chart as shown below:

 

And to decide whether we try out the company http://www.nviro.com.

stardict set gStarDictDataDir

星期一, 三月 8th, 2010點閱人數:29次

static void set_data_dir()
{
    //set gStarDictDataDir;
#ifdef _WIN32
    HMODULE hmod;

    if ((hmod = GetModuleHandle(NULL))==0) //取得目前 process的載入位址
        exit(EXIT_FAILURE);
    char tmp_buf[256];
    if (GetModuleFileName(hmod, tmp_buf, sizeof(tmp_buf))==0)
        exit(EXIT_FAILURE);

    gchar* buf = g_path_get_dirname(tmp_buf);
    gStarDictDataDir=buf;   
    g_free(buf);
#else
    gStarDictDataDir = STARDICT_DATA_DIR;
#endif
}

GetModuleHandle是Windows API的函式,函式庫是kernel32.dll,用來由模組名稱得到該模組的頭銜
GetModuleFileName也是Windows API的函式,函式庫是kernel32.dll,用來從已載入的模組得知該可執行檔的檔名及完整路徑

g_path_get_dirname是Glib函式庫裡雜項的實用函式,功能是取得取得檔案名稱的目錄部份。

g_free是釋放指向buf的記憶體。

這個函式的功能就是設定gStarDictDataDir的目錄,在Windows下我測到是指向C:\Program Files\StarDict,因為StarDict就是安裝在這裡!

StarDict 邁向更新路

星期一, 二月 22nd, 2010點閱人數:74次

[Linker error] undefined reference to `__cpu_features_init’

第一個碰到的問題就是這個,可以參考http://www.wretch.cc/blog/claytors/18277063,獲得解決,但是後來我有一個靈感,應該是Dev-C++的一個問題,所以嘗試用工具->檢查更新版本來安裝另外程式:

2010-02-22_144522

這個是MinGW runtime version 3.14

2010-02-22_144557

另一個是Mingw-utils。

確實是可以解決這個連結錯誤!

讀Linux驅動程式開發實戰

星期二, 一月 5th, 2010點閱人數:88次

這幾天預約到了這一本Linux驅動程式開發實戰,在啟動過程這節裡提到IO Scheduler Ancicipatory Registered(Default),我比較好奇的是課本linu版本是2.6.23.1y,我Google了一下,一般核心版本2.6.18之後就會用cfq為預設的,這也是我在我的電腦中,用Ubunut 9.10 核心版本用2.6.31-14時預設的排程,難道是自訂的,這讓我想到這個排程是否可以讓我的usb的ubuntu系統更快一點!

繼續Google後找到有人使用CFQ的排程嗎?,發現他的問題說硬碟IO變得很慢!

後面也有人提到CFS 跟 SLUB,這在課本中尚未提到,還有bfq說,不知他們說的cfq bug是否就是我在擔憂的,再看看是不是能改!

Web directories

星期三, 十二月 16th, 2009點閱人數:17次

Recently I read a book about SEO and wrote the article “各搜尋引擎的登錄網站” in Chinese. We need to know the behavior of a Web crawler is the outcome of a combination of policies:

  • a selection policy that states which pages to download,
  • a re-visit policy that states when to check for changes to the pages,
  • a politeness policy that states how to avoid overloading Web sites, and
  • a parallelization policy that states how to coordinate distributed Web crawlers.

The selection policy is important to the web crawlers because it decide how the web crawlers to search. Some crawlers start search from the popular web directories like DMOZ, Yahoo directory. So to submit our sites on web directories will get off to a good start.

Now I want to introduce  good sites to submit our sites:

http://www.jasminedirectory.com

http://www.maxdirectory.eu

On the Jasminedirectory.com you can first choose the category of your site and click it. Then click the Submit link.

2009-12-17_000101

2009-12-17_001654

 

I click the Standard Review button because it is free. And you need to fill out the form to the next. Please take notice to write in the 3rd person, for example avoid "we", "our", "my" and "your" in the description field. i feel it is strange but I obey the rules.

After some minutes You will receive a mail like this,”

Dear Sir/Madam,
We are glad to inform you that a link to http://job.achi.idv.tw
has been submitted to Max Web Directory (http://www.maxdirectory.eu/).
Your submission will be reviewed within 24 hours.
After approval and activation, your URL will be listed at:
http://www.maxdirectory.eu/computers/programming
Please consider listing your site in the following directories:
www.CannyLink.com
www.DirMania.org
www.TomDirectory.com
Advertise and get tons of backlinks to your website/services/products on thousands of blogs: http://www.payingpost.com
______________________________
Thank you,
Max Web Directory Administration Team
http://www.maxdirectory.eu/
contact@maxdirectory.eu

On the Max Web Directory it is the same as on the Jasminedirectory.com and then click “Suggest Link” link to submit. It is necessary to have a paypal account. So if you have a paypal account, you can pay to submit your site on the Max Web Directory.

2009-12-17_003020

To improve our web site’s ranking in the search engines and thus attract more visitors is worth the expense.

配置優化的原則

星期一, 十二月 14th, 2009點閱人數:5次

在設計網頁時,必須注意到:

(1)是否使用的javascript能夠在各種瀏覽軟體執行?

(2)是否能夠讓各種不同解析度的畫面都能正常顯示?

(3)是否能夠讓各種不同的瀏覽軟體都呈現最佳的畫面?

文章篇幅超過一個螢幕畫面時,最好就是做分頁!

http://www.x4labs.com/why-we-are-different.php

星期六, 十一月 14th, 2009點閱人數:49次

In Taiwan there is a strong culture of silence and inability to talk about rectile dysfunction with other people. It is difficult for me to understand the meaning when I read the page “doctor recommended penis enlargement”. Who needs the penis extender? So I continue to study the site about penis enlargement. I have to admit many English expressions and vocabulary related to the medical field is not easy for me. I only know there are two commonly used types of traction devices used for penis extenders, the modern 1 inch wide silicone comfort strap and the classic noose.  The very special technique of 1 inch wide silicone comfort strap provides persons who are receiving medical treatment from a doctor or hospital with an better level of comfort and improved blood circulation, two fundamental factors of the penis enlargement process. And I know that X4 Labs and their unique Hybrid Traction System offers patients the ability to choice which system suits them best.

What is the X4 Labs?  X4 Labs, a Canadian medical research and development business organization, has worked closely with leading male-health specialists and urologists to make the world’s first Hybrid Support System-based penis extender successful.

If you feel it is useful. You can get information from the site. And I believe the doctor can slove your problems.

圖解工作達人─Websites as graphs

星期二, 十一月 10th, 2009點閱人數:19次

看了圖解你的網站─Websites as graphsㄚ琪也到這個網站看看工作達人長怎樣,樹會慢慢的長大喔:

2009-11-10_145045

Fun Holiday Eyeglasses from Zenni

星期二, 十一月 3rd, 2009點閱人數:3次

image

This weekend I were on vacation in Kaohsiung. I surfeded Zenni’s site to check my fun holiday Eyeglasses. My sister suggested  4475 Acetate Full-Rim Frame was the coolest style  Eyeglasses from Holiday Fun Eyeglasses, New Arrivals, and $8 Prescription Zenni Glasses pages. But she said it’s not for me.  It suited the pop stars like Faye Wong. She is an icon popular in mainland China, Taiwan, Hong Kong, Singapore, Malaysia, Indonesia, Japan and to some extent in the West.