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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</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
1. Accurate weather prediction |
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.test; | |
import android.content.Intent; | |
import android.os.Bundle; | |
import android.util.Log; | |
import java.util.Set; | |
import static android.content.Intent.URI_INTENT_SCHEME; |
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 org.littleshoot.proxy.extras; | |
import io.netty.handler.codec.http.HttpRequest; | |
import org.littleshoot.proxy.MitmManager; | |
import java.security.cert.Certificate; | |
import javax.net.ssl.SSLEngine; | |
import javax.net.ssl.SSLSession; |
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
new Thread() { | |
@Override | |
public void run() { | |
HttpURLConnection urlConnection = null; | |
try { | |
URL url = new URL("http://google.com"); | |
urlConnection = (HttpURLConnection) url.openConnection(); |