일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- Effective C++
- 비선형 함수
- Machine learning
- struct
- MapReduce
- 머신러닝
- c++
- virtual function
- inheritance
- Class
- least square
- overriding
- Linear Regression
- member function
- 최소제곱법
- 지도학습
- local minimum
- regression
- 선형모델
- Nonlinear Model
- 회귀학습
- 회귀
- kubernetes
- call by reference
- 딥러닝
- Nonlinear Function
- 맵리듀스
- call by value
- Overloading
- 비선형모델
- Today
- Total
목록Computer Language/Web (4)
J's Study log
Node.js use 'require()' function to call module. require('path of directory') For example, let's say there are two files called 'num.js' and 'sum.js'. //num.js var n = 10; //sum.js console.log(n); When you execute this sum.js the error will be occured. Because in scope of sum.js, 'num1' and 'num2' is not defined. So let's use 'require()' to call num.js module. //sum.js var num = require('../num...
URL : http://exampleurl.com:126/main?id=HTML&page=3 protocol : which way of internet to follow [http : HyperText Transfer Protocol] host : Computer which is connected to internet port : Web basically use port number '80' as default value path : means which directory's which file of the computer query string : passes informations such as what is which page to show, always starts with '?' and valu..
Attribute Attribute is used if tag have lack of information. For example, tag is used for putting an image in the page. HTML Hello HTML Let's start! Here comes an image Can't find out the image tag doesn't work, because there's no information about which image to call. So 'attribute' is used in this kind of situation, and by adding it expression of 'html' got more affluent. Put downloaded image ..

Frequency of tags usage https://www.advancedwebranking.com/html/ Tag is like the Alphabet of html. : shows that this file is made as a html file ..... : title of html file (title have high priority in search engine) : explaination about main text ..... : main text of html file ..... : text between tag describes WEB page, so cover list1 list2 list3 HTML Hypertext Markup Language (HTML) is the sta..