A nice article on Algorithms, Time Complexity...
https://medium.freecodecamp.com/time-is-complex-but-priceless-f0abd015063c#.gz98zi8ca
https://medium.freecodecamp.com/time-is-complex-but-priceless-f0abd015063c#.gz98zi8ca
Foremerly "ZoBadOLOGYinTechnology", Supporting Universality against Specialization but in Specificity with Boundaries and NO Restrictions.
dataLayer.pushEvent("openScreen", DataLayer.mapOf("screenName", screenName));- If you send Events from GTM to GA, the "value" field should be always Integer . if not, it will not be sent
public static void pushEvent(Context context, String event,String category, String label, Integer labelValue) {DataLayer dataLayer = TagManager.getInstance(context).getDataLayer();dataLayer.pushEvent(event, DataLayer.mapOf("eventCategory", category,"eventLabel", label, "eventValue", labelValue);}
Typeface typeface = Typeface.createFromAsset(getAssets(),"Roboto-Regular.ttf");2 - Use DataBinding Lib as described in here: fontbinding
TextView textview = (TextView) findViewById(R.id.textview);
textview.setTypeface(typeface);