👧今天是AIT程式少女特訓營的最終日,也恰好是國際女童日,我們請出英語教育專家Bubba與Fulbright Taiwan 學術交流基金會的傅爾布萊特英語協同教師,以堅強的英語師資陣容為學員帶來STEM English。從做中學,大家學習到新的英語溝通技巧,一起探索各種建築技術並搭建出風車,學英文也能樂趣無窮!
這三天來AIT程式少女特訓營的學員學到STEM English、Minecraft程式設計、AI大挑戰和女性領導力,也在過程中建立新友誼。在成果發表會中,Microsoft 代表徐國峯老師、東華大學吳建銘教授與英語教育專家Bubba特別恭喜學員創下佳績。她們燦爛的笑容真是燦爛,為此次特訓營劃下難忘的句點!
👧Today is the last day of AIT Girls Tech Bootcamp! Today is also the International Day of the Girl Child. We invited English language education expert Bubba to team up with Fulbright English Teaching Assistants (ETA) from Fulbright Taiwan 學術交流基金會(The Foundation of Scholarly Exchange) to bring STEM English to campers. Campers explored different architectural techniques and learned new English communication skills to build windmills. Learning English through hands-on projects can be lots of fun!
Over the past three days campers in the 2020 Girls Tech Bootcamp learned about STEM English, Minecraft programming, Artificial Intelligence Challenges and women’s leadership. They also bonded with each other through all of this! In the closing ceremony, Microsoft representative Mr. Hsu Kuo-feng, National Dong Hwa University Dr. Wu Jiann-ming and English language educator Bubba congratulated them for their unparalleled achievement. Their smiles brighten our day. #AmericanEnglish #BubbasEnglishCorner #STEMEnglish #GirlsTechBootcamp #AIT程式少女特訓營
同時也有1部Youtube影片,追蹤數超過12萬的網紅prasertcbs,也在其Youtube影片中提到,Use FORMAT() function to format number, date and time with culture การใช้ฟังก์ชัน FORMAT() เพื่อกำหนดรูปแบบการแสดงผลตัวเลข วันและเวลา Download a samp...
「microsoft new programming language」的推薦目錄:
- 關於microsoft new programming language 在 美國在台協會 AIT Facebook 的最佳解答
- 關於microsoft new programming language 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的精選貼文
- 關於microsoft new programming language 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的最佳解答
- 關於microsoft new programming language 在 prasertcbs Youtube 的精選貼文
microsoft new programming language 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的精選貼文
+++ access token คืออะไรใน facebook ++++
😋 ปกติ facebook เปิดให้เว็บ (รวมทั้งแอพ) ที่เราเขียนขึ้น
สามารถใช้ระบบ login ของ facebook ได้
ทำให้เว็บนั้นได้สิทธิเข้าถึงข้อมูลส่วนตัวของ user นั้นๆ บน facebook
....
Continue Reading+++ What is access token on Facebook ++++
😋 Facebook is usually open for web (including apps) that we write up.
Facebook login system can be used
Make that web access to user's personal information on Facebook.
.
And in many sites, we must have seen.
Just have an account on Facebook, you can log in.
No need to waste time. Fill out a new subscription.
:
In this post will quote
Using Facebook Login
Behind that success, Facebook will give away access token
So that any web can manage user login
:
Before talking about access token, let me go back to the age of 2534
When "Timberners-Lee" delivered the world's first website.
It's a common thing that human beings use to be.
:
❣ but my weaknesses.... is in the heart
Hey, it's not the weaknesses of the website.
Well it uses HTTP potocol
Which is stateless. Don't remember any status.
The meaning is that Server is very short of memory. Alzheimer's disease.
When it gets request from browser
I don't remember where it came from???
Who sent it, I can't remember anymore!!!!!
:
🤔 to solve this cuddle nha technically
He will give you a server to send session id (or session token)
Which session id is something we can't read and long
It will be sent to browser. Keep this in the cookie.
.
.. Wrong is not that cookie.. but cookies are text
Server will send session id to browser
Keep the value in cookies (keep text on browser side)
:
Programming time on server side
Like PHP when using session _ start ();
Will tell browser to collect session id in text photos such as
PHPSESSID=tqb4s5q7k25234eabbvs11dp02
(session id is a random code)
:
But if it's another language, it may be seen in other words.
E.g. JSSIONID (JAVA EE), PHPSESSID (PHP), and ASPSESSIONID (Microsoft ASP).
.
😉 Even here session id... may think it's a ID code.
:
From now on when users click on what on the web page
Browser will be kind.
Secretly sending this session id to server automatically
Make the server recover from Alzheimer's.
... I remember where the request sent this... yay yay
.
So if the request sent in
It has the same session id
It's considered the same friends.
(Computer vocabulary says these request is in the same SESSION)
.
What if it's not the same session id
It's considered that request is not the same people.
:
👉 Benefits of session id
Will be used in conjunction with login / logout mechanism
1) When user name XXX comes in, there will be a session id.
2) When another user name YY does login, there will be a session id as a different ID.
3) When both users do logout, it will expire session id.
:
Question if we went to wash all the cookies in browser what would happen?
- answer for session id will be gone.
- So who secretly login is holding this web? What is that... huhu
- I have to logout automatically for new login... So sad. Haha.
(server doesn't remember us anymore
Because browser doesn't send session id)
:
Session id sounds like good
😨 but using user / password to login will have disadvantage such as
1) Easy to hacker to sneak in session
To wear sesion id (Cross-Site Request Forgery: CSRF)
... Technically, let's not talk about it. Read it on the
2) It is a burden for server to remember the session id. What rights you have and remember other information of user etc.
3) If you want to give the same user, login different devices such as
Web is fine. Mobile phone is good... It will be more difficult. (I have to copy session)
4) and other disadvantage not mentioned
:
😘 but he has a technique to solve the way.
.
Well, use what's called "acces token"
To get access token
I have to login with user / password to exchange it.
... We have to stand in the cat before we get access token.
Then we can use it instead of login
.
Keep us from feeding user / password often
And each user will get access token. Different look alike.
When it's time for user to do logout, access token will expire immediately.
:
😙 Here access token may compare like a key
Or maybe you can see it as a ticket or a pass... It's up to the imagination.
Difference from session id is
1) access token will not be kept in cookies
2) access token will collect information that can be revealed.
e.g. user _ id, rights, expiration date
(Not a burden for server to remember these information)
:
If you use access token with login mechanism, you will see the advantages like
1) Prevent hacker from using session by Cross-Site Request Forgery (CSRF)
2) Can login from mobile phone and just use the same user.
Just giving away access token... It's like Facebook.
(Not stored in browser cookies)
3) The server can leave a hassle login / logout duty... Throw it to authenticate service outside.
4) Server doesn't need to take care of user information.
:
😀 Cut back to see login mechanism with facebook user / password
The concept is as shown in the photo that I posted. (as an example of php)
Simple summary
- user time login
- It will sneak a switch to Facebook to do login instead.
- Then Facebook will throw back access token to our web
- Then user will use it as a pass. No need to login again.
:
There are many types of access token of Facebook such as
-User Access Token
- App Access Token
- Page Access Token
-Client Token
Each type has different rights. I can't ask for deep.
:
👉 session id and access token all this story
It's a sweet, fragrant hacker. I like it very much.
If they can steal, they can wear a login user.
Then hacker will get all rights like user... done here
.
Except we logout
To make session id or access token expire
Then the hacker will be out of bogs.
:
In the user corner. Just login.
Don't mind access token behind the scenes
But if it's a #programmer, you need to be extra mindful.
Because even four feet know that the philosopher knows.
The biggest giant. Big brother like Facebook.
Still missed it. Let access token out so that it's a big news.
.
👌 So, programming
Let's be mindful about access token. Don't fall off.
Be safe from hakcker to the best
Good luck to all of you.
:
:
Written by Thai programmer thai programmer
:
+++++++++++++
Reference
1) https://developers.facebook.com/docs/php/howto/example_facebook_login?locale=th_TH
2) https://developers.facebook.com/docs/facebook-login/access-tokens?locale=th_THTranslated
microsoft new programming language 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的最佳解答
เด็กสมัยนี้เรียนเขียนโปรแกรมตั้งแต่ประถม ยันมัธยม จากที่ไหนได้บ้าง?
สำหรับแหล่งเรียนรู้แรกก็คือ
👉 1) จากวิชาเรียน "วิทยาการคำนวณ" วิชาบังคับใหม่แกะกล่องของกระทรวงศึกษา โดยนำร่องเริ่มแค่ ป.1, ป.4 และ ม.1, ม.4 ในปี 2561
แล้วจะค่อยขยับไป ป.1, ป.2., ป.4, ป5, และ ม.1, ม.2, ม.4, ม.5 ในปีหน้า
จนครบทุกชั้นปีตั้งแต่ป.1 ถึง ม.6 ในปี 2563
ส่วนเนื้อหาในตำราเรียน ถ้าเป็นระดับประถมจะเป็นการ์ตูนสนุกๆ อ่านง่าย อ่านเพลิน ไม่น่าเบื่อ ในส่วนการสอนโคดดิ่ง ก็จะแนะนำ Scratch เป็นภาษาภาพ
พอ ม.1 จะเริ่มเขียนโปรแกรมแหละ เขาจะให้โรงเรียนเลือกสอนเป็น Python หรือ Scratch ก็ได้
(ถ้าสนใจจะซื้อหนังสือเรียนวิทยาการคำนวณ ก็สั่งได้ที่ศูนย์หนังสือจุฬา นะครับ)
++++ แต่ย้ำนะครับว่าหลักสูตรใหม่นี้ของเด็ก เรื่องของการเขียนโปรแกรม เป็นเพียงแค่ 1 ใน 3 ของการเรียนการสอนเท่านั้น ไม่ได้ยัดสอนเขียนโปรแกรมล้วนๆ แบบในมหาวิทยาลัย
👉 2) ต่อมาถ้าใครอยากเรียนรู้นอกตำรา ก็สามารถเรียนเขียนโปรแกรมไปพร้อมๆ กับ BNK48 (เป็นพรีเซนเตอร์) ที่โครงการ coding thailand สำหรับเว็บไซต์ก็คือ https://codingthailand.org
เว็บนี้สามารถใช้เป็นสื่อการเรียนและการสอน ประกอบวิชา "วิทยาการคำนวณ" ในข้อ 1) ได้โดยตรง ซึ่งเนื้อหาสำหรับเด็กประถม จะใช้ภาษาภาพ เป็นบล็อกคำสั่ง
เพราะปกติการเรียนเขียนโปรแกรมสำหรับเด็กเล็ก เขาจะให้เล่นผ่านเกม สร้างเรื่องราวสนุกๆ จากตัวละครเอาไว้ฝึกตรรกะ ภาษาที่ใช้เขียนจะเป็นภาษาภาพ เป็นบล็อกคำสั่งควบคุมตัวละครในเกม ทำให้การเรียนรู้สนุกไม่น่าเบื่อ
คอร์เรียนที่นี้มีตั้งแต่ประถม มัธยม ยันมหาลัย เป็นแพลตฟอร์มออนไลน์ระดับประเทศ ของสำนักงานส่งเสริมเศรษฐกิจดิจิทัลดิจิทัล (depa) ของบ้านเรา ร่วมมือกับ code.org รวมทั้งจับมือกับไมโครซอฟท์ (Microsoft) ,กูเกิล (Google) และ อักษรเอ็ดดูเคชั่น (Aksorn Education) สร้างคอร์สเขียนโปรแกรมสำหรับเด็กไทย ที่สำคัญเรียนออนไลน์ได้ฟรีๆ
👉 3) ต่อมาเป็นเว็บที่สอนเรียนเขียนโปรแกรมผ่านออนไลน์ (บางอันก็เป็นของต่างประเทศ)
- CS Unplugged (www.csunplugged.org)
- เว็บไซต์ CS4FN (www.cs4fn.org)
- เว็บไซต์ Code.org (www.code.org)
- เว็บไซต์ CASBarefoot (barefootcas.org.uk)
ส่วนแหล่งเรียนรู้อื่นๆ ที่พอแนะนำเพิ่มเติม ได้แก่
- https://programming.in.th/ เว็บฝึกเขียนโปรแกรมของ สสวท โดยเฉพาะ เนื้อหาเป็นภาษา C กับ C++ สอนเขียนโปรแกรมเป็นจริง เป็นจัง
- http://scratch.mit.edu
- http://oho.ipst.ac.th เป็นสื่อเรียนรู้ของ สสวท โดยเฉพาะ
- https://teachinglondoncomputing.org/secondary-computing-to…/
- ถ้าเป็นของ khanacademy.org แนะนำ
https://www.khanacademy.org/com…/computer-science/algorithms
- และอื่นๆ ที่ไม่ได้กล่าวถึง
Where can kids study programming from elementary to high school?
For the first source of learning is
👉 1) from study "calculation science" new mandatory subject. Unpack the box of ministry of education by pilot. Starting from the po. 1, p. 4 and university 1, m. 4 in 2561
Then I will move to the po. 1, p. 2., po 4, PO 5, and university 1, m. 2, m. 4, m. 5 next year
Until every year since the grade. 1 to university 6 in 2563
The content in textbooks, if it's elementary, it will be fun cartoon. Easy to read, not boring. In the teaching section, I will recommend scratch in photo language.
Pom. Haha. I will start writing a program. They will let school choose to teach as python or scratch.
(if you are interested in buying a book of calculation science, order at Chula Book Center)
++++ but I repeat that this new course of children. THE STORY OF PROGRAMMING IS ONLY 1 OF 3 of teaching. Not purely programming in university.
👉 2) later, if anyone wants to learn outside the textbook, you can learn how to write a program together with bnk48 (Pre-Center) at coding Thailand project for the website is https://codingthailand.org
This web can be directly used as a media and teaching "calculation science" in verse 1). The content for primary school children will use image language as a blog.
Because normally, learning programming for young children, they play through games, creating fun stories from characters to practice logic. The language that are written will be a blog. The character control of character in the game. It makes learning fun, not boring.
Corrians are available from elementary, high school to college, National Online Platform of our home digital economy promotion office cuddle l (Depa). Collaborate with code.org, including handshake hands with Microsoft ( Microsoft), Google (Google) and ed duction (Aksorn Education) create an important Thai children's programming course for free online.
👉 3) later, it's a web that teaches online programming (some of them are foreign items)
- CS Unplugged (www.csunplugged.org)
- Cs4fn Website (www.cs4fn.org)
- Website Code.Org (www.code.org).
- Casbarefoot website (barefootcas.org. UK)
More recommended learning sources include:
- https://programming.in.th/ programming training web. Especially c and c language ++ teaching how to write program.
- http://scratch.mit.edu
- http://oho.ipst.ac.th is a particular learning media.
- https://teachinglondoncomputing.org/secondary-computing-topics/
- if it belongs to khanacademy.org recommended
https://www.khanacademy.org/computing/computer-science/algorithms
- and more not mentionedTranslated
microsoft new programming language 在 prasertcbs Youtube 的精選貼文
Use FORMAT() function to format number, date and time with culture
การใช้ฟังก์ชัน FORMAT() เพื่อกำหนดรูปแบบการแสดงผลตัวเลข วันและเวลา
Download a sample (Yummi2012) database file from http://goo.gl/p5JlUQ
Download SQL script from http://goo.gl/xZE9OI
============
playlist สอน Microsoft SQL Server 2012, 2014, 2016
https://www.youtube.com/watch?v=IQdjbBrm38s&list=PLoTScYm9O0GH8gYuxpp-jqu5Blc7KbQVn
============
playlist สอน SQLite
https://www.youtube.com/watch?v=BL1ncKBW3jw&list=PLoTScYm9O0GHjYJA4pfG38M5BcrWKf5s2
============
playlist การใช้ Excel ในการทำงานร่วมกับกับฐานข้อมูล (SQL Server, MySQL, Access)
https://www.youtube.com/watch?v=HfKl6eOfNFo&list=PLoTScYm9O0GGA2sSqNRSXlw0OYuCfDwYk
============
playlist การเชื่อมต่อกับฐานข้อมูล (SQL Server, MySQL, SQLite) ด้วย Python
https://www.youtube.com/watch?v=2n2SLFET-GU&list=PLoTScYm9O0GEdZtHwU3t9k3dBAlxYoq59
============
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่
https://www.youtube.com/subscription_center?add_user=prasertcbs