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
| package com.example.sample.offline | |
| import android.util.Log | |
| import java.io.BufferedReader | |
| import java.io.ByteArrayOutputStream | |
| import java.io.FileNotFoundException | |
| import java.io.PrintStream | |
| import java.net.ServerSocket | |
| import java.net.Socket | |
| import kotlin.math.pow |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="x-ua-compatible" content="ie=edge, chrome=1" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, minimum-scale=1"> | |
| <title>Accountkit</title> | |
| </head> | |
| <body> |
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
| # Imports | |
| from pandas_datareader import data as pdr | |
| from pandas import ExcelWriter | |
| import yfinance as yf | |
| import pandas as pd | |
| import datetime | |
| import time | |
| import requests | |
| yf.pdr_override() |
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
| /** | |
| * Parse private or public key in PKCS#1 or PKCS#8 format | |
| * No 3rd-party library required | |
| */ | |
| import java.nio.charset.Charset; | |
| import java.security.KeyFactory; | |
| import java.security.PrivateKey; | |
| import java.security.PublicKey; | |
| import java.security.spec.PKCS8EncodedKeySpec; |
OlderNewer