-
-
-
-
This app, similar to the "Toast" one, uses some dependencies, including "recyclerview" and "glide", and "circleimageview". As you might expect, this has a RecyclerView layout. It contains images th…
-
This app uses some dependencies, including "recyclerview" and "glide", and "circleimageview". As you might expect, this has a RecyclerView layout. It contains images that are retrieved from the int…
Java UpdatedJan 16, 2019 -
react-form-example Public
This is a simple React project, mostly taken from the official documentation relating to "Forms" (https://reactjs.org/docs/forms.html). I have done forms previously, but with this, I wanted to isol…
JavaScript UpdatedJan 14, 2019 -
redux-increment-decrement Public
This app is the next evolution of the "redux-example" project, and uses the "redux" and "react-redux" dependencies. It is a counter with 3 buttons. The "count" starts at "0", and one button "increm…
-
redux-example Public
This is perhaps the most basic example of using Redux in a React app. It is a counter. There is one button with a count starting at "0". The three main components are App.js, Counter.js, and one ca…
JavaScript UpdatedJan 13, 2019 -
lendr-project Public
This is a project using React JS. I use "react-router" and "react-router-dom" to create multiple pages that can be navigated between. These pages mimic the beginning pages when applying for a loan …
-
lending-tree-project Public
This is a project done to show Lendng Tree what I can accomplish using React JS, in this case. I use "react-router" and "react-router-dom" to create multiple pages that can be navigated between. Th…
-
react-router-example Public
This is a React project with multiple pages. This app has "react-router" (version 4) and "react-router-dom" installed so users can navigate through the pages. This was mostly done by following the …
JavaScript UpdatedDec 13, 2018 -
react-basics Public
This is a React page with multiple components that, in some cases, work with each other to produce results, such as the "Home" component updating the "Header" component via a button press that rout…
JavaScript UpdatedDec 13, 2018 -
redux-demo Public
This React page uses Redux to store states. The interface does not change, but using the console when inspecting, you can see how states are stored in the code. (This is from the tutorial in the "C…
JavaScript UpdatedDec 10, 2018 -
api-basics Public
This React JS page uses JSON to make a list of titles from the most recent posts on Reddit.com/r/space. (This is from the tutorial in the "Complete React JS web developer with ES6" Udemy course.)
-
This Kotlin app has a Sign-In activity, a Profile activity, and an Edit activity. You first see your profile info (which defaults to "Not Set") at first. You then sign in and are taken to the Profi…
-
Snippets Public
This contains JSON files with Snippets for use in IDEs, to make coding quicker.
UpdatedDec 6, 2018 -
my-new-router Public
This React JS "Router" shows how to create and navigate between different pages. I created two pages with the list of pages at the top, and then a single line at the bottom of each, to tell which p…
-
ColorChanger Public
This Kotlin app allows you to press a button to change the (lower) background to that color. In addition, when you long-press the "white" or "black" buttons while the background is already a color,…
-
course-purchase Public
This React JS app allows you to click on courses, which cost money. When clicking on a course, it adds the price to the total. If you click it again, it subtracts that price from the total. You can…
-
stop-watch Public
This is a React.js app that tracks in real time how long you have been on the website.
JavaScript UpdatedDec 2, 2018 -
MusicPlayerApp Public
This app plays one song. The song is able to be paused, stopped, and moved to the end. Also, there is a SeekBar with number TextViews at each end, showing where in the song it is, and the user can …
-
ShellGame Public
This Kotlin app is of my own concept and design. I decided to make a "Shell Game". Basically, a user presses "Shuffle", and one of the three green buttons gets a star. If is the user's job to choos…
-
tic-tac-toe-react Public
This is a Tic-Tac-Toe app created using a React Native tutorial (see my other Kotlin Tic-Tac-Toe app for an app that I created totally on my own). This is not only a Tic-Tac-Toe game but also takes…
JavaScript UpdatedNov 20, 2018 -
TicTacToe Public
This is a Kotlin app of my own design. It is a classic Tic-Tac-Toe game. It has nine buttons (one for each move choice on the board), plus a "Start New Game" button. Upon the first press (and all "…
-
GuessTheNumber Public
This is a Kotlin app that I thought up and created myself! It is a game in which you need to guess a random number between 1 and 100. You first press the "Start New Game" to begin (at which point t…
-
BatteryChecker Public
This app determines the status of battery charging ("Charging", "Discharging", etc.) and the percentage charge remaining in the battery of the mobile device running it. It also has five images repr…
Java UpdatedNov 12, 2018 -
LoginDemoApp Public
This app works with Google Firebase. Firebase adds a database aspect so that people can log into the app and the information is stored in an online database. A user can log in and be taken to "Seco…
-
KotlinButtonTextChange Public
This is a very simple Kotlin app. I am using the Button's ID directly from the XML file instead of using the "findViewByID()" method. The Gradle had this ability applied automatically, so I could i…
Kotlin UpdatedNov 11, 2018 -
RecyclerViewApp Public
This app has a RecyclerView with an Adapter. It is complex, seemingly more complex than the previous "RecyclerViewProject" that I did. This has a list of items that you can scroll through. It also …
Java UpdatedNov 5, 2018 -
TipCalculator Public
This app calculates tips. You insert the amount into the EditText, change the percentage to tip via the SeekBar, and press the button to calculate the tip. The tip amount automatically starts at 15…