This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vless://[email protected]:443?type=tcp&encryption=none&security=reality&pbk=KHZQsCYFOZwjmONn39np08QV0F4YQwMZs2cAtU_CqUg&fp=random&sni=sun6-22.userapi.com&sid=12&spx=%2F&flow=xtls-rprx-vision#ru1fw5ya | |
| vless://[email protected]:443?type=tcp&encryption=none&security=reality&pbk=KHZQsCYFOZwjmONn39np08QV0F4YQwMZs2cAtU_CqUg&fp=random&sni=pptest.userapi.com&sid=12&spx=%2F&flow=xtls-rprx-vision#ru1fw5ya | |
| vless://[email protected]:443?type=tcp&encryption=none&security=reality&pbk=KHZQsCYFOZwjmONn39np08QV0F4YQwMZs2cAtU_CqUg&fp=random&sni=sun9-101.userapi.com&sid=12&spx=%2F&flow=xtls-rprx-vision#ru1fw5ya | |
| vless://[email protected]:443?type=tcp&encryption=none&security=reality&pbk=KHZQsCYFOZwjmONn39np08QV0F4YQwMZs2cAtU_CqUg&fp=random&sni=travel.yandex.ru&sid=12&spx=%2F&flow=xtls-rprx-vision#ru1fw5ya | |
| vless://[email protected]:443?type=tcp&encryption=none&security=rea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
| ## Enabling Plugins (zsh-autosuggestions & zsh-syntax-highlighting) | |
| - Download zsh-autosuggestions by | |
| `git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions` | |
| - Download zsh-syntax-highlighting by | |
| `git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import io | |
| from PIL import Image | |
| from django.core.files.base import ContentFile | |
| from django.db import models | |
| from django.db.models.fields.files import ImageFieldFile | |
| class WEBPFieldFile(ImageFieldFile): | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from accounts.models import UserModel | |
| import logging | |
| class MyAuthBackend(object): | |
| def authenticate(self, email, password): | |
| try: | |
| user = UserModel.objects.get(email=email) | |
| if user.check_password(password): | |
| return user |