Skip to content

Instantly share code, notes, and snippets.

View mikbuch's full-sized avatar
🔋
Positive energy!

Mikolaj Buchwald mikbuch

🔋
Positive energy!
View GitHub Profile
<!-- ChartJS plugin datasrouce example
chartjs-plugin-datasource: https://nagix.github.io/chartjs-plugin-datasource/
Samples: https://nagix.github.io/chartjs-plugin-datasource/samples/
Specific example: https://nagix.github.io/chartjs-plugin-datasource/samples/csv-index.html
Data source: https://gist.githubusercontent.com/mikbuch/32862308f4f5cac8141ad3ae49e0920c/raw/b2b256d69a52dd202668fe0343ded98371a35b15/sample-index.csv -->
<head>
@mikbuch
mikbuch / update-firefox-linux.md
Last active August 1, 2022 21:51
How to update Firefox on Linux (Ubuntu)

How to update Firefox on Linux (Ubuntu)

Steps to download and install the latest Firefox

From the Firefox documentation pages:

Please use download.mozilla.org to retrieve the latest Firefox release. For example, if you wish to download the US English installer for Windows (32bit) the url is https://download.mozilla.org/?product=firefox-latest&os=win&lang=en-US > This could be pasted into the location bar of a browser, or used with curl or wget, e.g.

@mikbuch
mikbuch / ESP8266_WebServerAndClient_PlusSerial.ino
Last active May 12, 2024 18:16
ESP8266 web server receiving GET requests and sending POST request, also sending information as a JSON to the serial port
// This script is avilable as a gist:
// https://gist.github.com/mikbuch/a5c7492fc6c29956c5755683ea23d35b
// ESP8266 web server receiving GET requests and sending POST request,
// but also sending information as a JSON to the serial port
// For a different example, focused on network communication, see:
// * "ESP8266_WebServerAndClient.ino" (https://gist.github.com/mikbuch/59753429f721f4a93d9592b9f21484c9)
/* Requirements:
@mikbuch
mikbuch / add_anaconda_to_path_zshrc.sh
Last active October 17, 2023 20:45
Add Anaconda to the PATH variable (zshrc)
# It should also work for other rc file types, e.g., bash_profile/bashrc
echo "export PATH=${HOME}/anaconda3/bin:$PATH" >> ${HOME}/.zshrc
@mikbuch
mikbuch / python_pretty_timedelta.py
Last active November 6, 2023 18:10
Pretty print a `datatime` time delta object in Python in days, hours, minutes, seconds, and milliseconds
def pretty_timedelta(delta):
"""
Pretty printing a `timedelta` object form `datetime` Python module
Acknowledgements:
@thatalextaylor for his earlier version:
https://gist.github.com/thatalextaylor/7408395
That I used to modify the script.