An open API service indexing awesome lists of open source software.

Projects in Awesome Lists tagged with while

A curated list of projects in awesome lists tagged with while .

https://github.com/darcyclarke/sleepover

💤 Sleep, snooze & step methods

await block delay for iterate javascript loop nodejs sleep sync while

Last synced: 12 Apr 2025

https://github.com/howprogrammingworks/iteration

Different implementation of iterations as a code abstraction

do-while each filter for for-each for-in for-of foreach javascript js map reducer sort while

Last synced: 06 Apr 2025

https://github.com/sebinsua/then-while

Call an (a)sync function until an (a)sync predicate returns false.

async predicate promise sync then while

Last synced: 25 Feb 2025

https://github.com/stdlib-js/iter-do-while-each

Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.

do-while-each each iterable iterate iterator iterdowhileeach javascript node node-js nodejs stdlib util utilities utility utils while whileeach

Last synced: 16 Apr 2025

https://github.com/pixselve-school/TLC-projet

A compiler for the While language made in Java

antlr compiler while

Last synced: 10 Mar 2025

https://github.com/stdlib-js/utils-until-each

Until a test condition is true, invoke a function for each element in a collection.

array array-like collection each for foreach iterate javascript node node-js nodejs stdlib typed-array until util utilities utility utils while

Last synced: 15 Jan 2025

https://github.com/annamihailovna/countdown-timer

Программа создания таймера обратного отсчета

format python time while

Last synced: 01 Mar 2025

https://github.com/stdlib-js/iter-while-each

Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.

each iterable iterate iterator javascript node node-js nodejs stdlib util utilities utility utils while while-each whileeach

Last synced: 28 Apr 2025

https://github.com/miguelitodev/javascript-basics

Conteúdos feitos em prática no curso de JavaScript: primeiros passos com a linguagem que tem na alura

alura course for javascript js variables while

Last synced: 28 Feb 2025

https://github.com/cherrycita-dev/juegoadivinanzajava

The Java program generates a random number (1-100). The user has limited attempts to guess it, receiving hints after each try. The game ends when the user guesses correctly or runs out of attempts.

adivinar-numero do-while for scanner while

Last synced: 04 Apr 2025

https://github.com/felixbd/while

Parser and interpreter for the While programming language (in haskell)

haskell interpreter parser while

Last synced: 13 Apr 2025

https://github.com/lordazzi/ecma-async-loop

JavaScript / TypeScript library to help to perform asynchronous loop

angular async async-await async-foreach asynchronous for foreach javascript loop reactive reactive-programming rxjs typescript while

Last synced: 25 Mar 2025

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: 12 Apr 2025

https://github.com/muskanmi/javascript_learning

A repository containing Javascript codes for practicing & learning various topics of Javascript continuously for 30 days.

arrays booleans conditionals css datatypes date filter for for-each for-of functions higher higher-order-functions html javascript loops map objects operators while

Last synced: 09 Apr 2025

https://github.com/vaibhavmojidra/java---demo-do-while-loop

Do-while loop is used to iterate a part of the program repeatedly, until the specified condition is true. If the number of iteration is not fixed and you must have to execute the loop at least once, it is recommended to use a do-while loop.

do-while do-while-loop java mojidra vaibhav vaibhav-mojidra vaibhavmojidra while

Last synced: 12 Apr 2025

https://github.com/pmlcrz/aulasphp

Arquivos das aulas de PHP

exercicios for php practice-programming while while-loop

Last synced: 13 Mar 2025

https://github.com/ramprabhakaran-m/array-methods-and-string-methods

This contains array and string methods with examples

array dates dowhile math numbers strings while

Last synced: 23 Feb 2025

https://github.com/rebecarolinax/selective_process_exercises

This repository is a knowledge library developed during programming logic review classes, with the aim of providing enough knowledge for future selection processes.

arrays foreach logic-programming process while

Last synced: 20 Mar 2025

https://github.com/leandrojsandoval/elementosdeprogramacion

Ejercicios resueltos en C de la materia Elementos de Programacion (2009).

archivos do-while function if matrices strings switch vectores while

Last synced: 27 Mar 2025

https://github.com/ash914027/php

PHP (Hypertext Preprocessor) is a widely-used open-source server-side scripting language designed primarily for web development.

array do-while-loop while

Last synced: 22 Mar 2025

https://github.com/tyszkiewiczkonopka/sup_java_1.1

Guess Number game

if random scanner while

Last synced: 25 Feb 2025

https://github.com/bell-kevin/inputvalidationproject

Create a project that asks the user for a minimum integer, then a maximum integer, then a value between those two numbers. The program needs to validate that the second number is greater than the first number, and it also needs to validate that the third number is between the first two numbers. Use 3 While loops, which will repeat over and over until the input value meets the criteria. Do not use any IF structures. Do not prompt for the input first, then test it in a While loop (priming the input) – instead, prompt for the data and read it from the scanner inside the loop. To do that, set the values for the 3 variables to something that is clearly invalid (like -1), so that the test in the While loop will always start out true. For example, if a variable named “minimum” is set to -1 when it is declared, then a While loop that tests if the minimum is less than 1 will be true, and the code inside the While loop will execute, which should prompt the user for the value, then read the data from the scanner. Note that there must be a title and your name at the top of the output. The prompts must allow the user to enter input to the right of the same line as the prompt. Note that the same prompt is repeated if the input was invalid. Once a valid number is input, the next prompt asks for new data. Be sure to include the minimum and maximum values in the prompt for the middle value. Echo the values as shown above once valid values have been entered. Take a screenshot of the running program that matches the sample session, and include the code above it. Run the program again and enter different values, with at least one invalid entry in each section, then take a screenshot of the results. Pay careful attention to the rubric for this assignment. Even if not specifically mentioned in the assignment, you are responsible for the following: Use descriptive names for all variables Add comments describing the use or meaning of variables Do NOT include literal values in any calculations, always use variables Always include a header in the output with a descriptive title and your name If asking for input, make sure the user types on the same line as the question Where sample sessions are provided, output from your project must match it Note that you must use correct formatting in the code -- appropriate indentation is most important. You can use Shift-Alt-F to have NetBeans automatically format the code correctly. If the formatting is incorrect, it will be returned to you for changes with a grade of zero. Submission: the specified screenshots and the root folder for the project Note: You need to submit the whole project for these assignments. In File Explorer, go to the location where you created the project. There will be a folder with the name of your project -- that is the root folder of the project. If you submit the root folder of the project, the instructor can run it on a different machine to grade it. If you don't submit the proper folder, it won't run on another machine, and the assignment will be marked with a zero.

datc davis-tech gpl3 gplv3 input-validation java validation while while-loop while-loops whileloops

Last synced: 17 Mar 2025

https://github.com/pandiaraj-22/array-method-and-string-method

This contains array and strings methods with example

array dowhile math numbers string while

Last synced: 05 Mar 2025