Testing Environment:
- Phone: Pixel 3 XL
- OS: Android 11, Build RQ3A.211001.001
- Security Update: 10/1/21
- Google Play System Update: 1/1/21
location / { | |
satisfy any; | |
allow 10.10.10.0/24; | |
deny all; | |
auth_basic "Authorized Users Only"; | |
auth_basic_user_file secure/.htpasswd; | |
auth_request /auth-0; | |
try_files $uri @proxy; | |
} |
DOM7011: The code on this page disabled back and forward caching. For more information, see: http://go.microsoft.com/fwlink/?LinkID=291337 | |
dashboard.mydomain.com | |
HTML1300: Navigation occurred. | |
dashboard.mydomain.com | |
SCRIPT1014: Invalid character | |
fullcalendar.js (6652,18) | |
SCRIPT438: Object doesn't support property or method 'find' | |
plyr.js (1,20007) | |
CSI/tbsd_: 6,338.296ms | |
CSI/_tbnd: 6,338.496ms |
from random import sample | |
import collections | |
picked_numbers = sample(range(1,11),4) | |
my_numbers = sample(range(1,11),4) | |
print(f'Lotto numbers are: {picked_numbers}') | |
attempts = 0 | |
while collections.Counter(picked_numbers) != collections.Counter(my_numbers): | |
my_numbers = sample(range(1,11),4) |
from random import sample | |
picked_numbers = sample(range(1,11),4) | |
print(f'Lotto numbers are: {picked_numbers}') | |
no_match = True | |
attempts = 0 | |
while no_match: | |
matches = 0 | |
attempts += attempts + 1 |
My GV number ends in 2364 and I give Google Voice engineering your permission to examine my configuration and call data. | |
The first set of calls were performed as follows: | |
- This set of calls were performed over 4G/LTE with no Wi-Fi calling enabled (standard configuration). | |
1) 1/3/22 7:26 pm CST - from Pixel 3XL with last digits 0472 on Mint (T-Mobile MVNO) | |
2) 1/3/22 7:29 pm CST - from Pixel 3XL with last digits 0472 on Mint | |
3) 1/3/22 7:31 pm CST - from Pixel 3XL with last digits 4072 on Mint | |
4) 1/3/22 7:33 pm CST - from Pixel 3XL with last digits 4072 on Mint |
F:\>python | |
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:43:08) [MSC v.1926 32 bit (Intel)] on win32 | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> from FATtools.Volume import * | |
>>> root = vopen('F:', 'r+b') | |
>>> root.listdir() | |
['MP3S', 'System Volume Information', 'C.mp3', 'B.mp3', 'A.mp3'] | |
>>> root.sort() | |
(7, 121) | |
>>> root.listdir() |
bitmoji app - first attempt with swift-https (failed), second attemp was manual rename with windows-http (success), | |
third attempt was swift-http (success), fourth attempt was manual rename with windows-https (success), | |
fifth attempt was android-https (success). | |
Summary: everything works with http OR https except Swift. | |
Line 627: 2022-01-27 03:02:37 10.10.10.102 MOVE /websync/ben-pixel/SwiftBackup_f71903a497f67757/Pixel+3+XL/com.bitstrips.imoji.app+(Pixel+3+XL) https://webdav.domain.com:443/websync/ben-pixel/SwiftBackup_f71903a497f67757/Pixel%203%20XL/com.bitstrips.imoji.app%20(Pixel%203%20XL)%20(archived) 443 [email protected] 10.10.10.90 SwiftBackup+/+4.0.0+(525);+Google/Pixel+3+XL - 400 1 0 53 | |
Line 653: 2022-01-27 03:05:17 10.10.10.102 MOVE /websync/ben-pixel/SwiftBackup_f71903a497f67757/Pixel+3+XL/com.bitstrips.imoji.app+(Pixel+3+XL) http://webdav.domain.com:1008/websync/ben-pixel/SwiftBackup_f71903a497f67757/Pixel%203%20XL/com.bitstrips.imoji.app%20(Pixel%203%20XL)%20(archived) 1008 user 10.10.10.120 Mic |
{ | |
"id": 999038, | |
"created_at": "2023-07-28 12:46:39", | |
"updated_at": "2024-04-08 07:50:24", | |
"name": "United States SOCKS #27", | |
"station": "196.247.50.3", | |
"ipv6_station": "", | |
"hostname": "socks-us27.nordvpn.com", | |
"load": 0, | |
"status": "online", |
# scrcpy-pin-unlock.ps1 | |
# v.0.1 - 8/30/24 | |
# bengalih | |
# SETUP THE BELOW VALUES FOR YOUR SYSTEM | |
########################################################### | |
# Name of your scrcpy window | |
$windowTitle = "Pixel 3 XL" | |
# Full path to scrcpy's adb.exe | |
$adbPath = "C:\Program Files\scrcpy-win64-v2.6.1\adb.exe" |