<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Forum - Recent Posts				            </title>
            <link>https://www.tweaking4all.com/forum/</link>
            <description>Tweaking4All.com Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 11 Aug 2026 16:44:55 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Linux - Directory listing with full date and time, or how to show Full Timestamps with the ls Command</title>
                        <link>https://www.tweaking4all.com/forum/linux-software/linux-directory-listing-with-full-date-and-time-or-how-to-show-full-timestamps-with-the-ls-command/#post-6447</link>
                        <pubDate>Mon, 10 Aug 2026 08:30:07 +0000</pubDate>
                        <description><![CDATA[Usually the Linux &quot;ls -l&quot; command only shows the date, which is often just fine but when running through large lists where the timestamp matters, its rather useless.
Eg:
$ ls -l

drwxr-x...]]></description>
                        <content:encoded><![CDATA[<p>Usually the Linux "ls -l" command only shows the date, which is often just fine but when running through large lists where the timestamp matters, its rather useless.</p>
<p>Eg:</p>
<pre contenteditable="false">$ ls -l

drwxr-xr-x 2 root root 16384 Aug  4 09:00 0
drwxr-xr-x 2 root root 20480 Aug  5 09:00 1
drwxr-xr-x 2 root root 20480 Aug  8 09:00 2
drwxr-xr-x 2 root root 16384 Aug 10 05:08 3
drwxr-xr-x 2 root root 12288 Aug 10 10:03 4
drwxr-xr-x 2 root root 16384 Aug  1 09:00 5</pre>
<p>&nbsp;</p>
<p><strong>Timestamp with seconds: YYYY-MM-DD HH:MM:SS</strong></p>
<p>To see the timestamp including seconds one needs to enter this command:</p>
<pre contenteditable="false">ls -l --time-style=+'%Y-%m-%d %H:%M:%S'</pre>
<p>Not something I'd care for typing, but good if you need it only once in a blue moon, but results in just what we want:</p>
<pre contenteditable="false">$ ls -l --time-style=+'%Y-%m-%d %H:%M:%S'

total 332
drwxr-xr-x 2 root root 16384 2026-08-04 09:00:00 0
drwxr-xr-x 2 root root 20480 2026-08-05 09:00:17 1
drwxr-xr-x 2 root root 20480 2026-08-08 09:00:34 2
drwxr-xr-x 2 root root 16384 2026-08-10 05:08:03 3
drwxr-xr-x 2 root root 12288 2026-08-10 10:03:32 4
drwxr-xr-x 2 root root 16384 2026-08-01 09:00:05 5</pre>
<p>To make this permanent, one can set the TIME_STYLE environment variable like so:</p>
<pre contenteditable="false">export TIME_STYLE=+'%Y-%m-%d %H:%M:%S'</pre>
<p>From now on, "ls -l" will result in the full timestamp even with seconds (HH:MM:SS).</p>
<p>&nbsp;</p>
<p><strong>Timestamp without seconds: YYYY-MM-DD HH:MM</strong></p>
<p>To see the timestamp including seconds one needs to enter this command:</p>
<pre contenteditable="false">ls -l --time-style=+'%Y-%m-%d %H:%M'</pre>
<p>or:</p>
<pre contenteditable="false">ls -l --time-style=long-iso</pre>
<p>If you do not care for the seconds, then you can try this, which results YYYY-MM-DD HH:MM (without the seconds):</p>
<pre contenteditable="false">export TIME_STYLE=long-iso</pre>
<p>Which would result into something like this:</p>
<pre contenteditable="false"># ls -l

total 332
drwxr-xr-x 2 root root 16384 2026-08-04 09:00 0
drwxr-xr-x 2 root root 20480 2026-08-05 09:00 1
drwxr-xr-x 2 root root 20480 2026-08-08 09:00 2
drwxr-xr-x 2 root root 16384 2026-08-10 05:08 3
drwxr-xr-x 2 root root 12288 2026-08-10 10:03 4
drwxr-xr-x 2 root root 16384 2026-08-01 09:00 5</pre>
<p>&nbsp;</p>
<p>Note this is not so very relevant for macOS users, as Terminal/ls already shows the timestamp.<br />Hope this is useful to someone &#x1f60a; </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/linux-software/linux-directory-listing-with-full-date-and-time-or-how-to-show-full-timestamps-with-the-ls-command/#post-6447</guid>
                    </item>
				                    <item>
                        <title>Jinja2 - How to comment lines</title>
                        <link>https://www.tweaking4all.com/forum/home-assistant/jinja2-how-to-comment-lines/#post-6446</link>
                        <pubDate>Fri, 07 Aug 2026 07:33:06 +0000</pubDate>
                        <description><![CDATA[Playing in the templates editor (Settings -&gt; Tools/Developer -&gt; Templates) I usually add comments so I know what the code is doing.
In Jinja2 this is quite easy:
# This is a comment...]]></description>
                        <content:encoded><![CDATA[<p>Playing in the templates editor (Settings -&gt; Tools/Developer -&gt; Templates) I usually add comments so I know what the code is doing.</p>
<p>In Jinja2 this is quite easy:</p>
<pre contenteditable="false"># This is a comment</pre>
<p>This approach however works for only one line.</p>
<p>Sometimes I want to comment out quite a few lines - especially when I want to comment out a piece of code.<br />To comment multiple lines we need to use this:</p>
<pre contenteditable="false">{# start line comment

....

#}</pre>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/home-assistant/jinja2-how-to-comment-lines/#post-6446</guid>
                    </item>
				                    <item>
                        <title>Home Assistant - How to generate a list of all entity IDs, grouped by area and device</title>
                        <link>https://www.tweaking4all.com/forum/home-assistant/home-assistant-how-to-generate-a-list-of-all-entity-ids-grouped-by-area-and-device/#post-6445</link>
                        <pubDate>Fri, 07 Aug 2026 07:29:41 +0000</pubDate>
                        <description><![CDATA[I needed a list of all entity IDs of home assistant, grouped by area and device, and sorted by domain to get something like this (just a part of the output):
  Area: Master Bedroom
    
 ...]]></description>
                        <content:encoded><![CDATA[<p>I needed a list of all entity IDs of home assistant, grouped by area and device, and sorted by domain to get something like this (just a part of the output):</p>
<pre contenteditable="false">  Area: Master Bedroom
    
    - Device: Google Mini Bedroom
        * media_player.bedroom_speaker
    
    - Device: Hue Light Bedroom Left
        * light.hue_light_bedroom_left
        * number.hue_light_bedroom_left_effect_speed
        * select.hue_light_bedroom_left_power_on_behavior
        * text.hue_light_bedroom_left_effect_color
        * update.hue_light_bedroom_left
    
    - Device: Hue Light Bedroom Right
        * light.hue_light_bedroom_right
        * number.hue_light_bedroom_right_effect_speed
        * select.hue_light_bedroom_right_power_on_behavior
        * text.hue_light_bedroom_right_effect_color
        * update.hue_light_bedroom_right

...</pre>
<p>&nbsp;</p>
<p>The easiest way is by using Jinja2 code in a template: <br />Go to "Settings" -&gt; "Tools" (used to be "Developer") -&gt; templates and paste this code in the editor:</p>
<pre contenteditable="false">{# Get devices by area #}

{%- set assigned_entities = namespace(ids=[]) %}
{%- for area in areas() | sort -%}
  {%- set area_name_val = area_name(area) %}
  
  Area: {{ area_name_val }}
  {%- for dev_id in area_devices(area) | sort(attribute='name') %}
    {%- set dev_name = device_name(dev_id) %}
    
    - Device: {{ dev_name }}
      {%- set entities = device_entities(dev_id) | sort %}
      {%- for ent in entities | sort(attribute='domain') %}
        * {{ ent }}
        {%- set assigned_entities.ids = assigned_entities.ids +  %}
      {%- endfor %}
  {%- endfor %}
{%- endfor -%}

{# Get devices/entities not assigned to an area #}

          Area: Unassigned / Floating Entities
{%- set all_entities = states | map(attribute='entity_id') | list %}
{%- set unassigned = all_entities | reject('in', assigned_entities.ids) | sort %}
{%- for ent in unassigned | sort(attribute='domain') %}
  * {{ ent }}
{%- endfor %}</pre>
<p>This produces a very clean list of all your entities.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/home-assistant/home-assistant-how-to-generate-a-list-of-all-entity-ids-grouped-by-area-and-device/#post-6445</guid>
                    </item>
				                    <item>
                        <title>RE: Run any Classic Mac OS in your browser for free</title>
                        <link>https://www.tweaking4all.com/forum/macos-x-software/run-any-classic-mac-os-in-your-browser-for-free/#post-6444</link>
                        <pubDate>Tue, 04 Aug 2026 11:30:06 +0000</pubDate>
                        <description><![CDATA[It&#039;s great for revisiting old software without having to set up an emulator or hunt down vintage hardware. I can also see it being useful for anyone wanting to quickly test or demonstrate cl...]]></description>
                        <content:encoded><![CDATA[<p>It's great for revisiting old software without having to set up an emulator or hunt down vintage hardware. I can also see it being useful for anyone wanting to quickly test or demonstrate classic Mac OS without a complicated setup.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>athenahong</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/macos-x-software/run-any-classic-mac-os-in-your-browser-for-free/#post-6444</guid>
                    </item>
				                    <item>
                        <title>UPDATE: Major update done - please report issues</title>
                        <link>https://www.tweaking4all.com/forum/website-updates/update-major-update-done-please-report-issues/#post-6443</link>
                        <pubDate>Sat, 01 Aug 2026 10:34:32 +0000</pubDate>
                        <description><![CDATA[I&#039;ve just done a major update for the website which should speed up website loading significantly.
If you run into issues, please report!]]></description>
                        <content:encoded><![CDATA[<p>I've just done a major update for the website which should speed up website loading significantly.</p>
<p>If you run into issues, please report!</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/website-updates/update-major-update-done-please-report-issues/#post-6443</guid>
                    </item>
				                    <item>
                        <title>RE: ConnectMeNow will not connect to my WEBDav directory</title>
                        <link>https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/#post-6441</link>
                        <pubDate>Tue, 28 Jul 2026 09:00:34 +0000</pubDate>
                        <description><![CDATA[Awesome! Thanks for testing! &#x1f60a;]]></description>
                        <content:encoded><![CDATA[<p>Awesome! Thanks for testing! &#x1f60a; </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/#post-6441</guid>
                    </item>
				                    <item>
                        <title>RE: ConnectMeNow will not connect to my WEBDav directory</title>
                        <link>https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/#post-6440</link>
                        <pubDate>Mon, 27 Jul 2026 18:43:05 +0000</pubDate>
                        <description><![CDATA[I testet 0.26 it now works as expected, thanks alot!]]></description>
                        <content:encoded><![CDATA[<p>I testet 0.26 it now works as expected, thanks alot!</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/#post-6440</guid>
                    </item>
				                    <item>
                        <title>RE: ConnectMeNow will not connect to my WEBDav directory</title>
                        <link>https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/#post-6439</link>
                        <pubDate>Mon, 27 Jul 2026 15:30:34 +0000</pubDate>
                        <description><![CDATA[@grossmaggul 
Sorry didn&#039;t see your helpful info until just now.I tested this on my NAS which doesn&#039;t seem to be using a path either.Tested the API mount style and it worked after a few mod...]]></description>
                        <content:encoded><![CDATA[@grossmaggul 
<p>I created a webdav directory for you an my apache server. Do you have an email adress, where I can send the address and access data to you?</p>
<p></p>
<p>Sorry didn't see your helpful info until just now.<br />I tested this on my NAS which doesn't seem to be using a path either.<br />Tested the API mount style and it worked after a few modifications in both mount styles.</p>
<p>Hope this fixes it &#x1f60a; </p>
<p>p.s. you can reply to the forum email - this would end up only in my mailbox, though I'm not sure if we still need it &#x1f609; </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/#post-6439</guid>
                    </item>
				                    <item>
                        <title>RE: ConnectMeNow will not connect to my WEBDav directory</title>
                        <link>https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/#post-6438</link>
                        <pubDate>Mon, 27 Jul 2026 15:28:31 +0000</pubDate>
                        <description><![CDATA[I think I may have found the issue.
Please feel free to try this test version.Theoretically both mount styles should work.
Note: Always make a backup of your settings (ini) file &#x1f60a; ...]]></description>
                        <content:encoded><![CDATA[<p>I think I may have found the issue.</p>
<p>Please feel free to try this test version.<br />Theoretically both mount styles should work.</p>
<p>Note: Always make a backup of your settings (ini) file &#x1f60a; </p>
<p><a href="https://www.tweaking4all.com/wp-content/uploads/connectmenow4-v4.0.26_WebDAV_Test.dmg" target="_blank" rel="noopener">Download link (4.0.26 Test WebDAV)</a></p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/#post-6438</guid>
                    </item>
				                    <item>
                        <title>RE: Oculus Quest - Start Android APK&#039;s in landscape mode (eg. looks like a tablet)</title>
                        <link>https://www.tweaking4all.com/forum/games-gaming/oculus-quest-start-android-apks-in-landscape-mode-eg-looks-like-a-tablet/#post-6437</link>
                        <pubDate>Mon, 27 Jul 2026 15:17:14 +0000</pubDate>
                        <description><![CDATA[That&#039;s an interesting workaround. I&#039;ve noticed that some Android apps don&#039;t display properly in VR because they&#039;re designed only for phones in portrait mode. Running them in landscape can de...]]></description>
                        <content:encoded><![CDATA[<p>That's an interesting workaround. I've noticed that some Android apps don't display properly in VR because they're designed only for phones in portrait mode. Running them in landscape can definitely make the interface much more usable, especially for media or productivity apps. I'd be interested to know if this method works consistently across different Quest software versions or if some apps still force portrait mode. Thanks for sharing the tip!</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/games-gaming/oculus-quest-start-android-apks-in-landscape-mode-eg-looks-like-a-tablet/#post-6437</guid>
                    </item>
							        </channel>
        </rss>
		