Skip to content

Instantly share code, notes, and snippets.

@ahmadtech199
ahmadtech199 / ios.settings.schemes.md
Created November 30, 2022 16:03 — forked from tzmartin/ios.settings.schemes.md
iOS Settings URL Scheme List

Settings URL schemes:

Note: < i=OS 5.1 use prefs:. > 5.1 use app-settings:

  • app-settings:root=General&path=About
  • app-settings:root=General&path=ACCESSIBILITY
  • app-settings:root=AIRPLANE_MODE
  • app-settings:root=General&path=AUTOLOCK
  • app-settings:root=General&path=USAGE/CELLULAR_USAGE
  • app-settings:root=Brightness
@ahmadtech199
ahmadtech199 / git.md
Created August 16, 2020 07:01 — forked from etoxin/git.md
GIT Bash Commands

search (regex)

git grep "regex"

list all branches

git branch -a
@ahmadtech199
ahmadtech199 / python venv cheetSheet.md
Created April 22, 2020 13:30 — forked from alzaabi98/python venv cheetSheet.md
This Gist to help developers remember commands for creating and managing python virtual environments using venv

1. Create new environment

python -m venv projcetA_env

2. Activate environment

windows : Go inside your folder project that has projectA_venv

projectA_venv\Scripts\activate.bat

Mac

source projectA_venv/bin/activate