19P by xguru 2022-12-06 | favorite | 댓글 5개
  • 구글 검색에 입력한 문구를 ChatGPT에게 똑같은 물어본 후 해당 답변을 결과 페이지에 같이 표시
  • ChatGPT에는 자신의 아이디로 로그인 필요
  • 소스에서 직접빌드하거나, 크롬/엣지/Firefox 에 설치 가능 (웹스토어)
  • Kagi / DuckDuckGo 지원 PR도 올라와 있어서 곧 추가 될듯

Neeva는 자체 검색엔진을 통해 실시간으로 AI/LLM 기반 답을 검색 결과에 보여주는 기능을 개발중입니다. 구글 검색/광고/유투브 개발과 운영을 한 후 광고 없는 검색 니바를 설립한 Co-founder 스리다르 라마스와미와 비벡 라구나탄의 트윗 포스트입니다: https://twitter.com/RamaswmySridhar/status/1600209221458399233
https://twitter.com/vivek7ue/status/1600266991121575937

what's your plan tomorrow?

한국인이 내일 먹을 점심

방금 올린 Vue 2 에서 Svelte 로 이관하기 글이 생각나서
"how to migrate from vue 2 to svelte" 라고 물어봤더니 이렇게 답해주네요

"To migrate from Vue 2 to Svelte, you will need to do the following:

  1. Install the Svelte compiler and related dependencies. This can be done by running the following command:
npm install --save-dev svelte  
  1. Create a new Svelte project using the svelte-init command. This will create a new project with the necessary files and configuration for Svelte.
npx svelte-init my-svelte-project  
  1. Once your new Svelte project has been created, you can start migrating your existing Vue code to Svelte. This will involve replacing any Vue-specific syntax with the equivalent Svelte syntax.

  2. After you have migrated your code to Svelte, you will need to test your application to make sure everything is working as expected. This may involve fixing any bugs or issues that arise during the migration process.

  3. Once you have completed the migration and tested your application, you can deploy it to a production environment and start using Svelte in your project.

Overall, migrating from Vue to Svelte will require some effort, but it can be a worthwhile process if you want to take advantage of the benefits offered by Svelte.
"