일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Project
- pandas
- 애자일
- adaptive life cycle
- TypeScript
- Crawling
- algorithm
- opencv
- Method
- python
- data analyze
- 프로젝트
- 자바스크립트
- DANAWA
- Agile
- tensorflow
- data
- javascript
- visualizing
- 다나와
- angular
- instance
- Scrum
- AWS
- analyzing
- keras
- ECS
- 크롤링
- webcrawling
- matplotlib
- Today
- Total
목록분류 전체보기 (128)
LiJell's 성장기
const title = document.querySelector("div.hello:first-child h1"); function handleTitleClick() { title.style.color = "blue"; console.log("title was clicked!"); } title.addEventListener("click", handleTitleClick); 클릭하면 추가해보기 browser console에서 변화를 확인해보세요! 다양한 이벤트를 링크를 통해 확인해보세요 https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement const h1 = document.querySelector("div.hello:first-child h1")..
// 요즘은 prompt 잘 안씀 // parseInt is a converter: string to number const age = parseInt(prompt("How old are you?")); if (isNaN(age)){ console.log("Please write a number"); } else { console.log("Thank you for writing your age") }
function sayHello(nameOfPerson, age) { console.log("Hello my name is " + nameOfPerson + " and I am " + age) } sayHello("LiJell", 10); sayHello("Hanju", 18); sayHello("Toonsquare", 99); function plus(a, b) { console.log(a + b); } function divide(a,b) { console.log(a / b); } plus(1, 3); divide(20, 5); const player = { name: "LiJell", sayHello: function (otherPersonsName) { console.log("Hello! " + ..
Array const daysOfWeek = ['mon','tue','wed','thu','fri','sat']; // Get Item from Array console.log(daysOfWeek[4]); // Add one more day to the array daysOfWeek.push('sun'); console.log(daysOfWeek); Object const player = { name: "LiJell", points: 10, fat: true, }; console.log(player); console.log(player.name); console.log(player["points"]); const player = { name: "LiJell", points: 10, fat: true, }..
true 1 false 0 null null은 자연스럽게 생기지 않음 variable 안에 어떤것도 없다는 것을 확실히 알려주기 위해 씀 const amIFat= null; // amIFat에 아무것도 채워지지 않은 null 채우는것을 의미 let something; console.log(amIFat); Undefined something이라는 var을 만들었지만, 값을 주지 않은 상태 메모리 안에 공간은 있지만, 값은 없는 상태 const amIFat= null; let something; // something이라는 var을 만들었지만, 값을 주지 않은 상태 // 메모리 안에 공간은 있지만, 값은 없는 상태 console.log(something);
const cannot be changed let can be changed later const a = 5; const b = 2; let myName = "Hanju"; console.log(a + b); console.log(a * b); console.log(a / b); console.log("Hello! " + myName); myName = "LiJell"; console.log("your new name is " + myName);
2022.04.13 - [Cloud Server] - Oracle Could - VCN Oracle Could - VCN 2022.04.14 - [Cloud Server] - Oracle Cloud Infrastructure에 Instance 만들기 Oracle Cloud Infrastructure에 Instance 만들기 Instance (VM) 앞 포스트에서는 오라클 크라우드의 내부 네트워크 구성인 VCN을.. lime-jelly.tistory.com Instance (VM) 앞 포스트에서는 오라클 크라우드의 내부 네트워크 구성인 VCN을 구성해봤다. 이번 포스트에서는 인터넷에서 접속을 할 수 있도록 구성된 퍼블륵 서브넷에 인스턴스를 만들어 보려한다 인스턴스는 즉 가상서버(Virtual Machine..
2022.04.14 - [Cloud Server] - Oracle Cloud Infrastructure에 Instance 만들기 Oracle Cloud Infrastructure에 Instance 만들기 Instance (VM) 앞 포스트에서는 오라클 크라우드의 내부 네트워크 구성인 VCN을 구성해봤다. 이번 포스트에서는 인터넷에서 접속을 할 수 있도록 구성된 퍼블륵 서브넷에 인스턴스를 만들어 보려한 lime-jelly.tistory.com VCN VCN은 AWS의 VPC와 같은 개념으로 보면 된다 Virtual Cloud Network의 약자로 오라클 클라우드의 계정이 소유하는 테넌시에 가상의 네트워크를 구성하는 것이다. 왼쪽 위 구석의 햄버거를 클릭 한 후 --> Networking --> Virtu..