Skip to content

Instantly share code, notes, and snippets.

Steps to Deleting Wings Account

  1. From the mobile app, login and navigate to settings.
  2. Under Account section select Delete Account
  3. Follow the prompts to complete account deletion

My Privacy Practices

I, the developer, disclose the following information regarding the collection and usage of your data.

I collect the following:

The following data may be collected but is not linked to your identity:

Contact Info

  • I collect your phone number (optionally provided if registering via phone) and is used only for app authentication.
@roymoran
roymoran / install.sh
Created December 21, 2023 18:55
builder installer script for shell
#!/bin/sh
# AWS S3 bucket details
S3_BUCKET="programbins"
S3_PATH="builder/bins"
# Base URL for downloading binaries from S3 bucket
BASE_URL="https://$S3_BUCKET.s3.amazonaws.com/$S3_PATH"
# Detect OS and Architecture
@roymoran
roymoran / install.sh
Created December 2, 2023 03:20
install.sh example
#!/bin/sh
# GitHub repository details
REPO_USER="roymoran"
REPO_NAME="page"
# GitHub API URL to get the latest release tag
LATEST_RELEASE_API="https://api.github.com/repos/$REPO_USER/$REPO_NAME/releases/latest"
# Fetch the latest release tag