# wild

Published articles for wild.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## How do I unzip multiple / many files under Linux?

DevFeed: [How do I unzip multiple / many files under Linux?](<https://devfeed.tech/articles/how-do-i-unzip-multiple-many-files-under-linux-41941.md>)

Original publisher: [Read original article](<https://www.cyberciti.biz/faq/linux-unix-shell-unzipping-many-zip-files/>)

Author: Vivek Gite

Published: 2024-09-27T19:56:29Z

Content type: tutorial

Language: en

Sources: [nixCraft: Linux Tips, Hacks, Tutorials, And Ideas In Blog Format (RSS/FEED)](<https://devfeed.tech/sources/nixcraft-linux-tips-hacks-tutorials-and-ideas-in-blog-format-rss-feed.md>)

Topics: [Linux](<https://devfeed.tech/topics/linux.md>), [Zip](<https://devfeed.tech/topics/zip.md>), [Bash](<https://devfeed.tech/topics/bash.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Scripting, bash](<https://devfeed.tech/topics/scripting-bash.md>), [Shell](<https://devfeed.tech/topics/shell.md>), [file](<https://devfeed.tech/topics/file.md>)

Tags: [bash](<https://devfeed.tech/tags/bash.md>), [command-line](<https://devfeed.tech/tags/command-line.md>), [easy](<https://devfeed.tech/tags/easy.md>), [error](<https://devfeed.tech/tags/error.md>), [files](<https://devfeed.tech/tags/files.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [images-directory](<https://devfeed.tech/tags/images-directory.md>), [linux](<https://devfeed.tech/tags/linux.md>), [shell](<https://devfeed.tech/tags/shell.md>), [suse](<https://devfeed.tech/tags/suse.md>), [unix](<https://devfeed.tech/tags/unix.md>), [wild](<https://devfeed.tech/tags/wild.md>), [zip](<https://devfeed.tech/tags/zip.md>)

### AI overview

A tutorial explains how to extract multiple ZIP archives on Linux and Unix-like systems. It covers why `unzip *.zip` can fail when the shell expands the wildcard, quoting or escaping the wildcard, Bash loops, and a `find`-based method for filenames containing spaces or unusual characters.

### Source excerpt

I have lots of files in a directory called /disk2/images/. All files are in zip file format, so I am using the following command to extract zip files: unzip *.zip The command result into an error which read as follows: caution: filename not matched How do I unzip multiple or many zip files under a Linux/Unix-like system? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How do I unzip multiple / many files under Linux? appeared first on nixCraft.

## Emopoint: Extract and measure emotion from text

DevFeed: [Emopoint: Extract and measure emotion from text](<https://devfeed.tech/articles/emopoint-extract-and-measure-emotion-from-text-33428.md>)

Original publisher: [Read original article](<https://timkellogg.me/blog/2024/06/26/emotions>)

Published: 2024-06-26T09:00:00Z

Content type: tutorial

Language: en

Sources: [Tim Kellogg](<https://devfeed.tech/sources/tim-kellogg.md>)

Topics: [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Embeddings](<https://devfeed.tech/topics/embeddings.md>), [Retrieval-Augmented Generation](<https://devfeed.tech/topics/retrieval-augmented-generation.md>), [Code](<https://devfeed.tech/topics/code.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [llms](<https://devfeed.tech/tags/llms.md>), [python](<https://devfeed.tech/tags/python.md>), [rag](<https://devfeed.tech/tags/rag.md>), [text](<https://devfeed.tech/tags/text.md>), [wild](<https://devfeed.tech/tags/wild.md>)

### AI overview

This tutorial explains how LLM embeddings can be used to extract emotional information from text and map it into a three-dimensional "emopoint" space. It discusses measuring emotional content in conversations and introduces embeddings, their role in retrieval-augmented generation, and their lack of directly interpretable dimensions.

### Source excerpt

Can AI understand emotion? They must, ChatGPT responds to me in the appropriate tone of voice. So they certainly encode emotion. In this blog we'll dive deep into how LLMs understand emotion, as well as how to take advantage of that.

## Annotated JSON-LD Structured Data Examples

DevFeed: [Annotated JSON-LD Structured Data Examples](<https://devfeed.tech/articles/annotated-json-ld-structured-data-examples-31242.md>)

Original publisher: [Read original article](<https://nystudio107.com/blog/annotated-json-ld-structured-data-examples>)

Author: andrew@nystudio107.com (Andrew Welch)

Published: 2019-05-29T12:00:00Z

Content type: tutorial

Language: en

Sources: [nystudio107 | Articles on modern web development.](<https://devfeed.tech/sources/nystudio107-articles-on-modern-web-development.md>)

Topics: [json-ld](<https://devfeed.tech/topics/json-ld.md>), [Structured-data](<https://devfeed.tech/topics/structured-data.md>), [JSON](<https://devfeed.tech/topics/json.md>), [Google Search](<https://devfeed.tech/topics/google-search.md>), [Content Management System](<https://devfeed.tech/topics/cms.md>)

Tags: [annotation](<https://devfeed.tech/tags/annotation.md>), [article](<https://devfeed.tech/tags/article.md>), [cms](<https://devfeed.tech/tags/cms.md>), [data](<https://devfeed.tech/tags/data.md>), [examples](<https://devfeed.tech/tags/examples.md>), [insights](<https://devfeed.tech/tags/insights.md>), [json](<https://devfeed.tech/tags/json.md>), [json-ld](<https://devfeed.tech/tags/json-ld.md>), [plus](<https://devfeed.tech/tags/plus.md>), [real-world](<https://devfeed.tech/tags/real-world.md>), [structured](<https://devfeed.tech/tags/structured.md>), [want](<https://devfeed.tech/tags/want.md>), [wild](<https://devfeed.tech/tags/wild.md>)

### AI overview

This article presents annotated, real-world JSON-LD structured data examples. It explains how schema.org vocabularies express context and connections, recommends selecting explicit best-fit schema types supported by Google, and introduces node identifiers for referencing schemas without unnecessary repetition.

### Source excerpt

Want to see a some real-world examples of JSON-LD Structured Data "in the wild"? This article has that, plus annotation.