content: Fix a typo
This commit is contained in:
parent
2d58aa37ee
commit
b4b0bf883b
@ -16,12 +16,12 @@ It was supposed to be just yet another web page with musical releases reviews, b
|
|||||||
|
|
||||||
> **allanger**
|
> **allanger**
|
||||||
>
|
>
|
||||||
> *Actually, I'm not sure yet. I wanted it to be something about music, but I found out that musical industry is not very welcoming, and I don't know what exactly I > can do there. Creating music is somehow an intimate process to me, so I can't share a lot about it. The whole distributing thing is a black-box, and I don't like > to be a part of it, until anything is changed. I wanted to do musical reviews, but there are tons of guys who already do it a way better than I can. So I've given > up on music here. I still hope that one day I'll open a recording studio under this name, but I'm not sure when it's even going to be possible. The second thing > that I can talk about is IT. I think it can be interesting, but I don't want to kind of stigmatized as an IT blogger. And then I've decided that I would like to write something about indie culture, about DIY philosophy and all this punk related stuff. So let's say that is a blog about indie*
|
> *Actually, I'm not sure yet. I wanted it to be something about music, but I found out that musical industry is not very welcoming, and I don't know what exactly I > can do there. Creating music is somehow an intimate process to me, so I can't share a lot about it. The whole distributing thing is a black-box, and I wouldn't like to be a part of it, until anything is changed. I wanted to do musical reviews, but there are tons of guys who already do it a way better than I can. So I've given up on music here. I still hope that one day I'll open a recording studio under this name, but I'm not sure when it's even going to be possible. The second thing that I can talk about is IT. I think it can be interesting, but I don't want to kind of stigmatized as an IT blogger. And then I've decided that I would like to write something about indie culture, about DIY philosophy and all this punk related stuff. So let's say that is a blog about indie*
|
||||||
|
|
||||||
### Wanna join?
|
### Wanna join?
|
||||||
|
|
||||||
If you want to publish anything here, I don't mind. But for doing that you need to have at least basic `git` knowledge because this blog is written as code. You can check the [source code](https://git.badhouseplants.net/badhouseplants/badhouseplants-net) to understand if you're ready or not. I'm hosting my own `Gitea` instance, so you will have to request an account ([just email me](mailto:allanger@zohomail.com) or find me in [telegram](https://t.me/allanger)), when you got one, you're ready to start writing. If you have any questions about how to start, I'm always open for a conversation.
|
If you want to publish anything here, I don't mind. But for doing that you need to have at least basic `git` knowledge because this blog is written as code. You can check the [source code](https://git.badhouseplants.net/badhouseplants/badhouseplants-net) to understand if you're ready or not. I'm hosting my own `Gitea` instance, so you will have to request an account ([just email me](mailto:allanger@zohomail.com) or find me on [telegram](https://t.me/allanger)), when you got one, you're ready to start writing. If you have any questions about how to start, I'm always open for a conversation.
|
||||||
|
|
||||||
Thanks,
|
Thanks,
|
||||||
|
|
||||||
Oi!
|
Oi!
|
||||||
|
@ -26,11 +26,10 @@ chomp @builds_out;
|
|||||||
# ---------------------------------------
|
# ---------------------------------------
|
||||||
# -- Get a list of all commits + 'latest'
|
# -- Get a list of all commits + 'latest'
|
||||||
# ---------------------------------------
|
# ---------------------------------------
|
||||||
my $commits = "git log --format=format:%H --all";
|
my $commits = "git fetch && git log --format=format:%H --all";
|
||||||
my @commits_out = `$commits`;
|
my @commits_out = `$commits`;
|
||||||
chomp @commits_out;
|
chomp @commits_out;
|
||||||
push @commits_out, 'latest';
|
push @commits_out, 'latest';
|
||||||
|
|
||||||
# ---------------------------------------
|
# ---------------------------------------
|
||||||
# -- Compare builds to commits
|
# -- Compare builds to commits
|
||||||
# -- And remove obsolete imgages from
|
# -- And remove obsolete imgages from
|
||||||
|
Reference in New Issue
Block a user