This week I am writing about studying, and hopefully it will not be as boring as actual studying. As Post secondary students some us have terrible study habits whether its cramming for a midterm the night before or not employing proper and effective study habits. mais 513 palavras
Etiquetas » Content
My Experiences
Links to my blog, where I talk about what it is like to live with autism. For more content like this, check out my Instagram page, @keepingstars.
I Need a New Beginning With My Blog
On November 26, 2014 I created my first post on WordPress and hit publish. And 4 years later I am still at it; tired, but still blogging. mais 322 palavras
I Firmly Believe A Woman Can Live Her Best Life Without A Man - Mayokun
From The Creator :
Bachelors Corner Is the hangout for young men to gist about their struggles being bachelors! It is also the platform for readers to know them, know their achievements, their strengths and weakness. mais 954 palavras
The Most Photogenic London Parks
The clocks have changed, the air is brisk, and although the nights are very much drawing in, you certainly don’t have to! Make the most of your daylight hours and take a stroll and some snaps. mais 509 palavras
Android Java : Download WebContents
public class DownloadTask extends AsyncTask{
@Override
protected String doInBackground(String... urls) {
String result ="";
URL url = null;
HttpURLConnection httpURLConnection = null;
try {
url = new URL(urls[0]);
httpURLConnection = (HttpURLConnection) url.openConnection();
InputStream inputStream = httpURLConnection.getInputStream();
InputStreamReader reader = new InputStreamReader(inputStream);
int data = reader.read();
while(data != -1){
char current = (char) data;
result = result+current;
data = reader.read();
}
return result;
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return "Failed";
}
} mais 29 palavras