Code Monkey home page Code Monkey logo

Hi šŸ‘‹, I'm Kevin Bell

I'm a student!

  • šŸ¤ Iā€™m looking to collaborate on almost anything open-source.
  • šŸ”Ø Iā€™m currently working on my Computer Science degree.

šŸ› ļø My favorite tools

šŸ‘Øā€šŸ’» Programming and markup languages

C++ CSS HTML Java JavaScript Scratch SQL

šŸ§° Frameworks and libraries

GitHub Actions JUnit TensorFlow Wordpress

šŸ—„ļø Databases and cloud hosting

GitHub Pages MySQL

šŸ’» Software and tools

Android Brave Discord Git GitHub Desktop Google Sheets Stack Overflow Visual Studio Code

I love free/libre open-source software! Most JavaScript running on most websites (including GitHub.com) is NOT open-source software.

Kevin Bell's Projects

car2 icon car2

Car 2 using the .equals method. OOP. From pages 272 and 273 from Introduction to Programming with Java A Problem Solving Approach, Second Edition by John Dean and Raymond Dean

ch10testscoreswithsubscriptnotation icon ch10testscoreswithsubscriptnotation

creates an array that holds a series of 6 test scores which are input by the user. Display the values in the array and calculate the average test score and letter grade

ch18listnode icon ch18listnode

illustrates these techniques by reading a file of numbers, arranging the numbers in a linked list, and then traversing the list to print the numbers on the screen

ch18listnode3 icon ch18listnode3

What will this code snippet display? Assume that ListNode has been defined with a constructor

ch18listnode4 icon ch18listnode4

What will this code snippet display? Assume that ListNode has been defined with a constructor

checkdigitstestsuite icon checkdigitstestsuite

SDEV 1060 Project. In this project, you will create the methods for calculation, and the test methods, using runners for each test method. You can use the same data for all tests; all the tests can go in the same test file. The project uses 4 input numbers, which are doubles between the ranges of -100 and 100, not inclusive (so -100 and 100 are not part of the valid numbers). The methods that perform calculations will determine the total of the 4 numbers, the average of the 4 numbers, the largest number, and the smallest number. To help visualize the project, here is an example of what the project's output might look like. Note that you do not have to write the code that creates this output. You will write the methods that have to be tested, and the test methods. There are 4 methods to be tested -- calculating the total of 4 numbers, calculating the average of 4 numbers, finding the largest of 4 numbers, and finding the smallest of 4 numbers.

classicscalemodelsdatabase icon classicscalemodelsdatabase

Joining a series of database tables. Database of company selling scale models of vehicles, planes, motorcycles, ships, trains, etc.

codewars-javaproject icon codewars-javaproject

Codewars is a collective effort by its users. They are creators - authoring kata to teach various techniques, solving kata with solutions that enlighten others, and commenting with constructive feedback. The leaders among them moderate the content and community.

codewars-style-ranking-system icon codewars-style-ranking-system

Codewars style ranking system. 4 kyu. Write a class called User that is used to calculate the amount that a user will progress through a ranking system similar to the one Codewars uses. Business Rules: A user starts at rank -8 and can progress all the way to 8. There is no 0 (zero) rank. The next rank after -1 is 1. Users will complete activities. These activities also have ranks. Each time the user completes a ranked activity the users rank progress is updated based off of the activity's rank The progress earned from the completed activity is relative to what the user's current rank is compared to the rank of the activity A user's rank progress starts off at zero, each time the progress reaches 100 the user's rank is upgraded to the next level Any remaining progress earned while in the previous rank will be applied towards the next rank's progress (we don't throw any progress away). The exception is if there is no other rank left to progress towards (Once you reach rank 8 there is no more progression). A user cannot progress beyond rank 8. The only acceptable range of rank values is -8,-7,-6,-5,-4,-3,-2,-1,1,2,3,4,5,6,7,8. Any other value should raise an error. The progress is scored like so: Completing an activity that is ranked the same as that of the user's will be worth 3 points Completing an activity that is ranked one ranking lower than the user's will be worth 1 point Any activities completed that are ranking 2 levels or more lower than the user's ranking will be ignored Completing an activity ranked higher than the current user's rank will accelerate the rank progression. The greater the difference between rankings the more the progression will be increased. The formula is 10 * d * d where d equals the difference in ranking between the activity and the user. Logic Examples: If a user ranked -8 completes an activity ranked -7 they will receive 10 progress If a user ranked -8 completes an activity ranked -6 they will receive 40 progress If a user ranked -8 completes an activity ranked -5 they will receive 90 progress If a user ranked -8 completes an activity ranked -4 they will receive 160 progress, resulting in the user being upgraded to rank -7 and having earned 60 progress towards their next rank If a user ranked -1 completes an activity ranked 1 they will receive 10 progress (remember, zero rank is ignored)

consonant-value icon consonant-value

Given a lowercase string that has alphabetic characters only and no spaces, return the highest value of consonant substrings. Consonants are any letters of the alphabet except "aeiou". We shall assign the following values: a = 1, b = 2, c = 3, .... z = 26. For example, for the word "zodiacs", let's cross out the vowels. We get: "z o d ia cs" -- The consonant substrings are: "z", "d" and "cs" and the values are z = 26, d = 4 and cs = 3 + 19 = 22. The highest is 26. solve("zodiacs") = 26 For the word "strength", solve("strength") = 57 -- The consonant substrings are: "str" and "ngth" with values "str" = 19 + 20 + 18 = 57 and "ngth" = 14 + 7 + 20 + 8 = 49. The highest is 57. For C: do not mutate input.

constructorconstantexample icon constructorconstantexample

Initializing Instance Constants with a Constructor Example. OOP. From pages 288 and 289 from Introduction to Programming with Java A Problem Solving Approach, Second Edition by John Dean and Raymond Dean

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.