lade...
random avatar

zabouth - Network

Posts Subscribe

Fixing the metadata on your media collection is the modern version of sorting your CDs into alphabetical order.

https://mastodon.incognitus.net/...

Fixing the metadata on your media collection is the modern version of sorting your CDs into alphabetical order.

21.2.2023 23:57Fixing the metadata on your media collection is the modern version of sorting your CDs into alphabetical order.
https://mastodon.incognitus.net/...

I have a plan to use smart TVRs a nest thermostat and home assistant to build my own smart heating system. Mosley because I want to heat...

https://mastodon.incognitus.net/...

I have a plan to use smart TVRs a nest thermostat and home assistant to build my own smart heating system. Mosley because I want to heat only my home office when I'm working but not the rest of the house and I'm too lazy to go and turn all the radiators off by hand.

9.1.2023 15:48I have a plan to use smart TVRs a nest thermostat and home assistant to build my own smart heating system. Mosley because I want to heat...
https://mastodon.incognitus.net/...

Really impressed with how far home assistant has come. When I tried it a few years ago I remember hours of messing around with config files...

https://mastodon.incognitus.net/...

Really impressed with how far home assistant has come. When I tried it a few years ago I remember hours of messing around with config files just to get something simple working. This time it detected all of my devices automatically. I have not touched a yaml file so far.

7.1.2023 09:53Really impressed with how far home assistant has come. When I tried it a few years ago I remember hours of messing around with config files...
https://mastodon.incognitus.net/...

The saga of the button continues. I still can't decide what to do with it so I got myself a ESP8266 I'm going to set it to publish...

https://mastodon.incognitus.net/...

The saga of the button continues. I still can't decide what to do with it so I got myself a ESP8266 I'm going to set it to publish its state to my mqtt broker and decide what it will trigger later.

2.1.2023 09:06The saga of the button continues. I still can't decide what to do with it so I got myself a ESP8266 I'm going to set it to publish...
https://mastodon.incognitus.net/...

I decided to try giving blood. I have been meaning to do it for about the last ten years.It's great you get to fulfil some of your...

https://mastodon.incognitus.net/...

I decided to try giving blood. I have been meaning to do it for about the last ten years.
It's great you get to fulfil some of your social obligations by sitting in a chair for 5 min then getting a free snack and drink. If you hate being social, it's one of the best ways I can think of.

31.12.2022 16:47I decided to try giving blood. I have been meaning to do it for about the last ten years.It's great you get to fulfil some of your...
https://mastodon.incognitus.net/...

If your application has a complex script that generates a docker-compose file, you're doing it wrong. Just give us the compose file and...

https://mastodon.incognitus.net/...

If your application has a complex script that generates a docker-compose file, you're doing it wrong. Just give us the compose file and use environment variables for the config.

30.12.2022 14:25If your application has a complex script that generates a docker-compose file, you're doing it wrong. Just give us the compose file and...
https://mastodon.incognitus.net/...

Going by my steam year in review, I only clocked up around 42 hours of gaming this year. Around 7 min of gameplay a day if you average it...

https://mastodon.incognitus.net/...

Going by my steam year in review, I only clocked up around 42 hours of gaming this year. Around 7 min of gameplay a day if you average it out.

s.team/y22/pbtgtw?l=english

I do miss 16-hour gaming sessions. I remember completing half life 2 in one session as soon as it unlocked, then being useless at work the next day. Good times

29.12.2022 19:44Going by my steam year in review, I only clocked up around 42 hours of gaming this year. Around 7 min of gameplay a day if you average it...
https://mastodon.incognitus.net/...

Buying a new phone used to be exciting. Now I'm just thinking of the amount of auth and banking apps I need to setup again.

https://mastodon.incognitus.net/...

Buying a new phone used to be exciting. Now I'm just thinking of the amount of auth and banking apps I need to setup again.

11.12.2022 15:09Buying a new phone used to be exciting. Now I'm just thinking of the amount of auth and banking apps I need to setup again.
https://mastodon.incognitus.net/...

Processing the input by hand is cheating. 😀 I spent 98% writing the input parser and 2% solving the puzzle everyone should share my...

https://mastodon.incognitus.net/...

Processing the input by hand is cheating. 😀 I spent 98% writing the input parser and 2% solving the puzzle everyone should share my pain.

puzzle: adventofcode.com/2022/day/5

code: git.skycube.uk/zabouth/Advent_

- Day 5

5.12.2022 23:30Processing the input by hand is cheating. 😀 I spent 98% writing the input parser and 2% solving the puzzle everyone should share my...
https://mastodon.incognitus.net/...

Spoiler Advent of Code Day 4 Part 1Ruby this timeinput = File.readlines("input").map! { |x| x.strip.split(",").map! {...

https://mastodon.incognitus.net/...

Spoiler Advent of Code Day 4 Part 1


Ruby this time

input = File.readlines("input").map! { |x| x.strip.split(",").map! { |y| y.split("-").map(&:to_i) } }

cout = 0

input.each { |v| if v[0][0] >= v[1][0] && v[0][1] <= v[1][1] || v[1][0] >= v[0][0] && v[1][1] <= v[0][1]; cout += 1; end }

puts cout

4.12.2022 14:58Spoiler Advent of Code Day 4 Part 1Ruby this timeinput = File.readlines("input").map! { |x| x.strip.split(",").map! {...
https://mastodon.incognitus.net/...

Spoiler Advent of Code Day 2Advent of code day 2 using sed and awkSed + Awk sed -e 's/A X/4/g' -e 's/A Y/8/g' -e 's/A...

https://mastodon.incognitus.net/...

Spoiler Advent of Code Day 2


Advent of code day 2 using sed and awk

Sed + Awk
sed -e 's/A X/4/g' -e 's/A Y/8/g' -e 's/A Z/3/g' -e 's/B X/1/g' -e 's/B Y/5/g' -e 's/B Z/9/g' -e 's/C X/7/g' -e 's/C Y/2/g' -e 's/C Z/6/g' input.txt | awk '{SUM+=$1}END{print SUM}'

sed -e 's/A X/3/g' -e 's/A Y/4/g' -e 's/A Z/8/g' -e 's/B X/1/g' -e 's/B Y/5/g' -e 's/B Z/9/g' -e 's/C X/2/g' -e 's/C Y/6/g' -e 's/C Z/7/g' input.txt | awk '{SUM+=$1}END{print SUM}'

2.12.2022 18:17Spoiler Advent of Code Day 2Advent of code day 2 using sed and awkSed + Awk sed -e 's/A X/4/g' -e 's/A Y/8/g' -e 's/A...
https://mastodon.incognitus.net/...

Oww this looks like a fun little project.https://github.com/bachya/ecowitt2mqtt

https://mastodon.incognitus.net/...

Oww this looks like a fun little project.

github.com/bachya/ecowitt2mqtt

25.11.2022 13:02Oww this looks like a fun little project.https://github.com/bachya/ecowitt2mqtt
https://mastodon.incognitus.net/...

I have a big red button and a Rasberry pi. It used to be used to disable add blocking for the house now, I need to find a new use for it....

https://mastodon.incognitus.net/...

I have a big red button and a Rasberry pi. It used to be used to disable add blocking for the house now, I need to find a new use for it. Any suggestions?

25.11.2022 00:18I have a big red button and a Rasberry pi. It used to be used to disable add blocking for the house now, I need to find a new use for it....
https://mastodon.incognitus.net/...

Highways England publishes traffic data, but they don't provide any description for the fields. Someone managed to get them by sending...

https://mastodon.incognitus.net/...

Highways England publishes traffic data, but they don't provide any description for the fields. Someone managed to get them by sending in a Freedom of Information request.

23.11.2022 23:29Highways England publishes traffic data, but they don't provide any description for the fields. Someone managed to get them by sending...
https://mastodon.incognitus.net/...

Fun little rabbit hole I fell down. I saw a Reddit post about the Cistercian Number System that can use a single glyph for all numbers...

https://mastodon.incognitus.net/...

Fun little rabbit hole I fell down. I saw a Reddit post about the Cistercian Number System that can use a single glyph for all numbers between 1 and 9999. Decided to see if I could generate them. Some code and a sprinkle of SVG later, I have a Cistercian clock.

Clock:
skycube.me.uk/clock.html

Code:
github.com/skycubeuk/cistercia

Number System:
en.wikipedia.org/wiki/Cisterci

21.11.2022 22:41Fun little rabbit hole I fell down. I saw a Reddit post about the Cistercian Number System that can use a single glyph for all numbers...
https://mastodon.incognitus.net/...

When you run a pipeline with massive changes and it works first time.

https://mastodon.incognitus.net/...

When you run a pipeline with massive changes and it works first time.

21.11.2022 11:14When you run a pipeline with massive changes and it works first time.
https://mastodon.incognitus.net/...

I quite like the fact that you can verify your self using a link back to a website. Just wish there was a way to do it via a txt record...

https://mastodon.incognitus.net/...

I quite like the fact that you can verify your self using a link back to a website. Just wish there was a way to do it via a txt record instead of having to add a link to a page.

21.11.2022 11:10I quite like the fact that you can verify your self using a link back to a website. Just wish there was a way to do it via a txt record...
https://mastodon.incognitus.net/...

<script> alert("Hello World!"); </script><script> alert("Hello World!"); </script>Just...

https://mastodon.incognitus.net/...

<script> alert("Hello World!"); </script>


<script> alert("Hello World!"); </script>

Just testing

<h1>test</h1>
<h2>test</h2>

15.11.2022 11:33<script> alert("Hello World!"); </script><script> alert("Hello World!"); </script>Just...
https://mastodon.incognitus.net/...

#tea and a bit of coffee

https://mastodon.incognitus.net/...

and a bit of coffee

13.11.2022 22:32#tea and a bit of coffee
https://mastodon.incognitus.net/...

New social media platform who dis

https://mastodon.incognitus.net/...

New social media platform who dis

13.11.2022 19:01New social media platform who dis
https://mastodon.incognitus.net/...
Subscribe
To add news/posts to your profile here, you must add a link to a RSS-Feed to your webfinger. One example how you can do this is to join Fediverse City.
         
Webfan Website Badge
Nutzungsbedingungen   Datenschutzerklärung  Impressum
Webfan | @Web pages | Fediverse Members