-
Launch Terminal on Mac.
-
To enable aptX, type in the following command:
sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true
- To enable AAC, type the following:
Launch Terminal on Mac.
To enable aptX, type in the following command:
sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true
'use strict'; | |
/** | |
* TTTTTTTTTTTTTTTTTTTTTTTHHHHHHHHH HHHHHHHHHEEEEEEEEEEEEEEEEEEEEEE | |
* T:::::::::::::::::::::TH:::::::H H:::::::HE::::::::::::::::::::E | |
* T:::::::::::::::::::::TH:::::::H H:::::::HE::::::::::::::::::::E | |
* T:::::TT:::::::TT:::::THH::::::H H::::::HHEE::::::EEEEEEEEE::::E | |
* TTTTTT T:::::T TTTTTT H:::::H H:::::H E:::::E EEEEEE | |
* T:::::T H:::::H H:::::H E:::::E | |
* T:::::T H::::::HHHHH::::::H E::::::EEEEEEEEEE |
I'm gonna go out on a limb here and claim that the general interest in
cryptocurrencies is directly proportional to the BTC/USD
rate.
Remember the 2018 bubble, when everyone made delusional claims along the lines of the blockchain will replace the internet? It got so big that even a bunch of companies bought the hype. Cash was thrown at business projects that made no goddamn sense: I distinctly remember asking the Finnish MD of a major financial organization how their blockchain proof-of-concept was supposed to work. They
There was a reddit post about installing Arch on NTFS3 partition. Since Windows and Linux doesn't have directories with same names under the /
(C:\
), I thought it's possible, and turned out it was actually possible.
If you are not familiar to Linux, for example you've searched on Google "how to dualboot Linux and Windos" or brbrbr... you mustn't try this. This is not practical.
#!/usr/bin/bash -xe | |
cat <<EOF > "${HOME}/.config/systemd/user/zoom.slice" | |
[Slice] | |
AllowedCPUs=0-4 | |
MemoryHigh=6G | |
EOF | |
cat /usr/share/applications/Zoom.desktop | sed -E 's#^(Exec=).*$#Exec=/usr/bin/systemd-run --user --slice=zoom.slice /opt/zoom/ZoomLauncher#' > "${HOME}/.local/share/applications/Zoom.desktop" |
This tutorial is dated Oct 2021, if it's much further on than that this information might be out of date.
This is a guide on setting up a static HTTPS website on your raspberry pi using docker and nginx. The aim is to have this running on the raspberry pi and to be able to access it from a host computer on the same local network. You should already be able to ssh into your pi from your host computer and have raspberry pi OS set up.
// Can be used with https://github.com/xcv58/Custom-JavaScript-for-Websites-2 | |
// This snippet is released under the terms of the CC0 license: https://creativecommons.org/publicdomain/zero/1.0/deed.en | |
const cache_key = 'hn_comments_views' | |
const cache = JSON.parse(localStorage.getItem(cache_key) || '{}') | |
document.querySelectorAll('.athing.comtr').forEach(comm => { | |
if (!cache[comm.id]) { | |
const span = document.createElement('span') | |
span.innerHTML = '🔔' // :bell: emoji |
/************************************************************** | |
LZSS.C -- A Data Compression Program | |
(tab = 4 spaces) | |
*************************************************************** | |
4/6/1989 Haruhiko Okumura | |
Use, distribute, and modify this program freely. | |
Please send me your improved versions. | |
PC-VAN SCIENCE | |
NIFTY-Serve PAF01022 | |
CompuServe 74050,1022 |
package example | |
import java.io._ | |
import scala.util.Random | |
import scala.annotation.tailrec | |
import com.github.tototoshi.csv._ | |
trait SalesTeam { | |
val pop: Int | |
} |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in | |
all copies or substantial portions of the Software. |