Coder Social home page Coder Social logo

Vaibhav Mojidra Software Developer

Vaibhav Mojidra VAIBHAV MOJIDRA

vaibhavmojidra

Vaibhav Mojidra Coding

I'm a passionate software developer with a specialization in full stack development. With a strong foundation in programming and an eye for creating intuitive user experiences, I have developed several successful apps that are live on the Google Play Store. Throughout my journey as a developer, I have gained expertise in various programming languages, frameworks, and tools that empower me to bring ideas to life efficiently. I have experience working with Android Studio, Java, Kotlin, and various libraries to build scalable and performant mobile apps. Feel free to explore my GitHub repositories, where you'll find a collection of my personal projects & coding practices.


🌐 Social Media & Other Accounts

vaibhavmojidra2311 vaibhavmojidra2311 vaibhavmojidra vaibhav-mojidra-260733171 vaibhavmojidra vaibhavmojidra 13474737 vaibhavmojidra


vaibhavmojidra Technical Skills

android angular angularjs apachecordova arduino bash bootstrap c chartjs cplusplus csharp css3 dotnet electron firebase flutter gcp git html5 illustrator java javascript kotlin linux mongodb mssql mysql nodejs oracle photoshop postman python react reactnative sqlite tensorflow unity


vaibhavmojidra2311 Apps Live On Google Play

Aptitude Test Hidden Launcher
Programming eBooks Shooting Birds
Programming MCQ CAPP

vaibhavmojidra GitHub Achievements

vaibhavmojidra


vaibhavmojidra GitHub Statistics

vaibhavmojidra

 vaibhavmojidra

vaibhavmojidra

Vaibhav Mojidra's Projects

android-kotlin---demo-two-way-data-binding icon android-kotlin---demo-two-way-data-binding

The Data Binding Library is a support library that allows you to bind UI components in your layouts to data sources in your app using a declarative format rather than programmatically.

android-kotlin---demo-unit-testing icon android-kotlin---demo-unit-testing

Unit Testing is an essential part of the software development process. It involves testing individual units or components of a software application to ensure they function correctly. Mockito, Truth, JUnit4, and LiveData Testing are popular frameworks and libraries used in the Java or Kotlin Android for writing unit tests.

android-kotlin---demo-view-model-factory icon android-kotlin---demo-view-model-factory

The ViewModelFactory is a class in the Android Architecture Components that is used to create instances of ViewModel classes. In Android, a ViewModel is used to store and manage data that is used in an activity or fragment, and survives configuration changes, such as screen rotation.

android-kotlin---demo-work-manager-chaining icon android-kotlin---demo-work-manager-chaining

WorkManager is the recommended solution for persistent work. Work is persistent when it remains scheduled through app restarts and system reboots. Because most background processing is best accomplished through persistent work, WorkManager is the primary recommended API for background processing.

android-kotlin---demo-work-manager-one-time-request icon android-kotlin---demo-work-manager-one-time-request

WorkManager is the recommended solution for persistent work. Work is persistent when it remains scheduled through app restarts and system reboots. Because most background processing is best accomplished through persistent work, WorkManager is the primary recommended API for background processing.

android-kotlin---demo-work-manager-periodic-request icon android-kotlin---demo-work-manager-periodic-request

WorkManager is the recommended solution for persistent work. Work is persistent when it remains scheduled through app restarts and system reboots. Because most background processing is best accomplished through persistent work, WorkManager is the primary recommended API for background processing.

android-kotlin---push-notifications-below-and-above-android-oreo icon android-kotlin---push-notifications-below-and-above-android-oreo

A notification is a message that Android displays outside your app's UI to provide the user with reminders, communication from other people, or other timely information from your app. Users can tap the notification to open your app or take an action directly from the notification.

android-kotlin---simple-view-model-demo icon android-kotlin---simple-view-model-demo

In Android, a view is a fundamental building block for constructing user interfaces. Views can be arranged in a hierarchical structure to create complex layouts. Each view is represented by a class, and these classes are organized into a hierarchy based on their functionality.

android-kotlin-demo-notification-tap-action icon android-kotlin-demo-notification-tap-action

Every notification should respond to a tap, usually to open an activity in your app that corresponds to the notification. To do so, you must specify a content intent defined with a PendingIntent object and pass it to setContentIntent().

capp-computer-version icon capp-computer-version

CAPP is A Calculative application made on java. It helps to do different kind of calculation options.

data-structures---arrays-in-java icon data-structures---arrays-in-java

Java provides a data structure, the array, which stores a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.

data-structures---binary-tree-in-java icon data-structures---binary-tree-in-java

A tree in which each node (parent) has at most two-child nodes (left and right) is called a binary tree. The top most node is called the root node. In a binary tree a node contains the data and the pointer (address) of the left and right child node.

data-structures---hashtable-using-array-and-linked-list-in-java icon data-structures---hashtable-using-array-and-linked-list-in-java

Hash Table is a data structure which stores data in an associative manner. In a hash table, data is stored in an array format, where each data value has its own unique index value. Access of data becomes very fast if we know the index of the desired data. Thus, it becomes a data structure in which insertion and search operations are very fast irrespective of the size of the data. Hash Table uses an array as a storage medium and uses hash technique to generate an index where an element is to be inserted or is to be located from.

data-structures---linked-list-in-java icon data-structures---linked-list-in-java

Linked List is a sequence of links which contains items. Each link contains a connection to another link. Linked list is the second most-used data structure after array.

data-structures---queue-using-array-in-java icon data-structures---queue-using-array-in-java

Queue is an abstract data structure, somewhat similar to Stacks. Unlike stacks, a queue is open at both its ends. One end is always used to insert data (enqueue) and the other is used to remove data (dequeue). Queue follows First-In-First-Out methodology, i.e., the data item stored first will be accessed first.

data-structures---queue-using-linked-list-in-java icon data-structures---queue-using-linked-list-in-java

Queue is an abstract data structure, somewhat similar to Stacks. Unlike stacks, a queue is open at both its ends. One end is always used to insert data (enqueue) and the other is used to remove data (dequeue). Queue follows First-In-First-Out methodology, i.e., the data item stored first will be accessed first.

demos---javascript-basics-for-starting-react icon demos---javascript-basics-for-starting-react

JavaScript ES6 (ECMAScript 2015) is the 6th edition of the ECMAScript language specification, which is the standard for JavaScript. ES6 introduced many new features and improvements to the language, such as arrow functions, classes, template literals, let and const declarations, and destructuring, among others.

electron-js---demo-hello-world-and-local-file-window icon electron-js---demo-hello-world-and-local-file-window

Electron is a free and open-source software framework developed and maintained by GitHub. The framework is designed to create desktop applications using web technologies which are rendered using a flavor of the Chromium browser engine, and a backend using the Node.js runtime environment.

electron-js---demo-open-url-in-window icon electron-js---demo-open-url-in-window

Electron is a free and open-source software framework developed and maintained by GitHub. The framework is designed to create desktop applications using web technologies which are rendered using a flavor of the Chromium browser engine, and a backend using the Node.js runtime environment.

express-demo---exploring-middleware icon express-demo---exploring-middleware

Express.js is a popular web framework for building web applications and APIs using Node.js. It provides a robust set of features for creating server-side applications, including routing, middleware support, and template engines.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.