Skip to content

Instantly share code, notes, and snippets.

Language is a complex and fascinating system of communication that humans use to convey meaning and express themselves. It is a fundamental aspect of human culture and is essential for social interaction, cognitive development, and the transmission of knowledge.

At its most basic level, language is a set of symbols, sounds, and gestures that have agreed-upon meanings within a particular community. These symbols can be combined in endless ways to create an infinite variety of expressions and convey an almost limitless range of ideas, emotions, and experiences.

One of the unique features of human language is its capacity for recursion, which allows us to create an infinite number of sentences by embedding one sentence inside another, as well as its ability to communicate abstract and hypothetical concepts. This makes it possible for us to discuss things that don't exist in the physical world, such as imaginary creatures or mathematical concepts.

Language is also highly adaptable and constantly evolving. New

╷
│ Error: Saved plan is stale
│ 
│ The given plan file can no longer be applied because the state was changed
│ by another operation after the plan was created.
╵
Interrupt received.
Please wait for Terraform to exit or data loss may occur.
Gracefully shutting down...
---
options:
dynamic_substitutions: true
availableSecrets:
secretManager:
- versionName: projects/$PROJECT_ID/secrets/secret-admin-token/versions/latest
env: 'ADMIN_TOKEN'
- versionName: projects/$PROJECT_ID/secrets/secrets-admin-user/versions/latest
env: 'ADMIN_USER'
- versionName: projects/$PROJECT_ID/secrets/secret-source-token/versions/latest
#!/usr/bin/liquidsoap
# General settings
settings.log.level.set(3)
settings.log.stdout.set(true)
# Telnet server settings
settings.server.telnet.bind_addr.set("0.0.0.0")
settings.server.telnet.port.set(8500)
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: cheese
annotations:
kubernetes.io/ingress.class: traefik
spec:
rules:
- host: stilton.minikube
http:
#!/bin/sh -x
## Dockerfile:
### COPY --chmod=755 entrypoint.sh /entrypoint.sh
### ENTRYPOINT ['/entrypoint.sh']
/usr/bin/liquidsoap -v --debug /etc/liquidsoap/script.liq
@dstecholution
dstecholution / liquidsoap.liq
Created May 31, 2022 18:21 — forked from cburmeister/liquidsoap.liq
An example `liquidsoap` configuration file with two input streams and two output streams to `icecast`.
#!/usr/bin/liquidsoap
# Activate the live stream input
set('harbor.bind_addr', '0.0.0.0')
# Configure input A
input_a = input.harbor(
'input_a',
port=8001,
password='bigproblem'
#settings.log.stdout.set(true)
#settings.log.level.set(3)
settings.harbor.bind_addrs.set(["0.0.0.0"])
live = input.harbor("/mopidy",port=8080,password="letmein")
#radio = fallback(track_sensitive=false,
[live])
output.icecast(%vorbis,
@dstecholution
dstecholution / Dockerfile
Last active May 20, 2022 22:42
transcoder
FROM wernight/mopidy:latest
ADD https://file-examples.com/wp-content/uploads/2017/11/file_example_MP3_2MG.mp3 /var/lib/mopidy/media
COPY mopidy.conf /config/mopidy.conf
RUN python3 -m pip install Mopidy-Autoplay
@dstecholution
dstecholution / gist:42a1712d5f24b0321d1c844aabe948fd
Last active May 17, 2022 15:14 — forked from moxuse/gist:4077236
icecast config example
<icecast>
<location>{{location}}</location>
<admin>{{person_of_interest_email}}</admin>
<limits>
<clients>{{maxclients}}</clients>
<sources>2</sources>
<threadpool>5</threadpool>
<queue-size>524288</queue-size>
<client-timeout>30</client-timeout>