- Julia Furst Morgado (2022), Get paid to write technical articles → https://dev.to/juliafmorgado/get-paid-to-write-technical-articles-16cl
- A list of 84 websites that pay technical writers a good amount of money
Contract testing is bigger topic than I'd been aware.
Search for more about it → https://duckduckgo.com/?q=consumer+driven+contract+testing
- Alex Pruss (2018), Introduction to Consumer-Driven Contract Testing → https://medium.com/kreuzwerker-gmbh/introduction-to-consumer-driven-contract-testing-3a130c8c2ea0
- Kristine Jetzke (2018), Writing Contract Tests with Pact in Spring Boot → https://medium.com/kreuzwerker-gmbh/writing-contract-tests-with-pact-in-spring-boot-97dbd60eeeac
- Kristine Jetzke (2018), Integrating Contract Tests into Build Pipelines with Pact Broker and Jenkins → https://medium.com/kreuzwerker-gmbh/integrating-contract-tests-into-build-pipelines-with-pact-broker-and-jenkins-674d21c3f44b
- Kristine Jetzke (2018), Consumer-Driven Contract Tests: Lessons Learned → https://medium.com/kreuzwerker-gmbh/consumer-driven-contract-tests-lessons-learned-b4e1ac471d0c
- css2xpath (2016), CSS to XPath converter → https://css2xpath.github.io/
- Handy for complex selector-to-xpath, or for learning better xpath.
- Guilherme Oderdenge (2022), superstate → https://superstate.dev/
superstate is a micro state management library for JavaScript apps that is compact enough for prototypes and scales well as your project grows.
- Craig Kierstiens (2022), Learn Postgres at the Playground → https://www.crunchydata.com/blog/learn-postgres-at-the-playground
- Online playground for using Postgres in the browser!
- Obinna Okoro (2022), Recognizing Speech with vanilla JavaScript → https://blog.openreplay.com/recognizing-speech-with-vanilla-javascript
- Title says it all...
- Jen Simmons (2022), Using :has() as a CSS Parent Selector and much more → https://webkit.org/blog/13096/css-has-pseudo-class/
- long-time coming, the
:has()
pseudo-classs has arrived, and Jen shows how to use it.
- long-time coming, the
- Abiodun Olowode (2022), An Introduction to Ractors in Ruby → https://blog.appsignal.com/2022/08/24/an-introduction-to-ractors-in-ruby.html
- Actor model in Ruby.
- Austin Morlan (2019), A Simple Entity Component System → https://austinmorlan.com/posts/entity_component_system/
- Game programming approach to manageable components and compact memory layout for entity lookup.
- Jon Mendez (2018), javascript proxy – Querying arrays with more readable methods → http://www.jomendez.com/2018/12/29/querying-arrays-with-more-readable-methods-using-javascript-proxy/
- Nice pattern for dynamic query construction using a proxy over a data store/source...