🤔想要用 web service 來展示你的 model 的時候,只有 Jupyterhub 怎麼辦呢?
😥不想租 AWS、GCE,想用自己的本機的跑 server 的時候,又要怎麼辦呢?
這次要介紹的 ngrok,可以讓你輕鬆地在任何機器上建立讓別人可以連線的 server。
快看怎麼做👉 http://bit.ly/37o7LIb
#台灣人工智慧學校medium專欄
#作者為台灣人工智慧學校AI工程師
#台北總校 #新竹校區 #台中校區 #南部校區
同時也有30部Youtube影片,追蹤數超過22萬的網紅Zermatt Neo,也在其Youtube影片中提到,In this video, I went over to Shin Minori at Katong Square to DESTROY their buffet. Shin Minori is a Japanese buffet that offers over 160 items on the...
「simple http server」的推薦目錄:
- 關於simple http server 在 台灣人工智慧學校 Facebook 的最佳解答
- 關於simple http server 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的精選貼文
- 關於simple http server 在 Zermatt Neo Youtube 的最佳貼文
- 關於simple http server 在 RAP'TUM GAMERChannel Youtube 的最佳解答
- 關於simple http server 在 RAP'TUM GAMERChannel Youtube 的最佳解答
- 關於simple http server 在 Python 快速建立簡單網頁伺服器http web sever 的評價
- 關於simple http server 在 Simple http server in Rust (Windows/Mac/Linux) - GitHub 的評價
- 關於simple http server 在 Python SimpleHTTPServer doesn't work - A server error ... 的評價
- 關於simple http server 在 Simple command line HTTP server - Unix StackExchange 的評價
simple http server 在 โปรแกรมเมอร์ไทย 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
simple http server 在 Zermatt Neo Youtube 的最佳貼文
In this video, I went over to Shin Minori at Katong Square to DESTROY their buffet. Shin Minori is a Japanese buffet that offers over 160 items on their buffet menu, ranging from fresh sashimi (thinly sliced raw meat/fish) to crispy agemono (deep-fried dishes). Do check out their website listed below for their full range of dishes.
However, things did not turn out according to plan as service was unexpectedly slow. The average wait time between orders was easily 30 minutes and a significant number of orders were forgotten, never to arrive. I aimed to demolish 200 pieces of sushi for you guys, but after a laboured 2.5-hour affair, I was defeated only by time and restlessness with a modest 90 pieces of sushi eaten. It was hard to say if it was the robot server Loco who was the culprit, or just a simple manpower issue. They even sent a slice of birthday cake with the candle unlit!
The silver-lining was that the food was genuinely good and well-presented. Not a single dish was unwelcomed in my mouth, while there were a few standouts like the various avocado makis and the bean curd skin sushi. If the food had arrived regularly while maintaining this quality, it would have been a fantastic Japanese buffet experience.
Do head down to Shin Minori (preferably their UE outlet) to satisfy your Japanese cravings!
Additionally, I will be defending my title this weekend at Eatbox (Downtown East) on the 23rd February 2020. The eating contest will start at 5pm so please do come down to watch. I would love to meet you guys!
Visit Shin Minori at:
UE Square
81 Clemenceau Avenue
#03-15/16 UE Square Singapore 239917
Katong Square
88 East Coast Road #02 – 08
Katong Square Singapore 423371
Website: http://shinminori.com.sg/
Connect with me!
Facebook - https://www.facebook.com/zermattneofls
Instagram - http://instagram.com/zermattneo
Tee Shirts - https://www.bonfire.com/eating-things/
simple http server 在 RAP'TUM GAMERChannel Youtube 的最佳解答
Minecraft : โปรโมทเซิฟเวอร์ MC-BasZ เซิฟเเนว MineZ 50-300 ยิงกันสนุกๆฟาร์มบอส [1.10.2]
? BasZ MineZ ?
【★】☞ ▶️ IP : mc-basz.tk
【★】☞ ▶️ เเฟนเพจเซิฟ : https://www.facebook.com/Server-BasZ-Minecraft-2263738850336641/?fref=gs&dti=420148638560424&hc_location=group_dialog
【★】☞ ▶️ กลุ่มเซิฟ : https://www.facebook.com/groups/420148638560424/
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
【★】☞ ● เฟสบุ๊คส่วนตัว Facebook : https://goo.gl/GF805A
ถ้าชอบกด Like และกด Subscribe เพื่อเป็นกำลังใจในการทำคลิปต่อๆไปนะค๊าบ :)
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
【★】☞ Subscribe : https://goo.gl/mrwwki
【★】☞ Facebook : https://goo.gl/VhU25y
✖══════════════════════════════✖
【★】ถ้าชอบ อย่าลืมกดปุ่ม 'สมัครรับข้อมูล' ด้วยนะครับ !!
เพื่อไม่พลากคลิปใหม่ๆจากแชแนล!! ^^ :)
【★】และอย่าลืมกด Like คลิป ! และแชร์ต่อให้เพื่อนๆได้ดูกันด้วยนะครับ !! ^^
【★】Subscribe เพื่อให้กำลังใจกันด้วยนะครับ :)
● ขอบคุณที่สนับสนุนกันมาตลอด
● เเละขอบคุณสำหรับการรับชมครับ
● Thanks For Watching !
** ขอบคุณทุกท่านที่สนับสนุนเเละรับชมครับ! เจอกันใหม่คลิปหน้าครับ! **
✖══════════════════════════════✖
【★】ติดตามโซเชี่ยลต่างๆได้ที่ลิ้งค์ด้านล่าง !
● Facebook : https://goo.gl/VhU25y
● Twitter : https://goo.gl/DOR5gF
● YouTube : https://goo.gl/mrwwki
● Steam : http://goo.gl/lP1UgV
✖══════════════════════════════✖
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
【★】☞ ▒▒ version : ที่ใช้ Minecraft 1.10.2 ▒▒ ☜【★】
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
【★】☞ ▒▒▒▒▒ มอดที่ใช้ "Mod" ▒▒▒▒▒ ☜【★】
● Shaders Mod : http://goo.gl/k5pzlV
★ Sildurs Vibrant shaders
★ BetterFoliage
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
● เพลงที่ใช้ "Music"
★ Happy Background music by Sophonic Media
★ Happy background music for kids videos and children games Apps
★ Happy Background Music MP3
★ Happy Ukulele Royalty Free Music For Youtube Videos
★ Spring In My Step
★ Payday
★ Summer Smile
★ Venice_Beach
★ Jingle Bells Christmas Background Music Holiday
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
● โปรแกรมที่ใช้
★ ''Action!''
★ "Fraps"
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
● ออกแบบโดย Build By RAP'TumGAMER
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
★ tag ★
Keralis,MagmaMusen,สอนสร้างที่ตกปลา,สอนสร้างศาลาไทยริมน้ำ,หัดสร้าง,สร้างที่ตกปลาง่ายๆสวยๆ,ที่ตกปลามีสไตล์,มาสร้างศาลาไทยกันเถอะ,เล่นมายคราฟ,ที่ตกปลาแบบเรียบง่ายๆ ที่ใครๆ ก็ทำได้...,สอนสร้างแบบไทยๆ,บ้านริมน้ำ,วิธีสร้างศาลาไทยริมน้ำแบบง่ายๆ,เวอร์ชั่น 1.7-1.8,How to build Pavilion,Forest,Build fishing hut,Home,Simple fishing hut,Riverside,Minecraft,Fishing hut,How To Build House,version 1.7-1.8,Simple 2015,Lets Build Minecraft
#Minecraft #BasZ #MineZ
simple http server 在 RAP'TUM GAMERChannel Youtube 的最佳解答
Minecraft : โปรโมทเซิฟเวอร์ MC-BasZ เซิฟเเนว WarZ ฟาร์มของ ตีบอส ยิงต่อสู้กัน PVP [1.10.2]
? MC-BasZ ?
【★】☞ ▶️ IP : 103.212.180.244
【★】☞ ▶️ เว็บShopเซิฟ : http://103.212.180.244/index.php
【★】☞ ▶️ เเฟนเพจเซิฟ : https://www.facebook.com/Server-BasZ-Minecraft-2263738850336641/?_rdc=1&_rdr
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
【★】☞ ● เฟสบุ๊คส่วนตัว Facebook : https://goo.gl/GF805A
ถ้าชอบกด Like และกด Subscribe เพื่อเป็นกำลังใจในการทำคลิปต่อๆไปนะค๊าบ :)
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
【★】☞ Subscribe : https://goo.gl/mrwwki
【★】☞ Facebook : https://goo.gl/VhU25y
✖══════════════════════════════✖
【★】ถ้าชอบ อย่าลืมกดปุ่ม 'สมัครรับข้อมูล' ด้วยนะครับ !!
เพื่อไม่พลากคลิปใหม่ๆจากแชแนล!! ^^ :)
【★】และอย่าลืมกด Like คลิป ! และแชร์ต่อให้เพื่อนๆได้ดูกันด้วยนะครับ !! ^^
【★】Subscribe เพื่อให้กำลังใจกันด้วยนะครับ :)
● ขอบคุณที่สนับสนุนกันมาตลอด
● เเละขอบคุณสำหรับการรับชมครับ
● Thanks For Watching !
** ขอบคุณทุกท่านที่สนับสนุนเเละรับชมครับ! เจอกันใหม่คลิปหน้าครับ! **
✖══════════════════════════════✖
【★】ติดตามโซเชี่ยลต่างๆได้ที่ลิ้งค์ด้านล่าง !
● Facebook : https://goo.gl/VhU25y
● Twitter : https://goo.gl/DOR5gF
● YouTube : https://goo.gl/mrwwki
● Steam : http://goo.gl/lP1UgV
✖══════════════════════════════✖
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
【★】☞ ▒▒ version : ที่ใช้ Minecraft 1.10.2 ▒▒ ☜【★】
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
【★】☞ ▒▒▒▒▒ มอดที่ใช้ "Mod" ▒▒▒▒▒ ☜【★】
● Shaders Mod : http://goo.gl/k5pzlV
★ Sildurs Vibrant shaders
★ BetterFoliage
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
● เพลงที่ใช้ "Music"
★ Happy Background music by Sophonic Media
★ Happy background music for kids videos and children games Apps
★ Happy Background Music MP3
★ Happy Ukulele Royalty Free Music For Youtube Videos
★ Spring In My Step
★ Payday
★ Summer Smile
★ Venice_Beach
★ Jingle Bells Christmas Background Music Holiday
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
● โปรแกรมที่ใช้
★ ''Action!''
★ "Fraps"
☆═━┈┈━═☆☆═━┈┈━═☆☆═━┈┈━═☆
● ออกแบบโดย Build By RAP'TumGAMER
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
★ tag ★
Keralis,MagmaMusen,สอนสร้างที่ตกปลา,สอนสร้างศาลาไทยริมน้ำ,หัดสร้าง,สร้างที่ตกปลาง่ายๆสวยๆ,ที่ตกปลามีสไตล์,มาสร้างศาลาไทยกันเถอะ,เล่นมายคราฟ,ที่ตกปลาแบบเรียบง่ายๆ ที่ใครๆ ก็ทำได้...,สอนสร้างแบบไทยๆ,บ้านริมน้ำ,วิธีสร้างศาลาไทยริมน้ำแบบง่ายๆ,เวอร์ชั่น 1.7-1.8,How to build Pavilion,Forest,Build fishing hut,Home,Simple fishing hut,Riverside,Minecraft,Fishing hut,How To Build House,version 1.7-1.8,Simple 2015,Lets Build Minecraft
#Minecraft #MCBasZ #WarZ
simple http server 在 Simple http server in Rust (Windows/Mac/Linux) - GitHub 的推薦與評價
Simple http server in Rust (Windows/Mac/Linux). Contribute to TheWaWaR/simple-http-server development by creating an account on GitHub. ... <看更多>
simple http server 在 Python 快速建立簡單網頁伺服器http web sever 的推薦與評價
寫一個簡單Python 3 的本機http server. Python 2.x 使用指令建立SimpleHTTPServer. Python 內建http server,透過下列指令,你可以快速地建立目錄 ... ... <看更多>