Search This Blog

Thursday, November 15, 2018

standalone portable iis express

http://www.iprogrammable.com/2012/04/27/standalone-portable-iis-express-aspnet/

Wednesday, November 14, 2018

Centralized Application Logging - ELK

https://medium.com/@brunoamaroalmeida/enabling-centralized-application-logging-using-the-elastic-elk-stack-from-stratch-a-15-minutes-eba501230b3d

The Complete Guide to the ELK Stack


Monday, August 13, 2018

clear iis express configuration

You can find the appcmd.exe for IIS Express in the C:\Program Files (x86)\IIS Express folder. 

from here 
cleaning-up-iis-express-configuration

appcmd list site
appcmd list vdir
appcmd delete site WebSite2

Thursday, March 22, 2018

Graphite - Store numeric time-series data

Graphite does two things:
  1. Store numeric time-series data
  2. Render graphs of this data on demand
What Graphite does not do is collect data for you, however there are some tools out there that know how to send data to graphite. Even though it often requires a little code, sending data to Graphite is very simple.  -- Overview — Graphite 1.1.2 documentation:

Tuesday, February 13, 2018

Pushy - Lightning-Fast & Highly-Reliable Push Notifications

sometimes you dont want or cant use GCM for pushes

e.g for china user  no GCM , or when you cant have Google play store - e.g. in the car .

so the alternative is jPush or Pushy  - maybe there are more...

pushy looks easy and well documented

 Pushy - Lightning-Fast & Highly-Reliable Push Notifications:

nice article about non GCM could be found here
https://mobikul.com/android-push-notification-in-china/



enjoy

Yaniv Tzanany

Monday, January 22, 2018

Android studio Failed to load class dynamically

after moving to Android Studio we noticed that we get failed to load class dynamically.
via such code below:

ClassLoader cl = getClassLoader();
Class classToInvestigate = df.loadClass(className, cl);

in out case we needed to remove (disbaled) the instant run , and in the class name 
we needed to change from string ("com.xx.yy.teston") to getCanonicalName()
e.g. com.xx.yy.teston.class.getCanonicalName()

here how i disabled the instant run 
i hope you will find it useful. 


also some info you can see here 
https://stackoverflow.com/questions/36881299/java-lang-classnotfoundexception-after-android-studio-update
enjoy 
Yaniv Tzanany