modify-and-packing-android-apps
Category: IT
Future Visions
These visionary stories explore prediction science, quantum computing, real-time translation, machine learning, and much more.
Source: Future Visions
Heap dump, java visualVM
http://www.quizful.net/post/java-memory-leak-visualvm
https://habrahabr.ru/company/luxoft/blog/146988/
https://shipilev.net/blog/archive/visualvm/
https://habrahabr.ru/post/253683/
http://docs.oracle.com/javase/6/docs/technotes/tools/share/jhat.html
Firebird Data Integration and Synchronization
Firebird SQL database data can be integrated and synchronized codeless with 100+ external systems, on premises or in the cloud, using the Layer2 Cloud Connector. You will find some supported systems and applications here, including Microsoft Office 365, SharePoint, Dynamics, SQL, and others.
Android broadcast receiver
BroadcastReceiver
Message:
- global
[code language=”java”]
mContext.sendBroadcast(mIntent);
[/code] - local
[code language=”java”]
LocalBroadcastManager.getInstance(mContext).sendBroadcast(mIntent);
[/code] - ordered
[code language=”java”]
mContext.sendOrderedBroadcast(mIntent, mPermissionStr);
[/code]