Compare commits
12 Commits
checking-o
...
try-custom
Author | SHA1 | Date | |
---|---|---|---|
7d4833ffaa | |||
5b279bc5ef | |||
11fa15ee6c | |||
1bad4f7bca | |||
674a6d3636 | |||
f607838284 | |||
9edc6ce454 | |||
319e012f0d | |||
0bfc9c42a4 | |||
22648c2cf0 | |||
e8d9f2d158 | |||
245ff53cc1 |
20
.drone.yml
20
.drone.yml
@ -1,15 +1,12 @@
|
||||
---
|
||||
# ----------------------------------------------
|
||||
# -- Update the helm chart
|
||||
# ----------------------------------------------
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: Publish the helm chart
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
|
||||
steps:
|
||||
- name: Publish the Helm chart
|
||||
image: alpine/helm
|
||||
@ -28,13 +25,11 @@ steps:
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: Build badhouseplants.net
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
clone:
|
||||
disable: true
|
||||
|
||||
steps:
|
||||
- name: clone
|
||||
image: alpine/git
|
||||
@ -44,25 +39,23 @@ steps:
|
||||
- git clone $DRONE_REMOTE_URL .
|
||||
- git checkout $DRONE_BRANCH
|
||||
- git submodule update --init --recursive
|
||||
|
||||
- name: Test a build
|
||||
image: git.badhouseplants.net/badhouseplants/hugo-builder
|
||||
image: git.badhouseplants.net/badhouseplants/hugo-container
|
||||
depends_on:
|
||||
- clone
|
||||
commands:
|
||||
- hugo -s ./src
|
||||
|
||||
- name: Build and push the docker image
|
||||
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:2449b73b13a62ae916c6703778d096e5290157b3
|
||||
privileged: true
|
||||
depends_on:
|
||||
- Test a build
|
||||
environment:
|
||||
BUILDER_COMMIT: 2449b73b13a62ae916c6703778d096e5290157b3
|
||||
GITEA_TOKEN:
|
||||
from_secret: GITEA_TOKEN
|
||||
commands:
|
||||
- ./scripts/build-container.pl
|
||||
|
||||
- name: Sync pictures from lfs to Minio
|
||||
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:2449b73b13a62ae916c6703778d096e5290157b3
|
||||
depends_on:
|
||||
@ -74,7 +67,6 @@ steps:
|
||||
commands:
|
||||
- echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG
|
||||
- ./scripts/upload-media.pl
|
||||
|
||||
- name: Deploy the application
|
||||
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:2449b73b13a62ae916c6703778d096e5290157b3
|
||||
depends_on:
|
||||
@ -91,7 +83,6 @@ steps:
|
||||
from_secret: GOOGLE_OAUTH_KEY
|
||||
commands:
|
||||
- ./scripts/deploy-app.pl
|
||||
|
||||
- name: Cleanup everything
|
||||
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:2449b73b13a62ae916c6703778d096e5290157b3
|
||||
depends_on:
|
||||
@ -113,13 +104,11 @@ steps:
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: Spell-Checker
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
clone:
|
||||
disable: true
|
||||
|
||||
steps:
|
||||
- name: clone
|
||||
image: alpine/git
|
||||
@ -128,9 +117,8 @@ steps:
|
||||
commands:
|
||||
- git clone $DRONE_REMOTE_URL --recurse-submodules .
|
||||
- git checkout $DRONE_BRANCH
|
||||
|
||||
- name: Spell-Checker
|
||||
image: node
|
||||
commands:
|
||||
commands:
|
||||
- npm i markdown-spellcheck -g
|
||||
- mdspell "src/content/**/*.md" -n -r
|
||||
- mdspell "src/content/**/*.md" -n -r
|
||||
|
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -3,3 +3,6 @@
|
||||
url = https://github.com/adityatelange/hugo-PaperMod.git
|
||||
branch = v7.0
|
||||
|
||||
[submodule "src/themes/stack"]
|
||||
path = src/themes/stack
|
||||
url = https://github.com/CaiJimmy/hugo-theme-stack.git
|
||||
|
12
.spelling
12
.spelling
@ -132,6 +132,18 @@ LFO
|
||||
beatmaker
|
||||
wavetables
|
||||
OSC
|
||||
YOUTUBE
|
||||
Twelve50TV
|
||||
Robotik
|
||||
McRoy
|
||||
brah
|
||||
aw
|
||||
shite
|
||||
lowrider
|
||||
mdma
|
||||
nah
|
||||
clubby
|
||||
MGK
|
||||
- src/themes/papermod/README.md
|
||||
PaperMod
|
||||
hugo-paper
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM git.badhouseplants.net/badhouseplants/hugo-container:bad3393cdb76043a255347641d4157f1fae2b813
|
||||
FROM git.badhouseplants.net/badhouseplants/hugo-container:df0ab0c6f98e1921f451eb444aa5e7cb03d1f27b
|
||||
WORKDIR /src
|
||||
COPY ./src /src
|
||||
ENTRYPOINT ["hugo"]
|
||||
|
@ -3,10 +3,6 @@ title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
ShowToc: true
|
||||
cover:
|
||||
image: "cover.png"
|
||||
caption: "{{ replace .Name "-" " " | title }}"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
image: "cover.png"
|
||||
---
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
languageCode: 'en-us'
|
||||
title: 'Bad Houseplants'
|
||||
theme: 'papermod'
|
||||
theme: stack
|
||||
menu:
|
||||
main:
|
||||
- name: Posts
|
||||
@ -30,21 +30,14 @@ params:
|
||||
ShowReadingTime: true
|
||||
ShowPostNavLinks: true
|
||||
ShowCodeCopyButtons: true
|
||||
comments: true
|
||||
profileMode:
|
||||
comments:
|
||||
enabled: true
|
||||
title: "Bad Houseplants"
|
||||
subtitle: ... by allanger.
|
||||
imageUrl: "main-logo.png"
|
||||
imageWidth: 150
|
||||
imageHeight: 150
|
||||
buttons:
|
||||
- name: My Music
|
||||
url: "https://funkwhale.badhouseplants.net/library/artists"
|
||||
- name: Support
|
||||
url: "https://liberapay.com/allanger/donate"
|
||||
- name: Source
|
||||
url: "https://git.badhouseplants.net/badhouseplants/badhouseplants-net"
|
||||
remark42:
|
||||
host: https://remark42.badhouseplants.net
|
||||
site: badhouseplants
|
||||
homeInfoParams:
|
||||
Title: Bad Houseplants
|
||||
Content: ... by allanger
|
||||
socialIcons:
|
||||
- name: "mastodon"
|
||||
url: "https://mastodon.social/@allanger"
|
||||
@ -59,7 +52,9 @@ params:
|
||||
description: "...by allanger"
|
||||
keywords: [Blog, Portfolio]
|
||||
author: allanger
|
||||
DateFormat: "January 2, 2006"
|
||||
dateFormat:
|
||||
published: "Jan 02, 2006"
|
||||
lastUpdated: "Jan 02, 2006 15:04 MST"
|
||||
defaultTheme: auto
|
||||
outputs:
|
||||
home:
|
||||
|
8
src/content/_index.md
Normal file
8
src/content/_index.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
menu:
|
||||
main:
|
||||
name: Home
|
||||
weight: 1
|
||||
params:
|
||||
icon: home
|
||||
---
|
@ -2,111 +2,123 @@
|
||||
title: Beats
|
||||
date: 2023-01-24T09:26:52+01:00
|
||||
draft: false
|
||||
---
|
||||
>I don't lease my beats. If you happen to like anything, just shout me a message and we will come to an agreement. And if you decide to use any of my beats you'll be the only one using it (legally).
|
||||
|
||||
---
|
||||
### Easy Money
|
||||
---
|
||||
### That's Rich
|
||||
#### by allanger
|
||||
|
||||
[Listen on Funkwhale](https://funkwhale.badhouseplants.net/library/albums/36)
|
||||
|
||||
> I'm poor though, huh
|
||||
|
||||
Mainstream beats for dope rap about your luxury lifestyle, mate
|
||||
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=18"></iframe>
|
||||
<iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=album&id=36"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Monk
|
||||
#### Not available anymore, but I can make a similar one if you'd like
|
||||
---
|
||||
|
||||
### Why So Serious?
|
||||
#### by allanger
|
||||
|
||||
[Listen on Funkwhale](https://funkwhale.badhouseplants.net/library/albums/38)
|
||||
|
||||
> Don't be so suicidal, brah
|
||||
|
||||
Depressive and horror beats to show them all what's real suffering out there
|
||||
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=27"></iframe>
|
||||
<iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=album&id=38"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Ark
|
||||
#### Not available anymore, but I can make a similar one if you'd like
|
||||
---
|
||||
|
||||
### Coke Queue
|
||||
#### by allanger
|
||||
|
||||
[Listen on Funkwhale](https://funkwhale.badhouseplants.net/library/albums/39)
|
||||
|
||||
> Aw, shite, I've meant line
|
||||
|
||||
Need a track that will be screaming out of your lowrider? Check it out then
|
||||
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=21"></iframe>
|
||||
<iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=album&id=39"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Phantom Limb
|
||||
---
|
||||
|
||||
### Meta Irony's Bastard
|
||||
#### by allanger
|
||||
|
||||
[Listen on Funkwhale](https://funkwhale.badhouseplants.net/library/albums/40)
|
||||
|
||||
> Or just an unwanted child
|
||||
|
||||
Your track is supposed to make no freaking sense? Pick it up
|
||||
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=19"></iframe>
|
||||
<iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=album&id=40"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Silk Road
|
||||
---
|
||||
|
||||
### MDMA
|
||||
#### by allanger
|
||||
|
||||
[Listen on Funkwhale](https://funkwhale.badhouseplants.net/library/albums/35)
|
||||
|
||||
> Nah, I'm not using
|
||||
|
||||
An album for four-on-the-floor or just clubby kinds of beats. If you want your track to be fitting in Berlin, this one is your choice.
|
||||
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=34"></iframe>
|
||||
<iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=album&id=35"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Tremor
|
||||
---
|
||||
|
||||
### Punk's Not Dead
|
||||
#### by allanger
|
||||
|
||||
[Listen on Funkwhale](https://funkwhale.badhouseplants.net/library/albums/34)
|
||||
|
||||
> Unless it's MGK
|
||||
|
||||
Here I'll be uploading alternative beats that might not work for any track, but rather for something special.
|
||||
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=30"></iframe>
|
||||
<iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=album&id=34"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Silver Grenade
|
||||
---
|
||||
|
||||
### Boys Don't Cry
|
||||
#### by allanger
|
||||
|
||||
[Listen on Funkwhale](https://funkwhale.badhouseplants.net/library/albums/37)
|
||||
|
||||
> ... do they?
|
||||
|
||||
Looking for something sad and not really of a hip-hop kind? This is the place
|
||||
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=31"></iframe>
|
||||
<iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=album&id=37"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Spinal Cord
|
||||
---
|
||||
### Trash Can
|
||||
#### by allanger
|
||||
|
||||
[Listen on Funkwhale](https://funkwhale.badhouseplants.net/library/albums/33)
|
||||
|
||||
>It doesn't mean that beats are shitty, it just me not liking them too much
|
||||
|
||||
To this album, I will upload beats that I don't like, they all can be yours without any efforts of yours.
|
||||
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=32"></iframe>
|
||||
<iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=album&id=33"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Empty Cubicles
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=23"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Vicious Shine
|
||||
#### Not available anymore, but I can make a similar one if you'd like
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=36"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Petrol
|
||||
#### Not available anymore, but I can make a similar one if you'd like
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=35"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### PSY
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=28"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Body Drop
|
||||
#### Not available anymore, but I can make a similar one if you'd like
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=20"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Broken Piano
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=22"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Dead Wings
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=25"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Trapped
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=17"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Dusted
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=142"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Fallen Folk
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=144"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Pillows
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=143"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Swipe
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=145"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
19
src/content/music/allanger/_index.md
Normal file
19
src/content/music/allanger/_index.md
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
title: "allanger"
|
||||
date: 2018-12-26T00:00:00+02:00
|
||||
draft: false
|
||||
ShowToc: false
|
||||
cover:
|
||||
image: "/music/allanger.png"
|
||||
caption: "allanger"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
hideSummary: true
|
||||
tags:
|
||||
- music
|
||||
- release
|
||||
- indie
|
||||
- alternative
|
||||
---
|
||||
|
||||
I'm allanger, the owner of Bad Houseplants.
|
@ -2,11 +2,7 @@
|
||||
title: "ArgoCD vs Helmfile: Applications"
|
||||
date: 2023-02-13T12:14:09+01:00
|
||||
draft: false
|
||||
cover:
|
||||
image: "/posts/argocd-vs-helmfile/cover-applications.png"
|
||||
caption: "ArgoCD"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
image: "/posts/argocd-vs-helmfile/cover-applications.png"
|
||||
ShowToc: true
|
||||
---
|
||||
|
@ -2,11 +2,7 @@
|
||||
title: "ArgoCD vs Helmfile: ApplicationSet"
|
||||
date: 2023-02-15T10:14:09+01:00
|
||||
draft: false
|
||||
cover:
|
||||
image: "/posts/argocd-vs-helmfile/cover-applicationset.png"
|
||||
caption: "ArgoCD"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
image: "/posts/argocd-vs-helmfile/cover-applicationset.png"
|
||||
ShowToc: true
|
||||
---
|
||||
|
@ -3,11 +3,7 @@ title: "Don't use ArgoCD for your infrastructure"
|
||||
date: 2023-02-09T12:47:32+01:00
|
||||
draft: false
|
||||
ShowToc: true
|
||||
cover:
|
||||
image: "/posts/dont-use-argocd-for-infrastructure/cover.png"
|
||||
caption: "ArgoCD"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
image: /posts/dont-use-argocd-for-infrastructure/cover.png
|
||||
---
|
||||
> Of course, it's just a clickbait title. Use whatever works for you. I will just describe why I wouldn't use `ArgoCD` for the infrastructure
|
||||
|
||||
@ -320,4 +316,4 @@ Thanks,
|
||||
|
||||
Oi!
|
||||
|
||||
---
|
||||
---
|
18
src/content/post/kid-robotik-im-so-sorry.md
Normal file
18
src/content/post/kid-robotik-im-so-sorry.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: "Kid Robotik - I'm SO Sorry"
|
||||
date: 2023-09-22T13:05:28+02:00
|
||||
draft: true
|
||||
ShowToc: true
|
||||
image: "/posts/kid-robotik-im-so-sorry/cover.jpg"
|
||||
---
|
||||
|
||||
[OPEN ON SPOTIFY](https://open.spotify.com/album/6TTnfWZQyoZ8O1GuK8TtXf?si=cNchuEmfTAy52Z6jstnG2A) -- [OPEN ON DEEZER](https://deezer.page.link/D3M4JVdDYhmxXUUZ7) -- [OPEN ON YOUTUBE](https://youtube.com/playlist?list=OLAK5uy_l3BFAqPxAOkkzb-SByHbbvgBkdk3_idjg&si=bBo6cQE8jGWjLnsI)
|
||||
|
||||
It's not easy to find this album, to be honest. I think that I would never have listened to it unless I started trying to understand the Glaswegian accent. *I haven't succeeded really still*. While searching for artists from Scotland, I've bumped onto this YouTube channel: [Twelve50TV](https://www.youtube.com/@Twelve50TV). There are many rappers that I actually like, but they don't tend to publish their music on mainstream streaming platforms (read Spotify). So I couldn't really listen to them during my daily routine.
|
||||
|
||||
One of my favourites was that video: [Kid Robotik - War](https://youtu.be/LToW8CdBGOQ?si=-MgdWM1FvzGqKhnM). And this guy has his albums published on Spotify. I was listening to this song mostly because of other rappers performing on it: **Sherlock** and **McRoy**. And since this album is **Kid Robotik's** one, I wasn't trying to listen to it at all. I'm not saying that I didn't like his part there, but it didn't seem outstanding to me at all. Though, not so long ago I was bored by all the music I was listening to, and I've decided to check out the album finally. And after first listen I could already say that this guy, Kid Robotik is indeed one of favourite rappers. *Even though I still can't understand about 80% of what they're saying on that album, I freaking like beats, flow, voice and mixing.* And I think that it should gain a way more streams, than it has.
|
||||
|
||||
I can't even pick songs that I like the most, because they're all great in my opinion.
|
||||
|
||||
---
|
||||
I want to build a completely non-profit independent public music library based on Funkwhale application, you can find it here: https://funkwhale.badhouseplants.net. At the moment of writing this post, I only have my music released there, but I hope that one day it will change. And I would really like to have this album there. So if you are Kid Robotik or someone who know him, please let me know if you'd be interested.
|
@ -3,11 +3,7 @@ title: "Some old beats are out"
|
||||
date: 2023-07-23T13:46:29+02:00
|
||||
draft: false
|
||||
ShowToc: true
|
||||
cover:
|
||||
image: "/posts/some-old-beats-are-out/Cover.png"
|
||||
caption: "Some old beats are out"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
image: "/posts/some-old-beats-are-out/Cover.png"
|
||||
tags:
|
||||
- Music
|
||||
- Beats
|
||||
@ -19,20 +15,20 @@ If you happen to like anything, just let me know, we will figure it out
|
||||
|
||||
### Dusted
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=142"></iframe>
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=157"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Fallen Folk
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=144"></iframe>
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=154"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Pillows
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=143"></iframe>
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=166"></iframe>
|
||||
{{< /rawhtml >}}
|
||||
|
||||
### Swipe
|
||||
{{< rawhtml >}}
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=145"></iframe>
|
||||
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&type=track&id=159"></iframe>
|
||||
{{< /rawhtml >}}
|
@ -3,11 +3,7 @@ title: "Vst on Linux 1"
|
||||
date: 2023-01-24T15:47:50+01:00
|
||||
draft: false
|
||||
ShowToc: true
|
||||
cover:
|
||||
image: "/posts/vst-on-linux-1/cover.png"
|
||||
caption: "Vst on Linux"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
image: "/posts/vst-on-linux-1/cover.png"
|
||||
---
|
||||
|
||||
>Best, but according to Output. Their article: *[https://output.com/blog/output-favorites-freebies](https://output.com/blog/output-favorites-freebies)
|
@ -2,11 +2,7 @@
|
||||
title: "Vst on Linux 2"
|
||||
date: 2023-01-31T19:32:34+01:00
|
||||
ShowToc: true
|
||||
cover:
|
||||
image: "/posts/vst-on-linux-2/cover.png"
|
||||
caption: "VST on Linux"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
image: /posts/vst-on-linux-2/cover.png
|
||||
---
|
||||
|
||||
Big ups, **Venus Theory!**
|
@ -3,11 +3,7 @@ title: "Vst on Linux 3"
|
||||
date: 2023-02-03T18:26:44+01:00
|
||||
draft: false
|
||||
ShowToc: true
|
||||
cover:
|
||||
image: "/posts/vst-on-linux-1/cover.png"
|
||||
caption: "Vst on Linux"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
image: /posts/vst-on-linux-1/cover.png
|
||||
tags: ['music']
|
||||
---
|
||||
|
@ -1,81 +0,0 @@
|
||||
---
|
||||
title: "What about open-source reverbs?"
|
||||
date: 2023-08-16T13:46:29+02:00
|
||||
draft: false
|
||||
ShowToc: true
|
||||
cover:
|
||||
image: "/posts/what-about-open-source-reverbs/Cover.png"
|
||||
caption: "What about open-source reverbs"
|
||||
relative: false
|
||||
responsiveImages: false
|
||||
tags:
|
||||
- Music
|
||||
- OpenSource
|
||||
- Plugins
|
||||
---
|
||||
|
||||
## Intro
|
||||
|
||||
I decided to stop using Valhalla DSP plugins, because I totaly disagree with their position about Linux users. I understand that they might not want to build plugins against Linux, but I've offered them to add their plugins wrapped with `yabridge` to AUR, so they can have more users that would not actually require any support, but they said that they won't support it. So I've decided for myself to ban Valhalla plugins. So I've decided to start looking for other reverbs. I've decided to check different open source plugins, so I won't get into a situation like this one, with Valhalla.
|
||||
|
||||
## What are the options?
|
||||
|
||||
The most obvious place to be looking for open source plugins is (unfortunatelly) GitHub. So I went here: https://github.com/webprofusion/OpenAudio
|
||||
And here we got several reverbs:
|
||||
- [Cloud Seed](https://github.com/webprofusion/OpenAudio)
|
||||
- [Convolver](https://github.com/teragonaudio/Convolver)
|
||||
- [Dragonfly Reverb](https://github.com/michaelwillis/dragonfly-reverb)
|
||||
- [Gverb/Gigaverb](http://elements.byethost3.com/plugins.html)
|
||||
- [MVerb](https://github.com/martineastwood/mverb)
|
||||
- [REACH](https://github.com/Sinuslabs/Reach)
|
||||
|
||||
Let's check all of them here. To check the sound I'll take several samples from FreeSound:
|
||||
- Vocals: https://freesound.org/people/ashesanddreams/sounds/610416/
|
||||
- Drums: https://freesound.org/people/holizna/sounds/629134/
|
||||
- Synth: https://freesound.org/people/Rvgerxini/sounds/547113/
|
||||
- Guitar: https://freesound.org/people/eqavox/sounds/683953/
|
||||
|
||||
|
||||
## ~~Cloud Seed~~ CloudReverb
|
||||
|
||||
A new link: https://github.com/xunil-cloud/CloudReverb
|
||||
|
||||
Unfortunatelly, I've found out that Cloud Seed is supposed to work only on Windows, and I'm currently testing the Linux setup, so it doesn't work. But I've found another plugins that is based on the Cloud Seed algorithm, and it should work on Linux and MacOS.
|
||||
|
||||
I don't think it's packaged for any distro but binaries can bi found on GitHub, so let's download and try the plugin. The LV2 versions doesn't work for me, but VST3 is going just fine. It looks like that
|
||||
|
||||

|
||||
|
||||
I think that the "blog" format doesn't play well with the "check-every-option-out" way, so I'll just be making small clips about whot plugin can sound like.
|
||||
|
||||
> You can hear some noizes and scratches, they are not plugins or audio artifacts, just my system produces them when I recodr Ardour with OBS studio. Just try to ignore them.
|
||||
|
||||
{{< video "/posts/what-about-open-source-reverbs/CloudReverb.mp4" "video-1" >}}
|
||||
|
||||
I'd say that it's a dope reverb, and I guess that I'll add it to my list of plugins that I'm using on Linux.
|
||||
|
||||
## Convolver
|
||||
|
||||
This project was archived, and the last commit was pushed 11 years ago, so I'd say that I'm not checking this one. If you know a project that has taken developmsent over, feel free to reach me, I'll try it then.
|
||||
|
||||
## Dragonfly Reverb
|
||||
|
||||
I'm using this reverb almost all the time and not only on Linux, so it's not something new to me, and I guess that many of you have heard about it already.
|
||||
|
||||
You can get it from AUR if you're on Arch, or download it from Github: https://github.com/michaelwillis/dragonfly-reverb/releases/tag/3.2.10
|
||||
|
||||

|
||||
|
||||
As you can see, it's not just one reverb, it's four different ones.
|
||||
|
||||
### Early Reflections
|
||||
|
||||
{{< video "/posts/what-about-open-source-reverbs/DragonFlyER.mp4" "video-2" >}}
|
||||
|
||||
### Hall
|
||||
|
||||
> My Laptop can't pull it off, so there are a lot of noizes. I think you might want to check it yourself.
|
||||
|
||||
{{< video "/posts/what-about-open-source-reverbs/DragonFlyHall.mp4" "video-3" >}}
|
||||
|
||||
|
BIN
src/static/music/allanger.png
(Stored with Git LFS)
Normal file
BIN
src/static/music/allanger.png
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
src/static/posts/kid-robotik-im-so-sorry/cover.jpg
(Stored with Git LFS)
Normal file
BIN
src/static/posts/kid-robotik-im-so-sorry/cover.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
src/static/posts/what-about-open-source-reverbs/CloudReverb.mp4
(Stored with Git LFS)
BIN
src/static/posts/what-about-open-source-reverbs/CloudReverb.mp4
(Stored with Git LFS)
Binary file not shown.
BIN
src/static/posts/what-about-open-source-reverbs/CloudReverb.png
(Stored with Git LFS)
BIN
src/static/posts/what-about-open-source-reverbs/CloudReverb.png
(Stored with Git LFS)
Binary file not shown.
BIN
src/static/posts/what-about-open-source-reverbs/DragonFly.png
(Stored with Git LFS)
BIN
src/static/posts/what-about-open-source-reverbs/DragonFly.png
(Stored with Git LFS)
Binary file not shown.
BIN
src/static/posts/what-about-open-source-reverbs/DragonFlyER.mp4
(Stored with Git LFS)
BIN
src/static/posts/what-about-open-source-reverbs/DragonFlyER.mp4
(Stored with Git LFS)
Binary file not shown.
BIN
src/static/posts/what-about-open-source-reverbs/DragonFlyHall.mp4
(Stored with Git LFS)
BIN
src/static/posts/what-about-open-source-reverbs/DragonFlyHall.mp4
(Stored with Git LFS)
Binary file not shown.
Submodule src/themes/papermod updated: bacb763071...e0fc64c43e
1
src/themes/stack
Submodule
1
src/themes/stack
Submodule
Submodule src/themes/stack added at 8f5164b5b9
Reference in New Issue
Block a user