-
เรื่องล่าสุด
คลังเก็บ
- กุมภาพันธ์ 2021
- ธันวาคม 2020
- กรกฎาคม 2020
- มิถุนายน 2020
- กุมภาพันธ์ 2020
- มกราคม 2020
- มีนาคม 2015
- มกราคม 2015
- ธันวาคม 2014
- พฤศจิกายน 2014
- ตุลาคม 2014
- กันยายน 2014
- สิงหาคม 2014
- กรกฎาคม 2014
- มิถุนายน 2014
- พฤษภาคม 2014
- เมษายน 2014
- มีนาคม 2014
- กุมภาพันธ์ 2014
- มกราคม 2014
- ธันวาคม 2013
- พฤศจิกายน 2013
- ตุลาคม 2013
- กันยายน 2013
- สิงหาคม 2013
- กรกฎาคม 2013
- มิถุนายน 2013
- พฤษภาคม 2013
- เมษายน 2013
- มีนาคม 2013
- กุมภาพันธ์ 2013
- มกราคม 2013
- ธันวาคม 2012
- พฤศจิกายน 2012
- ตุลาคม 2012
Monthly Archives: กรกฎาคม 2013
Versioning software
It can be used in the third position: 0 for alpha (status) 1 for beta (status) 2 for release candidate 3 for (final) release For instance: 1.2.0.1 instead of 1.2-a1 1.2.1.2 instead of 1.2-b2 (beta with some bug fixes) 1.2.2.3 … Continue reading
Posted in เกร็ดความรู้
Leave a comment
Develop with google app engine (Advance)
การพัฒนาด้วย Google App Engine ในส่วนนี้เราจะฝึกหัดพัฒนาโปรแกรมประยุกต์บนเว็บโดยใช้ Google App Engine เริ่มใช้ App Engine : หน้าเว็บแบบพลวัติอย่างง่าย ในส่วนนี้เราจะเริ่มใช้ App Engine ในการพัฒนาโปรแกรมประยุกต์บนเว็บ เนื้อหาดัดแปลงมาจากหน้า Getting Started เริ่มต้นติดตั้ง App Engine กันก่อน เข้าไปที่หน้า Download จากนั้นดาวน์โหลดแฟ้ม google_appengine_1.1.0.zip มาไว้ที่ใดที่หนึ่งในโฮมไดเร็กทรอรี
Posted in python
Leave a comment
cloud email service pricing and limit usage
Information at 9 July 2013 , In the future may be change. AWS SES(Amason Simple Email Service) 1$ per 10000 times or free usage 2000 times per day if you have Amazon EC2 อ้างอิง http://aws.amazon.com/ses/faqs/# Google App Engine 1$ per … Continue reading
Posted in technology
Leave a comment
php getting image type of remote image
[cc lang =”php”] $url_image = … $headers = get_headers($url_image); foreach($headers as $key => $value) { $buf = explode(“:”,$headers[$key]); if($buf[0] == “Content-Type”) { $buf = explode(“/”,$buf[1]); $extension = $buf[1]; } } [/cc]
Posted in php
Leave a comment
php convert USA or other timestamp to AsiaBangkok
[cc lang=”php”] function mapGMTAsiaBangkok($timestamp) { if(empty($timestamp) || $timestamp == null) $timestamp = time(); $date = new DateTime(“@”.$timestamp); // will snap to UTC because of the // “@timezone” syntax /*echo $date->format(‘Y-m-d H:i:sP’) . ““; // UTC time $date->setTimezone(new DateTimeZone(‘Pacific/Chatham’)); echo $date->format(‘Y-m-d … Continue reading
Posted in php
Leave a comment