Explore >> Select a destination


You are here

jiby.tech
| | www.integralist.co.uk
3.7 parsecs away

Travel
| | Introduction I'm an engineer with a new laptop, which requires setting up with various development tools and configuration. This post is my attempt to capture and document my process for getting a new dev environment set-up. I used to try and automate a lot of this with bash scripts, but realised over time that things go out of date quite quickly (e.g. OS configurations can change substantially, as well as my preferred ways of working).
| | pyodide.org
3.7 parsecs away

Travel
| | [AI summary] This article provides guidelines for contributing to the Pyodide project, including development workflows, code submission standards, and documentation practices.
| | chriswarrick.com
3.8 parsecs away

Travel
| | Are there still fourteen tools, or are there even more? Has Python packaging improved in a year?
| | entangledlogs.com
29.6 parsecs away

Travel
| Generic Programming: Generating part of programs Introduction Generic Programming: Programming with generic parameters to avoid unnecessary code duplication and encourage code reuse. Polymorphism is also another technique to solve code reuse Puts implicit constraints on the generic types that are to be fulfilled by concrete types. template T adder(T LHS, T RHS) { return LHS + RHS; } struct Foo { inv Val = 0; } Foo f = adder(Foo{}, Foo{}): In this code snippet, we assume that Foo meets the requirement tha...