What is the biggest dev's prob when app is in production ? -- Feedback, we consider that all the iOS & Android app crashes about 1 000 000 000 times a day !
How to fix it ? In this talk, i'll introduce you the awesome Crashlytics Framework which allow to track bugs in your apps !
Talk by Cl辿ment Sauvage on September 18th -- @ Supinfo Lille.
What is the biggest dev's prob when app is in production ? -- Feedback, we consider that all the iOS & Android app crashes about 1 000 000 000 times a day !
How to fix it ? In this talk, i'll introduce you the awesome Crashlytics Framework which allow to track bugs in your apps !
Talk by Cl辿ment Sauvage on September 18th -- @ Supinfo Lille.
The document is a presentation by Cl辿ment Sauvage about Realm, a new mobile database. It introduces Realm as being amazingly simple to use, requiring only a few lines of code to instantiate and query. Realm uses object-oriented classes to define schemas and supports common operations like queries, sorting, relations between objects, and migrations between schema versions. The presentation provides examples of adding, querying, and relating objects to demonstrate Realm's ease of use compared to other mobile databases.
The document discusses Realm, a mobile database that runs on iOS, Android, and JavaScript. It includes code snippets for defining Realm object models and performing operations like adding, deleting and updating objects. It also covers topics like Realm configuration, schema migrations, and accessing the underlying Realm file.
Realm of the Mobile Database: an introduction to RealmMartin Grider
油
Realm is a mobile database that provides an alternative to SQLite and Core Data. It uses object mapping to represent data, allowing for fast queries and relationships between objects. Realm is very easy to use, with minimal code needed, and supports cross-platform development. It offers advantages over other mobile databases like speed, small file size, and simple schema migrations. Examples demonstrate how to define object models, perform queries, and manage relationships between objects to work with data stored in Realm.
This document discusses Realm, a mobile database solution that provides an alternative to SQLite. Realm aims to be faster than SQLite by using techniques like memory mapping, column orientation, and bit packing. It offers both an object-oriented query interface and a SQL-like query interface. Realm addresses common issues with SQLite like slow queries, changing schemas, and complex relationships.
Golang Project Guide from A to Z: From Feature Development to Enterprise Appl...Kyuhyun Byun
油
This comprehensive presentation offers a deep dive into Go language development methodologies, covering projects of all scales. Whether you're working on a small prototype or a large-scale enterprise application, this guide provides valuable insights and best practices.
Key topics covered:
Distinguishing between small and large projects in Go
Code patterns for small, feature-focused projects
Comparison of Handler and HandlerFunc approaches
Enterprise application design using Domain Driven Design (DDD)
Detailed explanations of architectural layers: Presenter, Handler, Usecase, Service, Repository, and Recorder
NoSQL (DynamoDB) modeling techniques
Writing effective test code and using mocking tools like 'counterfeiter'
Essential tools for production-ready applications: APM, error monitoring, metric collection, and logging services
This presentation is ideal for Go developers of all levels, from beginners looking to structure their first projects to experienced developers aiming to optimize large-scale applications. It provides practical advice on code organization, testing strategies, and operational considerations to help you build robust, maintainable Go applications.
Whether you're starting a new project or looking to improve an existing one, this guide offers valuable insights into Go development best practices across different project scales and complexities.