some good article about this subject
Global Filters for MVC Exception and Trace Logging
filters-in-asp.net-mvc
log-all-data-in-asp-net-mvc-post-requests
aspnet-mvc-4-custom-action-filters
This Blog is first of all memos for me!! From time to time I get exposed to new and cool stuff for developers and architects ,most of the time its a solution for a problem or tips or tricks, so, I would like to track my memos and share it with you, it can save your time and nervous, I hope you will enjoy it - by Yaniv Tzanany.
Search This Blog
Saturday, December 15, 2018
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
The Complete Guide to the ELK Stack
Tuesday, September 4, 2018
Filter in controller - MVC .NET
custom-action-filters - good start + Creating Custom Action Filters
how to change the control value from filter
https://haacked.com/archive/2010/02/21/manipulating-action-method-parameters.aspx/
+ https://stackoverflow.com/questions/1809042/asp-net-mvc-pass-object-from-custom-action-filter-to-action
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
from here
cleaning-up-iis-express-configuration
appcmd list site
appcmd list vdir
appcmd delete site WebSite2
Friday, June 22, 2018
Friday, May 11, 2018
Thursday, March 29, 2018
Thursday, March 22, 2018
Graphite - Store numeric time-series data
Graphite does two things:
- Store numeric time-series data
- 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:
Monday, March 5, 2018
firebase functions and android samples
functions-samples: Collection of sample apps showcasing popular use cases using Cloud Functions for Firebase:
GitHub - firebase/functions-samples: Collection of sample apps showcasing popular use cases using Cloud Functions for Firebase:
Firebase Android samples:
https://github.com/firebase/snippets-android/tree/7d03e65500cd63a26e5bf9b8b6e4d3ab9479806a
GitHub - firebase/functions-samples: Collection of sample apps showcasing popular use cases using Cloud Functions for Firebase:
Firebase Android samples:
https://github.com/firebase/snippets-android/tree/7d03e65500cd63a26e5bf9b8b6e4d3ab9479806a
Monday, February 26, 2018
Building Conversational Experiences With Actions On Google
Building Conversational Experiences With Actions On Google:
https://blog.dialogflow.com/post/build-for-google-assistant/
https://dialogflow.com/docs/concepts/slot-filling#top_of_page
This conversation playground allows you to explore constructing a response that adheres to the Actions on Google API.
https://developers.google.com/actions/conversation-api-playground
fulfillment in js - nice tutorial
https://www.youtube.com/watch?v=biN00SoMRI8
https://www.youtube.com/watch?v=yFyNouueu2g
very good video sample
C# sample - Your First Chatbot using Microsoft’s Bot Framework and Dialogflow API
very good audio sample
https://blog.dialogflow.com/post/build-for-google-assistant/
https://dialogflow.com/docs/concepts/slot-filling#top_of_page
This conversation playground allows you to explore constructing a response that adheres to the Actions on Google API.
https://developers.google.com/actions/conversation-api-playground
fulfillment in js - nice tutorial
https://www.youtube.com/watch?v=biN00SoMRI8
https://www.youtube.com/watch?v=yFyNouueu2g
very good video sample
C# sample - Your First Chatbot using Microsoft’s Bot Framework and Dialogflow API
very good audio sample
Advanced sample :
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
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
Sunday, February 11, 2018
Wednesday, February 7, 2018
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:
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
Subscribe to:
Posts (Atom)