How to use AI to reshape your workflow (1)
The author of this article will share some information collection websites, which can help everyone understand information more conveniently, summarize key points, and learn to master complex content in their daily work and life. I hope this article can be helpful to you.
The hottest topic this year is undoubtedly ChatGPT. The latest AI technology developments are everywhere in Moments, social networks and media information.
Indeed, this wave of AI is revolutionary. As those of us who do not want to be abandoned by the times, we need to gradually transition from working with tools to learning to work together with AI.
So how can we better use AI to reshape our workflow?
I will share with you how AI has changed my daily workflow from the three aspects of information extraction, creation assistance, and function implementation based on my practical experience in the past few months. Today I will share the first part - information extraction.
The Internet has infinitely reduced the cost for everyone to obtain information. However, with the rapid development of the Internet in recent years, low-quality information has become rampant, and the cost of obtaining"high-quality information" continues to rise. How to quickly obtain high-quality information and perform effective extraction has become extremely important.
1. Quickly understand information on a certain topicAlthough ChatGPT recently opened the networking plug-in for Plus users, I still feel that it is not ideal after experiencing it.
So when I need to quickly understand information on a certain topic, I tend to use it in combination with Perplexity and ChatGPT.
Perplexity is an AI search engine that can provide results and citations in a generative manner. of origin.
For example, I asked him, "What questions did Zhou Shouzi answer at the US Congressional hearing?"He will give:
Answers, cited sources, and related questions that may be of interest to you. This is a very efficient way to obtain materials.
The combination of Perplexity and ChatGPT can greatly reduce the time cost of filtering your information.
2. Accessible viewing of foreign language resources
In the past, although DeepL and Google Translate were used as assistance, the experience when reading foreign language materials was still not very good.
Recently, thanks to the support of Open AI large models, the quality of many translation tools has been qualitatively improved. Here are three tools recommended to allow you to enjoy foreign language resources.
Trancy is a browser plug-in that can generate bilingual subtitles in real time when you watch YouTube and Netflix videos. I love the [Theater Mode] the most. The interface is clean and the viewing experience is great!
sentence follow-up and ChatGPT free dialogue . Let you practice speaking at home without spending a penny.
Immersive Translation is a plug-in that works on web text. It also realizes Chinese-English translation. Compared with direct full-text translation, it is more conducive to comparing and learning the expressions of the two languages.
Bob is an APP on MacOS. For the translation of some content outside the browser, using Bob can easily achieve word delineation translation and OCR image translation.
I wonder if you have ever had this experience. After spending a few hours watching a video or a PDF document, you found that the valuable content only accounts for less than 10%. How can you get a higher ROI for your time? Woolen cloth?
Glarity allows you to summarize the main content of the YouTube video for you at the beginning of the playback, letting you know whether it is necessary to watch the video from beginning to end.
ChatDoc allows you to quickly understand the content you need in the PDF document through chatting. While answering, ChatDoc will also tell you the source of the answer.
4. Understanding and learning complex concepts
For most people, the efficiency of learning is closely related to the teacher's ability and teaching methods. Excellent teachers use easy-to-understand expressions skillfully and convey knowledge to students in a systematic way.
ChatGPT is a universal teacher that you can freely customize. Guided by the style you admire most, let him be your favorite teacher, teaching all kinds of knowledge in an accessible way. The condition is that you need to provide a high-quality prompt word for ChatGPT.
I once saw an interesting prompt word Best Learn Anything Today on the prompt word website FlowGPT. The prompt word requires ChatGPT to act as an advanced artificial intelligence teacher and conduct topic-based teaching through popular explanations and interactive tests. The difficulty of the course can be customized, and 90% of the quizzes need to be answered correctly to enter the next course.
By using similar high-quality prompt words combined with ChatGPT technology, we can easily learn a large amount of knowledge that was previously considered complex and obscure. A friend of mine has begun using this approach to teach advanced mathematics to his children, who are currently in middle school.
5. Summary
The tools mentioned above are summarized as follows:
Perplexity (website, APP): an AI search engine.
https://www.perplexity.ai
Trancy (browser plug-in): AI translates YouTube and Netflix subtitles, and can also serve as an AI spoken private tutor.
https://www.trancy.org/zh-cn
Immersive translation (browser plug-in): Intelligent recognition of web page content for bilingual translation.
https://immersivetranslate.com
Bob (MacOS APP): A translation and OCR software for the macOS platform.
https://bobtranslate.com
Glarity (browser plug-in): Use ChatGPT to generate snippets for Google search results and YouTube video content.
https://glarity.app
ChatDoc (website): A file reading assistant based on ChatGPT that can quickly extract, find and summarize information from documents.
https://chatdoc.com
FlowGPT (website): Find and use the best hint words.
https://flowgpt.com/
The next issue will share with you AI applications in creative assistance.
This article was originally published by @爱文来 on Everyone is a product manager. Reprinting without permission is prohibited.
The title picture comes from Unsplash, based on the CC0 protocol
The above is the detailed content of How to use AI to reshape your workflow (1). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to output a countdown in C? Answer: Use loop statements. Steps: 1. Define the variable n and store the countdown number to output; 2. Use the while loop to continuously print n until n is less than 1; 3. In the loop body, print out the value of n; 4. At the end of the loop, subtract n by 1 to output the next smaller reciprocal.

A C language function consists of a parameter list, function body, return value type and function name. When a function is called, the parameters are copied to the function through the value transfer mechanism, and will not affect external variables. Pointer passes directly to the memory address, modifying the pointer will affect external variables. Function prototype declaration is used to inform the compiler of function signatures to avoid compilation errors. Stack space is used to store function local variables and parameters. Too much recursion or too much space can cause stack overflow.

How to achieve the playback of pictures like videos? Many times, we need to implement similar video player functions, but the playback content is a sequence of images. direct...

Algorithms are the set of instructions to solve problems, and their execution speed and memory usage vary. In programming, many algorithms are based on data search and sorting. This article will introduce several data retrieval and sorting algorithms. Linear search assumes that there is an array [20,500,10,5,100,1,50] and needs to find the number 50. The linear search algorithm checks each element in the array one by one until the target value is found or the complete array is traversed. The algorithm flowchart is as follows: The pseudo-code for linear search is as follows: Check each element: If the target value is found: Return true Return false C language implementation: #include#includeintmain(void){i

Integers are the most basic data type in programming and can be regarded as the cornerstone of programming. The job of a programmer is to give these numbers meanings. No matter how complex the software is, it ultimately comes down to integer operations, because the processor only understands integers. To represent negative numbers, we introduced two's complement; to represent decimal numbers, we created scientific notation, so there are floating-point numbers. But in the final analysis, everything is still inseparable from 0 and 1. A brief history of integers In C, int is almost the default type. Although the compiler may issue a warning, in many cases you can still write code like this: main(void){return0;} From a technical point of view, this is equivalent to the following code: intmain(void){return0;}

C language functions include definitions, calls and declarations. Function definition specifies function name, parameters and return type, function body implements functions; function calls execute functions and provide parameters; function declarations inform the compiler of function type. Value pass is used for parameter pass, pay attention to the return type, maintain a consistent code style, and handle errors in functions. Mastering this knowledge can help write elegant, robust C code.

Data update problems in zustand asynchronous operations. When using the zustand state management library, you often encounter the problem of data updates that cause asynchronous operations to be untimely. �...

A solution to implement text annotation nesting in Quill Editor. When using Quill Editor for text annotation, we often need to use the Quill Editor to...
