This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<!-- http://www.google.com/design/spec/style/color.html#color-ui-color-palette --> | |
<!-- red --> | |
<color name="md_red_50">#FFEBEE</color> | |
<color name="md_red_100">#FFCDD2</color> | |
<color name="md_red_200">#EF9A9A</color> | |
<color name="md_red_300">#E57373</color> |
This file contains 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
; Файл палитры paint.net | |
; Строки, начинающиеся с точки с запятой, являются комментариями. | |
; Цвета представлены 8-значными шестнадцатеричными числами | |
; в формате aarrggbb | |
; Например, это код зеленого цвета: FF00FF00 | |
; Альфа-значения (aa) позволяют определить прозрачность цвета. FF - совсем | |
; непрозрачный, 00 полностью прозрачный. Палитра должна состоять | |
; из 96 (девяноста шести) цветов. Если в палитре задано меньшее | |
; количество цветов, то оставшиеся цвета будут белыми (FFFFFFFF). | |
; Если задано большее количество цветов, то лишние значения будут пропущены. |
This file contains 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
%YAML 1.1 | |
%TAG !u! tag:unity3d.com,2011: | |
--- !u!114 &1 | |
MonoBehaviour: | |
m_ObjectHideFlags: 52 | |
m_PrefabParentObject: {fileID: 0} | |
m_PrefabInternal: {fileID: 0} | |
m_GameObject: {fileID: 0} | |
m_Enabled: 1 | |
m_EditorHideFlags: 1 |
This file contains 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
# Adapted for Huawei WS319 | |
# Original script: https://github.com/relay7/files.matthuisman.nz/blob/master/hg659_reboot.py | |
import sys, json, re, base64, hashlib | |
from requests import session | |
from bs4 import BeautifulSoup | |
############ CONFIG ################# | |
IP_ADDR = '192.168.1.1' | |
USERNAME = 'kyivstar' |