💾 Archived View for tommi.space › Apps.gmi captured on 2023-03-20 at 17:57:19. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

Here is {{ description }}.

MacOS

Right now on my MacBook Pro 13-inch 2019:

<ul>
  {% for app in apps -%}
    {% if app.os contains 'MacOS' and app.uninstalled == '' and app.remember == '' -%}
      <li>
        <a href='{{ app.url }}' title='{{ app.name | append: app.title }}'>{{ app.name }}</a>, 
        {{ app.description | markdownify }}. {% if app.price != '' -%}<mark>{{ app.price }}€</mark>.{% endif -%}
      </li>
    {% endif -%}
  {% endfor -%}
</ul>

Terminal

<ul>
  {% for app in apps -%}
    {% if app.os contains 'terminal' and app.uninstalled == '' and app.remember == '' -%}
      <li>
        <a href='{{ app.url }}' title='{{ app.name | append: app.title }}'>{{ app.name }}</a>,
        {{ app.description | markdownify }}. {% if app.price != '' -%}<mark>{{ app.price }}€</mark>.{% endif --%}
      </li>
    {% endif -%}
  {% endfor -%}
</ul>

iOS

Apps installed on my iPhone 12 mini:

iPhone 12 mini

<ul>
  {% for app in apps -%}
    {% if app.os contains 'iOS' and app.uninstalled == '' and app.remember == '' -%}
      <li>
        <a href='{{ app.url }}' title='{{ app.name | append: app.title }}'>{{ app.name }}</a>,
        {{ app.description | markdownify }}. {% if app.price != '' -%}<mark>{{ app.price }}€</mark>.{% endif -%}
      </li>
    {% endif -%}
  {% endfor -%}
</ul>

Android

Apps installed on my OnePlus 6T running OxygenOS [[Switch to LineageOS]].

<div class='yellow box'><h3>Note</h3>My main phone is now an iPhone 12 mini. My OnePlus 6T comfortably sits in a drawer sadly I will not be opening for a while.</div>

<ul>
  {% for app in apps -%}
    {% if app.os contains 'Android' and app.uninstalled == '' and app.remember == '' -%}
      <li>
        <a href='{{ app.url }}' title='{{ app.name | append: app.title }}'>{{ app.name }}</a>,
        {{ app.description | markdownify }}. {% if app.price != '' -%}<mark>{{ app.price }}€</mark>.{% endif -%}
      </li>
    {% endif -%}
  {% endfor -%}
</ul>

Linuxplosion

Apps which I have installed on my beloved [[Linuxplosion]].

<ul>
  {% for app in apps -%}
    {% if app.os contains 'MacOS' and app.uninstalled == '' and app.remember == '' -%}
      <li>
        <a href='{{ app.url }}' title='{{ app.name | append: app.title }}'>{{ app.name }}</a>,
        {{ app.description | markdownify }}. {% if app.price != '' -%}<mark>{{ app.price }}€</mark>.{% endif -%}
      </li>
    {% endif -%}
  {% endfor -%}
</ul>

Worth noting

Interesting tools and software to test

Pacstall

Server

The services I self-hosted which are running on my server can be found in the [[Server]] Jam ingredient.

Awesome Software

Lists with a ton of apps which are too valuable to be forgotten

awesome-macOS

awesome-command-line-apps

awesome-macos-command-line

open-source-mac-os-apps

Worth remembering

Apps which are not installed but it is worth remembering or testing in the future.

<ul>
  {% for app in apps -%}
    {% if app.remember != '' -%}
      <li>
        <a href='{{ app.url }}' title='{{ app.name | append: app.title }}'>{{ app.name }}</a>,
        {{ app.description | markdownify }}. {% if app.price != '' -%}<mark>{{ app.price }}€</mark>.{% endif -%}
      </li>
    {% endif -%}
  {% endfor -%}
</ul>

Missing digital tools

<div class='blue box'>
  Although I literally **love** some of the apps I installed on my devices, there are some <a href='https://tommi.space/missing-digital-tools' title='Missing Digital Tools - tommi.space'>Missing digital tools</a> that I keep note of, in case someone with more programming expertise than me may be able to develop.
</div>

![[Missing digital tools]]