[前端]Cookie & Session

在邊閱讀網路資訊的時候,我對於 cookie 和 session 從覺得理解到感到困惑,到後來又覺得好像懂了,但也許不是百分之百正確。我盡量把理解的東西寫下來,但如果有任何錯誤,歡迎指正。

0 Comments

[Python]asyncio 和 await

```python import requests import time import asyncio

0 Comments

[javascript]同步 v.s. 非同步與callback, promise, async, and await

之前因為在學 node.js 寫過一篇文章介紹同步非同步以及 callback,但之前沒有實際使用的經驗,有點懵懵懂懂,現在有了一些實際的應用的範例,所以想要再重新整理一次,並加上 promise、async, 與 await。

0 Comments

[javascript]Traversing the DOM

整理 Treehouse 前端課程中 JavaScript and the DOM 的最後一節 Traversing the DOM 內容。

0 Comments

[HTML]文件物件模型(Document Object Model)

DOM 是什麼?

0 Comments

[node.js]非同步(Asynchronous)、同步(Synchronous)、callback

簡單介紹 node.js 裡重要的「非同步(Asynchronous)」概念,那既然有「非同步(Asynchronous)」當然就會有「同步(Synchronous)」,以及因為「非同步(Asynchronous)」而衍伸出的重要 callback 概念。

0 Comments

[Neural Network]Neural Network 3 - Backpropagation

前面介紹了 neural network 使用 Gradient descent 來找 cost function 的最小值,那這篇要來介紹 neural network 如何使用 Backpropagation 這個演算法讓 neural network 訓練過程中更有效率。

0 Comments

[NLP]CNN in NLP

前一篇介紹了 CNN 的概念,這篇要來介紹 CNN 如何運用在 NLP 中。

0 Comments