VirtualTam's bookmarks
50 bookmarks found
-
Android Design and Architecture Patterns
2018-04-22 Reference:
- https://developer.android.com/topic/libraries/architecture/guide.html
- https://developer.android.com/guide/topics/ui/index.html
MVC & MVP:
- https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller
- https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93presenter
- https://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference
- blogs.infragistics.com/blogs/todd_snyder/archive/2007/10/17/mvc-or-mvp-pattern-whats-the-difference.aspx
Articles:
- https://www.raywenderlich.com/109843/common-design-patterns-for-android
- https://www.techyourchance.com/activities-android/
- https://www.techyourchance.com/mvp-mvc-android-1/
- http://antonioleiva.com/mvp-android/
Threads:
- https://stackoverflow.com/questions/4916209/which-design-patterns-are-used-on-android
- https://stackoverflow.com/questions/5915377/how-to-manage-application-state-in-android-for-the-iphone-developer
- https://stackoverflow.com/questions/37469370/android-design-pattern-to-manage-ui-elements
- https://stackoverflow.com/questions/3977864/design-pattern-for-view-navigation-in-android
-
Observer pattern - Wikipedia
2018-02-19 -
- https://www.elastic.co/guide/en/logstash/current/field-extraction.html
- https://www.elastic.co/guide/en/logstash/current/config-examples.html
- https://github.com/logstash-plugins/logstash-patterns-core/blob/master/patterns/grok-patterns
- https://logz.io/blog/logstash-grok/
- https://github.com/elastic/logstash/issues/2965
-
- https://www.gamasutra.com/view/feature/6305/beyond_fa%C3%A7ade_pattern_matching_.php
- http://web.archive.org/web/20120320060043/http://ai-programming.com/bot_tutorial.htm
- https://www.slideshare.net/amyiris/ai-and-python-developing-a-conversational-interface-using-python
- http://www.nltk.org/api/nltk.chat.html
-
- https://www.elastic.co/guide/en/logstash/master/config-examples.html
- https://github.com/logstash-plugins/logstash-patterns-core/blob/master/patterns/httpd
- https://discuss.elastic.co/t/apache-error-logs-timestamp/82010/9
- https://discuss.elastic.co/t/parsing-apache-logs-combinedapachelog-commonapachelog-not-working/82007
- http://www.thegeekstuff.com/2014/12/logstash-setup/
-
Gallery : Hyperbolic Escher
2017-09-18 -
Part 1 - https://scotch.io/tutorials/build-a-crud-web-app-with-python-and-flask-part-one
- https://github.com/mbithenzomo/project-dream-team-one
- http://flask.pocoo.org/docs/0.12/config/
- http://flask.pocoo.org/docs/0.12/patterns/appfactories/
- http://flask.pocoo.org/docs/0.12/blueprints/
- http://flask-sqlalchemy.pocoo.org/2.2/config/
Part 2 - https://scotch.io/tutorials/build-a-crud-web-app-with-python-and-flask-part-two
Part 3 - https://scotch.io/tutorials/build-a-crud-web-app-with-python-and-flask-part-three
-
1// THIS WILL SEND AN INTERRUPT TO ALL MATCHING THREADS 2Thread.getAllStackTraces().keySet().each() { 3 t -> if (t.getName().contains("PATTERN") ) { t.interrupt(); } 4} 5 6// THIS WILL FORCE-STOP ALL MATCHING THREADS 7// May be required for recursive loops 8Thread.getAllStackTraces().keySet().each() { 9 t -> if (t.getName().contains("PATTERN") ) { t.stop(); } 10}
-
Euclidean Rhythms
2016-03-22 - "Euclidean Rhythms" on tumblr: https://www.tumblr.com/search/euclidean%20rhythms
- http://cgm.cs.mcgill.ca/~godfried/rhythm-and-mathematics.html
- http://unthingable.eat-up.org/posts/2014/Jan/26/euclidean-rhythm-generator-in-clojure/
- https://github.com/heuermh/Euclidean-Pattern-Generator
- https://github.com/ideoforms/isobar
- http://blog.brianhouse.net/post/6470884605
- https://intimateandintricate.wordpress.com/2014/11/13/euclidean-rhythms-python-and-earsketch/