Explore >> Select a destination


You are here

blog.ideotec.es
| | masilotti.com
3.2 parsecs away

Travel
| | A quick-start guide to building Turbo Native apps for Ruby on Rails developers, no Swift or Kotlin experience necessary.
| | wittchen.io
3.5 parsecs away

Travel
| | When we work with Activities in Android, defining different layouts for different screen orientations is easy. The only thing we need to do, is to create two *.xml files with the same name for layouts in two separate directories (res/layout/ and res/layout-land/). In Fragments its not that easy. In such case, we need to perform additional operations in order to achieve our goal. Fragment in Android is not re-inflated on configuration change, but we can recreate layout and repopulate view manually.
| | davidmburke.com
4.1 parsecs away

Travel
| | Libsodiumis a fantastic crypto library, however it's documentation can be lacking. Libsodium supports many languages via native wrappers and javascript via asm.js. I'll document here how I got it working in Android both in Java and NativeScript. The target audience is someone who knows web development but not Android development. Java + Android We'll use
| | brandonsavage.net
17.4 parsecs away

Travel
| PHP more or less has two kinds of dependency injection available: constructor injection, and setter injection. Constructor injection is the process of injecting dependencies through the constructor arguments, like so: The dependencies are injected via the constructor, on object creation, and the object has them from the very beginning. Setter injection is different; instead of [...]