پنل تحت وب مدیریت V2ray و ساخت کاربر و مدیریت سرور
mkdir x-ui && cd x-ui
docker run -itd --network=host \
-v $PWD/db/:/etc/x-ui/ \
-v $PWD/cert/:/root/cert/ \
| /** | |
| * Simple helper class which extends a TabLayout to allow us to customize the font of the tab. | |
| */ | |
| public final class FontTabLayout extends TabLayout { | |
| // TODO - support customizing via XML rather than hardcoding. | |
| private static final String FONT_PATH = "fonts/Roboto.ttf"; | |
| private Typeface mTypeface; | |
| public FontTabLayout(Context context) { |
| #! /bin/bash | |
| # Usage: | |
| # ./git-move.sh path/to/file/or/dir path/to/destination/repo | |
| echo "creating patch for path ${1}" | |
| git log --name-only --pretty="format:" --follow "${1}" \ | |
| | sort -u | \ | |
| xargs git log --pretty=email --patch-with-stat --reverse --full-index --binary -m --first-parent -- > "${2}/_patch_" \ | |
| && echo "moving to destination repo at ${2}" \ | |
| && cd "${2}" \ | |
| && echo "applying patch" \ |
In the below keyboard shortcuts, I use the capital letters for reading clarity but this does not imply shift, if shift is needed, I will say shift. So ⌘ + D does not mean hold shift. ⌘ + Shift + D does of course.
| Function | Shortcut |
|---|---|
| New Tab | ⌘ + T |
| Close Tab or Window | ⌘ + W (same as many mac apps) |
| Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
| Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
| // | |
| // WatchSessionManager.swift | |
| // WatchConnectivityDemo | |
| // | |
| // Created by Natasha Murashev on 9/3/15. | |
| // Copyright © 2015 NatashaTheRobot. All rights reserved. | |
| // | |
| import WatchConnectivity |