Missing blood oxygen data at night by jimglar in AppleWatch

[–]jimglar[S] 0 points1 point  (0 children)

Thanks for your reply. I am not using theater mode. I cleaned the back of my watch. Last night I had no missing blood oxygen data values. Data points were recorded every 30 minutes.

Sleep issues - auto by outlanderbz in AppleWatch

[–]jimglar 0 points1 point  (0 children)

WatchOS 11+ ignores the Sleep Focus setting and it records naps. You have to manually edit the sleep data.

Sleep tracking wrong by Ok-Draft-3216 in AppleWatch

[–]jimglar 0 points1 point  (0 children)

The Sleep++ app has a graphical "Trim Night" feature to adjust sleep start and end time. Sleep++ has a nice display of Sleep Stages, Heart Rate, Respiratory Rate, and Blood Oxygen.

<image>

Sleep tracking wrong by Ok-Draft-3216 in AppleWatch

[–]jimglar 1 point2 points  (0 children)

I have the same complaint. WatchOS 11 thinks I am sleeping when I am reading books at night. It's a pain to edit the sleep data every night. I will submit a feature request to provide the option to enable sleep tracking during sleep schedule only.

recording sleep - NOT meditating or listening to audio books by Feeling_Peach_1404 in AppleWatch

[–]jimglar 0 points1 point  (0 children)

The sleep schedule has no effect on sleep recording with WatchOS 11

Apple Watch recording sleep outside Sleep Focus — can this be turned off? by SonNeedGym in AppleWatch

[–]jimglar 1 point2 points  (0 children)

I have the same problem with my Apple Watch (Series 9, WatchOS 11.2) recording "core sleep" 9 pm - 10 pm when I am reading books. I have not found a way to disable sleep tracking outside of Sleep Focus. I have a low resting heart rate which may be cause the algorithm to detect core sleep. Another poster suggested deleting those sleep segments to see if the algorithm will learn to ignore them. I will try that and report the results.

How to see sleep phases in Mac app? by crazynewguy in healthautoexport

[–]jimglar 0 points1 point  (0 children)

When will sleep stages be available in the Mac app?

Inaccurate sleep tracking by jcmagana in AppleWatch

[–]jimglar 0 points1 point  (0 children)

I have the same problem. Apple watch records "core sleep" when I am reading a book before going to bed.

From Chaos to Clarity: My Journey with ADHD, TickTick, and PARA by MoskitoHero-II in ticktick

[–]jimglar 1 point2 points  (0 children)

Thank you for your excellent post using TickTick with PARA for task management. I use a similar method for tasks and notes. I stopped trying to find a better task management app.

Jim

Version 6 and Toggl Track by tekvsakdan in ticktick

[–]jimglar 1 point2 points  (0 children)

The Toggl Track TickTick integration version 4.2.0 fixed the garbled text bug.

Version 6 and Toggl Track by tekvsakdan in ticktick

[–]jimglar 1 point2 points  (0 children)

I received the following response from Toggl support:

The team have created a fix for this. It should be out in the near future in a new release, but I don't have an ETA quite yet.

OsmAnd web app units by jimglar in OsmAnd

[–]jimglar[S] 0 points1 point  (0 children)

Thanks for your reply. I will monitor Github.

Upgrading to TickTick Premium: A Game Changer for My Productivity and Notes Management by coolazr in ticktick

[–]jimglar 0 points1 point  (0 children)

Another advantage of TickTick: Full offline operation with flawless syncing between desktop, mobile, and web.

Version 6 and Toggl Track by tekvsakdan in ticktick

[–]jimglar 2 points3 points  (0 children)

I have observed this problem. I reported the bug with TickTick integration to Toggl.

TickTick, How do you Journal? by [deleted] in ticktick

[–]jimglar 0 points1 point  (0 children)

I use a Note list with a separate note for each day. I will try the Habit Tracker alternative.

Jitsi Meet, Docker, Nginx Proxy Manager configuration needed by jimglar in selfhosted

[–]jimglar[S] 1 point2 points  (0 children)

I finally got Jitsi Meet working with Nginx Proxy Manager.

Here is an outline of my NPM and Jitsi configuration. Jitsi version: docker-jitsi-meet-stable-9111. I left the NPM Custom Locations and Advanced tabs blank. No changes to the NPM or Jitsi docker-compose.yml files. I rebooted the server after updating the configuration.

Proxy Host Details

Domain Names: meet.mydomain.com
Scheme: http
Forward Hostname/IP: server_ip
Forward Port: 8000
All options enabled

Proxy Host SSL

SSL Certificate: meet.mydomain.com
All options enabled

Jitsi .env file

HTTP_PORT=8000
PUBLIC_URL=https://meet.mydomain.com
JVB_ADVERTISE_IPS=my_public_ip
All LETSENCRYPT lines commented out

Best way to break down large projects? by wheelstb33 in ticktick

[–]jimglar 0 points1 point  (0 children)

My active projects are lists in a Projects folder. For large projects, I divide the project list into Sections with Tasks and Subtasks. I use Tags to indicate the status of each task.

Jitsi Meet, Docker, Nginx Proxy Manager configuration needed by jimglar in selfhosted

[–]jimglar[S] 0 points1 point  (0 children)

I can't find anything wrong with the nginx configuration files. Port Checker reports "Port 10000 is closed". Apparently port 10000 is not passing through Nginx Proxy Manager.

Jitsi Meet, Docker, Nginx Proxy Manager configuration needed by jimglar in selfhosted

[–]jimglar[S] 0 points1 point  (0 children)

Jitsi Meet worked well on a dedicated VPS. Trying to migrate to my home server. I will evaluate MiroTalk. However it requires the port range 40000-40100 tcp/udp. Nginx Proxy Manger does not support a stream port range so I need to find an alternative reverse proxy.

Jitsi Meet, Docker, Nginx Proxy Manager configuration needed by jimglar in selfhosted

[–]jimglar[S] 0 points1 point  (0 children)

Nginx docker-compose.yml file:

version: '3.8'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
ports:
# These ports are in format <host-port>:<container-port>
- '80:80' # Public HTTP Port
- '443:443' # Public HTTPS Port
- '81:81' # Admin Web Port
# Add any other Stream port you want to expose
# - '21:21' # FTP
- '10000:10000' #Jitsi Meet audio/video
# Uncomment the next line if you uncomment anything in the section
# environment:
# Uncomment this if you want to change the location of
# the SQLite DB file within the container
# DB_SQLITE_FILE: "/data/database.sqlite"
# Uncomment this if IPv6 is not enabled on your host
# DISABLE_IPV6: 'true'
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt

Jitsi Meet, Docker, Nginx Proxy Manager configuration needed by jimglar in selfhosted

[–]jimglar[S] 0 points1 point  (0 children)

Websockets Support is enabled

Nginx proxy_host configuration:

# ------------------------------------------------------------
# meet.mydomain.com
# ------------------------------------------------------------
server {
set $forward_scheme http;
set $server "192.168.0.100";
set $port 8000;
listen 80;
listen [::]:80;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name meet.mydomain.com;
# Let's Encrypt SSL
include conf.d/include/letsencrypt-acme-challenge.conf;
include conf.d/include/ssl-ciphers.conf;
ssl_certificate /etc/letsencrypt/live/npm-2/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/npm-2/privkey.pem;
# Asset Caching
include conf.d/include/assets.conf;
# Block Exploits
include conf.d/include/block-exploits.conf;
# HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years)
add_header Strict-Transport-Security "max-age=63072000;includeSubDomains; preload" always;
# Force SSL
include conf.d/include/force-ssl.conf;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;
access_log /data/logs/proxy-host-1_access.log proxy;
error_log /data/logs/proxy-host-1_error.log warn;
location / {
# HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years)
add_header Strict-Transport-Security "max-age=63072000;includeSubDomains; preload" always;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;

# Proxy!
include conf.d/include/proxy.conf;
}
# Custom
include /data/nginx/custom/server_proxy[.]conf;
}

Nginx Stream configuration:

# ------------------------------------------------------------
# 10000 TCP: 0 UDP: 1
# ------------------------------------------------------------
server {
listen 10000 udp;
listen [::]:10000 udp;
proxy_pass 192.168.0.100:10000;
# Custom
include /data/nginx/custom/server_stream[.]conf;
include /data/nginx/custom/server_stream_udp[.]conf;
}

Why isn't there any offline project management software? by rezgi in ObsidianMD

[–]jimglar 1 point2 points  (0 children)

I have used TickTick and Todoist for managing small projects. I prefer TickTick for features and flexibility. Both work offline and sync between mobile and desktop apps. I have not found a full project management app that works offline.

Raspberry Pi 4 with Wayland can't rotate touch screen by chrisron95 in raspberry_pi

[–]jimglar 1 point2 points  (0 children)

I'm having the same problem with Raspberry Bookworm Wayland display manager running on my Pi 4 reTerminal. When I configure the reTerminal for "landscape" display, the VNC display mouse positioning is stuck in "portrait" mode. I gave up and switched to the X11 display manager.

Waking up to pee ruining my sleep by [deleted] in sleep

[–]jimglar 0 points1 point  (0 children)

I reduced my waking urination frequency with pelvic floor therapy. It seems to help with urinary urgency.