show dbs
This file contains 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
#!/bin/python | |
from bs4 import BeautifulSoup as bs | |
import requests | |
def_values = [1,2,3,4,5] | |
try: | |
word = input("Enter a Word to Search: \n") | |
if(len(word)==0): | |
print("Must Enter A Word!") | |
exit(-1) |
This file contains 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
public class MainActivity extends AppCompatActivity { | |
String IMG_URL = "https://storage.googleapis.com/gweb-uniblog-publish-prod/images/Android_symbol_green_2.max-500x500.png"; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
new DownloadImageTask((ImageView) findViewById(R.id.image)).execute(IMG_URL); |