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=( | |
| "com.tcl.partnercustomizer" | |
| "com.tcl.smartalexa" # Alexa integration for TV controls | |
| "com.tcl.gallery" # Gallery app | |
| "com.tcl.notereminder" # Notes and reminders app | |
| "com.google.android.videos" # Google Play Movies and TV | |
| "com.google.android.play.games" # Google Play Games | |
| # "com.android.vending" # Google Play Store |
| # 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 |