I cannot remember all command options, and I like to find help in my terminal, without using internet or AI.
So I often use tldr as a cheat sheet, it's OK for many common options!
For instance, tldr npm
outputs:
I cannot remember all command options, and I like to find help in my terminal, without using internet or AI.
So I often use tldr as a cheat sheet, it's OK for many common options!
For instance, tldr npm
outputs:
Ce fichier peut être visionné sous forme de présentation ("slides") via https://github.com/maaslalani/slides. 🍿
##Pourquoi ?
Activity ID | Activity Date | Activity Name | Activity Type | Activity Description | Elapsed Time | Distance | Max Heart Rate | Relative Effort | Commute | Activity Private Note | Activity Gear | Filename | Athlete Weight | Bike Weight | Elapsed Time | Moving Time | Distance | Max Speed | Average Speed | Elevation Gain | Elevation Loss | Elevation Low | Elevation High | Max Grade | Average Grade | Average Positive Grade | Average Negative Grade | Max Cadence | Average Cadence | Max Heart Rate | Average Heart Rate | Max Watts | Average Watts | Calories | Max Temperature | Average Temperature | Relative Effort | Total Work | Number of Runs | Uphill Time | Downhill Time | Other Time | Perceived Exertion | <span class="translation_missing" title="translation missing: en-US.lib.export.portability_exporter.activities.horton_values.type">Type</span> | <span class="translation_missing" title="translation missing: en-US.lib.export.portability_exporter.activities.horton_values.start_time">Start Time</span> | Weighted Average Power | Power Count | Prefer Perceived Exertion | Perceived Relative Effort | Com |
---|
or: Java Maven SNAPSHOT and friends
The SNAPSHOT value refers to the 'latest' code along a development branch, and provides no guarantee the code is stable or unchanging. Conversely, the code in a 'release' version (any version value without the suffix SNAPSHOT) is unchanging.
In other words, a SNAPSHOT version is the 'development' version before the final 'release' version. The SNAPSHOT is "older" than its release.
https://maven.apache.org/guides/getting-started/index.html#what-is-a-snapshot-version
Timeless sofware books listed on 2023-02-28 during the Software Crafters Paris
meetup, see the picture on Twitter or Mastodon.
# Download a JSON file from a URL and visualize it: | |
fetch https://jsonplaceholder.typicode.com/posts | |
# Visualize a JSON file: | |
open ./work/tldr/package.json | |
# Fetch the first 2 JSON array items: | |
fetch https://jsonplaceholder.typicode.com/posts | first 2 | |
# Fetch raw JSON : |
borrowing: a borrowed variable is temporary shared to a function that does not own it (see "reference").
dereference: taking ownership on a reference using the dereference operator, *
. ref