Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
Disclaimer: Please follow this guide being aware of the fact that I'm not an expert regarding the things outlined below, however I made my best attempt. A few people in IRC confirmed it worked for them and the results looked acceptable.
Attention: After following all the steps run gdk-pixbuf-query-loaders --update-cache
as root, this prevents various gdk-related bugs that have been reported in the last few hours. Symptoms are varied, and for Cinnamon the DE fails to start entirely while for XFCE the icon theme seemingly can't be changed anymore etc.
Check the gist's comments for any further tips and instructions, especially if you are running into problems!
Results after following the guide as of 11.01.2017 13:08:
If you're using a high-end bluetooth headset on your Macbook Pro it's likely your mac is using an audio codec which favors battery efficiency over high quality. This results in a drastic degradation of sound, the SBC codec is the likely culprit, read more about it here.
This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.
Agree? Disagree? Feel free to let me know at @JanStette.
Keep it simple, stupid. You ain't gonna need it.
All of the steps below were tested on an Intel Mac running Big Sur.
Download and extract your zulu JDK and point these variables to it:
export ARM64=${PWD}/zulu17.0.13-ea-jdk17.0.0-ea.2-macosx_aarch64
export AMD64=${PWD}/zulu17.0.13-ea-jdk17.0.0-ea.2-macosx_x64
export BUILD=${PWD}
First find a JDK you want to use in Bazel, I will use Azul Zulu JDK 21 EA.
From the JDK vendor you choose you will need to find the download url and SHA256. In my case I find the download url by right clicking .zip
and selecting Copy link address
, and for the SHA256 I click the Checksum (SHA256)
and copy the SHA256.
Now in your WORKFILE
add the following