Monday, November 26, 2007

Server-Side Include in Apache

(Nov 26, 2007)

I tried using server-side include (SSI) feature in Apache 2.2.6. I followed all steps in its documents. These are:
1. use Options +Include in
2. use AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
within mime_module (just uncomment these two lines in httpd.conf)
3. use an include element, such as

However, it turned out that my stuff did not work. I spent about two hours to figure this out. Finally, I knew that .shtml did not mean a file to be included., but .shtml meant a file that included other files. Namely, I just renamed a 'master' file, menu.html, to menu.shtml, and every thing worked fine.

Moreover, a file to be included can be .html, no need to make it .shtml.

Note: although it is possible that we can allow .html to be a master file in the same way by adding AddOutputFilter INCLUDES .html, I will not do this since 3rd party server may not allow us to do this (I think it might slow down the web server).

Friday, November 23, 2007

หัดใช้ SSE

(Nov 23, 2007) (Thanksgiving Night)

Today, I tried using vector instructions (SSE2 to be specific) in Visual C++ 2003. There are something worth noting:
1. we might always want to use _mm_malloc( data_size, 16 ) in place of new operator to make sure that our dynamically array will be aligned at 16 bytes (this is a restriction for many operations in SSE2; otherwise we will get memory exception). More details can be found at http://www.x86.org/articles/sse_pt3/simd3.htm and http://www.tacc.utexas.edu/resources/user_guides/intel/c_ug/linux117.htm

Remember that, to free the allocated memory, use _mm_free.

2. For those using Visual C++, they have alternatives when they want to aligned data. For example,
__declspec(align(16)) float m_fArray[ARRAY_SIZE];

and
m_fArray = (float*) _aligned_malloc(ARRAY_SIZE * sizeof(float), 16);

Please see more info at http://www.codeproject.com/cpp/sseintro.asp

3. As can be seen from 2, it is desirable to align our floating-point array as well since this will allow us to cast-and-use the floating-point array.

4. There are interesting classes which are suitable for vector instructions: vector3D and 4x4 Matrix. Please see http://www.x86.org/articles/sse_pt3/simd3.htm (near the page bottom).

More may be available at http://www.codeproject.com/useritems/SSE_optimized_2D_vector.asp (see the source code package).

5. Examples in using add, mul, and sqrt via SSE: http://www.codeproject.com/cpp/sseintro.asp

6. memcpy and _mm_loadu_ps will play an important role to increase speed for convolution since SSE needs to align data at 16 bits, but we want to move convolution window little by little (4 bytes). However, if we interleavedly process data, we need to perform memory move / copy only four times. This should be good for performance improvement.

There is a website about fast factor 2 resampling using SSE at http://mail.gnome.org/archives/beast/2006-March/msg00001.html. I don't know if it does show something related to my convolution problem, but I will one day take a look at it seriously.



7. Very simple example of SSE in GCC: http://www.tuleriit.ee/progs/rexample.php

Thursday, November 08, 2007

Deprecated String-Conversion Macro

(Nov 8, 2007)

Today, I spent a lot of time trying to nicely rid of some warning messages:
warning C4995: 'gets': name was marked as #pragma deprecated
warning C4995: 'sprintf': name was marked as #pragma deprecated
warning C4995: 'vsprintf': name was marked as #pragma deprecated
warning C4995: 'strcat': name was marked as #pragma deprecated
warning C4995: 'strcpy': name was marked as #pragma deprecated
warning C4995: 'swprintf': name was marked as #pragma deprecated
warning C4995: 'vswprintf': name was marked as #pragma deprecated
warning C4995: 'wcscat': name was marked as #pragma deprecated
warning C4995: 'wcscpy': name was marked as #pragma deprecated

These seems to happen when I try to employ some ATL stuff along with its string conversion features in Visual C++ 2005. Although, I used ATL 7.0 which should not be deprecated, these warning messages still haunted my compile message.

For some unknown reasons, I found that including iostream would automatically be removed. I don't know why, but it does do a trick.

Update: these warning occurs because those deprecated functions are called internally in conversion macros. If we include iostream, some function calls in these macros may be different. Also note that if we explicitly call those deprecated functions, including iostream will do nothing, and we need to explicitly use secured functions, such as sprintf_s instead.

Thursday, October 25, 2007

ITK กับโครงสร้างการพัฒนาซอฟต์แวร์เสรี

(Oct 25, 2007)

ได้ไปเยี่ยมชมเว็บ ITK เพื่อดูความสามารถของชุดเครื่องมืออันนี้ พบว่ามันเป็นเครื่องมือที่น่าสนใจมากทั้งในแง่ของความสามารถ ระบบการพัฒนาแบบเปิด และ ลิขสิทธ์ที่เลือกใช้ แต่จุดที่จะพูดในบล็อกนี้ก็คือเรื่องโครงสร้างการพัฒนาซอฟต์แวร์เสรีที่เค้าใช้ และเครื่องมือในการพัฒนาต่างๆ

จากการสังเกตพบว่าทางองค์กรที่จัดตั้งขึ้นมาเพื่อดูแลเรื่องนี้ มีจุดมุ่งหมายที่ผูกไว้กับโครงการที่ค่อนข้างใหญ่คือ The Visible Human Project ทำให้เป้าหมายในการพัฒนาค่อนข้างชัดเจน พร้อมๆกับสามารถเอื้อประโยชน์ให้กับโครงการอื่นที่ต้องการทำอะไรคล้ายๆกันด้วย นอกจากนี้ทางฝ่ายพัฒนาก็ยังได้เลือกใช้เครื่องมือต่างๆ รวมถึงวิธีการเขียนโปรแกรมที่เปิดโอกาสให้มันสามารถใช้งานได้แทบจะในทุกแพล็ตฟอร์ม นับตั้งแต่เรื่องของ multi-threading ที่เลือกใช้ POSIX การพยายามใช้ generic programming ให้มากที่สุดทำให้เป็นไลบรารีที่ยืดหยุ่นมาก การใช้ Doxygen เพื่อสร้างเอกสารของนักพัฒนา การใช้ CMAKE เพื่อให้คนอื่นเอาไปคอมไพล์เองบนแพลตฟอร์มที่ต้องการได้ไม่ยากนัก การใช้ Dart เพื่อทดสอบและรักษาคุณภาพของซอฟต์แวร์ ตลอดจนการใช้ Mantis เป็นตัวตัดตามข้อผิดพลาดและปัญหาต่างๆ ในซอฟต์แวร์ (หลายตัวมีกล่าวถึงไว้ในหน้า Related Software)

เราคิดว่ามันน่าจะเป็นสิ่งที่ดีที่เราจะศึกษาไว้เพื่อที่จะสร้างซอฟต์แวร์เสรีที่ค่อนข้างจะซับซ้อน และต้องอาศัยความร่วมมือจากหลายๆ ฝ่าย วิธีที่ ITK ใช้อยู่น่าจะเป็นหนึ่งในทางเลือกที่ดีที่จะทำให้โครงการอยู่รอดและก้าวหน้าไปสร้างประโยชน์สืบๆ ไปได้ในระยาว

Friday, September 21, 2007

Precompiled header does not exist

Friday Sep 21, 2007

I wasted about 20 minutes to figure out how to solve this compile error: precompiled header does not exist. I performed rebuild the entire solution with the hope that the precompiled header will be recreated.

Finally, I found that we could explicitly tell Visual Studio to create a precompiled header as shown in the figure below. After a successful compilation, Visual Studio will automatically change the 'Create' option to 'Use' option instead.

Sunday, September 16, 2007

Visual C++ and LNK2005 Problem

Sep 16, 2007

Today, I badly got strucked with LNK2005 error in Visual C++. According to linking error messages, it was a conflict between nafxcwd.lib and uafxcwd.lib. This issue will arise if one module (library or executable) "Use Unicode Character Set" and another "Use Multi-Byte Character Set".

It is important to note that LNK2005 normally arises because of two or more projects are set differently. There are two spots worth looking:

1. General Setting
2. Code Generation Setting

Notice that there is nothing to do with linking setting, although this issue is linking problem.

More info at:
http://www.velocityreviews.com/forums/t285209-lnk2005error-in-visual-c-v-60.html
http://support.microsoft.com/kb/q148652/

Saturday, September 15, 2007

LaTex Equation Editor on the web

Sep 15, 2007

There is an interesting work on the web, and it's free. It is LaTex Equation Editor, http://test.izyba.com/equationeditor/equationeditor.php. This tool creates an image with transparent background, making it easy to embed in other software such as MS PowerPoint.

The drawbacks are:
1. Text in the equation cannot be changed. If we need white text, we will find ourselves in trouble.
2. Text size is a bit too small. I like it bigger in many situations.

Note: if you know a way to handle these problems, please leave a comment in this blog.
Many thanks

Update (Oct 28, 2007): I found a better one. It is Roger's Online Equation Editor at http://rogercortesi.com/eqn/index.php#note. It can generate transparent background. Plus, we can increase resolution of an output to suit our work.

Texmaker: Free cross-platform LaTeX editor

Sep 15, 2007

Texmaker (http://www.xm1math.net/texmaker/) seems to be a very good LaTex editor tool. I used it once a long time ago. It's pretty impressive, and I think it is better than TeXnicCenter (http://www.texniccenter.org/). The tool has no more update for more than a year). However, Texmaker does not have some cool features in WinEdt such as DVI search.

FYI: DVI search is a feature in WinEdt helping a user to find a portion in DVI document corresponding to a target text in the editor. You can try it by ctrl-shift-s in a WinEdt editor. If your DVI file is open, it will jump to the corresponding text.

FYI: there is a forum about LaTex and its editors at forum http://latex-community.org/. This forum has dedicated sections for TeXnicCenter, Texmaker, and WinEdt. Sounds interesting.

Aurora: Embedding LaTex Math into MS Office

Sep 15, 2007

A few days ago, I found an interesting (but not free) tool for embedding LaTex Math into MS PowerPoint. Its name is Aurora, http://elevatorlady.ca/. Interestingly, this tool works in other MS Office tools, including Word, Excel, and Visio.

I have not tried it yet, but I will surely take a look at it when I have more time.

Sunday, September 09, 2007

ว่าด้วยเรื่องของ JFileSync

JFileSync เป็นโปรแกรมที่ทำการ synchronize file บนสองไดเรกทอรีแบบง่ายๆ มีการเปรียบเทียบให้เห็นความเก่าใหม่ของไฟล์ที่เข้าใจง่าย ตอนนี้พึ่งลองใช้บน Windows XP 32 bits ก็คงยังวิจารณ์อะไรไม่ได้มาก แต่ที่สังเกตเห็นก็คือ มันไม่รองรับการติดต่อไปที่ remote file ที่ไม่ใช่้ JFileSync server ทำให้เราต้องแม็พไดรฟ์ก่อนทุกคราไป

ยังไงก็ตามด้วยความง่ายและเพียงพอต่อความต้องการเราก็พบว่ามันน่าพอใจแล้วสำหรับซอฟต์แวร์ฟรีตัวนี้
http://jfilesync.sourceforge.net/

Wednesday, August 08, 2007

การใช้ฟอนต์ที่ลิขสิทธิ์ไม่ได้ติดมากับวินโดวส์

(Aug 8, 2007)

การจะใช้ฟอนต์ไทยในระบบปฏิบัติการอื่นนั้น แต่ก่อนเรามักจะคัดลอกฟ้อนต์จากวินโดวส์ไปใส่ ซึ่งหากเราไม่ได้มีวินโดวส์อย่างถูกกฎหมาย การคัดลอกฟอนต์ก็มักจะไม่ถูกกฎหมายตามไปด้วย วิธีแก้ปัญหานี้ก็คือใช้ฟอนต์ไทยที่ได้เค้าแจกให้เราใช้กันได้อย่างอิสระ เช่น ฟอนต์จากเนคเทค และ http://f0nt.com/ (หลังตัว f ที่จริงเป็นเลขศูนย์ ไม่ใช่ตัวโอ) เป็นต้น

ส่วนเรื่องที่จะเขียนในที่นี้ จะเจาะจงการใช้ฟอนต์การูด้า (Garuda) ซึ่งเป็นฟอนต์ที่หน่วยงานราชการไทยเลือกใช้ และฟอนต์ Tlwg Typist ซึ่งเป็นฟอนต์แบบความกว้างคงที่ทั้งสองภาษา (ใช้งานได้ฟรีเช่นกัน) และเราก็สามารถไปดาวน์โหลดได้จาก http://linux.thai.net/ (ดูตรงหัวข้อ ThaiFonts-Scaleable)
หลังจากทดลองใช้ในการพิมพ์ในไมโครซอฟต์เวิร์ดดูก็พบว่า ขนาดฟ้อนต์การูด้าที่ควรใช้คือ 12 เพราะขนาดจะกำลังค่อนข้างใหญ่ อ่านง่าย ดูเป็นมิตร แต่ถ้าต้องการให้มันดูเป็นวิชาการมากขึ้นก็ควรลดขนาดลงเหลือ 10 ส่วนขนาดฟอนต์ของ Tlwg Typist นั้นถ้าจะให้จับคู่กับการูด้าขนาด 12 ก็ควรจะเป็นขนาด 14 เพราะฟอนต์ Tlwg Typist นั้นเล็กกว่าการูด้าเล็กน้อย (ประมาณสองจุด) และถ้าจะให้จับคู่กับฟอนต์การูด้าขนาด 10 ก็ควรจะเลือกใช้ฟอนต์ Tlwg Typist ขนาด 12

สำหรับการเซ็ตขนาดฟอนต์เพื่อใช้พิมพ์ในเวิร์ด เราก็ควรทำในลักษณะรูปแบบแม่แบบ (Template Style) ซึ่งก็ทำได้จาก Format->Styles and Formatting จากนั้นก็ให้เลือก New Style ... และกำหนดให้ Save to Template เพื่อสร้างรูปแบบแม่แบบที่ต้องการไว้ใช้ในคราวต่อๆไปด้วย

สำหรับการเซ็ตขนาดฟอนต์เพื่อใช้พิมพ์ในโอเพนออฟฟิศ เราควรตรวจดูก่อนว่า CTL ที่เห็นเป็นภาษาไทยหรือเปล่า ซึ่งทำได้ที่ Tools->Options::Language Setting->Languages เมื่อทุกอย่างพร้อมแล้วก็ให้ไปที่ Tools->Options::OpenOffice.org Writer->Basic Fonts (CTL) นอกจากนี้หากเราต้องการตั้งค่าต่างๆให้เป็นรูปแบบแม่แบบเช่นเดียวกับที่ทำในเวิร์ด เราก็ทำได้ที่ Format->Styles and Formatting ที่แถบเมนูข้างบนในลักษณะเดียวกับที่เราทำในเวิร์ด

Wednesday, May 30, 2007

Adobe Contribute 3 and PSAPI.DLL problem

I installed Windows XP Professional x64 and Adobe/Macromedia Studio 8. It turned out that I could not run Contribute 3 successfully. It said something about entry point in PSAPI.DLL. According to Adobe (http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=fc6e9ff5), this problem comes from Internet Explorer 7, we need to get psapi.dll from C:/Windows/System32 and place it to Contribute directory.

Monday, April 16, 2007

valarray problem in Visual Studio

(Apr 16, 2007)

I tried to use valarray in Visual Studio and got some compile errors and warnings:
"warning C4003: not enough actual parameters for macro 'min'
warning C4003: not enough actual parameters for macro 'max'

error C2059: syntax error : ')'
c:\Program Files (x86)\Microsoft Visual Studio .NET 2003\Vc7\include\valarray(427) : see reference to class template instantiation 'std::valarray<_ty>' being compiled

error C2334: unexpected token(s) preceding ':'; skipping apparent function body
...
"

These problem will occur only when we try to use statically linked MFC library. In http://www.codeguru.com/forum/archive/index.php/t-342787.html, Paul suggested that we need to make sure that valarray is included before afx stuff. This is because MS implements min and max macro and defines them in afx pre-compile header file. Any class that has min and max will have this problem.

However, if I switch the order, it seems that all declaration of valarray will be removed and I just got other compiler errors. It seems that the solution from Paul could not work for my situation.

After trying for a while, I finally decided to rename valarray.h to valarray_mod.h and change the function names from min and max to minimum and maximum instead.

Wednesday, March 28, 2007

Pilgrimage

ผมกับเจ้าก้องคิดว่าจะไปจาริกแสวงบุญที่วัดต่อไปนี้

1 หลวงปู่ทา วัดถ้ำซับมืด ปากช่อง
2 หลวงพ่ออุทัย วัดเขาใหญ่เจริญธรรม ปากช่อง (แผนที่ http://larndham.net/index.php?showtopic=25059)
3 หลวงปู่บุญฤทธิ์ สวนทิพย์ นนทบุรี (แผนที่ http://www.suanthip.com/contact/images/bmap.gif)
4 วัดสนามใน (ไม่รู้มีใครอยู่หรือไม่) นนทบุรี
5 วัดกระโจมทอง หลวงพ่อสุทัศน์ นนทบุรี
6 หลวงพ่อปราโมทย์ สวนสันติธรรม
7 หลวงพ่ออัครเดช (ตั๋น) วัดบุญญาวาส ชลบุรี (แผนที่ http://www.palungjit.com/club/kondee/)
8 วัดป่าอัมพวัน อ.เมือง จ. ชลบุรี เดินทางสายมอเตอร์เวย์มาจากกรุงเทพ ฯ
- ป้ายบอกทางเลี้ยวซ้ายไป อำเภอบ้านบึง
- ให้ท่านเลี้ยวซ้ายตามป้ายบอกทางถึงถนนสายบ้านบึง ประมาณ 500 เมตร จะเห็นสพานลอยคนข้ามถนน - ให้ท่านชิดขวา เลี้ยวรถกลับ ประมาณ 50 เมตร จะเห็นป้ายบอก วัดหนองรี และ วัดป่าอัมพวัน
- ขับตรงไป ประมาณ3 ก.ม มีป้ายบอกชี้ไปทางซ้าย ตรงไปอีก 2 - 3 ก.ม
- มีป้ายบอก วัดป่าอัมพวัน อ่างเก็บน้ำช่องมะเฟือง เลี้ยวขวา ไปตามเส็นทางนี้ จนสุดสาย 2 ก.ม

ชีวประวัติหลวงปู่มหาเจิม ปญฺญาพโล

(ข้อมูลได้รับการอนุเคราะห์จากที่คุณ x และคุณพงศ์โพสต์ไว้ที่ http://www.konmeungbua.com/webboard/aspboard_Question.asp?GID=8127)

ชีวประวัติหลวงปู่มหาเจิม ปญฺญาพโล

หลวงปู่มหาเจิม นามเดิม เจิม วรรณโมฬี เกิดที่บ้านหนองแหน ต.เมืองใหม่ อ.พนมสารคาม(ปัจจุบันเป็น อ.ราชสาสน์) จ.ฉะเชิงเทรา เมื่อวันที่ ๑๒ ตุลาคม พ.ศ. ๒๔๕๙ ตรงกับวันแรม ๑ ค่ำ เดือน ๑๑ ปีมะโรง บิดามีนามว่า นายหรุ่น วรรณโมฬี มารดามีนามว่า นางม้วน วรรณโมฬี มีพี่น้องทั้งหมด ๖ คน เป็นผู้ชาย ๔ คน ผู้หญิง ๒ คน ได้เสียชีวิตแล้วทั้งหมด ๕ คน ที่มีชีวิตอยู่ปัจจุบันเหลือหลวงปู่เพียงองค์เดียว

การศึกษาของหลวงปู่ในวัยเด็กต้องศึกษากับวัดที่อยู่ใกล้บ้าน โดยเรียนหนังสือมูลบทบรรพกิจของพระยาศรีสุนทรโวหาร(น้อย อาจารยาง***ร)พออ่านออกเขียนได้เท่านั้น เพราะยังไม่มีโรงเรียนประชาบาลตั้งอยู่ในวัดสมัยนั้น และยังต้องย้ายออกจากบ้าน ห่างจากบิดามารดาและญาติพี่น้องมาอยู่ที่วัดตั้งแต่อายุประมาณ ๘ ขวบ

หลวงปู่ได้บรรพชาเป็นสามเฌร เมื่อปี พ.ศ. ๒๔๗๐ อายุได้ ๑๒ ขวบ กับหลวงพ่อทองซึ่งเป็นเจ้าอาวาสวัดแสนภุมมาวาส และได้อยู่กับท่าน ๑ พรรษา ในปี พ.ศ. ๒๔๗๑ หลวงปู่ได้เดินทางเข้ามาในกรุงเทพฯ และมาอยู่ที่วัดบรมนิวาส ถนนรองเมือง เขตปทุมวัน กรุงเทพมหานคร โดยคุณย่าอิ่ม รัดสกุล เป็นผู้นำมาฝากฝังกับท่านเจ้าคุณพระอุบาลีคุณูปมาจารย์ (จันทร์ สิริจันโท) และได้ญัตติเป็นธรรมยุต กับท่านเจ้าคุณพระอุบาลีคุณูปมาจารย์ อีกด้วย

การศึกษาบาลีและนักธรรม ได้เริ่มศึกษาเมื่อปี พ.ศ. ๒๔๗๑ หลวงปู่สอบบาลีไวยากรณ์ได้ที่ ๔ เมื่อปี พ.ศ. ๒๔๗๒ และ ในปี พ.ศ. ๒๔๗๗ สอบได้นักธรรมเอก และหลวงปู่ยังสามารถสอบได้เปรียญธรรม ๕ ประโยค ได้ในปีเดียวกัน

เมื่อหลวงปู่อายุครบ ๒๐ ปี บริบูรณ์ จึงได้เข้าพิธีอุปสมบทเป็นพระภิกษุ เมื่อปี พ.ศ. ๒๔๘๐ ณ พระอุโบสถวัดบรมนิวาส โดยมีพระพรหมมุนี (ติสโส อ้วน) เป็นพระอุปัชฌาย์ พระครูพินิจ วิหารการ (ขำ) เป็นพระกรรมวาจาจารย์ พระครูวินัยธรดำ เป็นพระอนุสาวนาจารย์

ปี พ.ศ. ๒๔๘๔ หลวงปู่ได้ออกปฏิบัติ โดยเดินทางขึ้นสู่ภาคเหนือ ได้จำพรรษาที่วัดเจดีย์หลวง อ.เมือง จ.เชียงใหม่ ๑ พรรษา

ปี พ.ศ. ๒๔๘๒ – พ.ศ. ๒๔๘๗ จำพรรษาที่วัดป่าโรงธรรมสามัคคี อ.สันกำแพง จ.เชียงใหม่

ปี พ.ศ. ๒๔๘๘ จำพรรษาที่วัดทิพย์วนาราม อ.แม่แตง จ.เชียงใหม่

ปี พ.ศ. ๒๔๘๙ ได้กลับมาจำพรรษาที่ วัดป่าโรงธรรมสามัคคี อีกครั้ง

ปี พ.ศ. ๒๔๙๐ ลงมาอยู่ภาคกลาง ได้ลงไปจำพรรษาที่อ่าวยาง จ.จันทบุรี เพียงรูปเดียว

ปี พ.ศ. ๒๔๙๑ ได้ไปจำพรรษาที่อ่าวหมู กับ พระอาจารย์น้อย เกตุโร อยู่ ๑ พรรษา และได้เดินทางลงไปจำพรรษาที่ปักษ์ใต้ โดยได้ไปอยู่กับหลวงปู่เทสก์ เทสรังสี (พระราชนิโรธรังสีคัมคีร์ปัญญาวิศิษฏ์) ที่จังหวัดภูเก็ต

ปี พ.ศ. ๒๔๙๕ จำพรรษาที่อ่าวลึก จ.กระบี่ กับอาจารย์พรหมมา

ปี พ.ศ. ๒๔๙๖ – พ.ศ. ๒๔๙๘ ได้อยูจำพรรษาที่คลองช่องลม อ.อ่าวลึก จ.กระบี่

ปี พ.ศ. ๒๔๙๙ กลับมาจำพรรษาที่วัดแสนภุมมาวาส อันเป็นบ้านเกิด เพื่อเยี่ยมโปรดโยมบิดา โยมมารดา

ปี พ.ศ. ๒๕๐๐ กลับลงไปภาวนาที่ภาคใต้อีกครั้ง โดยจำพรราที่อ่าวลึก จ.กระบี่ ได้ ๑ พรรษา

ปี พ.ศ. ๒๕๐๓ จำพรรษาที่วัดอรัญญบรรพต จ.หนองคาย กับหลวงปู่เหรียญ วรลาโภ (พระสุธรรมคณาจารย์)

ปี พ.ศ. ๒๕๐๔ – พ.ศ. ๒๕๐๗ จำพรรษาที่วัดเขาแก้ว จ.จันทบุรี

ปี พ.ศ. ๒๕๐๘ – พ.ศ. ๒๕๑๗ จำพรรษาที่วัดป่าคลองกุ้ง จ.จันทบุรี

ปี พ.ศ. ๒๕๑๘ กลับไปวัดเขาช่องลม อ.อ่าวลึก จ.กระบี่อีกครั้ง และได้รับแต่งตั้งให้เป็นเจ้าอาวาส จนถึงปี พ.ศ. ๒๕๑๙ – พ.ศ. ๒๕๓๑ และในระหว่างนั้นหลวงปู่ได้ปฏิเสธที่จะรับตำแหน่งเจ้าคณะจังหวัดกระบี่ และ พังงา

ต่อมาท่านได้มาอยู่ที่มูลนิธิพระอาจารย์มั่น ภูริทัตโต ซอยจรัลสนิทวงค์ ๓๗ เขตบางกอกน้อย กรุงเทพมหานคร.

เพื่อรักาอาการอาพาธ และมาพักอยู่กับ หลวงปู่เจี๊ยะ จุนโท (พระครูสุทธิธรรมรังษี) ที่วัดป่าภูริทัตตปฏิปทาราม อ.สามโคก จ.ปทุมธานี

ปี พ.ศ. ๒๕๓๓ – ปัจจุบัน หลวงปู่ได้รับอารธนานิมนต์มาเป็นประธานสงฆ์ วัดสระมงคล อ.กำแพงแสน จ.นครปฐม ซึ่งเดิมมีพื้นที่เป็นป่าช้าเก่า



ชมภาพงานฉลองอายุ ๙๐ ปี หลวงปู่มหาเจิม ปญฺญาพโล ได้ที่

www.watpa.com

ข้อความที่ 11

ล ืมบอกไปครับว่าทางไปวัดไปง่ายมากครับ คือหากไปทางนครปฐมก็ให้ไปต่อทางอ.กำแพงแสน จากนั้นวิ่งเลยไปทางสุพรรณบุรี เลยม.เกษตรกำแพงแสนไปไม่น่าถีง7-8ก.ม. สังเกตป้ายบอกว่าตลาดพงนกหรืออะไรทำนองนี้ มองทางขวามือมีแยกใกล้ๆสะพานลอยให้ไปกลับรถแล้วมาใช้เส้นทางที่ว่า วิ่งไปอีนิดหน่อยจะไปเจอแยกขวาก็วิ่งเข้าไป วัดอยู่ไม่ไกลครับจากแยกนี้ ไปง่ายไม่ยากครับ ไปกันนะครับผม ไปไหว้หลวงปู่ของพวกเรา

จากคุณ นายพงศ์ เมื่อวันที่ 28/12/2549 19:21:38


http://www.watpa.com/board_detail.asp?board_id=754

Friday, March 23, 2007

เบอร์โทรไป Airticket Agency

1. Travel plus (Atlanta)
1800-875-9988 คุณแดง

2. Airticket USA
1888-888-7157 คุณคำหล้า