The app does not collect any data besides potential crash information and diagnostic data collected automatically by Apple.
/* | |
MIT License | |
Copyright (c) 2024 Lukas Fülling ([email protected]) | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
This app does connect to the internet to fetch food data from Open Food Facts if the setting is enabled. When you import data from Open Food Facts, the privacy statement of Open Food Facts applies.
No data is uploaded by the app to any servers except the requests that have to be made to import food as mentioned above and iCloud data mentioned below.
Settings and food items on the device will be stored on the device and might get backed up to iCloud if this is configured in the users iCloud preferences.
This statement does not cover functionality that is provided by Apple (eg. the App Store analytics, crash reports, and iCloud functionality).
This app does connect to the internet to fetch RSS feeds. When you add a feed, the privacy statement of the feed publisher applies.
No data is uploaded by the app to any servers (except the requests that have to be made to download the feeds).
Settings on the device will be stored on the device and might get backed up to iCloud if this is configured in the users iCloud preferences.
This statement does not cover functionality that is provided by Apple (eg. the App Store analytics).
#!/usr/bin/env sh | |
# Detects which OS and if it is Linux then it will detect which Linux Distribution. | |
OS=$(uname -s) | |
REV=$(uname -r) | |
#MACH=$(uname -m) | |
if [ "${OS}" = "SunOS" ] ; then | |
OS=Solaris | |
ARCH=$(uname -p) |
server { | |
listen 80; | |
listen [::]:80; | |
server_name example.com; | |
return 301 https://$host$request_uri; | |
} | |
server { | |
listen 443 ssl http2; |
This is a IntelliJ/WebStorm live template that can be used to easily create a new arrow function component.
- Go to the WebStorm/IntelliJ settings
- Open the Live Template editor
- Add a new template to the "React" section
- Add the contents of
content.tsx
to the content field
import React, {FunctionComponent} from "react"; | |
type TableCellProps = { | |
children: unknown | |
} | |
const DimensionLockingTableCell: FunctionComponent<TableCellProps> = ({children}) => { | |
const ref = React.useRef<HTMLTableDataCellElement>(null); |