Page 17 of 126 (2517 total posts)

December 2023

03-12-2023
RFC processes are a poor fit for most organizations - Jacob Kaplan-Moss

RFC processes are a poor fit for most organizations - Jacob Kaplan-Moss

Source: jacobian.org

The RFC process has been a huge success in defining the standards that run the Internet, but naively adopting this process for your company is a mistake. RFC processes tend to fail at most organizations because they lack a clear decision-making step.

Notes:

How to make decisions in an organization. Or more like how not to make decisions in organizations.

Tags: decision-making rfc best-practices

November 2023

25-11-2023
git branches: intuition & reality

git branches: intuition & reality

Source: jvns.ca

git branches: intuition & reality URL: https://jvns.ca/blog/2023/11/23/branches-intuition-reality/?utm_source=hackernewsletter&utm_medium=email&utm_term=fav Type: link Domain: jvns.ca Notes: There are never too many explanations of this. I am still not 100% clear.

Notes:

There are never too many explanations of this. I am still not 100% clear.

Tags: git branching explainer
10-11-2023
Kroki!

Kroki!

Source: kroki.io

Kroki! URL: https://kroki.io/ Type: link Domain: kroki.io Notes: Amazing set of diagram makers that I had never seen. All I knew about was Graphviz.

Notes:

Amazing set of diagram makers that I had never seen. All I knew about was Graphviz.

Tags: graphviz diagran api python images flowcharts map
03-11-2023

Analyzing Data 170,000x Faster with Python

Source: sidsite.com

The article, Analyzing Data 180,000x Faster with Rust, first presents some unoptimized Python code, and then shows the process of rewriting and optimizing the code in Rust, resulting in a 180,000x speed-up. The author notes:

Notes:

Very nice example of optimizing code, and showing at least one example of how to make a python program ultra fast.

Tags: python optimization numpy numba source-code how-to data-analysis

October 2023

27-10-2023
Making the EM5 mk 2 High Res Mode Sing By Brad Nichol | Steve Huff Hi-Fi and Photo

Making the EM5 mk 2 High Res Mode Sing By Brad Nichol | Steve Huff Hi-Fi and Photo

Source: stevehuffphoto.com

Making the EM5 mk 2 High Res Mode Sing By Brad Nichol - His blog is HERE Hi Steve, I though that some of your readers might be interested in a little low down on the Olympus EM5 mk 2 high res mode, it is certainly a popular camera but one that is difficult for

Tags: photography dslr om-system high-res
24-10-2023
Introduction - Ruby Science by thoughtbot

Introduction - Ruby Science by thoughtbot

Source: thoughtbot.com

Introduction - Ruby Science by thoughtbot URL: https://thoughtbot.com/ruby-science/introduction.html?utm_source=shortruby&utm_campaign=shortruby_0063&ref=shortruby.com Type: link Domain: thoughtbot.com Notes: A beautiful book, free, online, full of actionable advice for ruby devs.

Notes:

A beautiful book, free, online, full of actionable advice for ruby devs.

Tags: ruby how-to best-bet software-engineering pattern
07-10-2023
Packaging Python Projects — Python Packaging User Guide

Packaging Python Projects — Python Packaging User Guide

Source: packaging.python.org

Packaging Python Projects — Python Packaging User Guide URL: https://packaging.python.org/en/latest/tutorials/packaging-projects/ Type: link Domain: packaging.python.org Notes: Really good instructions for packaging Python packages. Highlights: - {'text': 'python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps example-package-YOUR-USERNAME-HERE', 'note': '', 'created': '2023-10-07T23:53:51.054Z', 'lastUpdate': '2023-10-07T23:53:51.070Z', 'creatorRef': 624427, '_id': '6521ef8ffd27dd69c74a0ca5'}

Notes:

Really good instructions for packaging Python packages.

Tags: python package distribution how-to