วันอาทิตย์ที่ 20 ธันวาคม พ.ศ. 2558
วันพุธที่ 9 ธันวาคม พ.ศ. 2558
Value chain
A value chain is a set of activities that a firm operating in a specific industry performs in order to deliver a valuable product or service for the market. The concept comes from business management and was first described and popularized by Michael Porter in his 1985 best-seller, Competitive Advantage: Creating and Sustaining Superior Performance. cf. wikipedia
วันอาทิตย์ที่ 29 พฤศจิกายน พ.ศ. 2558
Cognitive system/computing
Cognitive computing is the simulation of human thought processes in a computerized model.
Cognitive computing involves self-learning systems that use data mining, pattern recognition and natural language processing to mimic the way the human brain works. The goal of cognitive computing is to create automated IT systems that are capable of solving problems without requiring human assistance.
Cognitive computing systems use machine learning algorithms. Such systems continually acquire knowledge from the data fed into them by mining data for information. The systems refine the way they look for patterns and as well as the way they process data so they become capable of anticipating new problems and modeling possible solutions.
Cognitive computing is used in numerous artificial intelligence (AI) applications, including expert systems, natural language programming, neural networks, robotics and virtual reality. The term cognitive computing is closely associated with IBM’s cognitive computer system, Watson.
(Cf. http://whatis.techtarget.com/definition/cognitive-computing)
Expert system
An expert system is an example of a knowledge-based system. Expert systems were the first commercial systems to use a knowledge-based architecture. A knowledge-based system is essentially composed of two sub-systems: the knowledge base and the inference engine. (https://en.wikipedia.org/wiki/Expert_system)
The ideal representation for a knowledge-base is an object model (often called an ontology in AI literature) with classes, subclasses, and instances. (Cf. https://en.wikipedia.org/wiki/Knowledge_base)
วันจันทร์ที่ 23 พฤศจิกายน พ.ศ. 2558
Web programming technologies
jQuery is a cross-platform JavaScript library designed to simplify the client-side scripting of HTML.
AngularJS (commonly referred to as "Angular.js") is a JavaScript-based open-source front-end web application framework mainly maintained by Google.
It aims to simplify both the development and the testing of such applications by providing a framework for client-side model–view–controller (MVC).
Bootstrap is a front-end library for designing responsive websites and web applications
C3.js is D3 (data visualization JavaScript library)-based reusable chart library.
Server side: Node.js เป็น framework สำหรับทำให้รัน JavaScript ไว้ที่ฝั่ง server ได้ แทนที่ปกติจะต้องรันที่ฝั่งไคลเอนต์
- npm is a command-line tool for interacting with a huge repository of Node.js projects. https://www.sitepoint.com/beginners-guide-node-package-manager/
JSP (Java Server Page) เหมือน PHP i.e. JSP is similar to PHP since you can mix output (like HTML). A JSP file is actually a servlet; when you add it to your server, it gets transformed into a
.java
file without you knowing about it. And after the transformation, it gets compiled into .class
file along with other .java
files whe necessary. (http://stackoverflow.com/questions/4965914/java-jsp-vs-servlet)JavaServer Faces (https://javaserverfaces.java.net/) is Java specification for building web interface. Its current implementation uses JSP. Example use of JavaServer Faces (JSP language) is http://www.vogella.com/tutorials/JavaServerFaces/article.html#firstjsf_run which allows developer to modify existing JSP file to quickly render web interface.
Firebase is analytics, databases (cloud-hosted NoSQL database), messaging and crash reporting PaaSes for mobile and web app development. (https://firebase.google.com/)
JSP vs Java Servlet:
- Servlet is html in java whereas JSP is java in html.
- Servlets run faster compared to JSP
- JSP can be compiled into Java Servlets
- It’s easier to code in JSP than in Java Servlets
- JSP is a webpage scripting language that can generate dynamic content while Servlets are Java programs that are already compiled which also creates dynamic web content
- In MVC, jsp acts as a view and servlet acts as a controller.
- JSP are generally preferred when there is not much processing of data required. But servlets are best for use when there is more processing and manipulation involved.
- The advantage of JSP programming over servlets is that we can build custom tags which can directly call Java beans. There is no such facility in servlets.
- We can achieve functionality of JSP at client side by running JavaScript at client side. There are no such methods for servlets.
- A servlet is like any other Java class. You put HTML into print statements like you use
System.out
or how JavaScript usesdocument.write
. A JSP technically gets converted to a servlet but it looks more like PHP files where you embed the Java into HTML.
Yii and Laravel is a PHP framework based on mvc making PHP a full stack framework.
Django itself is a full stack framework making Python a server-side scripting just like PHP. (django = PHP + Yii/Laravel)
10 Best Java Web Frameworks to Use in 2018
https://javapipe.com/blog/best-java-web-frameworks/
EJB (Enterprise Java Bean) is server-side part of Java Enterprise Edition (Java EE). Spring is an open source application framework for building any Java application including web applications on top of the Java EE platform. Spring is an alternative to the EJB.
Hibernate ORM (Hibernate in short) is an object-relational mapping library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate's primary feature is mapping from Java classes to database tables (and from Java data types to SQL data types). e.g. when using ORM API:
Person p = repository.GetPerson(10); String name = p.getFirstName();without ORM API:
String sql = "SELECT ... FROM persons WHERE id = 10"; DbCommand cmd = new DbCommand(connection, sql); Result res = cmd.Execute(); String name = res[0]["FIRST_NAME"];
===
Mapbox allows adding location into any application with our mapping, navigation, and location search SDKs
OpenWeatherMap is PaaS that provides weather data, including current weather data, forecasts, and historical data to the developers of web services and mobile applications.
วันพุธที่ 11 พฤศจิกายน พ.ศ. 2558
วันศุกร์ที่ 6 พฤศจิกายน พ.ศ. 2558
วันจันทร์ที่ 2 พฤศจิกายน พ.ศ. 2558
ESCO
วันเสาร์ที่ 24 ตุลาคม พ.ศ. 2558
Container (vs VM)
คำอธิบายโดยละเอียด
http://nuuneoi.com/blog/blog.php?read_id=868
สรุป docker container = docker engine + application + lightweight guest OS (เฉพาะ libraries ส่วนที่จำเป็นต่อการรัน web app; docker engine เทียบเท่ากับ hypervisor that virtualizes host OS ให้เหมือนว่าเป็น OS เดียวกันกับ guest OS แม้ว่าจะเป็นคนละ os กัน
docker engine (= container runtime) ก็ต้องเลือกติดตั้ง เช่น สำหรับรัน/ติดตั้งบน windows แต่รองรับ linux/windows (apps) container ได้ (ต้อง toggle between Linux and Windows containers in Docker cf.https://docs.docker.com/desktop/install/windows-install/)
https://hub.docker.com/editions/community/docker-ce-desktop-windows
รูปขวาบนอาจวาดใหม่เป็นแบบนี้
Containers share the machine’s OS system kernel and therefore do not require an OS per application, driving higher server efficiencies and reducing server and licensing costs.
Container vs. VM https://www.blognone.com/node/105928
How to load existing application into a chosen Docker image: https://youtu.be/lpr2tO-FCEw
Kubernetes VS Docker
Docker is a platform and tool for building, distributing, and running Docker containers. It offers its own native clustering tool that can be used to orchestrate and schedule containers on machine clusters. Kubernetes is a container orchestration system for Docker containers that is more extensive than Docker Swarm and is meant to coordinate clusters of nodes at scale in production in an efficient manner. It works around the concept of pods, which are scheduling units (and can contain one or more containers) in the Kubernetes ecosystem, and they are distributed among nodes to provide high availability. (https://www.sumologic.com/blog/devops/kubernetes-vs-docker/) Kubernetes is meant to run across a cluster while Docker runs on a single node. Docker enables you to run multiple containers on a single OS host.
Kubeflow (https://www.kubeflow.org/)
The Kubeflow project is dedicated to making deployments of machine learning (ML) workflows on Kubernetes simple, portable and scalable.
- In VM, a hypervisor virtualizes physical hardware. The result is that each virtual machine contains a guest OS, a virtual copy of the hardware that the OS requires to run and an application and its associated libraries and dependencies. VMs with different operating systems can be run on the same physical server. For example, a VMware VM can run next to a Linux VM, which runs next to a Microsoft VM, etc.
- Instead of virtualizing the underlying hardware, containers virtualize the operating system (typically Linux or Windows) so each individual container contains only the application and its libraries and dependencies. Containers are small, fast, and portable because, unlike a virtual machine, containers do not need to include a guest OS in every instance and can, instead, simply leverage the features and resources of the host OS.
- Docker delivers software in packages called containers. Because all of the containers share the services of a single OS kernel, they use fewer resources than VMs.
- Virtual Machines offer more resources. Because you are using the full OS and not a custom, whittled down version, you have the full strength of OS, i.e. more flexible. That means all OS resources are available and you have a full suite of management and security tools. In short, you have the full OS, whether it’s Windows, Red Hat, Ubuntu, or some other flavor of Linux.
- We use container for testing&deployment phases; not for development phase, which must be done locally or on VM.
- To run more apps, docker requires to create an image for those additional apps followed by deployment. But in VM, those apps can just be directly run.
- In a virtualized environment, you run multiple operating systems on a hypervisor that manages I/O on one machine. In a containerized environment, it’s not virtualized and no hypervisor but container engine is used instead.
- We can run several applications / processes in the same container but not recommended. (cf. https://www.tutorialworks.com/containers-single-or-multiple-processes/)
- Containers need OS, thus they can run inside VM.
Node.js
วันอังคารที่ 20 ตุลาคม พ.ศ. 2558
วันเสาร์ที่ 12 กันยายน พ.ศ. 2558
วันพุธที่ 2 กันยายน พ.ศ. 2558
SOAR: Strengths, Opportunities, Aspirations & Results
- Strengths
- Aspirations
- Opportunities
- Results
SOAR applications include: strategy, strategic planning, team building, coaching, leadership development, and strategic summits.
Based on the accumulating evidence in strengths-based approaches, why not apply SOAR to strategic planning?
วันเสาร์ที่ 8 สิงหาคม พ.ศ. 2558
วันเสาร์ที่ 1 สิงหาคม พ.ศ. 2558
M2M
วันพุธที่ 22 กรกฎาคม พ.ศ. 2558
วันศุกร์ที่ 3 กรกฎาคม พ.ศ. 2558
Balanced Scorecard
- มุมมองด้านการเงิน (Financial Perspective; F)
- มุมมองด้านลูกค้า (Customer Perspective; C)
- มุมมองด้านการดำเนินการภายใน (Internal Perspective; I)
- มุมมองด้านการเรียนรู้และพัฒนาการ (Learning and Growth; L)
- จุดมุ่งหมาย (Objective) : ระยะสั้นและระยะยาว (Short - and Long - Term)
- การวัดผล (Measure) : ทางด้านการเงินและไม่ใช่การเงิน (Financial and Non-Financial)
- ดัชนีชี้วัด (Indicator) : เพื่อการติดตามและการผลักดัน (lagging and Leading)
- มุมมอง (Perspective) : ภายในและภายนอก (Internal and External)
แผนที่กลยุทธ์(Strategy Map) และ BSC
สิ่งที่คนในองค์กรจะเข้าใจเป้าหมายขององค์กรได้ง่าย ก็คือการ สร้าง map หรือ road map ที่แสดงเป็นขั้นตอนหรือเส้นทางที่จะดำเนินงาน ซึ่งแผนการดำเนินงานขององค์กรภาวะที่มีข้อจำกัดและมีการแข่งขัน จึงต้องเป้นแผนที่กลยุทธ์ หรือแผนยุทธศาสตร์ การจัดทำแผนยุทธศาสตร์บนพื้นฐานของมุมมองทั้ง 4 และความสมดุลทั้ง 4 BSC ยังให้ความสำคัญต่อความเชื่อมโยงมุมมอง (Perspective) โดยนำเสนอใน 2 รูปแบบคือ
- ช่วยให้มองเห็นวิสัยทัศน์ขององค์กรได้ชัดเจน
- ได้รับการความเห็นชอบและยอมรับจากผู้บริหารทุกระดับ ทำให้ทุกหน่วยงานปฏิบัติงานได้สอดคล้องกันตามแผน
- ใช้เป็นกรอบในการกำหนดแนวทางการทำงานทั่วทั้งองค์กร
- ช่วยให้มีการจัดแบ่งงบประมาณและทรัพยากรต่าง ๆ สำหรับแต่ละกิจกรรมได้อย่างเหมาะสม
- เป็นการรวมแผนกลยุทธ์ของทุกหน่วยงานเข้ามาไว้ด้วยกัน ด้วยแผนธุรกิจขององค์กร ทำให้แผนกลยุทธ์ทั้งหมดมีความสอดคล้องกัน
- สามารถวัดผลได้ทั้งลักษณะเป็นทีมและตัวบุคคล
วันพฤหัสบดีที่ 2 กรกฎาคม พ.ศ. 2558
เดินไปตามความฝันของคุณ อย่ายอมให้ใครขโมยมันไปได้
เด็กชายอายุ 16 ปี คนหนึ่ง ชื่อว่ามอนตี้
ซึ่งคุณครูสั่งให้เขียนเรียงความเรื่อง " โตขึ้นอยากเป็นอะไร "
มอนตี้ก็เขียนบรรยายไป 7 หน้ากระดาษถึงความฝันของเขา
ที่จะเป็นเจ้าของคอกม้า พร้อมด้วยบ้านพื้นที่ 4,000 ตารางฟุต
บนเนื้อที่ 200 เอเคอร์
เขาบรรยายพร้อมกับวาดแผนผังแสดงรายละเอียดไว้ทุกๆ ส่วน
แต่เมื่อเขานำไปส่ง กลับได้คะแนน " F "
และคุณครูเรียกให้ไปพบหลังเลิกเรียน
หลังเลิกเรียน มอนตี้ ก็เข้าไปพบคุณครู
และถามว่าทำไมเรียงความของเขาจึงได้ " F "
ก็ได้รับคำตอบว่าสิ่งที่เขาเขียนนั้นมันเป็นสิ่งที่เป็นไปไม่ได้
เพราะมันต้องใช้เงินมากมาย
เกินกว่าฐานะของครอบครัวของมอนตี้จะสามารถทำได้
แม้ว่ามอนตี้จะชี้แจงให้ฟังว่ามันเป็นแค่ความฝันของเขา
แต่คุณครูไม่รับฟัง และขอให้มอนตี้ไปเขียนเรียงความมาใหม่
โดยขอให้เขียนถึงเรื่องที่มันพอจะเป็นไปได้บ้าง แล้วจะแก้คะแนนให้
มอนตี้ก็กลับบ้าน และนำปัญหานี้ไปปรึกษากับพ่อของเขา
ซึ่งพ่อของเขาก็ให้คำตอบว่า " เรื่องนี้พ่อคงช่วยอะไรลูกไม่ได้
มันขึ้นอยู่กับการตัดสินใจของลูกเอง แต่พ่อมีความรู้สึกบางอย่างว่า
การตัดสินใจของลูกครั้งนี้ จะเป็นสิ่งที่มีความสำคัญ
ต่ออนาคตของลูกอย่างแน่นอน"
มอนตี้ ใคร่ครวญกับเรื่องนี้อยู่เป็นสัปดาห์
ในที่สุดเขาก็ตัดสินใจได้ เขานำเรียงความเรื่องเดิมไปส่งคุณครู
พร้อมกับพูดว่า " ให้คะแนน F กับผมก็แล้วกัน
ผมจะรักษาความฝันของผมไว้ "
มอนตี้เล่าเรื่องนี้ให้กับผู้มาเยือนเขาฟังพร้อมกล่าวว่า
"ที่ผมเล่าเรื่องนี้ให้พวกคุณฟัง เพราะว่าขณะนี้
คุณกำลังนั่งอยู่หน้าเตาผิงในบ้านพื้นที่ 4,000 ตารางฟุต
ซึ่งตั้งอยู่กลางคอกม้าเนื้อที่ 200 เอเคอร์
และเรียงความ 7 หน้ากระดาษนั้นได้ใส่กรอบเรียงอยู่เหนือเตาผิงนี้"
และเขาได้เล่าต่อว่า " สิ่งที่ดีที่สุดของเรื่องนี้ก็คือ
ในฤดูร้อนเมื่อสองปีที่แล้วคุณครูคนเดิมพาเด็กนักเรียน 30 คน
มาพักค้างแรมที่นี่เป็นเวลาหนึ่งสัปดาห์
ก่อนจากไปท่านพูดกับผมว่า มอนตี้ สมัยครูเป็นครูของเธอ
ครูคงเป็นนักขโมยความฝัน ครูเสียใจนะที่
ครูได้ขโมยความฝันของเด็กๆ ไปตั้งมากมาย
แต่ครูก็ดีใจที่เธอไม่ยอมให้ครูขโมยความฝันของเธอ"
*****************************
อย่าปล่อยให้น้ำลายราคาถูก
มาทำลายความฝันราคาแพงของเราไป
และอย่าเอาแต่ฝัน ลงมือทำให้เป็นจริงด้วย
ความดัดจริตของสังคมไทย
คนเลว = คนที่แต่งตัวไม่ดี
คนทำงานไม่เก่ง แต่นำเสนอเก่ง = เก่ง
คนที่ทำมากกว่าพูด = คนโง่
คนฟังเก่ง = คนไม่เก่ง
คนไม่ดี = คนจน ไม่น่านับถือ
คนจบ ป.4 = โง่
= ผู้บริหาร เงินเดือนสูง
= พนักงานระดับล่าง เงินเดือนน้อย
จบปริญญาในเมืองไทย = ธรรมดา
นั่งรถเมล์ แต่มีบ้านของตัวเอง = จน
ใช้มือถือตกรุ่น = คนจน
วันอังคารที่ 23 มิถุนายน พ.ศ. 2558
หน่วยงานของรัฐ
- ส่วนราชการ หมายถึงหน่วยงานที่รับผิดชอบให้บริการสาธารณะทางปกครองซึ่งเป็นภารกิจหลักของรัฐ ให้บริการเป็นการทั่วไปและไม่มุ่งกำไร ใช้งบประมาณแผ่นดิน ใช้อำนาจฝ่ายเดียวของรัฐเป็นหลักในการดำเนินกิจกรรม บุคลากรมีสถานะเป็นข้าราชการและรัฐต้องรับผิดชอบแต่เพียงผู้เดียวในการกระทำของหน่วยงาน
- รัฐวิสาหกิจ หมายถึงหน่วยงานที่รับผิดชอบบริการสาธารณะทางอุตสาหกรรมและพาณิชยกรรม มีวัตถุประสงค์เพื่อการแสวงหารายได้ ต้องสามารถเลี้ยงตัวเองจากการดำเนินงานเชิงพาณิชย์ แต่หากมีความจำเป็นต้องรับเงินงบประมาณสนับสนุนเป็นครั้งคราวหรือบางส่วน ในกรณีนี้รัฐก็ควรจัดสรรงบประมาณให้ในรูปของเงินอุดหนุนซึ่งควรจะแยกจากการเก็บค่าบริการตามปกติของรัฐวิสาหกิจนั้นๆให้ชัดเจน เป็นนิติบุคคลและมีความสัมพันธ์กับรัฐซึ่งประกอบด้วยรัฐจัดตั้ง ทุนเกินครึ่งเป็นของรัฐ รัฐมีอำนาจบริหารจัดการ (ผ่านการแต่งตั้งคณะกรรมการและผู้บริหารระดับสูงและการให้นโยบาย)การลงทุนต้องขอความเห็นชอบจากรัฐและรายได้ต้องส่งคืนรัฐ บุคลากรมีสถานะเป็นพนักงานรัฐวิสาหกิจ และมีวิธีดำเนินการไม่ใช้อำนาจฝ่ายเดียวเป็นหลัก แต่ใช้สัญญา ไม่ใช้กฎระเบียบของทางราชการในการบริหารการเงิน การบริหารงานและการบริหารบุคคล ยกเว้นรัฐวิสาหกิจที่ต้องใช้อำนาจพิเศษของรัฐ เช่น เวนคืน ปักเสา พาดสาย ต้องจัดตั้งโดยมีพระราชบัญญัติรองรับ
- องค์การมหาชน หมายถึงหน่วยงานที่รับผิดชอบบริการสาธารณะทางสังคมและวัฒนธรรม ไม่มีวัตถุประสงค์ในการแสวงหากำไร เป็นนิติบุคคลและมีความสัมพันธ์กับรัฐ รัฐจัดตั้ง ได้รับเงินอุดหนุนจากรัฐหรือสามารถเลี้ยงตัวเองได้ และรัฐมีอำนาจบริหารจัดการ การลงทุนต้องขอความเห็นชอบจากรัฐ บุคลากรมีสถานะเป็นเจ้าหน้าที่ของรัฐ วิธีดำเนินการไม่ใช้อำนาจฝ่ายเดียวเป็นหลัก แต่ใช้สัญญา ไม่ใช้กฎระเบียบของทางราชการ
- หน่วยงานของรัฐรูปแบบใหม่ หมายถึงองค์การของรัฐที่เป็นอิสระ ซึ่งเป็นหน่วยงาน รูปแบบใหม่ที่จัดตั้งขึ้นเพื่อทำหน้าที่ในการควบคุม กำกับดูแลกิจกรรมของรัฐตามนโยบายสำคัญที่ ต้องการความเป็นกลางอย่างเคร่งครัด ปราศจากการแทรกแซงจากอำนาจทางการเมือง เช่น ธนาคารแห่งประเทศไทย สำนักงานคณะกรรมการกำกับหลักทรัพย์และตลาดหลักทรัพย์ สำนักงาน คณะกรรมการกิจการโทรคมนาคมแห่งชาติ เป็นต้น
- อีกอย่างหนึ่งคือ กองทุนที่เป็นนิติบุคคลซึ่งเป็นเครื่องมือทางเศรษฐกิจของรัฐ หมายถึง นิติบุคคลที่จัดตั้งขึ้นโดยตราเป็นพระราชบัญญัติเนื่องจากต้องการอำนาจรัฐในการบังคับฝ่ายเดียว ต่อภาคเอกชนหรือประชาชนในการสมทบเงินเข้ากองทุน ฯลฯ
วันเสาร์ที่ 20 มิถุนายน พ.ศ. 2558
Understanding Multipathing and Failover
วันศุกร์ที่ 24 เมษายน พ.ศ. 2558
ขอบเขตของงานวิจัย
ส่วน ข้อจำกัด ของงานวิจัย ให้ใส่ไว้บทที่ 5
คำถามวิจัย และสมมติฐาน
วันพุธที่ 15 เมษายน พ.ศ. 2558
Federated cloud VS Multi-provider cloudห VS Hybrid cloud
- Federated clouds คือ การใช้ cloud computing services ของหลายๆ separate clouds ร่วมกันภายใน enterprise เดียวกัน
- Multi-provider clouds ความหมายเหมือน federated cloud แต่ services เหล่านั้นต้องมาจากหลายๆ providers ด้วย ดังนั้นจึง specialized กว่า federated clouds
- Hybrid cloud คือ Multi-provider clouds ที่ถูกเชื่อมต่อเข้าด้วยกันผ่านเครือข่าย (interconnected)
False positives and false negatives
--wikipedia
วันเสาร์ที่ 11 เมษายน พ.ศ. 2558
User manual VS System manual
• คู่มือสำหรับผู้ใช้โปรแกรม (User's Manual or User's Guide) คือเอกสารที่อธิบายวิธีการใช้ระบบหรือโปรแกรม เรียกว่า User Manual ใช้สำหรับผู้ใช้งานโปรแกรม แนะนำวิธีการใช้งานโปรแกรม (UI) แนะนำคุณสมบัติ และองค์ประกอบของโปรแกรมต่างๆ วิธีการติดตั้งโปรแกรม สามารถทำควบคู่ไปกับการเขียนโปรแกรม อาจทำเป็นคู่มือเอกสารที่อยู่ในรูปแบบโปรแกรมออนไลน์ก็ได้ (Online Manual)
• คู่มือสำหรับผู้เขียนโปรแกรม (Programmer's Manual or Programmer's Guide) เป็นคู่มือที่จัดทำขึ้น เพื่อให้ผู้พัฒนาโปรแกรม รวมทั้งเทคนิคพิเศษต่างๆ ของโปรแกรม เพื่อให้สะดวกต่อการปรับปรุงแก้ไขโปรแกรมที่มีอยู่เดิม โดยทั่วไปจะเป็นเอกสารแสดงการวิเคราะห์ และออกแบบระบบ (รวม source codes) เรียกว่า System Manual ใช้สำหรับผู้พัฒนาระบบหรือโปรแกรม เท่านั้น
--http://www.elearning.msu.ac.th/opencourse/1201104/Unit_2/Unit_1_01_2.htm
วันศุกร์ที่ 3 เมษายน พ.ศ. 2558
วันเสาร์ที่ 28 มีนาคม พ.ศ. 2558
FPGA to ASIC
วันพฤหัสบดีที่ 26 มีนาคม พ.ศ. 2558
วันอังคารที่ 24 มีนาคม พ.ศ. 2558
Service innovation
--ดร.มนู
วันอังคารที่ 17 มีนาคม พ.ศ. 2558
เดลฟาย (Delphi) VS Focus group
วันอาทิตย์ที่ 15 มีนาคม พ.ศ. 2558
นิยามของ IoT
http://www.gartner.com/it-glossary/?s=iot
http://community.comsoc.org/blogs/alanweissberger/internet-things-iot-key-messages-part-2-idc-directions-2014-market-survey-abst
ภาควิจัย จะหมายถึง the Internet of sensorized embedded systems
http://theinstitute.ieee.org/static/special-report-the-internet-of-things
http://www.internet-of-things-research.eu/about_iot.htm
ITU's IoT definition (https://www.itu.int/en/ITU-T/gsi/iot/Pages/default.aspx) :
The Internet of Things (IoT) has been defined in Recommendation ITU-T Y.2060 (06/2012) as a global infrastructure for the information society, enabling advanced services by interconnecting (physical and virtual) things based on existing and evolving interoperable information and communication technologies.
Virtual Desktop Infrastructure (VDI)
วันเสาร์ที่ 7 มีนาคม พ.ศ. 2558
สัญโญชน์
ภิกษุทั้งหลาย ! สังโยชน์ ๑๐ ประการเหล่านี้ มีอยู่สิบประการอย่างไรเล่า ? สิบประการ คือ :-
โอรัมภาคิยสังโยชน์ ๕ ประการ
อุทธัมภาคิยสังโยชน์ ๕ ประการ.
โอรัมภาคิยสังโยชน์ ๕ ประการ เป็นอย่างไรเล่า ?
คือ สักกายทิฏฐิ=ความยึดถือว่ากายเป็นของตน, วิจิกิจฉา=ความลังเลสงสัย, สีลัพพตปรามาส=การเชื่อในความขลัง ความศักดิสิทธิ การบันดาล, กามฉันทะ=ความพอใจในรูปรสกลิ่นเสียงสัมผัส, พยาบาท
เหล่านี้ คือ โอรัมภาคิยสังโยชน์ ๕ ประการ.
อุทธัมภาคิยสังโยชน์ ๕ ประการ เป็นอย่างไรเล่า ?
คือ รูปราคะ, อรูปราคะ, มานะ, อุทธัจจ, อวิชชา
เหล่านี้คือ อุทธัมภาคิยสังโยชน์ ๕ ประการ.
ภิกษุ ทั้งหลาย เหล่านี้แล สังโยชน์ ๑๐ ประการ.
คู่มือโสดาบัน หน้า ๑๒๗
(ไทย) ทสก. อํ. ๒๔/๑๖/๑๓
(บาลี) ทสก. อํ. ๒๔/๑๘/๑๓