Skip to content

Instantly share code, notes, and snippets.

View giorgioprovenzale's full-sized avatar
🖖

Giorgio Provenzale giorgioprovenzale

🖖
View GitHub Profile
@giorgioprovenzale
giorgioprovenzale / descriptions.json
Last active December 12, 2024 16:13 — forked from stellasphere/descriptions.json
WMO weather interpretation code descriptions (& images)
[
{
"code": "0",
"day": {
"description": "Sunny",
"image": "http://openweathermap.org/img/wn/[email protected]"
},
"night": {
"description": "Clear",
"image": "http://openweathermap.org/img/wn/[email protected]"
@giorgioprovenzale
giorgioprovenzale / utils.java
Created March 20, 2018 12:14
Android - Utils - Format text with HTML
@SuppressWarnings("deprecation")
public static Spanned fromHtml(String html){
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
return Html.fromHtml(html, Html.FROM_HTML_MODE_LEGACY);
} else {
return Html.fromHtml(html);
}
}