Alex Kirk
Alex Kirk
@alex@alex.kirk.at
268 posts
222 followers
Friends Plugin

friends.kirk.at

Enable Mastodon Apps Plugin

ema.kirk.at

Homepage

alex.kirk.at

  • Android WebView: Web page not available

    Just a quick note in order to save someone else searching for a solution to this problem. When you want to display HTML content in an Android WebView do it like this: String html = “my >b<HTML content>/b<. 100% cool.”; WebView webView = (WebView) findViewById(R.id.myWebView); webView.loadData(“>?xml version=\”1.0\” encoding=\”UTF-8\” ?<” + html.replace(“%”,”%25″), “text/html”, “UTF-8”); If you…

  • Git tip: Changing your mind: Push pending changes to a (not-yet existing) new branch

    It happens quite often to me that I start committing things and only afterwards decide I should have created a new branch. So git status says something like: Your branch is ahead of ‘origin/master’ by 4 commits. but I don’t want to push to origin/master but rather create a new branch. (Of course this works…