I hereby claim:
- I am 0x4f53 on github.
- I am 0x4fin (https://keybase.io/0x4fin) on keybase.
- I have a public key ASBC9Gnh9bFWx28Ls1-MN-Xi7gt6MgoFnr0Hf3K5e2z5ZQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
bloat=() | |
bloat+=("com.tcl.partnercustomizer") | |
bloat+=("com.tcl.smartalexa") # Alexa integration for tv controls | |
bloat+=("com.tcl.gallery") # Gallery app | |
bloat+=("com.tcl.notereminder") # Notes and reminders app | |
bloat+=("com.google.android.videos") # Google Play Movies and TV (Doesn't get rid of homescreen recommendations) | |
bloat+=("com.google.android.play.games") # Google Play Games |
# GCP gives you $300 in free credits for a few months. Use it to host Luna Server! | |
wget https://github.com/LunaMultiplayer/LunaMultiplayer/releases/download/0.29.0/LunaMultiplayer-Client-Release.zip | |
unzip LunaMultiplayer-Client-Release.zip | |
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb | |
sudo dpkg -i packages-microsoft-prod.deb | |
sudo apt-get update | |
sudo apt-get install -y dotnet-sdk-5.0 |
def similar_word(string, substring): | |
threshold=2 | |
def levenshtein_distance(s1, s2): | |
m, n = len(s1), len(s2) | |
dp = [[0] * (n + 1) for _ in range(m + 1)] | |
for i in range(m + 1): | |
for j in range(n + 1): | |
if i == 0: dp[i][j] = j |
""" | |
(c) 2021 Keyspace | |
Compares a LazySodium / LibSodium output from Keyspace Android with PyNaCl's output and checks if LazySodium's signatures match PyNaCl's signature. | |
Note: LazySodium output on Android and PyNaCl output from this script must be the same due to determinism. | |
______________________________________________________________________________________________________________________________________________________ | |
.-------> Public key -----> Verify data |
import requests | |
def getTicker (company_name): | |
url = "https://s.yimg.com/aq/autoc" | |
parameters = {'query': company_name, 'lang': 'en-US'} | |
response = requests.get(url = url, params = parameters) | |
data = response.json() | |
company_code = data['ResultSet']['Result'][0]['symbol'] | |
return company_code |