วันจันทร์ที่ 28 เมษายน พ.ศ. 2557

โหลด PantipCafe. ผ่าน 1 Mobile Market ได้ครับ ส่วนวิธีการดูตามด้านล่างครับ ...

ความคิดเห็นที่ 40, โดย sakurasong

โหลด PantipCafe. ผ่าน 1 Mobile Market ได้ครับ ส่วนวิธีการดูตามด้านล่างครับ

รีวิว 1 Mobile Market ทางออกสำหรับผู้ใช้ Nokia X ที่ไม่อยากรูทเครื่อง!!! (มีฟังชั่นอัพเดตไฟล์ .apk ได้ด้วย)

4 ขั้นตอน การ root เครื่อง Nokia X, X+ และ XL แบบง่ายๆ
วิธีติดตั้งแอพฯ Android บน Nokia X แบบ Sideload

[Root] วิธีรูท Nokia X พร้อมลง Google Play แบบละเอียด

[SR]รีวิว Nokia X Dual SIM: เมื่อความเป็นโนเกียรวมเข้ากับแอนดรอยด์ (แถม Drop Test ให้ด้วย > <),
http://pantip.com/topic/31812189/comment40
#pantip

แนะนำ app android อะไรก็ได้ที่ชาวพันทิปชอบให้หน่อยคะ

แนะนำ app android อะไรก็ได้ที่ชาวพันทิปชอบให้หน่อยคะ
http://pantip.com/topic/31966977

วันพุธที่ 23 เมษายน พ.ศ. 2557

แชร์ เรื่องราวของดิฉันที่เคยเป็นคนยึดติดวัตถุนิยม/อวดรวย/บลา บลา บลา

แชร์ เรื่องราวของดิฉันที่เคยเป็นคนยึดติดวัตถุนิยม/อวดรวย/บลา บลา บลา
http://pantip.com/topic/31943906

ทำมาใช้แล้วเหมือนกันคะ..แต่อยากได้ตัวอักษรเกาหลี..พอมีวิธีไม๊คะ.. 

ความคิดเห็นที่ 34, โดย annsoyong

ทำมาใช้แล้วเหมือนกันคะ..แต่อยากได้ตัวอักษรเกาหลี..พอมีวิธีไม๊คะ..

[Android] ชาวแอนดรอยด์ เรามาทำ font ลายมือตัวเองใชักันดีกว่า,
http://pantip.com/topic/31950433/comment34
#pantip

วันอาทิตย์ที่ 20 เมษายน พ.ศ. 2557

Pantip Cafe with text to speech

Pantip Cafe with text to speech
https://www.facebook.com/photo.php?v=626642424078155&set=vb.100001972103095&type=2&theater

Android Engineer: Using Themes in Android Applications

Android Engineer: Using Themes in Android Applications:



'via Blog this'





Using Themes in Android Applications

As a developer, I understand how developers think when going about creating an application.  We start with an idea, with an end goal in mind, and start putting together pieces from the bottom-up until we reach our goal.  Like any engineer, we enjoy playing with the individual parts, tinkering with building blocks, until we have put them together to create something fantastic that works.  As much fun as this may be, experience shows that throwing together these building blocks without using a proper framework to build them is leads to bad designs, and applications which are difficult to maintain and change later on.

When it comes to design, we don't think in the same manner as a more artistically inclined designer would.  We work from the bottom up, and they work from the top down.  They will work with the entire endeavor as a whole, seeing the final product working without bothering with the individual nuances of the sum of its parts.  In their mind, those parts just work; in the engineer's mind, we think of how we can get those parts to work.  I believe this could be said about many types of work involving engineers and artists, like websites and buildings.

If we, the software developer, use too many individual parts to create our app that have been molded on their own, without concern for the other parts they will be fitting into, it is much harder to make them fit in the first place, and especially to later make changes to them. Besides, the less moving parts the better; as a software developer, it is simply good design to create your user interface with building blocks which conform together instead of changing numbers, colors, etc. here and there to force everything to eventually look good.

What I am dealing with here is UI; the graphical representation of your app. More specifically, UI design in Android applications.

Use Styles in UI

In the above screenshots from the sample application, you can see the exact same layout rendered differently by applying different themes.

In Android, you use Views to design your Activities.  An Activity is the central class which handles a specific, well, activity, in your application.  The class which handles the visual representation of activities is View. The Views themselves can be created programmatically within the Activity, but one should only do so in rare circumstances.  The better way to define them is using XML layout files.

The Android SDK for Eclipse gives us a nice visual editor to design views, which directly manipulates the XML for us.  The layout editor does not, unfortunately, give an easy way to customize the look and feel of the application.  By look and feel I mean the colors, the margins, the fonts, and any attributes that contribute to how all of the views display.

Remember in your beginner computer science classes learning about constants, and why you should use them?  One reason was that if you use a constant, you can reuse it in many places, but only have to change it one place.  In the same manner, we should be using constants to define the way our application looks, so we can easily change it from one central place, in order to change the entire application.  (On a side note, if you've ever dealt with creating web pages, you probably have realized that it is far better to use CSS than to change the attributes of individual elements of your HTML pages).

Creating Themes

Finally, onto the real meat of how to use themes!  What I will show you here is how to define a theme in your resources in an XML file, how to define attributes of the theme, how to apply those to your layout files, and finally how to dynamically change the theme of an activity.

Create a file themes.xml in res/values/.  Here you will create the name of your theme, and any customizable attributes you would like for your theme to define.

<?xml version="1.0" encoding="utf-8"?>
<resources>

    
<style name="Theme" parent="android:Theme">
        <item name="android:windowTitleSize">20dip</item>
    
</style>
    
</resources>

Above you see I have created a theme called Theme, whose parent is the default Android theme. There is a custom attribute called pageMargin, and also a default OS attribute android:windowTitleSize which has been overridden. I recommend you set the theme's parent to the default Android OS theme, in order to inherit all of the system attributes. Otherwise, unless you only use your own custom views, the system views such as ListView will be missing attributes which are defined in the system theme which are not defined in your own theme. This will cause funny layout issues at best, but at worst it will cause exceptions due to attributes that the views could not find. Remember, not all Android devices are built the same.

Setting the Theme

We can set the theme of either our application or individual activities in the manifest file.  If you don't need to have more than one theme at all in your application, just set the theme of the activity.  Otherwise, you can define themes specific to an activity.

<application
    
android:icon="@drawable/icon"
    
android:label="@string/app_name"
   
 android:theme="@style/Theme">

You can also set the theme of an activity programmatically.  This is done by calling setTheme() in the activity's onCreate() method, before any call tosetContentView().  Note that this approach should typically be avoided, especially from the main activities of your application, because the theme you set here may not be used for any animations the system uses to show the activity (which is done before your activity starts).  The exception to this rule is if you want to set your themes dynamically, such as in the case where the application can have more than one theme.

Custom Attributes

Although it is nice to be able to override the default system properties in some cases, what we'd really like to do is define custom properties of our own in our application's layouts.  Say we wanted the margins of all of our activities to be a certain dimension.  If we define it in one place, we can change it all at once. Below is an example of a custom attribute added to our custom theme inthemes.xml which we can use to define a property called pageMargin:

        <item name="pageMargin">2sp</item>

If you simply copy the above text into your new file themes.xml, you will get a build error Error: No resource found that matches the given name: attr 'pageMargin'.  This is because we have not defined what pageMargin is to the build system.  android:windowTitleSize is OK, because it is already defined in the Android SDK.

Create a file called attrs.xml in res/values/.  Here you will create your style attributes, which are any customizable attributes you would like for your theme to define.  Below, I have created a new attribute called pageMargin, which I will use to define margins.

<?xml version="1.0" encoding="utf-8"?>
<resources>
    
<attr name="pageMargin" format="reference|dimension" />
</resources>

Now, the build system will not throw an error anymore because pageMargin is now defined. The format attribute indicates what type of values I can define for pageMargin; in this case, either a reference to another attribute, or a dimension such as 2sp or 4px.  Other examples of possible formats are color,booleaninteger, and float.

Now, I could set the margins in my views by referencing a single constant, instead of putting the same value piecemeal around the code:

<TextView
    
android:layout_width="fill_parent"
    
android:layout_height="wrap_content"
    
android:text="Hello"
    
android:layout_margin="?pageMargin"/>

I can change pageMargin in one place and all of the margins in my views which reference this attribute will be changed.  Unfortunately, this method of defining your view's styles has some issues.  If you open this view in the Eclipse layout editor, you will see an error: Unable to resolve dimension value "?pageMargin" in attribute "layout_margin".  In order to make any use of these attributes, we need to apply the theme to our activities, and this doesn't work in the layout editor.
If you'd like to see some more examples, you can look at the Android OS source code default res directory, in particular themes.xmlstyles.xml, and attrs.xml.

Styles

A more sophisticated method to setting the properties of your views in the layout is give a view a style, which is a group of attributes, instead of defining the values of individual attributes. For example, you could set the styles of all of your title TextViews to have the style textTitle.  This style could have custom text color, font, and margin properties. In addition, the layouts can be safely edited in the Eclipse layout editor, because the style attribute is not needed to render the views.

    <TextView
        
android:layout_width="fill_parent"
        
android:layout_height="wrap_content"
        
android:text="@string/title_text"
        
style="?textTitle"/>

Now this TextView has a custom style. You can assign multiple attributes to thetextTitle style, such as android:textColor and android:textSize.

When using the style attribute in your layout files, the views will appear plain when using the Eclipse layout editor.  However, when the theme is applied in your application, your custom styles will be applied.

Dynamic Themes

If you want your application to have a customizable look and feel, then you will want to create multiple styles. An example of this is given in the sample application below. To have multiple themes, you will want to create multiple theme definitions in themes.xml.

    <style name="Theme.White">
      
<item name="textTitle">@style/text_title_wh</item>
      
<item name="textSubheader">@style/text_subheader_wh</item>
    
</style>

    <style name="Theme.Blue">
      
<item name="textTitle">@style/text_title_bl</item>
      
<item name="textSubheader">@style/text_subheader_bl</item>
    
</style>

To set the theme dynamically at runtime, call setTheme() in your activity'sonCreate() method, before calling setContentView().  To change the theme, you simply need to restart your activity.
If you have a theme name with a dot in it, such as MyTheme.Blue, then you will create a theme called MyTheme_Blue whose parent is the themeMyTheme. It is a convenient way to inherit the properties of a parent theme.

Sample Application

This sample program shows how to use custom themes. The application has one Activity with one corresponding layout file. Most of the views in the layout have a custom style. You can change the style dynamically by pressing the buttons at the bottom of the screen.

Project Source Code - Themes.zip (16.4 Kb)
Project Package - Themes.apk (28.1 Kb)
Screenshots

Conclusion

1. Define one or more themes in themes.xml and set the definitions of your styles there.
2. Define custom attributes, a.k.a. custom styles, in attrs.xml.
3. Describe what the values of your custom styles are in styles.xml.
4. In your layout files, give your views a style attribute, which has a custom style name as their values.
5. Set the theme of your application or activity in either AndroidManifest.xml or in the Activity's onCreate().

As an Android application programmer you should now know how to stop placing look and feel attributes directly into your layout files and start using styles to design your UI.

Android App Pantip ช่วยหน่อยค่า

Android App Pantip ช่วยหน่อยค่า
http://pantip.com/topic/31941011

วันพฤหัสบดีที่ 17 เมษายน พ.ศ. 2557

xxx - ตั๋งโต๊ะ - นายพลคนโตจากแดนไกล ครั้งหนึ่งเข้าเมืองหลวงเพื่อช่วยฮ่องเต้...

ความคิดเห็นที่ 19, โดย สมาชิกหมายเลข 1266993

xxx - ตั๋งโต๊ะ - นายพลคนโตจากแดนไกล ครั้งหนึ่งเข้าเมืองหลวงเพื่อช่วยฮ่องเต้ แต่เมื่อฮ่องเต้พ้นภัย ก็หากินกับฮ่องเต้ แต่งตั้งตัวเองเป็นผู้แทนพระองค์ ข่มขู่ฮ่องเต้ แอบอ้างฮ่องเต้ทำตามใจตัวเอง บิดเบือนราชโองการหลายครั้ง ตัวเองเสพสุขอยู่แต่ในวัง ชาวบ้านเดือนร้อน สาปแช่งกันทั้งประเทศ เคยเลี้ยงโจโฉ แต่ถูกโจโฉหักหลังเลยเกลียดกันมาก เคยสั่งทางการตั้งค่าหัวประกาศจับโจโฉไปทั่วประเทศ กุมอำนาจทหารหลวงทั้งหมด

ทักษิณ - โจโฉ - เป็นคนเก่งรอบด้าน มีความเป็นผู้นำสูง มั่นใจในตัวเองมาก ตัดสินใจเด็ดขาด ทำงานรวดเร็ว หัวสมัยใหม่ไม่ยึดติดธรรมเนียมโบราณ นับถือคนเก่ง แต่ขี้ระแวง บางครั้งเอาแต่ใจเกินไป ตำแหน่งสำคัญจะแต่งตั้งคนใกล้ตัวดูแล เช่น ตั้งพี่น้องสกุลเดียวกันโจหยิน(ชัยสิทธิ์ ชินวัตร) เป็นจอมทัพคุมอำนาจทหารและตั้งญาติสนิทนามสกุล แฮหัว(ดามาพงศ์) ในตำแหน่งสำคัญ

มาร์ค - อ้วนเสี้ยว - เป็นคุณหนูเกิดมามีชาติตระกูลดี ผู้คนนับหน้าถือตา พูดจาหลักการดี มีปณิธานแน่วแน่ แม่ทัพทั้งหลายยกเป็นผู้นำ แต่กลับเป็นพวกท่าดีทีเหลว ดีแต่พูด นิสัยโลเล ชอบคนประจบเอาใจ รับความจริงไม่ได้ใครพูดไม่เข้าหูจะโกรธมาก เหล่ากุนซือเบื่อหน่าย แถมยังไม่ใส่ใจราษฏร เคยเป็นผู้นำก๊ก(พรรค)ใหญ่ที่สุด แต่แพ้โจโฉยับเยิน

สุเทพ - เล่าปี่ - นักโหนเจ้าในตำนาน 555+ เป็นคนที่วาทศิลป์เป็นเลิศ พูดให้คนคล้อยตามได้เก่งมากๆ มักจะพูดว่าเราจะกำจัดทรราชย์ทำเพื่อประเทศชาติและราชวงศ์ เป็นใบเบิกทาง และเป็นการสร้างความชอบธรรมให้กับตัวเอง มองคนทะลุปรุโปร่งใช้คนถูกกับงาน ซื้อใจคนเก่ง ผู้คนยกย่องว่าเป็นผู้มีคุณธรรมทำเพื่อชาติ เจ้าเมืองอิสระ(องค์กรอิสระ)ต่างๆพร้อมช่วย แต่จริงๆแล้วเล่ห์เหลี่ยมจัดยิ่งกว่าโจโฉ  เป็นประเภทพูดจาดีแต่ใจดำ หักหลังคนอื่นบ่อย บีบน้ำตาร้องให้แสดงละครเก่ง ครั้งหนึ่งเคยอยู่กับอ้วนเสี้ยวเมื่ออ้วนเสี้ยวแพ้โจโฉก็แยกออกมาตั้งกองทัพตัวเอง

สนธิ ลิ้ม - ซุนกวน - อีกหนึ่งก๊กใหญ่ สู้กับโจโฉ(ทักษิณ)มานาน เคยเป็นมิตรกับเล่าปี่(สุเทพ)ช่วยเหลือเล่าปี่เต็มที่ แต่เมื่อเล่าปี่ได้ดีกลับโดนถีบหัวส่ง จึงหันมารบกันพักหนึ่ง แต่ตอนหลังมีผลประโยชน์ร่วมกัน มีศัตรูร่วมกันก็หันมาจับมือกันตีโจโฉอีกครั้ง ...สุดท้ายแพ้เขาอยู่ดี

BlueSky - หลอกว้านจง - เป็นนักแต่งนิยาย ผู้เอาเรื่องสามก๊กมาแต่งเป็นวรรณกรรมเผยแพร่ให้คนทั่วไปได้รู้จัก แต่หลอกว้านจงฝักใฝ่ง่อก๊ก(กปปส.)ของเล่าปี่(สุเทพ) จึงเขียนบิดเบือน  ใส่ร้ายป้ายสีโจโฉ(ทักษิณ)หลายเรื่อง  และแต่งเติมมโนเรื่องให้เล่าปี่เป็นคนดีจนโอเวอร์ ทำให้คนส่วนใหญ่ที่ดูเฉพาะวรรณกรรมหลงผิดคิดว่า โจโฉเหลี่ยมจัด ชั่วร้าย ชายชาติล้มเจ้า และคิดว่าเล่าปี่เป็นฮีโร่ คนดีที่มาช่วยชาติปราบทรราชย์โจโฉ มีแต่คนที่สนใจศึกษาประวัติศาสตร์หาข้อมูลเพิ่มเติมเท่านั้นจะรู้ทัน Bluesky ....  เอ้ย หลอกว้านจง

ทำไมผมอ่านสามก๊กแล้วคิดว่าทักษิณเหมือนโจโฉ,
http://pantip.com/topic/31927456/comment19
#pantip

วันอาทิตย์ที่ 13 เมษายน พ.ศ. 2557

ข้อความหลังไมค์

ข้อความหลังไมค์
http://pantip.com/topic/31879366

ทำไมเวลาเล่นเวปพันธ์ทิพย์ด้วยสมาร์ทโฟนแล้วมันขึ้นหน้าจอแบบนี้คับ

ทำไมเวลาเล่นเวปพันธ์ทิพย์ด้วยสมาร์ทโฟนแล้วมันขึ้นหน้าจอแบบนี้คับ
http://pantip.com/topic/31889438

อยากให้ pantip มีระบบ resize รูป อัตโนมัติ เวลาใช้งานผ่าน Browser บน tablet จะได้ใช้ได้ง่ายขึ้น /ปัญหาไฟล์ขนาดใหญ่เกินไป

อยากให้ pantip มีระบบ resize รูป อัตโนมัติ เวลาใช้งานผ่าน Browser บน tablet จะได้ใช้ได้ง่ายขึ้น /ปัญหาไฟล์ขนาดใหญ่เกินไป
http://pantip.com/topic/31889724

ถ้าเราจะโหลด app Pantip สำหรับโทรศัพท์android เราต้องโหลดแอฟ ชื่อ อะไรค่ะ

ถ้าเราจะโหลด app Pantip สำหรับโทรศัพท์android เราต้องโหลดแอฟ ชื่อ อะไรค่ะ
http://pantip.com/topic/31902890

สอบถามเรื่อง ประเภทของสมาชิกพันทิป ค่ะ

สอบถามเรื่อง ประเภทของสมาชิกพันทิป ค่ะ
http://pantip.com/topic/31906694

วันอาทิตย์ที่ 6 เมษายน พ.ศ. 2557

ระบบการศึกษาของเราเน้นผลิตแรงงานเข้าระบบอุตสหกรรมเป็นหลักครับ การสอนให้คนร...

ความคิดเห็นที่ 13, โดย Bas Plus

ระบบการศึกษาของเราเน้นผลิตแรงงานเข้าระบบอุตสหกรรมเป็นหลักครับ  การสอนให้คนรู้เรื่องการเงิน,วิธีหาเงิน,วิธีคิด..ฯลฯ มากเกินไป  จะเป็นผลเสียกับระบบครับ  

เหมือนๆที่เราไม่สอนการเรื่องภาษี ความรับผิดชอบต่อสังคม และค่านิยมความรู้สึกในการเป็นเจ้าของประเทศ ฯลฯ..วิธีคิดพวกนี้เป็นภัยกับกลุ่มอำนาจทางการเมืองในปัจจุบัน

ฉลาดกันหมด...แล้วใครจะมาเป็นหุ่นยนต์ให้โรงงาน ให้ออฟฟิศ
ฉลาดกันหมด...แล้วนักการเมืองจะรักษาฐานอำนาจตัวเองไว้ยังไง

ระบบการศึกษา เศรษกิจ อำนาจทางการเมืองการปกครอง จูบปากกันได้ลงตัว ที่จะกดคนส่วนใหญ่ของประเทศไว้รักษาผลประโยชน์ตัวเอง
..ประเทศกำลังพัฒนาส่วนใหญ่ก็โดนครอบงำแบบนี้เหมือนกันหมด  สู้ๆกันต่อไปครับ T^T

15 ความจริงเรื่อง &quot; การเงิน &quot; ที่คนไทยต้องรู้ !,
http://pantip.com/topic/31875382/comment13
#pantip

ย้อนรอย #mh370 สู่สายการนกแอร์ สนามบินหาดใหญ่

ย้อนรอย #mh370 สู่สายการนกแอร์ สนามบินหาดใหญ่
http://pantip.com/topic/31879342

อุทาหรณ์ความรุนแรงในโรงหนัง เมื่อมีคนเตือนคนคุยมือถือแล้วโดนต่อย รปภ.ห้างดังรวบส่งตำรวจทันควัน!

อุทาหรณ์ความรุนแรงในโรงหนัง เมื่อมีคนเตือนคนคุยมือถือแล้วโดนต่อย รปภ.ห้างดังรวบส่งตำรวจทันควัน!
http://pantip.com/topic/31879488

วันพฤหัสบดีที่ 3 เมษายน พ.ศ. 2557

ที่ "มวลหมา" มันพล่าม ว่าการเลือกตั้งไม่ใช่คำตอบของ "ประชาธิปไตย" มันก็อาจม...

ความคิดเห็นที่ 21, โดย ธรรมดาสามัญ

ที่ "มวลหมา" มันพล่าม
ว่าการเลือกตั้งไม่ใช่คำตอบของ "ประชาธิปไตย"
มันก็อาจมีส่วนจริงอยู่บ้างครับ หากว่าการเลือกตั้งนั้นเป็นแบบ "เกาหลีเหนือ"

ประเทศนั้นมันออกกฏ
ถึงขนาดว่าห้ามไม่ให้โหวตโน
ถ้าใครโหวตโนก็จะผิดกฏหมายทันที !!!!

แต่ที่ประเทศทุย
คนที่ฉีกกติกาเดิมทิ้ง
คนที่เขียนกติกาโจรใน ปี 50 ขึ้นใหม่
คนที่แก้กติกาซ้ำอีกครั้งเพื่อ "จัดโซนนิ่ง" ก่อนเลือกตั้งปี 54

ล้วนแล้วแต่เป็นฝ่ายเผด็จการ , ฝ่ายอำมาตย์ และ ฝ่ายแมงสาป ทั้งสิ้น !!!

โดยเฉพาะคราวแมงสาปแก้รัฐธรรมนูญนั้น
มันแก้ด้วยการเพิ่มจำนวนปาร์ตี้ลิสท์จาก 80 คน เป็น 125 คนแบบ "หน้าตาเฉย"
แก้เพราะหวังว่าจะเพิ่มจำนวนปาร์ตี้ลิสท์ของแมงสาปให้มีน้ำมีนวลสูสีกับพรรคแม้ว

ยังครับ......ยังไม่หนำใจ

แมงสาปยังแก้รัฐธรรมนูญลดจำนวน สส.เขต
จากเดิมที่เคยมีอยู่  400 คน แก้ใหม่ให้เหลือแค่ 375 คน

การแก้แบบนี้ "ภาษามวย" ไม่ว่าที่ราชดำเนิน หรือ ลุมพินี เขาเรียกกันว่า "ได้ใหญ่"
เพราะทำให้โควต้า สส.อีสาน และ สส.เหนือซึ่งเป็นเขตอิทธิพลของพรรคแม้วหายไปเลย 16 คน

แต่ สส.ใต้ของแมงสาปลดลงไป จิ๊บ จิ๊บ แค่ 4 คนเท่านั้น

ผมไม่เห็น "สาน" ไหนจะวินิจฉัยเลย
ว่าการแก้รัฐธรรมนูญของแมงสาปคือการล้มล้างการปกครอง

ผิดกับรัฐบาลปู
ที่คิดจะแก้ให้ประชาชนมีสิทธิ์เลือก สว.
โดยที่ไม่ต้องให้มีใครที่ไหนมา "คิดแทน"
กับกลายเป็นการ "ล้มล้างการปกครอง" ไปซะอย่างงั้น !!!

ในโลกแห่ง "ประชาธิปไตย"
ผมว่าน่าจะมีแต่นักการเมืองไทยนี่แหละครับ
ที่ "สะเออะ" อยากเข้ามาเป็นตัวแทนของประชาชน แต่กลับ "กลัวการลงเลือกตั้ง"

ทั้งๆที่การเลือกตั้ง
มันคือกระบวนการทางประชาธิปไตย
ที่อารยะประเทศเขานำมาใช้ เพื่อเฟ้นหาคนที่ประชาชนไว้วางใจให้มาทำงานแทนพวกเขา

เลือกเอง
ตัดสินใจเอง
และ ยอมรับเสียงส่วนใหญ่ของสังคม

หากระบอบประชาธิปไตยมันไม่ดี
หากการเลือกตั้งมันไม่ใช่วิธีที่เหมาะสมแล้วละก็
นานาอารยะประเทศเขาคงไม่ปฏิเสธการคบหากับรัฐบาลเผด็จการหรอกครับ

"การเลือกตั้ง" อาจจะไม่ใช่ "วิธีที่ดีที่สุด"
แต่ที่แน่ๆมันคือวิธีที่ "เลวน้อยที่สุด" อย่างแน่นอน
เพราะมันคือวิธีเดียวที่ทุกคนมีสิทธิ์เท่ากัน และ ได้รัฐบาลที่มาจากฉันทามติของคนทั้งประเทศ


ขอบคุณคุณธรรมดาสามัญ ที่ให้ยืมอมยิ้มตอบกระทู้ครับ

นายพิเชษฐ อดีต ส.ส.ปชป จัดหนัก &gt;&gt; &quot;กปปส&quot;,
http://pantip.com/topic/31851353/comment21
#pantip

วันพุธที่ 2 เมษายน พ.ศ. 2557

สัมภาษณ์จ่า เปิดใจ "จ่าพิชิต" เผยเบื้องหลังความดรามา กรณีวงโยฯ สตรีวิทยา 2...

ความคิดเห็นที่ 1648, โดย ติ่งน้อยกลอยใจ

สัมภาษณ์จ่า

เปิดใจ "จ่าพิชิต" เผยเบื้องหลังความดรามา กรณีวงโยฯ สตรีวิทยา 2

ในโลกออนไลน์ คงไม่มีใครไม่รู้จักเขา "จ่าพิชิต" แห่งเว็บไซต์ 'ดราม่า แอดดิก' (drama-addict) และหน้าเพจบนเฟซบุ๊คในชื่อเดียวกัน บุคคลที่นำเสนอเรื่องราวดรามาต่างๆ มากมาย ล่าสุดกับกรณีวงโยฯ โรงเรียนสตรีวิทยา 2 ที่ประกาศตัวเลยว่าจะตามกัดไม่ปล่อย พร้อมด้วยข้อมูลที่แน่นจนบางคนถึงกับชมว่า เก่งยิ่งกว่านักข่าว เด็ดยิ่งกว่า CSI
       

นี่คือการเปิดใจเจ้าสำนักผู้เสพติดดราม่า ที่รายล้อมไปด้วยมิตรรักแฟนเพจเรือนแสน รอเสพดรามา โดยเฉพาะกรณีวงโยฯ ส.ว.2 ที่กำลังเป็นประเด็นร้อนแรงอยู่ขณะนี้
       

- ทำไมจ่าถึงได้ประกาศตัวว่าจะตามกัดประเด็นนี้ไม่ปล่อย จนกระทั่งคลิปหลุดออกมา ถึงได้ปล่อยให้เป็นหน้าที่สื่อ
       

ตอนแรกมีคนของวงโยฯ มาติดต่อให้ผมช่วยประชาสัมพันธ์กระจายข่าวให้ประชาชนเห็นใจเพื่อเรี่ยไรเงิน ผมก็บอกกับคนที่มาติดต่อว่าทำไมเพิ่งมาบอกเอาป่านนี้ เวลาแค่วันเดียวมันจะระดมเงินสามล้านได้ไง แต่ผมก็ช่วยกระจายข่าวไปนะ เพราะเห็นว่าเป็นเด็กไทยที่อยากไปสร้างชื่อเสียงให้กับประเทศชาติ
       

ในเวลาต่อมา เห็นข่าวเด็กกลุ่มนี้ไปไถเงินเสี่ยตัน ผมรู้สึกว่า เฮ้ย มันไม่ใช่แล้ว วิธีการมันไม่ถูกต้องก็เตือนเด็กมันไปว่าทำงี้ไม่ถูกต้อง ให้เปลี่ยนวิธีการเสีย แต่ก็สายเกินไป เสี่ยตันยอมให้เงินเขาสามล้านแล้ว ในเวลาต่อมา พอได้รู้ข้อมูลเบื้องหลังหลายๆ ประการ ผมถึงรู้ตัวว่าเราเป็นหนึ่งในคนที่ถูกเด็กกลุ่มนี้หลอกใช้ ไม่ใช่เพื่อผลประโยชน์หรือชื่อเสียงของประเทศชาติ แต่เพื่อประโยชน์ของบุคคลบางกลุ่มล้วนๆ ผมถือว่านี่คือการคอร์รัปชันที่เลวร้ายมาก โดยเฉพาะอย่างยิ่ง มันเกิดขึ้นกับเยาวชนของชาติยิ่งเป็นเรื่องที่ยอมรับไม่ได้ครับ
       

- คิดว่าสิ่งที่ตัวเองเปิดโปง มีประโยชน์ไหม
       

อย่างน้อยก็น่าจะมีประโยชน์กับสังคมไทย ที่ทำให้คนไทยได้ตระหนักว่า เชื้อชั่วอย่าง "การคอร์รัปชัน" มันได้หยั่งรากลึงลงถึงรากเหง้าของสังคมไทยแบบสุดๆ แล้ว ขนาดหน่ออ่อนของชาติอย่างเยาวชนกลุ่มนี้ ยังติดเชื้อชั่วนี้ ถ้าเราไม่รีบแก้ไขปัญหานี้ประเทศเราไม่มีอนาคตแน่
       

- คิดยังไงกับการถูกมองว่าเป็น "ผู้ใหญ่รังแกเด็ก"
       

อาจจะมีคนมองว่านี่คือการรังแกเด็ก แต่ผมถือว่าเป็นการดัดสันดานเด็กให้กลับสู่ลู่ทางที่ควรเป็น
       

- อยากให้คนที่เกี่ยวข้องได้รับการลงโทษยังไง ในส่วนของเด็กๆ ในวง และผู้ใหญ่ที่อยู่เบื้องหลัง
       

ควรออกมาแสดงความรับผิดชอบกันตามสมควร ผู้หลักผู้ใหญ่ก็ลาออกหรือถูกไต่สวนมูลความผิด ส่วนเด็กๆ ก็ไปบอกพ่อแม่แล้วช่วยกันระดมเงินไปคืนให้เสี่ยตัน คนเราทำอะไรไว้ก็ควรจะรู้จักแสดงความรับผิดชอบในสิ่งทีทำลงไป
       

- คิดว่าอะไรทำให้ดรามานี้มีคนตามแบบถึงลูกถึงคนขนาดนี้
       

ช่วยๆ กันครับ คนที่ตามประเด็นนี้ไม่ได้มีผมคนเดียว ยังมีสมาชิกเว็บพันทิปอีกมากมายที่ตามจิกกัดประเด็นนี้จนถึงที่สุดเหมือนกัน
       

- จ่ามีวิธีไปสืบรู้ข้อมูลแต่ละที่ได้อย่างไร มีคนชมว่า เก่งยิ่งกว่านักข่าว เด็ดยิ่งกว่า CSI อยากรู้ว่า มีคนมาหลังไมค์เยอะไหม และที่เด็ดๆ ใครบ้าง
       

รูปแบบการตรวจสอบข้อมูลของคนในโลกออนไลน์ หรือที่สื่อขนานนามว่า เป็น "นักสืบพันทิป หรือนักสืบไซเบอร์" มันเป็นการเอาข้อมูลที่กระจัดกระจายอยู่ในอินเทอร์เน็ท ไปตรวจสอบจริงเท็จตามศักยภาพของแต่ละคน ยิ่งประเด็นเป็นที่สนใจของสังคมมาก ก็จะมีคนมาร่วมตรวจสอบข้อมูลมากขึ้น เหมือนการประมวลผลแบบคู่ขนาน
       

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

- จ่าเอาเวลาที่ไหนไปนั่งหาข้อมูล แบ่งเวลายังไง เพราะงานจ่าก็มี ทราบมาว่าเป็นผอ.รพ.ด้วย
       

ส่วนมากนั่งหาข้อมูลตอนเข้าเวรครับ (หัวเราะ)
       

- ประเด็นนี้ สะท้อนอะไรในวงการศึกษาไทยและวงโยฯ
       

แ-่งเน่าตั้งแต่หัวยันเลยครับ
       

- ความคิดเห็นต่อคนที่มองว่า จ่าทำลายภาพลักษณ์ สตรีวิทยา 2 และผลตอบรับจากเกรียนเด็กในโรงเรียน
       

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

- วันนี้วงโยฯ ชื่อดังกลับมาแล้ว มีอะไรอยากจะบอกเป็นการทิ้งท้ายไหม
       
สำนึกผิดซะ

http://www.manager.co.th/Daily/ViewNews.aspx?newsid=9570000036930

flight ฉาวโฉ่บินเหนือสุพรรณแล้วนะเจ้าคะ,
http://pantip.com/topic/31858685/comment1648
#pantip