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
| # windows configs | |
| enabled_layouts splits, stack | |
| map ctrl+shift+down launch --location=hsplit | |
| map ctrl+shift+right launch --location=vsplit | |
| map ctrl+shift+w close_window | |
| map ctrl+shift+f toggle_fullscreen | |
| map ctrl+shift+delete clear_terminal reset active | |
| map ctrl+shift+z kitten zoom.py |
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
| import okhttp3.OkHttpClient; | |
| import okhttp3.Request; | |
| import okhttp3.RequestBody; | |
| import okhttp3.Response; | |
| import javax.net.ssl.*; | |
| import java.io.IOException; | |
| public class OkHttp { | |
| private OkHttpClient client = null; |