Month: December 2022
A young woman or an old woman? Perceptual system to understand with bistable figures.
Rabbit or duck? Both look like ducks, and both look like rabbits. It also looks like a duck trying to eat a rabbit, It looks like a rabbit and a duck looking away from each other. Without understanding that we only see the world the way we want to see it in the first place,…
Read More “A young woman or an old woman? Perceptual system to understand with bistable figures.” »
Flow of business negotiations
1. Greetings and business card exchange 2. Icebreaker 3. Hearing issues and needs 4. Reconciliation of the vision and direction 5. Proposal of products and services 6. Closing 7. Check the flow after business negotiations
How to output EKS pod error log
Amazon Elastic Kubernetes Service (EKS) is a service for building Kubernetes clusters on Amazon Web Services (AWS). Within a Kubernetes cluster, there are multiple pods. A pod is a group of application containers that run within a cluster in Kubernetes. You can output a pod error log in the following ways: For more information, see…
How to output EKS pod error log
Amazon Elastic Kubernetes Service (EKS) is a service for building Kubernetes clusters on Amazon Web Services (AWS). Within a Kubernetes cluster, there are multiple pods. A pod is a group of application containers that run within a cluster in Kubernetes. You can output a pod error log in the following ways: For more information, see…
Python code to scrape AI news
First, import two libraries, BeautifulSoup and urllib3. Then load the web page using the PoolManager class in urllib3. It then uses BeautifulSoup to parse the HTML code and extract the information it needs. The above code uses BeautifulSoup to extract an element enclosed in h2 tags in HTML and display its text. It also extracts…