dictionary = {
opportunity: [
"a set of circumstances that makes it possible to do something",
"a situation or condition favorable for attainment of a goal"
],
creativity: [
"the use of imagination or original ideas to create something new",
"the ability to create",
"the process where new ideas emerge from combining existing ideas in new ways"
]
}
dictionary[:creativity][1]
services:
app:
labels:
co.elastic.logs/enabled: "false" # for Filebeat
ports:
- "8080:80"
# expose:
# - 8080
# - 80
$ sudo aplay -l
aplay: device_list:274: no soundcards found...
$ sudo apt install firmware-sof-signed
# --- Debian 11 --- #
deb http://deb.debian.org/debian bullseye main contrib non-free
deb-src http://deb.debian.org/debian bullseye main contrib non-free
deb http://deb.debian.org/debian-security/ bullseye-security main contrib non-free
deb-src http://deb.debian.org/debian-security/ bullseye-security main contrib non-free
deb http://deb.debian.org/debian bullseye-updates main contrib non-free
deb-src http://deb.debian.org/debian bullseye-updates main contrib non-free
$ inxi -F
Audio: Device-1: Intel Tiger Lake-LP Smart Sound Audio driver: sof-audio-pci
Sound Server: ALSA v: k5.10.0-9-amd64
$ sudo aplay -l
aplay: device_list:274: no soundcards found...
$ sudo apt install firmware-sof-signed
# --- Debian 11 --- #
deb http://deb.debian.org/debian bullseye main contrib non-free
deb-src http://deb.debian.org/debian bullseye main contrib non-free
deb http://deb.debian.org/debian-security/ bullseye-security main contrib non-free
deb-src http://deb.debian.org/debian-security/ bullseye-security main contrib non-free
deb http://deb.debian.org/debian bullseye-updates main contrib non-free
deb-src http://deb.debian.org/debian bullseye-updates main contrib non-free
$ inxi -F
Audio: Device-1: Intel Tiger Lake-LP Smart Sound Audio driver: sof-audio-pci
Sound Server: ALSA v: k5.10.0-9-amd64
char *pch;
for (pch = s1; *pch; pch++) {
if (isalpha(*pch)) {
if (isupper(s1[0]))
*pch = toupper(*pch);
else
*pch = tolower(*pch) ;
}
else continue;
}