Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
Projects in Awesome Lists tagged with vaibhav
A curated list of projects in awesome lists tagged with vaibhav .
https://github.com/vaibhavmojidra/android-java---demo-2-simple-data-binding
In Android, 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 android-java coding data-binding mojidra programming vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/note-maker-web-app-using-bootstrap-4-hibernate-jsp-servlet
Note Maker is a simple note making app to save notes. Front end is designed using Bootstrap 4 so its responsive to PC browser as well as mobile browser. Business Logic is coded in Java using JSP Servlets and Hibernate to connect Database. Microsoft SQL Server is used as database of this Project.
database hibernate jsp-servlets maker mojidra pc-browser vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-while-loop
While loop is used to iterate a part of the program repeatedly until the specified Boolean condition is true. As soon as the Boolean condition becomes false, the loop automatically stops.
java mojidra vaibhav vaibhav-mojidra vaibhavmojidra while while-loop
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-primitive-data-type-float
The float data type is a single-precision 32-bit IEEE 754 floating point.Its value range is unlimited. It is recommended to use a float (instead of double) if you need to save memory in large arrays of floating point numbers. The double data type is a double-precision 64-bit IEEE 754 floating point. Its value range is unlimited.
data-types double float java mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-primitive-data-type-char
The char data type is a single 16-bit Unicode character. Its value-range lies between '\u0000' (or 0) to '\uffff' (or 65,535 inclusive).The char data type is used to store characters.
char data-type data-type-char java mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java-web---demo-ajax-3
ajax java javascript jsp jsp-servlet mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java-console-sample-data-set-generator
This API allows user to generator different random list.
api data-structures jar java mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-switch-case
Switch statement executes one statement from multiple conditions. It is like if-else-if ladder statement. The switch statement works with byte, short, int, long, enum types, String and some wrapper types like Byte, Short, Int, and Long. Since Java 7, you can use strings in the switch statement.
mojidra switch switch-case vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-relational-operators-logical-operators
The == and != operators can be used with any primitive data types as well as objects. The <, >, <=, and >= can be used with primitive data types that can be represented in numbers. Logical operators are used to performing logical “AND”, “OR” and “NOT” operations, i.e. the function similar to AND gate and OR gate in digital electronics.
java logical mojidra operators relational vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-primitive-data-type-integer
Primitive Integer data types - includes byte, short, int, long. The byte data type is an 8-bit signed two's complement integer. The short data type is a 16-bit signed two's complement integer. the int data type is a 32-bit signed two's complement integer. The long data type is a 64-bit two's complement integer.
byte data-type int integer java long mojidra primitive short vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-string-and-string-methods
In Java, string is basically an object that represents sequence of char values. An array of characters works same as Java string. Java String class provides a lot of methods to perform operations on strings such as compare(), concat(), equals(), split(), length(), replace(), compareTo(), intern(), substring() etc.
data-type-string java mojidra string string-methods vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-arrays
Java array is an object which contains elements of a similar data type. Additionally, The elements of an array are stored in a contiguous memory location. It is a data structure where we store similar elements. We can store only a fixed set of elements in a Java array.
arrays arrays-in-java java mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-scanner-class-in-java
Scanner is a class in java.util package used for obtaining the input of the primitive types like int, double, etc. and strings. It is the easiest way to read input in a Java program, though not very efficient if you want an input method for scenarios where time is a constraint like in competitive programming.
input-from-user java mojidra scanner-class vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/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.
algorithms data-structures java mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-arithmetic-operators
The Java programming language supports various arithmetic operators for all floating-point and integer numbers. These operators are + (addition), - (subtraction), * (multiplication), / (division), and % (modulo).
arithmetic-operators basic-math-operations java mojidra operators vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-for-loop
A for loop is a repetition control structure that allows you to efficiently write a loop that needs to be executed a specific number of times
for for-loop java mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-if-else-and-elseif
if to specify a block of code to be executed, if a specified condition is true. else to specify a block of code to be executed, if the same condition is false. else if to specify a new condition to test, if the first condition is false.
else elseif if if-else if-else-elseif java mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/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.
desktop-app-using-electron-js electron electron-app electron-js javascript mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/data-structures---stack-using-linked-list-in-java
A stack is a linear data structure that follows the principle of Last In First Out (LIFO). This means the last element inserted inside the stack is removed first.
data-structures java linked-list mojidra stack vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/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.
arrays data data-structures hashing java linked-list mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/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 java java-8 linked-list mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-conditional-operator
he conditional operator is also known as the ternary operator. This operator consists of three operands and is used to evaluate Boolean expressions. The goal of the operator is to decide; which value should be assigned to the variable.
conditional conditional-operator java mojidra operator ternary ternary-operator vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/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.
data-structures java linked-list mojidra queue vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/java---demo-for-each
For-each loop is used to iterate through elements of arrays and collections (like ArrayList). It is also known as the enhanced for loop.
for-each for-each-loop java mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/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.
desktop-app electron electron-app electron-js javascript mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/python---demo-working-with-directories
Python OS module provides a portable way of using operating system dependent functionality. If you just want to read or write a file see open(), if you want to manipulate paths, see the os.path module, and if you want to read all the lines in all the files on the command line see the fileinput module
coding mojidra os programming python python-os python2 python3 vaibhav vaibhav-mojidra vaibhavmojidra working-with-directories
Last synced: 18 Nov 2024
https://github.com/vaibhavmojidra/python---demo-try-except-construct
To handle the exception, we have put the code, result = numerator/denominator inside the try block. Now when an exception occurs, the rest of the code inside the try block is skipped. The except block catches the exception and statements inside the except block are executed.
error-handling error-handling-python exception-handling-python mojidra programming python python2 python3 vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 18 Nov 2024
https://github.com/vaibhavmojidra/python---demo-files-renaming-deleting-and-others
Python os module provides a portable way of using operating system dependent functionality. If you just want to read or write a file see open(), if you want to manipulate paths, see the os.path module, and if you want to read all the lines in all the files on the command line see the fileinput module.
coding deleting-files-using-python files metadata-files-using-python mojidra operatingsystem programming python-programming python2 python3 renaming-files-using-python vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 18 Nov 2024
https://github.com/vaibhavmojidra/python---demo-generating-csv-rows-as-lists
The csv library provides functionality to both read from and write to CSV files. Designed to work out of the box with Excel-generated CSV files, it is easily adapted to work with a variety of CSV formats. The csv library contains objects and other code to read, write, and process data from and to CSV files.
coding csv files generating-csv generating-csv-using-python mojidra programming python python2 python3 vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 18 Nov 2024
https://github.com/vaibhavmojidra/python---demo-writing-files
Python too supports file handling and allows users to handle files i.e., to read and write files, along with many other file handling options, to operate on files.
coding files mojidra programming python python2 python3 vaibhav vaibhav-mojidra vaibhavmojidra writing-files writing-files-using-python
Last synced: 18 Nov 2024
https://github.com/vaibhavmojidra/python---demo-reading-files
Python provides inbuilt functions for creating, writing, and reading files. There are two types of files that can be handled in python, normal text files and binary files (written in binary language, 0s, and 1s)
coding mojidra programming python python2 python3 reading reading-files reading-files-using-python vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 18 Nov 2024
https://github.com/vaibhavmojidra/tracker-app-using-react-native-and-mongodb
Tracker App is an tracking application which allow you to record and save the tracks/routes that you have been walk through. This app is made over React Native hence it runs on both IOS and Android. And all the data is stored on MongoDB Cloud
mojidra mongodb react-native vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/python--demo-generating-csv-rows-as-dictionary
The csv library provides functionality to both read from and write to CSV files. Designed to work out of the box with Excel-generated CSV files, it is easily adapted to work with a variety of CSV formats. The csv library contains objects and other code to read, write, and process data from and to CSV files.
coding csv dictionary mojidra programming python python2 python3 vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 18 Nov 2024
https://github.com/vaibhavmojidra/python---demo-special-function-__str__
The __str__ method in Python represents the class objects as a string – it can be used for classes.
function mojidra python python3 special str vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/website-test
This repository is dedicated to website testing prior to going live. It does not contain stable code and is subject to changes. When no testing is in progress, you will find an index.html file with a 'No testing' message.
mojidra test-repo testing vaibhav vaibhav-mojidra vaibhavmojidra webiste-testing website
Last synced: 06 Nov 2024
https://github.com/vaibhavmojidra/site
Caution: This repository of Vaibhav Mojidra's live website is strictly copyrighted by Vaibhav Mojidra.
mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 06 Nov 2024