Pinned Repositories
advanced-local-bound-service
A bound service in android is the one whose scope is limited to the same process or application. This application demonstrates an advanced example using the binder pattern to bind and unbind to a local bound service.
android-download-manager
Services in android can be used for performing extensive background tasks. This sample application demonstrates the use of services to download some data from the internet.
async-task
AsyncTasks in android are ideally used for performing short operations. Asynchronous tasks perform computation on a background thread the results of which are published on the main thread. This application demonstrates the usage of async tasks in android.
atmospheric-temperature-monitoring-system
Atmospheric Temperature Monitoring System - ATMS is an IoT system built to automate, manage and analyze the environmental changes, to initiate actuators and to recover valuable information from the target environment.
basic-task-list
An implementation of a basic task list application developed using the Laravel framework. The application enables the user to manage tasks which includes create, update and delete operations.
custom-adapter
An adapter in android is used to take the data from the data source and insert it to the adapter view which is responsible for displaying the data. This is a custom adapter which follows the same principle.
eventbus-recyclerview-fragments-picasso
Event Bus in android is a library that allows communication between different components. This implementation demonstrates the use of event bus with fragments and the picasso library.
example-api
An implementation of a simple API using the Laravel framework providing access to the article resource along with authentication and registration routes.
flash-notifications
This flash composer package can be used with the Laravel framework for showing optimized notifications across the application. This implementation demonstrates the usage of the package.
laravel-backpack
Laravel backpack is a Laravel package that can be used for building custom admin panels. The package speeds up the development process by enabling fast implementation of CRUD operations.
badarnadeem's Repositories
badarnadeem/advanced-local-bound-service
A bound service in android is the one whose scope is limited to the same process or application. This application demonstrates an advanced example using the binder pattern to bind and unbind to a local bound service.
badarnadeem/android-download-manager
Services in android can be used for performing extensive background tasks. This sample application demonstrates the use of services to download some data from the internet.
badarnadeem/async-task
AsyncTasks in android are ideally used for performing short operations. Asynchronous tasks perform computation on a background thread the results of which are published on the main thread. This application demonstrates the usage of async tasks in android.
badarnadeem/atmospheric-temperature-monitoring-system
Atmospheric Temperature Monitoring System - ATMS is an IoT system built to automate, manage and analyze the environmental changes, to initiate actuators and to recover valuable information from the target environment.
badarnadeem/basic-task-list
An implementation of a basic task list application developed using the Laravel framework. The application enables the user to manage tasks which includes create, update and delete operations.
badarnadeem/custom-adapter
An adapter in android is used to take the data from the data source and insert it to the adapter view which is responsible for displaying the data. This is a custom adapter which follows the same principle.
badarnadeem/eventbus-recyclerview-fragments-picasso
Event Bus in android is a library that allows communication between different components. This implementation demonstrates the use of event bus with fragments and the picasso library.
badarnadeem/example-api
An implementation of a simple API using the Laravel framework providing access to the article resource along with authentication and registration routes.
badarnadeem/flash-notifications
This flash composer package can be used with the Laravel framework for showing optimized notifications across the application. This implementation demonstrates the usage of the package.
badarnadeem/laravel-backpack
Laravel backpack is a Laravel package that can be used for building custom admin panels. The package speeds up the development process by enabling fast implementation of CRUD operations.
badarnadeem/laravel-excercises
Includes exercises and examples from the instructor using the Laravel framework. Several different aspects of the framework are covered with implemented samples. Also included are authentication and request files.
badarnadeem/local-bound-service
Unlike remote services the scope of a locally bound service is limited to the same process and application. This application demonstrates the implementation of a local bound service.
badarnadeem/magento-assessment
Magento Assessment for MPCJ. Demonstrates the steps for initializing and setting up a Magento project. Also describes how to compile, update and run the application.
badarnadeem/node-random-password
Easily install and use the node random password package for generating random passwords of different types and lengths. Set custom lengths and strengths for your passwords.
badarnadeem/random-password
Generate random passwords of different types and lengths. Set custom lengths and strengths for your passwords. Easy to install and use.
badarnadeem/reactivex-java
The reactive extensions library allows the composition of asynchronous and event-based programs by extending the observer pattern. This is a guide to RxJava, includes packages for different sets of operators in the reactivex framework.
badarnadeem/remote-bound-service
Remote services in android are not limited to the process or the application that it is part of, instead they can be accessed by other applications as well. This application demonstrates the usage of remote services in android.
badarnadeem/started-and-intent-service
A started service in android is the one which runs indefinitely once started until it is manually stopped. An intent service on the other hand is the one which stops itself automatically once it completes all of it's tasks. This application demonstrates the use of both started and intent services.