Install tor via HomeBrew and start the tor serivce.
brew install tor && brew services start tor
And to use obsf4 proxy we need to install its library/ Use HomeBrew for installation of the library.
brew install obfs4proxy
| data class SellerData(val count: Int) | |
| data class BuyerData(val count: Int) | |
| @Stable | |
| class UiState { | |
| val sellerData = mutableStateOf<SellerData>(SellerData(0)) | |
| val buyerData = mutableStateOf<BuyerData>(BuyerData(0)) | |
| } |
Install tor via HomeBrew and start the tor serivce.
brew install tor && brew services start tor
And to use obsf4 proxy we need to install its library/ Use HomeBrew for installation of the library.
brew install obfs4proxy
apple-app-site-association text file without .json file extensionapplication/json MIME type for the text file {
"applinks": {"apps": [],
| doInstall <- TRUE | |
| toInstall <- c("ggplot2", "cluster", "MASS", "smacof") | |
| if(doInstall){install.packages(toInstall, repos = "http://cran.us.r-project.org")} | |
| lapply(toInstall, library, character.only = TRUE) | |
| # Generate a matrix of dissimilarities from pairwise correlations | |
| data(breakfast) # Preference orderings of breakfast items, from smacof | |
| corrMat <- cor(breakfast, use = "pair") | |
| distMat <- dist(corrMat) |