This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

วันจันทร์ที่ 8 ตุลาคม พ.ศ. 2555

รวมเว็บตรวจเช็คน้ำท่วม

ตรวจเช็คน้ำท่วม
http://203.150.226.24/  กล้องวงจรปิด
http://dds.bangkok.go.th/floodmon/index.aspx  บอกระดับน้ำ
http://203.150.230.27/FloodMap/  แผนที่
http://www.thaiflood.com/


วันอังคารที่ 11 กันยายน พ.ศ. 2555

Assertion failure: "(!"SetThreadContext failed")" Delphi 2009 Window7

bds.exe - bordbk105N.dll
---------------------------
Assertion failure: "(!"SetThreadContext failed")"
Workaround steps:
  1. Close Delphi
  2. Locate bordbk120N.dll (C:\Program Files (x86)\CodeGear\RAD Studio\6.0\bin)
  3. Make a backup copy
  4. Check step 3
  5. Open bordbk120N.dll in a Hex editor (UltraEdit works fine)
  6. Search for “01 00 48 74 47 80 3D
  7. Make sure this is found once only
  8. Replace “74” with “EB
  9. Save
  10. Restart Delphi. Error should be gone.
This might work on older Delphi versions as well,

วันจันทร์ที่ 2 กรกฎาคม พ.ศ. 2555

อักษรเล็กใหญ่ โฟล์เดอร์ linux

ตัวสคริปแก้ครับ
---------------------------------------------------
#!/bin/sh
dir="$1"
test -z "$dir" && dir=.
test -d "$dir" || exit 1
for name in $(ls "$dir"); do
newname="$(echo $name | tr '[A-Z]' '[a-z]')"
count=
if [ -f "$dir/$newname" ]; then
count=1
while [ -f "$dir/$newname$count" ]; do
count=$((count + 1))
done
fi
newname="$newname$count"
echo "$newname"
mv "$dir/$name" "$dir/$newname"
done
-----------------------------------------------------------------
อ้างอิงจาก
wiki.soslug.org/wiki/converting_filenames_to_lower_case