
via @heuteshow

via @heuteshow
from the arch-dev-public mailinglist
![]()
Finally found some time to write a draft for news post on i686. Here it is:
Title: i686 is dead, long live i686
Due to the decreasing popularity of i686 among the developers and the
community, we have decided to phase out the support of this architecture.The decision means that February ISO will be the last that allows to
install 32 bit Arch Linux. The next 9 months are deprecation period,
during which i686 will be still receiving upgraded packages. Starting
from November 2017, packaging and repository tools will no longer
require that from maintainers, effectively making i686 unsupported.[..]
I switched the blog to infinite scrolling, 
so you don’t have to click that nasty “next” button
to get to older posts π
much nicer.. have fun π
edit:
I noticed the syntax highlighter doesn’t work right,
when infinite scrolling is used..
and you can’t scroll the code window on a phone.
Will have a look at that when I’m bored some time in the future π
just FYI

via dilbert

via smbc




Seriously…. who develops these shitty systems for hotel wifi ?
I know , I know , it’s been said a thousand times…
But I’m sitting here in Austria in a fucking hotel and guess what.

at least it’s fucking slow as fuck and the connection is terrible,
so we got that going … *sigh*

reminder to myself : run openvpn on 443

in view of the occasion…
With Trump now in power, with all his buffoons, he took for his cabinet.
And with the rise of right wing populism in europe.
Not to say that this makes it any better…
but if you want to cling on hope in the upcoming years π
so it’s finally happening.
Darth Trump takes office….
god help us all…
remember same time last year, when there was still Hope ?

TIL the schwarzschild metric π
The Phantom Singularity:
Optically Clear Aluminum Provides Bulletproof Protection.
Technically known as aluminum oxynitride, Star Trek fans may be more familiar with the term βtransparent aluminumβ first proposed by Scotty in the 1986 movie,Β Star Trek IV: The Voyage Home. While ALON isnβt quite what Scotty had in mind (itβs not truly a transparent metallic aluminum, but rather a transparent aluminum-based ceramic), itβs pretty darn close.


via smbc-comics

Today I noticed, that certain video files from my Synology would not play in the browser. I quickly found out, it’s an issue with DTS Audio Tracks, which appearently has been arround for ages. The Synology is not new, but I never noticed until now, because I mostly just played videos over NFS. But the Video Station also gives you the ability to play them over the browser, which is nice to have if you are not at home and want to play videos over a remote computer or your phone. So the only solution to get rid of this issue, as it seems, is just converting the files to have another audio format. I made a really simple script to help me with that. I didn’t want to do this manually since I have a lot of video files.
So if anyone has the same issue… a simple loop will do :
will probably need to leave it on over the night π
#!/usr/bin/zsh
# Script for identifying DTS Audiotracks on the NAS
# and convert them to a specific target folder
LOGFILE=${HOME}/dts_scan_files.log
MOVIE_DIR=${HOME}/orilla/media/Movies
TARGET=${HOME}/DTS_CONVERTER_CONVERTED
if [ ! -d ${TARGET} ]; then
mkdir -p ${TARGET}
fi
if [ ! -d ${MOVIE_DIR} ]; then
echo "ERROR: could not find directory"
exit 1
fi
rm -f $LOGFILE
toucn $LOGFILE
echo "SCANNING FOR MEDIAFILES with a DTS AUDIO TRACK"
find ${MOVIE_DIR} -type f | while read file
do
filename=$(basename ${file})
mediainfo ${file} | grep -q "DTS"
if [ $? -eq 0 ]; then
echo "\e[1;31mFOUND DTS FILE:\e[0;33m ${filename}\e[0m"
echo ${filename} >> ${LOGFILE}
echo "converting the file and saving it to $TARGET"
ffmpeg -i ${file} ${TARGET}/${filename}
else
echo "\e[0;32mnot a DTS file:\e[0;34m ${filename}\e[0m"
fi
done

finally a useful PoE adapter.
Now we can plug the coffee machine right into the switch.
Bonus Point for the possibility to powercycle three things with one command.

SpaceX resumed operations since the explosion last september.
Now they can get going with that Mars-Colonization-Plan.
awesome news π