Page 15 of 128 (2551 total posts)

March 2024

14-03-2024
Modern Git Commands and Features You Should Be Using

Modern Git Commands and Features You Should Be Using

Source: martinheinz.dev

All of us - software engineers - use git every day, however most people only ever touch the most basic of commands, such as add, commit, push or pull, like it's still 2005.Git however, introduced many features since then, and using them can make your life so much easier, so let's explore some of the recently added, modern git commands, that you should know about.

Notes:

We all use git all day long! But like often happens, we don’t use many powerful features, because, who’s got the time? Linked are a set of explanations of newer git commands that many people including me don’t use. Some of this is quite advanced. Worth reading.

Tags: git explainer command git-tips
14-03-2024
How HEAD works in git

How HEAD works in git

Source: jvns.ca

Usually when people say that a topic is confusing when I think it’s not, the reason is that there’s actually some hidden complexity that I wasn’t considering. And after some follow up conversations, it turned out that HEAD actually was a bit more complicated than I’d appreciated!

Notes:

Julia Evans continues with her tour the force in depth explainers about how git actually works.

Tags: git explainer internals head tips how-to
13-03-2024
Marking the Web’s 35th Birthday: An Open Letter

Marking the Web’s 35th Birthday: An Open Letter

Source: medium.com

Sir Tim Berners-Lee’s open letter to mark the occasion of the Web’s 35th Birthday.

Notes:

This is a quite interesting letter, advocating the creation of a privately owned data store for every user of the web. It’s a grand vision coming from somebody who has huge influence. that someone is Tim Berners-Lee, the so-called inventor of the World Wide Web. By the way he used the NeXT…

Tags: tbl tim-berners-lee opinion pod web letter
10-03-2024
A decent VS Code + Ruby on Rails setup

A decent VS Code + Ruby on Rails setup

Source: railsnotes.xyz

Setting up VS Code for Ruby on Rails development can be tricky, so I wrote this article to help. In it, I share different VS Code extensions for things like autocomplete, linting, formatting and more! I've even put together a handy extension pack to get you setup fast.

Notes:

An update on vscode for ruby and rails. This stuff is covered all the time but it’s worth seeing it again because the world changes and the recommendations also change.

Tags: ruby rails vscode developer how-to
07-03-2024
Arduino LiDAR library available

Arduino LiDAR library available

Source: kaia.ai

Developer Update - I have combined support for various spinning LiDAR/LDS sensors into an Arduino LDS library with a single platform API. You can install this library from the Arduino Library Manager GUI.

Notes:

Useful information about low cost LIDARs.

Tags: lidar robots hardware listing
07-03-2024
Running Rails on AWS Elastic Beanstalk

Running Rails on AWS Elastic Beanstalk

Source: blog.testdouble.com

Recently, I got a Rails app running on AWS Elastic Beanstalk for the first time. While other tutorials exist, this one walks you through everything you need step by step — even if you don’t have …

Notes:

Interesting because it is comprehensive. However with that level of detail comes a great risk of inconsistency caused by evolution of the building blocks.

Tags: how-to rails aws elastic-beanstalk
05-03-2024
Clean Up Your Mess - A Guide to Visual Design for Everyone

Clean Up Your Mess - A Guide to Visual Design for Everyone

Source: visualmess.com
Notes:

This is one of my favorite, super-simple, guides to creating nice designs. These elementary rules-of thumb go a long way to making professional looking designs - or just avoiding the most obvious design mistakes. And of course, because design is subjective, you may have very different opinions.

Tags: how-to layout ui ux user-interface graphic-design graphics aesthetics design
04-03-2024
Write code top-down

Write code top-down

Source: teamten.com
Notes:

Nice article but I disagree with the conclusion. I have found that you need to combine the two and go back and forth. There is no single way. By the way, notice that if you believe in TDD, that approach generally starts bottom up (UNITs are at the bottom.) so whatever design comes out of that…

Tags: design software top-down bottom-up how-to opinion
02-03-2024
The Shirky Principle: Institutions Try to Preserve the Problem to Which They Are the Solution – Effectiviology

The Shirky Principle: Institutions Try to Preserve the Problem to Which They Are the Solution – Effectiviology

Source: effectiviology.com
Notes:

“The Shirky principle is the adage that “institutions will try to preserve the problem to which they are the solution”. More broadly, it can also be characterized as the adage that “every entity tends to prolong the problem it is solving”.

Tags: shirky shirky-pinciple organiztions business

February 2024

29-02-2024
The Psychology of Human Misjudgment annotated/explained version.

The Psychology of Human Misjudgment annotated/explained version.

Source: fermatslibrary.com

Charlie Munger

Notes:

This week we are revisiting “The Psychology of Human Misjudgment" an essay by Charlie Munger. In this essay, Munger discusses a series of 25 Cognitive Biases that induce human misjudgment and provides some of his famous mental models to counter this innate behavior.

It's a great read full of…

Tags: munger buffet psychology best-bet decision-making
29-02-2024
How to Perform Pose Estimation Using an ArUco Marker – Automatic Addison

How to Perform Pose Estimation Using an ArUco Marker – Automatic Addison

Source: automaticaddison.com
Notes:

One of many articles helping with the math of computing pose from aruco markers. Unfortunately the algorithms are different and give different results.

By the way the Automatic Addison web site is a treasure trove of robotics ideas, explainers and code.

Tags: ros opencv math pose pose-estimation code fiducial
22-02-2024
ROS Tutorial: How to use OpenCV in a Robot Pick and Place task for Computer Vision - Robotics Casual

ROS Tutorial: How to use OpenCV in a Robot Pick and Place task for Computer Vision - Robotics Casual

Source: roboticscasual.com

We learn how to use OpenCV with ROS in a pick and place task and how to apply Computer Visions algorithms to 3D camera data.

Notes:

A pretty comprehensive tutorial about using OpenCV in ROS Robotics algorithms,

Tags: opencv ros computer-vision cv tutorial
21-02-2024
Mining of Massive Datasets

Mining of Massive Datasets

Source: mmds.org
Notes:

Downloadable textbook about Mining of Massive Datasets by Jure Leskovec, Anand Rajaraman, Jeff Ullman.

Tags: algorithms data-sciecne pdf textbook downloadable computerscience
20-02-2024
Debugbar For Ruby on Rails

Debugbar For Ruby on Rails

Source: debugbar.dev

Rails debugging dev tools for faster development. Inspect your request details (queries, logs, cache, jobs and more).

Notes:

This is super useful for rails apps. Will it work for other frameworks like Sinatra? I haven’t tried this yet but it looks promising.

Tags: rails ruby tool debug