반응형
반응형

setInterval()

setInterval(code)
setInterval(code, delay)

setInterval(func)
setInterval(func, delay)
setInterval(func, delay, arg0)
setInterval(func, delay, arg0, arg1)
setInterval(func, delay, arg0, arg1, /* … ,*/ argN)


Window 및 Worker 인터페이스에서 제공되는 setInterval() 메서드는 각 호출 사이에 고정된 시간 지연으로 함수를 반복적으로 호출하거나 코드 스니펫을 실행합니다.

이 메서드는 간격(interval)을 고유하게 식별할 수 있는 interval ID를 반환하므로 나중에 clearInterval() (en-US) 함수를 호출하여 제거할 수 있습니다.

myArray = ["zero", "one", "two"];

myArray.myMethod = function (sProperty) {
  alert(arguments.length > 0 ? this[sProperty] : this);
};

myArray.myMethod(); // "zero,one,two"가 출력됩니다
myArray.myMethod(1); // "one"가 출력됩니다
setTimeout(myArray.myMethod, 1000); // 1초 후 "[object Window]"가 출력됩니다
setTimeout(myArray.myMethod, 1500, "1"); // 1,5초 후에 "undefined"가 출력됩니다

// myArray.myMethod 내에서 this의 값을 변경하려는 동안
// setTimeout 내부에서 this의 값을 변경하기 때문에
// .call과 함께 'this'객체를 전달하는 것은 동작하지 않습니다
// 사실 setTimeout 코드는 this가 window 객체가 될 것으로 예상하기 때문에 오류가 발생합니다
setTimeout.call(myArray, myArray.myMethod, 2000); // error: "NS_ERROR_XPC_BAD_OP_ON_WN_PROTO: Illegal operation on WrappedNative prototype object"
setTimeout.call(myArray, myArray.myMethod, 2500, 2); // 위와 동일한 에러가 발생합니다
반응형
반응형

2023년 소비자 온라인 쇼핑 비중 89.6%, 멤버십 만족도 ‘쿠팡 로켓와우’ 1위

온라인 쇼핑이 소비생활의 ‘주류’로 자리잡은 가운데 국내 온라인 쇼핑몰 시장에서 쿠팡과 네이버쇼핑이 양강구도를 굳히고 있는 것으로 나타났다.

 

특히 쇼핑도 구독하는 시대, 유통업계는 멤버십 출혈 경쟁 중이다. 로켓와우, 네이버플러스멤버십, 스마일클럽과 같은 주요 멤버십은 배송, OTT와 오프라인 매장 제휴 등 저마다 다양한 혜택을 내놓고 있다.

 

여기에 최근 신세계도 통합 멤버십 ‘신세계 유니버스 클럽’을 출시하면서 쿠팡, 네이버쇼핑 중심의 온라인 쇼핑 시장에 지각 변동이 일어날 수 있을지 주목된다.

 

# 주 쇼핑 방식 자리잡은 온라인 채널, 1개월 내 온라인 쇼핑 90%

 

온라인 채널은 주 쇼핑 방식으로 자리 잡았으며 상위 온라인 쇼핑몰의 강세 또한 지속되고 있다. 오픈서베이 ‘온라인 쇼핑 트렌드 리포트 2023’에 따르면, 평소 개인과 가정에서 사용할 목적으로 물품 구매 시 온라인 채널을 통해 구매하는 비중이 가장 높았다.

https://cosinkorea.com/mobile/article.html?no=48855

반응형
반응형

savefig 0.0.4

 

pip install savefig

 

https://pypi.org/project/savefig/

 

Save matplotlib figures with embedded metadata for reproducibility and profit

 

반응형
반응형

https://javascript.plainenglish.io/17-killer-websites-for-web-developers-13e1e30345b8

1. Random Image via API

Link

The most powerful photo engine in the world. The Unsplash API is a modern JSON API that surfaces all of the info you’ll need to build any experience for your users

Unsplash

2. Embeddable Widget Apps for Notion

Link

Add 3rd party apps embed or create a custom embed for your Notion Document.

3. Carbon

Link

Create and share beautiful images of your source code. Start typing or drop a file into the text area to get started.

Carbon

4. Peppertype

Link

Generate better content copies in seconds with the power of Artificial Intelligence. Expanding your content for writing blogs is easier than ever before. Get AI-Generated tweet ideas in seconds.

Peppertype

5. Poet. so

Link

Capture and share Twitter posts as beautiful images. You could use this as social proof on your website.

Poet

6. Weekly Visitor Report

Link

Get a weekly report of the companies visiting your website.

Clearbit

7. Smart Mockup

Link

  • Create stunning product mockups easily and online
  • The fastest web-based mockup tool
  • No experience or skills needed, super easy-to-use

Smartmokcup

8. Small Dev tools

Link

Handy developer tools with a delightful interface. Provide 20+ tools that help developers with commonly performed tasks like Encoding/Decoding, Minifying, Test Dummy data set, and a lot more.

Small Dev tools

9. Show beautiful message in the console

Link

FIGlet is a program for making large letters out of ordinary text.

FIGlet

10. A Visual Type Scale

Link

Understand and visualize the difference between different font sizes, REM vs. EM Values. Check the preview in real-time to see how it looks

Visual Type Scale

11. Remove Background from Image

Link

Remove backgrounds 100% automatically in 5 seconds with zero clicks.

Remove BG

12. Responsively

Link

Develop responsive web apps 5x faster!

Responsively

13. Metatags

Link

Meta Tags is a tool to debug and generate meta tag codes for any website. Tags you can edit and experiment with your content then preview how your webpage will look on Google, Facebook, Twitter, and more!

Meta Tags

14. ReadMe

Link
The easiest way to create a README file in minutes visually

ReadMe

15. Storytale

Link

High-class illustrations for web and mobile projects. Make your project eye-catching with awesome characters. Use it both for commercial and personal purposes.

Storytale

16. Profile Pic Maker

Link

Make an awesome profile picture from any photo

Profile Picture Maker

17. SigmaOS

Link

Fly through your work. The browser that makes you faster and better at working on the web.

Sigma OS

반응형
반응형

모던 JavaScript 튜토리얼

https://ko.javascript.info/

 

모던 JavaScript 튜토리얼

 

ko.javascript.info

반응형
반응형
  • "회사의 이익은 사람에게 산소와 같습니다. 산소가 충분하지 않으면 살아남을 수 없습니다. 하지만 삶이 숨 쉬는 것이라고 생각한다면 정말 무언가를 놓치고 있는 것입니다."
  • "Profit for a company is like oxygen for a person. If you don't have enough of it, you're out of the game. But if you think your life is about breathing, you're really missing something."

 

혁신을 위해선 수익이 필요하지만, 수익이 곧 혁신은 아니라는 메시지입니다. 

반응형

+ Recent posts