42 Commits

Author SHA1 Message Date
87d7a126c3 WIP 2024-02-06 19:03:55 +01:00
5880c8b179 Move spell checker to woodpecker 2024-02-06 18:09:34 +01:00
69454d8fd1 Update paper theme 2024-02-06 16:58:00 +01:00
b23b1fe81e Update hugo and builder 2024-02-04 09:11:47 +01:00
bc97979a4b Update paper theme 2024-01-31 19:49:00 +01:00
a0a415cd21 Trigger Drone 2024-01-26 17:20:11 +01:00
1537e51426 Update the builder version 2024-01-26 17:10:33 +01:00
fef3008333 Update the builder version 2024-01-26 17:08:31 +01:00
d831774f5d Trigger Drone 2024-01-26 17:05:35 +01:00
5b279bc5ef Fix links to beats 2023-10-17 08:47:22 +02:00
11fa15ee6c Put I'm so sorry to drafts 2023-10-13 11:44:57 +02:00
1bad4f7bca beats: Add new allanger_beats album 2023-10-03 21:05:08 +02:00
674a6d3636 beats: Add new allanger_beats album 2023-10-03 20:58:07 +02:00
f607838284 site: Update typos library 2023-09-29 15:54:22 +02:00
9edc6ce454 site: Add Boys Don't Cry beats album 2023-09-29 15:51:07 +02:00
319e012f0d chore: Upgrade HUGO version 2023-09-29 15:49:55 +02:00
0bfc9c42a4 fix: Fix typos 2023-09-29 15:33:11 +02:00
22648c2cf0 site: Update the beats page 2023-09-29 15:29:21 +02:00
e8d9f2d158 site: Kid Robotik - I'm SO Sorry 2023-09-22 14:33:55 +02:00
245ff53cc1 The site shouldn't be allanger centered
I want to start having a public library of music and hence I need to
stop centering badhouseplants.net around allanger only
2023-09-22 10:26:58 +02:00
d389af97ec Remove some social networks from main page 2023-08-12 18:06:14 +02:00
accc397f29 chore: Upgrade hugo and builder 2023-08-07 10:09:40 +02:00
498f1a3865 Add one more old beat 2023-07-23 20:24:46 +02:00
8a4bd102d2 chore(hugo): Upgrade the version of Hugo 2023-07-23 17:28:09 +02:00
bc56fca613 remove an obsolete page 2023-07-23 15:00:19 +02:00
6e8faff745 rename the page about released beats 2023-07-23 14:47:30 +02:00
c6e4023787 Old beats are released 2023-07-23 14:04:31 +02:00
77eba4d32b Update a hugo version 2023-07-16 21:20:08 +02:00
d45adae56a chore: Upgrade hugo to 0.115.2 2023-07-09 23:25:57 +02:00
05ca3d26e9 fix: Fix the grammar on the beats page 2023-07-05 14:59:48 +02:00
8790f2982b chore: Upgrade the hugo to 0.115.1 2023-07-05 14:45:10 +02:00
6778dca75a refactor: The lock file is back to the gitignore 2023-06-25 17:44:03 +02:00
01cd5ed192 refactor: Remove the lock file from the repo 2023-06-25 17:44:02 +02:00
8e67748005 chore: Upgrade the hugo to 0.114.1 2023-06-25 10:01:56 +02:00
58c3c039c9 build: ArgoCD is pruning resource when syncing now
Issue: https://git.badhouseplants.net/badhouseplants/badhouseplants-net/issues/31
2023-06-23 17:56:06 +02:00
bbfa15e45e post: How to create a kick drum in Vital 2023-06-23 17:50:56 +02:00
d34243f43d feat: Add a widget for playing audio files 2023-06-23 17:36:46 +02:00
0c41320637 feat: Enable autoplay on the video widget 2023-06-23 17:36:30 +02:00
465720c398 Update the beats section once again 2023-06-23 16:20:50 +02:00
df9971ab4d Update the beats section 2023-06-23 16:12:33 +02:00
91eb401490 chore: Upgrade the hugo to 0.112.7 2023-06-05 09:53:34 +02:00
9e42f3afd1 Fix embed funkwhale playlists 2023-06-02 12:02:24 +02:00
44 changed files with 377 additions and 91 deletions

View File

@ -1,15 +1,12 @@
---
# ---------------------------------------------- # ----------------------------------------------
# -- Update the helm chart # -- Update the helm chart
# ---------------------------------------------- # ----------------------------------------------
kind: pipeline kind: pipeline
type: docker type: docker
name: Publish the helm chart name: Publish the helm chart
trigger: trigger:
event: event:
- push - push
steps: steps:
- name: Publish the Helm chart - name: Publish the Helm chart
image: alpine/helm image: alpine/helm
@ -28,13 +25,11 @@ steps:
kind: pipeline kind: pipeline
type: docker type: docker
name: Build badhouseplants.net name: Build badhouseplants.net
trigger: trigger:
event: event:
- push - push
clone: clone:
disable: true disable: true
steps: steps:
- name: clone - name: clone
image: alpine/git image: alpine/git
@ -44,27 +39,25 @@ steps:
- git clone $DRONE_REMOTE_URL . - git clone $DRONE_REMOTE_URL .
- git checkout $DRONE_BRANCH - git checkout $DRONE_BRANCH
- git submodule update --init --recursive - git submodule update --init --recursive
- name: Test a build - name: Test a build
image: git.badhouseplants.net/badhouseplants/hugo-builder image: git.badhouseplants.net/badhouseplants/hugo-container
depends_on: depends_on:
- clone - clone
commands: commands:
- hugo -s ./src - hugo -s ./src
- name: Build and push the docker image - name: Build and push the docker image
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:896dc589d44bfa3560ee8d0469d5ee6fc4559532 image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:9fabf0ce6eab3a9a9da15b2791e8282afc05ee0b
privileged: true privileged: true
depends_on: depends_on:
- Test a build - Test a build
environment: environment:
BUILDER_COMMIT: 2449b73b13a62ae916c6703778d096e5290157b3
GITEA_TOKEN: GITEA_TOKEN:
from_secret: GITEA_TOKEN from_secret: GITEA_TOKEN
commands: commands:
- ./scripts/build-container.pl - ./scripts/build-container.pl
- name: Sync pictures from lfs to Minio - name: Sync pictures from lfs to Minio
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:896dc589d44bfa3560ee8d0469d5ee6fc4559532 image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:9fabf0ce6eab3a9a9da15b2791e8282afc05ee0b
depends_on: depends_on:
- Test a build - Test a build
environment: environment:
@ -74,9 +67,8 @@ steps:
commands: commands:
- echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG - echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG
- ./scripts/upload-media.pl - ./scripts/upload-media.pl
- name: Deploy the application - name: Deploy the application
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:896dc589d44bfa3560ee8d0469d5ee6fc4559532 image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:9fabf0ce6eab3a9a9da15b2791e8282afc05ee0b
depends_on: depends_on:
- Build and push the docker image - Build and push the docker image
- Sync pictures from lfs to Minio - Sync pictures from lfs to Minio
@ -91,9 +83,8 @@ steps:
from_secret: GOOGLE_OAUTH_KEY from_secret: GOOGLE_OAUTH_KEY
commands: commands:
- ./scripts/deploy-app.pl - ./scripts/deploy-app.pl
- name: Cleanup everything - name: Cleanup everything
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:896dc589d44bfa3560ee8d0469d5ee6fc4559532 image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:9fabf0ce6eab3a9a9da15b2791e8282afc05ee0b
depends_on: depends_on:
- Deploy the application - Deploy the application
environment: environment:
@ -113,13 +104,11 @@ steps:
kind: pipeline kind: pipeline
type: docker type: docker
name: Spell-Checker name: Spell-Checker
trigger: trigger:
event: event:
- push - push
clone: clone:
disable: true disable: true
steps: steps:
- name: clone - name: clone
image: alpine/git image: alpine/git
@ -128,7 +117,6 @@ steps:
commands: commands:
- git clone $DRONE_REMOTE_URL --recurse-submodules . - git clone $DRONE_REMOTE_URL --recurse-submodules .
- git checkout $DRONE_BRANCH - git checkout $DRONE_BRANCH
- name: Spell-Checker - name: Spell-Checker
image: node image: node
commands: commands:

View File

View File

@ -130,6 +130,20 @@ Ruina
VCV VCV
LFO LFO
beatmaker beatmaker
wavetables
OSC
YOUTUBE
Twelve50TV
Robotik
McRoy
brah
aw
shite
lowrider
mdma
nah
clubby
MGK
- src/themes/papermod/README.md - src/themes/papermod/README.md
PaperMod PaperMod
hugo-paper hugo-paper

10
.woodpecker.yaml Normal file
View File

@ -0,0 +1,10 @@
---
when:
event: push
steps:
spell-check:
name: Spell-Checker
image: node
commands:
- npm i markdown-spellcheck -g
- mdspell "src/content/**/*.md" -n -r

View File

@ -1,4 +1,4 @@
FROM git.badhouseplants.net/badhouseplants/hugo-container:451ffcefe9803644a65172b04e34392564ce8743 FROM git.badhouseplants.net/badhouseplants/hugo-container:dd6475f3c99b450d334d3377f3c1a1474a341ba7
WORKDIR /src WORKDIR /src
COPY ./src /src COPY ./src /src
ENTRYPOINT ["hugo"] ENTRYPOINT ["hugo"]

View File

@ -38,7 +38,7 @@ print `yq -i '.spec.source.helm.values = load_str("/tmp/values.yaml")' /tmp/appl
if(!defined $ENV{DEPLOY_SCRIPT_DEBUG}){ if(!defined $ENV{DEPLOY_SCRIPT_DEBUG}){
print `argocd app create -f /tmp/application.yaml --upsert` or die $!; print `argocd app create -f /tmp/application.yaml --upsert` or die $!;
print `argocd app sync -l application=badhouseplants -l branch=$git_branch` or die $!; print `argocd app sync --prune -l application=badhouseplants -l branch=$git_branch` or die $!;
print `argocd app wait -l application=badhouseplants -l branch=$git_branch` or die $!; print `argocd app wait -l application=badhouseplants -l branch=$git_branch` or die $!;
} }
# ---------------------------------- # ----------------------------------

View File

@ -34,7 +34,7 @@ params:
profileMode: profileMode:
enabled: true enabled: true
title: "Bad Houseplants" title: "Bad Houseplants"
subtitle: ... by allanger. subtitle: Easy DevOps by allanger
imageUrl: "main-logo.png" imageUrl: "main-logo.png"
imageWidth: 150 imageWidth: 150
imageHeight: 150 imageHeight: 150
@ -46,16 +46,10 @@ params:
- name: Source - name: Source
url: "https://git.badhouseplants.net/badhouseplants/badhouseplants-net" url: "https://git.badhouseplants.net/badhouseplants/badhouseplants-net"
socialIcons: socialIcons:
- name: "telegram"
url: "https://t.me/allanger"
- name: "twitter"
url: "https://twitter.com/_allanger"
- name: "mastodon" - name: "mastodon"
url: "https://mastodon.social/@allanger" url: "https://mastodon.social/@allanger"
- name: github - name: github
url: 'https://github.com/allanger' url: 'https://github.com/allanger'
- name: instagram
url: "https://instagram.com/_allanger"
- name: email - name: email
url: 'mailto:allanger@zohomail.com' url: 'mailto:allanger@zohomail.com'
ShowShareButtons: true ShowShareButtons: true

View File

@ -4,7 +4,19 @@ date: 2023-01-24T09:26:52+01:00
draft: false draft: false
--- ---
Oi! ## Welcome
Oi! Welcome to Bad Houseplants.
This is a blog about DevOps, self-hosting, Kubernetes, and stuff like that.
I'm allanger and I believe that DevOps should be easy to understand, and when saying DevOps, I also mean SRE and Ops in general. I see/hear it very often that teams working with GitOps and Kubernetes are making it increadbly hard, and I don't know the reasons for sure.
Here, I'll try do describe how things can be deployed to K8s, what one could do with that, and how to keep it maintainable. My main focus is self-hosted k8s, because it's the one I'm using on my own, but it doesn't mean that what you'll read here can't be applied to cloud providers and different k8s-as-a-service solutions.
I'm allanger and currently I'm working as full time SRE, but recently I've found out that I'd like to spend more time doing things related to music and sound. So I'm currently looking for project to add to my portfolio. So if you want somebody do a decent (I hope) mix for you without asking for any money, just let shoot me a message. I'm allanger and currently I'm working as full time SRE, but recently I've found out that I'd like to spend more time doing things related to music and sound. So I'm currently looking for project to add to my portfolio. So if you want somebody do a decent (I hope) mix for you without asking for any money, just let shoot me a message.
I'm not a pro mixing engineer of course, but it's what I'm aiming for. I'm not a pro mixing engineer of course, but it's what I'm aiming for.

View File

@ -2,77 +2,123 @@
title: Beats title: Beats
date: 2023-01-24T09:26:52+01:00 date: 2023-01-24T09:26:52+01:00
draft: false 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 >}} {{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=18"></iframe> <iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=36"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
### Monk ---
### 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 >}} {{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=27"></iframe> <iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=38"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
### Phantom Limb ---
### 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 >}} {{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=19"></iframe> <iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=39"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
### Silk Road ---
### 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 >}} {{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=34"></iframe> <iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=40"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
### Tremor ---
### 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 >}} {{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=30"></iframe> <iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=35"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
### Silver Grenade ---
### 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 >}} {{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=31"></iframe> <iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=34"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
### Spinal Cord ---
### 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 >}} {{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=32"></iframe> <iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=37"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
### Empty Cubicles ---
### 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 >}} {{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=23"></iframe> <iframe width="100%" height="300" scrolling="yes" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=33"></iframe>
{{< /rawhtml >}}
### Petrol
{{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=35"></iframe>
{{< /rawhtml >}}
### PSY
{{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=28"></iframe>
{{< /rawhtml >}}
### Body Drop
{{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=20"></iframe>
{{< /rawhtml >}}
### Broken Piano
{{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=22"></iframe>
{{< /rawhtml >}}
### Dead Wings
{{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=25"></iframe>
{{< /rawhtml >}}
### Trapped
{{< rawhtml >}}
<iframe width="100%" height="150" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=track&amp;id=17"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}

View 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.

View File

@ -20,7 +20,7 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="100%" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=20"></iframe> <iframe width="100%" height="100%" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=20"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Anymore.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Anymore.zip)*

View File

@ -22,7 +22,7 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=26"></iframe> <iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=26"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Await.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Await.zip)*

View File

@ -21,7 +21,7 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=22"></iframe> <iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=22"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Desensitized.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Desensitized.zip)*

View File

@ -20,6 +20,6 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=27"></iframe>{{< /rawhtml >}} <iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=27"></iframe>{{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Under%20My%20Pillow.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Under%20My%20Pillow.zip)*

View File

@ -19,7 +19,7 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="350" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=16"></iframe> <iframe width="100%" height="350" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=16"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Four%20Steps%20Behind.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Four%20Steps%20Behind.zip)*

View File

@ -21,7 +21,7 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=21"></iframe> <iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=21"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Let%20Me%20Kill.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Let%20Me%20Kill.zip)*

View File

@ -21,7 +21,7 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=23"></iframe> <iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=23"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Not%20Alone.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Not%20Alone.zip)*

View File

@ -20,7 +20,7 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=18"></iframe> <iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=18"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Out%20Of%20Law.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Out%20Of%20Law.zip)*

View File

@ -21,6 +21,6 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=17"></iframe>{{< /rawhtml >}} <iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=17"></iframe>{{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Trace.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Trace.zip)*

View File

@ -20,7 +20,7 @@ tags:
--- ---
{{< rawhtml >}} {{< rawhtml >}}
<iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/front/embed.html?&amp;type=album&amp;id=19"></iframe> <iframe width="100%" height="" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=album&amp;id=19"></iframe>
{{< /rawhtml >}} {{< /rawhtml >}}
*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Wasted%20Time.zip)* *If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Wasted%20Time.zip)*

View File

@ -0,0 +1,83 @@
---
title: "Creating a Sample Pack: Kick"
date: 2023-05-24T16:59:03+02:00
draft: false
ShowToc: true
cover:
image: "/posts/creating-a-sample-pack-kick/cover.png"
caption: "Creating a Sample Pack: Kick"
relative: false
responsiveImages: false
---
>Oi!
>I've decided to turn that blog more into the musical direction, because I've got enough of IT related stuff on my work. So most probably, I'll be posting about sound design, sound engineering and music more.
## Intro
I want to make a series of articles about sound design. I'll be learning as well during this process, and here I'll just post my findings. If you happen to read it and find mistakes, feel free to send me your thoughts.
I consider this cycle ready, when I have enough of samples, that I can create a beat or a song. After everything is done, I'll publish the sample pack, so anybody can download it for free. And the example of a track will be on my [funkwhale instance](https://funkwhale.badhouseplants.net/library)
## Let's go
I've decided to start with a drum kit. And the first element that I'm going to create is a **kick drum**. I'll be using Vital as a sound design instrument, if you don't know what it is you should check it out here: <https://vital.audio>.
First, we need to understand, what the kick actually is. What are components of that sound. I can identify three components of it:
- Click (that is produced by a pedal)
- Body (sound from inside a drum)
- Metal (vibrations of metal components of a drum kit) *This is optional, I'd say*
Let's open Vital
![Empty Vital](/posts/creating-a-sample-pack-kick/init_vital.png)
First of all, let's get rid of all non-persistent stuff (Things that are different on each key press)
![Unison and Phase](/posts/creating-a-sample-pack-kick/unison_phase.png)
*And we will do the same for all wavetables for kick and snare*
Now let's set wave types to `basic shapes`
![Basic Shape](/posts/creating-a-sample-pack-kick/kick_basic_shape.png)
Doesn't sound like a kick yet, but the main trick, as I think, is to map the pitch of that OSC to an LFO, that looks like that, and set the base value to something around **-12**.
![LFO 1](/posts/creating-a-sample-pack-kick/kick_lfo_1.png)
You can play around a bit and find a perfect spot that will make your kick awesome, but let's listen to what I've got now. I'll use one of defaults `Logic Pro` drum kits and replace a kick with the one I'm creating. Later I'll be replacing other drums as well, and in the end we will have a full drum kit.
Also, we don't need to change a pitch depending on which key is pressed, so let's disable the `Note Track` for all OSC in the `Advanced` tab
![Note Track disabled](/posts/creating-a-sample-pack-kick/disable_note_track.png)
*Also, after disabling the note tracking, I've set the pitch base value to -14, so it sounds like a kick*
Now, let's listen:
{{< audio "/posts/creating-a-sample-pack-kick/Kick_v1.mp3" >}}
Kick already sounds like a kick, but a lame one, doesn't it. Let's play a bit.
First, let's add a second LFO to control the volume level of the kick, it should be a short hit, so I'm adding a LFO like that and mapping it to the `level` of the first `OSD`
![LFO 2](/posts/creating-a-sample-pack-kick/kick_basic_shape.png)
And then enabling the `Filter 1` and mapping this LFO to the `Filter` as well,
It looks and sounds like that
{{< video "/posts/creating-a-sample-pack-kick/Kick_v2.mp4" "video-1">}}
With that filter setup I think, click sounds better. To make it even sharper, let's add some `White Noise` and an additional `LFO` for it.
{{< video "/posts/creating-a-sample-pack-kick/Kick_v3.mp4" "video-2">}}
And now let's add some effects. I've added a little bit of `EQ`, a `Distortion` which drive is mapped to a new `LFO`, and a `Compressor`, so now it looks like that:
{{< video "/posts/creating-a-sample-pack-kick/Kick_v4.mp4" "video-3">}}
The last step would be to add some more effects, but outside the `Vital` synth already. *And I'd like to change the pattern, because this one is driving me nuts*. So I've added a bit of additional `EQ`, `Distorition`, and `Compression`, and now it sounds like that. `
{{< audio "/posts/creating-a-sample-pack-kick/Kick_final_result.mp3" >}}

View File

@ -0,0 +1,22 @@
---
title: "Kid Robotik - I'm SO Sorry"
date: 2023-09-22T13:05:28+02:00
draft: true
ShowToc: true
cover:
image: "/posts/kid-robotik-im-so-sorry/cover.jpg"
caption: "Kid Robotik - I'm SO Sorry"
relative: true
responsiveImages: true
---
[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.

View File

@ -0,0 +1,38 @@
---
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
tags:
- Music
- Beats
---
I've released some of my old beats that we pending for quite a time. You can check them out on my [Funkwhale](https://funkwhale.badhouseplants.net/channels/allanger_beats)
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?&amp;type=track&amp;id=157"></iframe>
{{< /rawhtml >}}
### Fallen Folk
{{< rawhtml >}}
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=track&amp;id=154"></iframe>
{{< /rawhtml >}}
### Pillows
{{< rawhtml >}}
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=track&amp;id=166"></iframe>
{{< /rawhtml >}}
### Swipe
{{< rawhtml >}}
<iframe width="100%" height="160" scrolling="no" frameborder="no" src="https://funkwhale.badhouseplants.net/embed.html?&amp;type=track&amp;id=159"></iframe>
{{< /rawhtml >}}

View File

@ -0,0 +1,6 @@
<figure class="{{ .Get 1 }}">
<audio controls preload="{{ .Get "preload" | default "metadata" }}">
<source src="{{ .Get 0 }}" type="audio/mpeg">
<figcaption>{{ .Get 0 }}</figcaption>
</audio>
</figure>

View File

@ -13,7 +13,7 @@
var player = new Clappr.Player({ var player = new Clappr.Player({
source: {{ .Get 0 }}, source: {{ .Get 0 }},
mute: true, mute: false,
height: 360, height: 360,
width: 640 width: 640
}); });

BIN
src/static/music/allanger.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
src/static/posts/creating-a-sample-pack-kick/Kick_v1.mp3 (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/static/posts/creating-a-sample-pack-kick/Kick_v2.mkv (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/static/posts/creating-a-sample-pack-kick/Kick_v2.mp4 (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/static/posts/creating-a-sample-pack-kick/Kick_v3.mkv (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/static/posts/creating-a-sample-pack-kick/Kick_v3.mp4 (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/static/posts/creating-a-sample-pack-kick/Kick_v4.mkv (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7281dc2f93cfba5731b2bd0d38c6530ca84a33b05cf8a3ecacee583a073fb5be
size 376034

BIN
src/static/posts/creating-a-sample-pack-kick/cover.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
src/static/posts/creating-a-sample-pack-kick/init_vital.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
src/static/posts/creating-a-sample-pack-kick/kick_lfo_1.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/static/posts/creating-a-sample-pack-kick/kick_lfo_2.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

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/some-old-beats-are-out/Cover.png (Stored with Git LFS) Normal file

Binary file not shown.