Skip to content

Instantly share code, notes, and snippets.

View Emiton's full-sized avatar
🔨
"Quickly, to the laboratory!"

Emiton

🔨
"Quickly, to the laboratory!"
View GitHub Profile
@Emiton
Emiton / gist:79f362fc74ade268cac0536813b442a9
Last active April 18, 2026 14:35
Apple App Review Guidelines 2026-04-20
The Apple App Store Review Submission Guidelines can be found at https://developer.apple.com/app-store/review/guidelines/
1. Safety
When people install an app from the App Store, they want to feel confident that it’s safe to do so—that the app doesn’t contain upsetting or offensive content, won’t damage their device, and isn’t likely to cause physical harm from its use. We’ve outlined the major pitfalls below, but if you’re looking to shock and offend people, the App Store isn’t the right place for your app. Some of these rules are also included in Notarization for iOS and iPadOS apps.
1.1 Objectionable Content
Apps should not include content that is offensive, insensitive, upsetting, intended to disgust, in exceptionally poor taste, or just plain creepy. Examples of such content include:
1.1.1 Defamatory, discriminatory, or mean-spirited content, including references or commentary about religion, race, sexual orientation, gender, national/ethnic origin, or other targeted groups, particularly if the app is
@Emiton
Emiton / wilfred-help1.c
Created June 15, 2019 16:21
First help session with Wilfred, mario less
## . - 1
### . - 2
#### . - 3
##### - 4
1 - 2# 3""
2 - 3# 2""
3 - 4# 1""
4 - 5#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HeapImplementation
{
public class MinHeap<T> where T : IComparable
{