35 Commits

Author SHA1 Message Date
86140ea516 Build with anchors 2023-12-08 18:49:20 +01:00
59dca13656 Start getting rid of argo 2023-12-07 10:10:38 +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 420 additions and 126 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,14 @@ steps:
kind: pipeline kind: pipeline
type: docker type: docker
name: Build badhouseplants.net name: Build badhouseplants.net
trigger: trigger:
event: event:
- push - push
builder: &builder
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:555262114ea81f6f286010474527f419b56d33a3
clone: clone:
disable: true disable: true
steps: steps:
- name: clone - name: clone
image: alpine/git image: alpine/git
@ -44,27 +42,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
- <<: *builder
- name: Build and push the docker image name: Build and push the docker image
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:896dc589d44bfa3560ee8d0469d5ee6fc4559532
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
- <<: *builder
- name: Sync pictures from lfs to Minio name: Sync pictures from lfs to Minio
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:896dc589d44bfa3560ee8d0469d5ee6fc4559532
depends_on: depends_on:
- Test a build - Test a build
environment: environment:
@ -74,9 +70,8 @@ steps:
commands: commands:
- echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG - echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG
- ./scripts/upload-media.pl - ./scripts/upload-media.pl
- <<: *builder
- name: Deploy the application name: Deploy the application
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:896dc589d44bfa3560ee8d0469d5ee6fc4559532
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
@ -89,11 +84,11 @@ steps:
from_secret: GITHUB_OAUTH_KEY from_secret: GITHUB_OAUTH_KEY
ARGO_GOOGLE_OAUTH_KEY: ARGO_GOOGLE_OAUTH_KEY:
from_secret: GOOGLE_OAUTH_KEY from_secret: GOOGLE_OAUTH_KEY
DEPLOY_SCRIPT_DEBUG: true
commands: commands:
- ./scripts/deploy-app.pl - ./scripts/deploy-app.pl
- <<: *builder
- name: Cleanup everything name: Cleanup everything
image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:896dc589d44bfa3560ee8d0469d5ee6fc4559532
depends_on: depends_on:
- Deploy the application - Deploy the application
environment: environment:
@ -113,13 +108,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,9 +121,8 @@ 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:
- npm i markdown-spellcheck -g - npm i markdown-spellcheck -g
- mdspell "src/content/**/*.md" -n -r - mdspell "src/content/**/*.md" -n -r

View File

5
.sops.yaml Normal file
View File

@ -0,0 +1,5 @@
creation_rules:
- path_regex: .*secrets\.values.*
key_groups:
- age:
- age155dykdtnkw9fke45pxkygyyx2eal0hwpdm0zz8qa92z5ludjqe5sfakqgs

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

View File

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

View File

@ -0,0 +1,21 @@
values: ENC[AES256_GCM,data:qQTaz7Ab1+2udnxTNRfRKALV93SNBX1l+po11ZPV/RRstwuaBqkrp/zRMllPj6O6p62Y9N9BknSJsuavH62wqAOmN0qVP1XQtzHMLMKMIOe4ut29NtcR7XM54Cq1glqTk2LRfCaCdYSzOsXFscGI/x2bx7G8LjKXWEPtHGXVU+lU3OZFWZ7Ioz02lPl3FnidXBQrCQnY1Wc4qS0T/haCq0cXYk+SA4jMY5vxn3+WwaCfq//50EZOebNFCPnGHR5kRmMmG32u918lt/jv2GEu066Vjd0J67S8HGiykFi6RHZwIry0V65YH7X/L4LtEqKok+WAu3ssNRsgXaEhvWclpn0Jq30Z2qsaSFVItbSC7oiUEixlRc1oxOm0ytWZmlFJbzfpA9JdHw1Dpw0q8kIY2eqmAM/W3omZy+4tmPttHbnWyoKSPJi4CflDMToMkkujGqfnOx0OVQ85fXpr0cKkYJuyLz7YQtAyIGGqGyHtqqicWCqt9B25If1Cv+91gu1If0fpEb77ITIjRHaeEcLkBqb9cCGJnV+a6bdVTtDvH2sS9kBS+oWK+cgsAWD3BVDIpOlV0jwJyAB+++PwmsZuFc9MEkE8DSMK2P64J4ceyV6M4Eb8YNGljdxTRZAl9m6SaKLMC8KiggiHs3JPg69n1OsFWN7EcCKtErTq0+XbiHidkYbg+xnxnez3cCbMvTeNZvbKU2bVllqie4ZMe4q0TzQEnTlMeuqeGtVIgPn9an2N2foTHZUboAysM2MKKeWB2isABtv59SXyzhfQmvC08Cgf9Jj3cJpqWm2/Am3RIYcsXW8NwkxM+lPQ6+IYx87Wd3FvPDTTS+wSO700uzFWXfwsaE7AY1uQBXK7bL61jPQ3HpQYWDS11+1zX30iUaDm3m3u6t6gVlGeICAvxqoBxOiruX/jcAOzU/dSeSTjjPmvDO829kB6rFugAvRDYXetoI09EugdnPHTaC/xFejV,iv:/7k4rjpiuCJev6B/GJu9eyb/RMWJfyfjrRuVRTdybDM=,tag:G1eRy4i6+59wZuGqx9bDPQ==,type:str]
sops:
kms: []
gcp_kms: []
azure_kv: []
hc_vault: []
age:
- recipient: age155dykdtnkw9fke45pxkygyyx2eal0hwpdm0zz8qa92z5ludjqe5sfakqgs
enc: |
-----BEGIN AGE ENCRYPTED FILE-----
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBEMWthSXdncUI0U0tSdkk4
d1lyQWJ2M0NQSjRQRWViQ0RLVWlSK3FsczB3Cks1V1BaZmFlUVRCdUpBS2kzekxK
RlRlQ1daTGdMODlEenVUOVNDOVhNUWsKLS0tIERxeG1BRlh0T0hKSlNXeHI0eUVO
V1N2YWIvWXpDckhzampIVUx4YU50Q2cKRyx2G5ki4yhhzpTVjjCBPKvI1C208HJb
Qb9Kpd2HkJaVllL5mUsXOAWtugceaSvidK1t3Hz0NXrVvFVUxDh8Rg==
-----END AGE ENCRYPTED FILE-----
lastmodified: "2023-12-07T09:10:13Z"
mac: ENC[AES256_GCM,data:gsbIyJU7T6wRj5CFbG2nyeawvCzp/BtOSOIsapC0AF6a2IIqau1IaH+vd2O7mbT5ClurC0zfR5k5g/pRE8AWc85kbdBhzLBe4Kkx5DXy9N/JQaNh8RlJ1HKzvipVK46zF+6PZYjsrb1S+9WL9p/aV226XkhdcHWcMWrKUaAWVOg=,iv:H5YcSg5gVHNEt7gFLuF8OQtTMq88HdZwlMfMTxxL7iQ=,tag:66qP18m69BBEIuHKJMa1Cw==,type:str]
pgp: []
unencrypted_suffix: _unencrypted
version: 3.8.1

View File

@ -1,33 +1,32 @@
--- ---
values: | namespace:
namespace: name: badhouseplants-$BH_APP_BRANCH
name: badhouseplants-$ARGO_APP_BRANCH labels:
labels: istio-injection: disabled
istio-injection: disabled istio:
hosts:
- $BH_APP_HOSTNAME
annotations:
link.argocd.argoproj.io/env: https://$BH_APP_HOSTNAME/
link.argocd.argoproj.io/remark42: https://remark42-$BH_APP_HOSTNAME/web
link.argocd.argoproj.io/build: $DRONE_BUILD_LINK
hugo:
image:
tag: $BH_APP_IMAGE_TAG
baseURL: https://$BH_APP_HOSTNAME/
buildDrafts: true
env:
HUGO_PARAMS_GITBRANCH: $BH_APP_BRANCH
HUGO_PARAMS_REMARK42URL: https://remark42-$BH_APP_HOSTNAME
HUGO_PARAMS_GITCOMMIT: $BH_APP_IMAGE_TAG
remark42:
istio: istio:
hosts: hosts:
- $ARGO_APP_HOSTNAME - remark42-$BH_APP_HOSTNAME
annotations: settings:
link.argocd.argoproj.io/env: https://$ARGO_APP_HOSTNAME/ url: https://remark42-$BH_APP_HOSTNAME/
link.argocd.argoproj.io/remark42: https://remark42-$ARGO_APP_HOSTNAME/web auth:
link.argocd.argoproj.io/build: $DRONE_BUILD_LINK anonymous: true
hugo: secretKey: $BH_REMARK_SECRET
image: rclone:
tag: $ARGO_APP_IMAGE_TAG command: 'rclone copy -P badhouseplants-public:/badhouseplants-net/$BH_APP_IMAGE_TAG /static'
baseURL: https://$ARGO_APP_HOSTNAME/
buildDrafts: true
env:
HUGO_PARAMS_GITBRANCH: $ARGO_APP_BRANCH
HUGO_PARAMS_REMARK42URL: https://remark42-$ARGO_APP_HOSTNAME
HUGO_PARAMS_GITCOMMIT: $ARGO_APP_IMAGE_TAG
remark42:
istio:
hosts:
- remark42-$ARGO_APP_HOSTNAME
settings:
url: https://remark42-$ARGO_APP_HOSTNAME/
auth:
anonymous: true
secretKey: $ARGO_REMARK_SECRET
rclone:
command: 'rclone copy -P badhouseplants-public:/badhouseplants-net/$ARGO_APP_IMAGE_TAG /static'

View File

@ -15,11 +15,11 @@ my $values = "";
my $remark_secret = `openssl rand -hex 12`; my $remark_secret = `openssl rand -hex 12`;
chomp($remark_secret); chomp($remark_secret);
$ENV{'ARGO_APP_CHART_VERSION'} = $chart_version; $ENV{'BH_APP_CHART_VERSION'} = $chart_version;
$ENV{'ARGO_APP_BRANCH'} = $git_branch; $ENV{'BH_APP_BRANCH'} = $git_branch;
$ENV{'ARGO_APP_HOSTNAME'} = "$git_branch-dev.badhouseplants.net"; $ENV{'BH_APP_HOSTNAME'} = "$git_branch-dev.badhouseplants.net";
$ENV{'ARGO_APP_IMAGE_TAG'} = $git_commit_sha; $ENV{'BH_APP_IMAGE_TAG'} = $git_commit_sha;
$ENV{'ARGO_REMARK_SECRET'} = $remark_secret; $ENV{'BH_REMARK_SECRET'} = $remark_secret;
# ---------------------------------- # ----------------------------------
# -- Fill the Application manifest # -- Fill the Application manifest
@ -37,8 +37,9 @@ print `envsubst < ./kube/application.yaml > /tmp/application.yaml` or die $!;
print `yq -i '.spec.source.helm.values = load_str("/tmp/values.yaml")' /tmp/application.yaml` or die $!; print `yq -i '.spec.source.helm.values = load_str("/tmp/values.yaml")' /tmp/application.yaml` or die $!;
if(!defined $ENV{DEPLOY_SCRIPT_DEBUG}){ if(!defined $ENV{DEPLOY_SCRIPT_DEBUG}){
print `helm upgrade --install `
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

@ -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

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