From 857c8d4a0a0b3c0cdc54788956c0ecd4a9ea0e02 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Tue, 12 Dec 2023 21:06:53 +0100 Subject: [PATCH 01/83] Revert "Update README.md" --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 881ac8f..86cfbec 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,8 @@ To begin with, I want to start by thanking everyone for the massive review and l How to use and the purpose of this project: 1: This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. - 2:Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. - 3: First thing first, make sure you've created or will create a nice template on your html file to be able to fit in on this project. - 4: After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new to programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. so stay tuned for more updates on what to do next. From e65223bb7fe0529771ce9872d3ec9e5c69b47fef Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Tue, 12 Dec 2023 21:09:04 +0100 Subject: [PATCH 02/83] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 86cfbec..881ac8f 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,11 @@ To begin with, I want to start by thanking everyone for the massive review and l How to use and the purpose of this project: 1: This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. + 2:Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. + 3: First thing first, make sure you've created or will create a nice template on your html file to be able to fit in on this project. + 4: After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new to programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. so stay tuned for more updates on what to do next. From aa4688dfff52fb4b6f33458116dd2212b48e19fe Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Tue, 12 Dec 2023 23:03:53 +0100 Subject: [PATCH 03/83] Update README.md --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 881ac8f..7acb929 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,24 @@ How to use and the purpose of this project: 3: First thing first, make sure you've created or will create a nice template on your html file to be able to fit in on this project. -4: After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new to programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. so stay tuned for more updates on what to do next. +4: After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new to programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. however, this will automatically lead us to the 5th step. + +5: this step is an easy one for everyone, so you've nothing to be worried about. after you must've selected the required element from your html file. then create a constant variable by using the word "LET" and assign a value to it. remember assigning a value at this point depends on how and when you want the security protocol or the settimeout to execute on your program. as seen on my time.js, I used 200 as my value and it's applicable on your end if you wish. + +6: step 6 is where a reaquired function timer() was created. don't worry if you don't know how create a function in Javascript, you're 100% free to access and use my work template. on that note, the timer function will execute whenever the initial function is been called outside the gobal function. don't get afraid yet alright hahaha!. alright, A global function is a function that is defined outside of a class or struct and can be accessed from anywhere in the program. after which assign your input element.innerHTML = time. + +7: in this step, you'll create another constant veriable which will be assign to the setinterval function to and set the time you want as a timer. it's usally caculated in sec which is 1000 = 1sec. haven't understood how to assign and store the setinterval function to a varibale which I named as timing on my time.js file. + +8: The setTimeout is a function method which perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once. + +9: on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. + +10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. +Just a recap for quick understanding, to solve this problem, you need two responsive functions which are the setinterval function that take crae of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. Also, the next part of this lgorithm deal with eventlistener in javascript which will be attached soonest. do well to reach if experience any issue on the process. + + + + From d03108541a7ba5aa649d33aeb0ac8fcad71f738f Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Tue, 12 Dec 2023 23:06:53 +0100 Subject: [PATCH 04/83] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7acb929..49d7eb4 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ # Clearing SetTimeout with JavaScript + To begin with, I want to start by thanking everyone for the massive review and love on my works. your reviews do motivate me to develop and solve more tremendous works with JavaScript and some other awaiting programming languages. however, lets get to the wonderful knowledge and experience I'm going to share with the community today. Futhermore,the following will explain and give you an indepth understanding and knowledge about this project and how to use it at your various places of work. How to use and the purpose of this project: + 1: This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. 2:Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. @@ -17,11 +19,12 @@ How to use and the purpose of this project: 7: in this step, you'll create another constant veriable which will be assign to the setinterval function to and set the time you want as a timer. it's usally caculated in sec which is 1000 = 1sec. haven't understood how to assign and store the setinterval function to a varibale which I named as timing on my time.js file. -8: The setTimeout is a function method which perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once. +8: The setTimeout is a function method which perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once. 9: on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. + Just a recap for quick understanding, to solve this problem, you need two responsive functions which are the setinterval function that take crae of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. Also, the next part of this lgorithm deal with eventlistener in javascript which will be attached soonest. do well to reach if experience any issue on the process. From a743caebf1c4477b2f8dba836513e501d22ad778 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 00:26:16 +0100 Subject: [PATCH 05/83] Revert "Update README.md" --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 49d7eb4..7acb929 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,8 @@ # Clearing SetTimeout with JavaScript - To begin with, I want to start by thanking everyone for the massive review and love on my works. your reviews do motivate me to develop and solve more tremendous works with JavaScript and some other awaiting programming languages. however, lets get to the wonderful knowledge and experience I'm going to share with the community today. Futhermore,the following will explain and give you an indepth understanding and knowledge about this project and how to use it at your various places of work. How to use and the purpose of this project: - 1: This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. 2:Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. @@ -19,12 +17,11 @@ How to use and the purpose of this project: 7: in this step, you'll create another constant veriable which will be assign to the setinterval function to and set the time you want as a timer. it's usally caculated in sec which is 1000 = 1sec. haven't understood how to assign and store the setinterval function to a varibale which I named as timing on my time.js file. -8: The setTimeout is a function method which perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once. +8: The setTimeout is a function method which perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once. 9: on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. - Just a recap for quick understanding, to solve this problem, you need two responsive functions which are the setinterval function that take crae of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. Also, the next part of this lgorithm deal with eventlistener in javascript which will be attached soonest. do well to reach if experience any issue on the process. From cd67cde3c78c9eb438995ffe4a3cff9b78dc1314 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 01:49:24 +0100 Subject: [PATCH 06/83] Create CONTRIBUTING.md --- CONTRIBUTING.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..6a6fdef --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,30 @@ +let output = document.querySelector('div') +let textbox = document.querySelector('input') +let wordsToType ="hello world this is typing"; +let timeDispalyer = document.querySelector('[data-time-display]') + +let time = 200; + +function timer (){ + time -- + + timeDispalyer.innerHTML = time + // console.log(time); +} + +let timing = setInterval(timer, 1000); + +setTimeout(() => { + + clearTimeout(timing) +}, 200*1000); + +textbox.oninput= (e)=>{ + for (let i = 0; i < wordsToType.length; i++) { + const element = wordsToType[i]; + if (element == e.target.value[i]) { + console.log(element); + } + + } +} From c55e992a1a6c4fed6b3b2960c98200840f302c29 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 01:51:19 +0100 Subject: [PATCH 07/83] Revert "Create CONTRIBUTING.md" --- CONTRIBUTING.md | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 6a6fdef..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,30 +0,0 @@ -let output = document.querySelector('div') -let textbox = document.querySelector('input') -let wordsToType ="hello world this is typing"; -let timeDispalyer = document.querySelector('[data-time-display]') - -let time = 200; - -function timer (){ - time -- - - timeDispalyer.innerHTML = time - // console.log(time); -} - -let timing = setInterval(timer, 1000); - -setTimeout(() => { - - clearTimeout(timing) -}, 200*1000); - -textbox.oninput= (e)=>{ - for (let i = 0; i < wordsToType.length; i++) { - const element = wordsToType[i]; - if (element == e.target.value[i]) { - console.log(element); - } - - } -} From fcbe738cc599ed942deb63d4f9e15f1cb3f63dbb Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 01:52:26 +0100 Subject: [PATCH 08/83] Revert "Revert "Create CONTRIBUTING.md"" --- CONTRIBUTING.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..6a6fdef --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,30 @@ +let output = document.querySelector('div') +let textbox = document.querySelector('input') +let wordsToType ="hello world this is typing"; +let timeDispalyer = document.querySelector('[data-time-display]') + +let time = 200; + +function timer (){ + time -- + + timeDispalyer.innerHTML = time + // console.log(time); +} + +let timing = setInterval(timer, 1000); + +setTimeout(() => { + + clearTimeout(timing) +}, 200*1000); + +textbox.oninput= (e)=>{ + for (let i = 0; i < wordsToType.length; i++) { + const element = wordsToType[i]; + if (element == e.target.value[i]) { + console.log(element); + } + + } +} From c237738cadd183dffe01563392b353d62c84401f Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 01:53:40 +0100 Subject: [PATCH 09/83] Revert "Revert "Revert "Create CONTRIBUTING.md""" --- CONTRIBUTING.md | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 6a6fdef..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,30 +0,0 @@ -let output = document.querySelector('div') -let textbox = document.querySelector('input') -let wordsToType ="hello world this is typing"; -let timeDispalyer = document.querySelector('[data-time-display]') - -let time = 200; - -function timer (){ - time -- - - timeDispalyer.innerHTML = time - // console.log(time); -} - -let timing = setInterval(timer, 1000); - -setTimeout(() => { - - clearTimeout(timing) -}, 200*1000); - -textbox.oninput= (e)=>{ - for (let i = 0; i < wordsToType.length; i++) { - const element = wordsToType[i]; - if (element == e.target.value[i]) { - console.log(element); - } - - } -} From d13336c55fb76596f636ca217bf607f7b152bdd8 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 09:15:06 +0100 Subject: [PATCH 10/83] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7acb929..f76f2df 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,12 @@ How to use and the purpose of this project: 9: on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem, you need two responsive functions which are the setinterval function that take crae of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. Also, the next part of this lgorithm deal with eventlistener in javascript which will be attached soonest. do well to reach if experience any issue on the process. + +Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. + +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. + +Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From 707b7d2cb45529076ed20d5c98a77add82debfcc Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 09:17:09 +0100 Subject: [PATCH 11/83] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f76f2df..998fdef 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ To begin with, I want to start by thanking everyone for the massive review and l Futhermore,the following will explain and give you an indepth understanding and knowledge about this project and how to use it at your various places of work. How to use and the purpose of this project: + 1: This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. 2:Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. From f6df93d58c614039eb5026d685909b87c8de1fa7 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 18:41:07 +0100 Subject: [PATCH 12/83] Revert "Update README.md" --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 998fdef..f76f2df 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ To begin with, I want to start by thanking everyone for the massive review and l Futhermore,the following will explain and give you an indepth understanding and knowledge about this project and how to use it at your various places of work. How to use and the purpose of this project: - 1: This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. 2:Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. From 8664b809e0aba31444e448c285bae75820557a19 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 19:09:18 +0100 Subject: [PATCH 13/83] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f76f2df..35db2c2 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,12 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. -Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. + By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. From cd55dd204552a47282f9fc928895950daaa6bf29 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:25:45 +0100 Subject: [PATCH 14/83] Revert "Update README.md" --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35db2c2..f76f2df 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,11 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. - By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. -Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. +Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From 7832d47b52a344a4811239399686b92cada7c3ac Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:26:38 +0100 Subject: [PATCH 15/83] Revert "Revert "Update README.md"" --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f76f2df..35db2c2 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,12 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. -Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. + By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. From 7567cb445facd6ef4c741f3b68f7c7f03b094598 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:27:24 +0100 Subject: [PATCH 16/83] Revert "Revert "Revert "Update README.md""" --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35db2c2..f76f2df 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,11 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. - By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. -Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. +Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From a14cf490be0b0d2aa5e4b8ae2a939ff2994f2a7e Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:37:49 +0100 Subject: [PATCH 17/83] Revert "Revert "Revert "Revert "Update README.md"""" --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f76f2df..35db2c2 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,12 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. -Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. + By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. From d8323f6ce71a179193eaf7420da7e0afc9960910 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:40:04 +0100 Subject: [PATCH 18/83] Revert "Revert "Revert "Revert "Revert "Update README.md""""" --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35db2c2..f76f2df 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,11 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. - By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. -Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. +Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From 1dce276fcc012081547c68a0bdf0ce868ee71060 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:40:47 +0100 Subject: [PATCH 19/83] Revert "Revert "Revert "Revert "Revert "Revert "Update README.md"""""" --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f76f2df..35db2c2 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,12 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. -Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. + By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. From 11ba7da1087cdd34906b0aec2102476c17c63871 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:41:33 +0100 Subject: [PATCH 20/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Update README.md""""""" --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35db2c2..f76f2df 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,11 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. - By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. -Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. +Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From b2f753608a6c53120ec772c84dd4bc9870c7d16e Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:42:42 +0100 Subject: [PATCH 21/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Update README.md"""""""" --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f76f2df..35db2c2 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,12 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. -Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. + By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. From f66d5c145b67427c0efd2a9847d40130e9ef2fa9 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:44:03 +0100 Subject: [PATCH 22/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Update README.md""""""""" --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35db2c2..f76f2df 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,11 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. - By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. -Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. +Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From dafc980715ef387192677aa6f23add2127cc09b3 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:44:40 +0100 Subject: [PATCH 23/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Update README.md"""""""""" --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f76f2df..35db2c2 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,12 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. -Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. + By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. From a86a09e17c8b4bfc06718aecaf4d452c3601b539 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:45:42 +0100 Subject: [PATCH 24/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Update README.md""""""""""" --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35db2c2..f76f2df 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,11 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. - By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. -Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. +Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From 29e3ba0faf3f9c97081e24529fe00f94819cac3b Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:47:26 +0100 Subject: [PATCH 25/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Update README.md"""""""""""" --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f76f2df..35db2c2 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,12 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. -Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. + By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. From e1b7be49474cda08539dc5ab57e55f0922973103 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:47:54 +0100 Subject: [PATCH 26/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Update README.md""""""""""""" --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35db2c2..f76f2df 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,11 @@ How to use and the purpose of this project: 10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. -Just a recap for quick understanding, to solve this problem you only need two responsive functions which are the setinterval function that take care of the timer while the settimeout function will be responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. +Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure. however, this is where this problem solving or project will be applied. for instance, If a cybersecurity analyst is given a task to develop a software that will helps to protect an organization from their potential threats, risks and vulnerabilities. the dveloper can apply this method by using setinterval function method to set a timer and the SetTimeout function to clear the time on the program that will execute the software functionality. this method can be a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risksa nd vulnerabilities that can be harmful to the organization and prevent them from happening at the first place. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. - By doing this, It'll protect the assets of an organization from been compromised of their the security standard and leaking of confidential informations that will lead to damage of the brand or company. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. -Also, the last part of this algorithm deals with the EventListener in javascript. which will be attached soonest. do well to reach if experience any issue on your progress. +Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From 1de54bc3cf12585f3b4e07761921d18450c89690 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 21:09:28 +0100 Subject: [PATCH 27/83] Revert "Merge pull request #35 from KidiIT/main" From 4bd54d180645ca135502d627cc9c24499fef532b Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 22:23:41 +0100 Subject: [PATCH 28/83] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f76f2df..2ac374c 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ How to use and the purpose of this project: Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, for reference when developing a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From 6652ee2c0e8d7ba5f03b31fc4914c7cde5fe10d3 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 22:24:23 +0100 Subject: [PATCH 29/83] Revert "Update README.md" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ac374c..f76f2df 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ How to use and the purpose of this project: Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, for reference when developing a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From 7bf201d9975486bc577a3fa7e480a43ca919a3ce Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 22:28:33 +0100 Subject: [PATCH 30/83] Revert "Revert "Update README.md"" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f76f2df..2ac374c 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ How to use and the purpose of this project: Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, for reference when developing a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From 8ba3f508e0361c58a509332fa3ca2d95adc5de9a Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 22:31:31 +0100 Subject: [PATCH 31/83] Revert "Revert "Revert "Update README.md""" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ac374c..f76f2df 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ How to use and the purpose of this project: Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, for reference when developing a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From dc7e141501d26873eb59978e60f37b7afe1cb73b Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 13 Dec 2023 23:44:21 +0100 Subject: [PATCH 32/83] Update README.md --- README.md | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index f76f2df..2395f41 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,36 @@ # Clearing SetTimeout with JavaScript + To begin with, I want to start by thanking everyone for the massive review and love on my works. your reviews do motivate me to develop and solve more tremendous works with JavaScript and some other awaiting programming languages. however, lets get to the wonderful knowledge and experience I'm going to share with the community today. - Futhermore,the following will explain and give you an indepth understanding and knowledge about this project and how to use it at your various places of work. + Futhermore,the following will explain and give you an indepth understanding about this project and how to use it at your various places of work. How to use and the purpose of this project: -1: This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. + +1:This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. 2:Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. -3: First thing first, make sure you've created or will create a nice template on your html file to be able to fit in on this project. +3:First thing first, make sure you've created or will create a nice template on your html file to be able to fit in on this project. -4: After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new to programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. however, this will automatically lead us to the 5th step. +4:After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new in programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. this will automatically lead us to the 5th step. -5: this step is an easy one for everyone, so you've nothing to be worried about. after you must've selected the required element from your html file. then create a constant variable by using the word "LET" and assign a value to it. remember assigning a value at this point depends on how and when you want the security protocol or the settimeout to execute on your program. as seen on my time.js, I used 200 as my value and it's applicable on your end if you wish. +5:in addition, the fifth step should be an easy one for everyone. after you must've selected the required element from your html file. then create a constant variable by using the word "LET" and assign a value to it. remember assigning a value at this point depends on how and when you want the security protocol or the settimeout to execute on your program. as seen on my time.js, I used 200 as my value and it's applicable on your end if you wish. -6: step 6 is where a reaquired function timer() was created. don't worry if you don't know how create a function in Javascript, you're 100% free to access and use my work template. on that note, the timer function will execute whenever the initial function is been called outside the gobal function. don't get afraid yet alright hahaha!. alright, A global function is a function that is defined outside of a class or struct and can be accessed from anywhere in the program. after which assign your input element.innerHTML = time. +6:the next step is where a reaquired function timer() was created. don't worry if you don't know how to create a function in Javascript, you're 100% free to access and use my work template. on that note, the timer function will execute whenever the initial function is been called outside the gobal function. don't get afraid yet alright hahaha!. alright, A global function is a function that is defined outside of a class or struct and can be accessed from anywhere in the program. after which assign your input element.innerHTML = time. -7: in this step, you'll create another constant veriable which will be assign to the setinterval function to and set the time you want as a timer. it's usally caculated in sec which is 1000 = 1sec. haven't understood how to assign and store the setinterval function to a varibale which I named as timing on my time.js file. +7:in this step, you'll create another constant veriable which will be assign to setinterval function and set the time you want as a timer. it's usally caculated in sec which is 1000 = 1sec. haven't understood how to assign and store the setinterval function to a varibale which I named as timing on my time.js file. -8: The setTimeout is a function method which perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once. +8:The setTimeout is a function method which will perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once so be careful when setting your varibale. -9: on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. +9:on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. -10: lastly, you can clear your timer by mutiplying the varibale time(value) which 200 * 1000(timer) to be able to iterate and excute its expected function at the right time. I presumed that we must've assimilated alot today. +10:lastly, you can clear the timer function by using assignment operator mutiply(*), by mutiplying the variable time(value) which 200 * 1000(timer) to be able to iterate and perform its expected function at the right time. I presumed that we must've assimilated alot today. Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to the development of a proactive security software that will be used to protect an organization infrastructure, this is where this problem solving or project will be of help. for instance, If a cybersecurity analyst personnel is developing a software that helps to protect an organization from their potential threats, risks and vulnerabilities. Making the use setinterval function to set a timer and the SetTimeout function to clear the time of which the program that will execute the software functionality will a very effective and essential way in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threat or risk that will compromised the security standard or confidential information of an organization. Most importantly, It'll protect the company's reputation by making them meeting up to the regulatory policy in cyber security. +furthermore, In reference to developing a proactive security software that will be used to protect an organization infrastructure. this is where the knowledge of this project will be appply. +for instance, If a cybersecurity analyst personnel is been asign a task to develop a proactive software that will protect the organization from their potential threats, risks and + vulnerabilities. however, Making use of the setinterval function to set a timer and SetTimeout function to clear the time of which the program will execute the functionality on the software will be very effective or essential in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risks and vulnerabilities that will harm the security standard or compromised confidential information of an organization. Most importantly, It'll protect the company reputation by making them meeting up to the regulatory policy in cyber security. -Also, the last part of this algorithm deal with the eventlistener in javascript. which will be attached soonest. do well to reach if experience any issue on your process. From 1c3caf5e790f1709029de7a4f7c21e0a9d919e76 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 00:19:38 +0100 Subject: [PATCH 33/83] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2395f41..266bc9d 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ How to use and the purpose of this project: Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. -furthermore, In reference to developing a proactive security software that will be used to protect an organization infrastructure. this is where the knowledge of this project will be appply. -for instance, If a cybersecurity analyst personnel is been asign a task to develop a proactive software that will protect the organization from their potential threats, risks and - vulnerabilities. however, Making use of the setinterval function to set a timer and SetTimeout function to clear the time of which the program will execute the functionality on the software will be very effective or essential in validating and creating a software that will protect the financial aspect of an organization by detecting and clearing any found threats or risks and vulnerabilities that will harm the security standard or compromised confidential information of an organization. Most importantly, It'll protect the company reputation by making them meeting up to the regulatory policy in cyber security. +Furthermore, In reference to develop a proactive security software that will be used to protect an organization infrastructure. this is where the knowledge of this project will be appplicable and used. + +for instance, If an entry-level cybersecurity analyst personnel is been assign a task to develop a proactive software that will protect the organization from their potential threats, risks and vulnerabilities.that been said, the use of the setinterval function to set a timer and the SetTimeout function to clear the time of which the program will execute its functionality on the software will be very effective and essential in validating and creating a software that will protect the financial aspect of an organization, by detecting and clearing any found threats, risks and vulnerabilities that will harm the security standard of an organization. Most importantly, It'll protect the company's reputation by making them to meet up with the regulatory policy in cybersecurity. also,it can help to prevent and protect the organization from any potential threats or risks from happening at the first place. if deployed intensively with well stated algorithms and functions when developing your software. From 3abaf1cd145ff6adaa71f9e97b7e124243f00f61 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 01:27:25 +0100 Subject: [PATCH 34/83] Create CONTRIBUTING.md --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 49cd5a534fa4791a921605eb425901ed6a7c671a Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 01:34:03 +0100 Subject: [PATCH 35/83] Revert "Create CONTRIBUTING.md" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 670c3aeb75873caa8724fa6c9b984d5f60d70ab2 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 03:55:49 +0100 Subject: [PATCH 36/83] Revert "Revert "Create CONTRIBUTING.md"" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From f970c950854480ce19e56889106c8b5df8934126 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 03:56:30 +0100 Subject: [PATCH 37/83] Revert "Revert "Revert "Create CONTRIBUTING.md""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From ce384d4e442d1090cf50c8119648dca5ec0b7d29 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 03:57:09 +0100 Subject: [PATCH 38/83] Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 0ef073c57e92c53be803f9bb127a0da9640573b2 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 03:58:00 +0100 Subject: [PATCH 39/83] Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md""""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 2b22757ad30e30b22e2d7feed8324b1041974344 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 03:58:46 +0100 Subject: [PATCH 40/83] Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From cb5d1441271253d6e35fab693f4b208ca1297382 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 11:48:34 +0100 Subject: [PATCH 41/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md""""""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 391adb6c8a4676a1082226a4d8d6c93ffa9e036d Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 11:56:06 +0100 Subject: [PATCH 42/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""""""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From ab8e40fc5fdaea9e63e08eca2074dab76e37186b Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:11:42 +0100 Subject: [PATCH 43/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md""""""""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 8017d360e36d6474d4d1a047aae9a7e8f0b3db00 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:35:32 +0100 Subject: [PATCH 44/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""""""""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From e8b405475de11e667f2fdf0727a33bf1ba2c0a6b Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:36:07 +0100 Subject: [PATCH 45/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md""""""""""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From d065bb1c1eeb917c3434c3e638add93ac2b76649 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 13:15:35 +0100 Subject: [PATCH 46/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""""""""""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 28e12c4935c4edc9039853f1772f62baa3929414 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 13:16:06 +0100 Subject: [PATCH 47/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md""""""""""""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 6e481c8c5c82e3e37d54ea8b023200d09d4efa54 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 13:20:04 +0100 Subject: [PATCH 48/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""""""""""""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From cf63a201c2a66108894e8f9476cb72ec7d78c4b8 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:14:39 +0100 Subject: [PATCH 49/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md""""""""""""""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From d2b87319e5d3ef6b1ec19852d57584e0d42f220e Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:15:19 +0100 Subject: [PATCH 50/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""""""""""""""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 4c3cbb6c6b0d3c7344c83580fd3cacbaa2ec96d5 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:16:08 +0100 Subject: [PATCH 51/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md""""""""""""""""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 3a0c6508ea0cea2ba604f4f3f822168c7da8fe29 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:16:39 +0100 Subject: [PATCH 52/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""""""""""""""""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 75f8e8b6edac6b09c30be3eed63cfeb215813287 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:17:24 +0100 Subject: [PATCH 53/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md""""""""""""""""""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 89d7cc02cdeb15a9e1a4394855794806f0a61607 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:18:04 +0100 Subject: [PATCH 54/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""""""""""""""""""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From eb2ee6acb833dd693028c2b32b3a3c7363e8ef40 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:18:46 +0100 Subject: [PATCH 55/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md""""""""""""""""""""" --- CONTRIBUTING.md | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 58f5074..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js -https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 1587c45d3416a92f43d67e36f76f777b020041c4 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:19:25 +0100 Subject: [PATCH 56/83] Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Create CONTRIBUTING.md"""""""""""""""""""""" --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..58f5074 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,2 @@ +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.jshttps://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/time.js +https://github.com/KidiIT/-Clearing-SetTimeout-with-JavaScript-/blob/main/README.md From 9fc0aa4825299803eb03dece3bd09ca1cd887ca7 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Fri, 15 Dec 2023 00:17:42 +0100 Subject: [PATCH 57/83] =?UTF-8?q?Revert=20"Merge=20pull=20request=20#69=20?= =?UTF-8?q?from=20KidiIT/revert-68-revert-67-revert-66-reve=E2=80=A6"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From 914367e21fa66b9a1c699f500f6aff7266ee7afc Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Fri, 15 Dec 2023 00:20:53 +0100 Subject: [PATCH 58/83] =?UTF-8?q?Revert=20"Revert=20"Merge=20pull=20reques?= =?UTF-8?q?t=20#69=20from=20KidiIT/revert-68-revert-67-revert-66-reve?= =?UTF-8?q?=E2=80=A6""?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From 217eff60eec7b8d87c8016f8b0c00442c3342a6b Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Fri, 15 Dec 2023 00:21:42 +0100 Subject: [PATCH 59/83] =?UTF-8?q?Revert=20"Revert=20"Revert=20"Merge=20pul?= =?UTF-8?q?l=20request=20#69=20from=20KidiIT/revert-68-revert-67-revert-66?= =?UTF-8?q?-reve=E2=80=A6"""?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From 71f09699cc9a5f98e5048008c667e335e27f27c2 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Fri, 15 Dec 2023 00:24:18 +0100 Subject: [PATCH 60/83] =?UTF-8?q?Revert=20"Revert=20"Revert=20"Revert=20"M?= =?UTF-8?q?erge=20pull=20request=20#69=20from=20KidiIT/revert-68-revert-67?= =?UTF-8?q?-revert-66-reve=E2=80=A6""""?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From d190f633e9cdb0dfc3a4947e0c239bf20cfcec43 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Sun, 17 Dec 2023 01:42:43 +0100 Subject: [PATCH 61/83] Update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 266bc9d..e89c471 100644 --- a/README.md +++ b/README.md @@ -5,25 +5,25 @@ To begin with, I want to start by thanking everyone for the massive review and l How to use and the purpose of this project: -1:This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. +1: This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. -2:Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. +2: Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. -3:First thing first, make sure you've created or will create a nice template on your html file to be able to fit in on this project. +3: First thing first, make sure you've created or will create a nice template on your html file to be able to fit in on this project. -4:After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new in programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. this will automatically lead us to the 5th step. +4: After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new in programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. this will automatically lead us to the 5th step. -5:in addition, the fifth step should be an easy one for everyone. after you must've selected the required element from your html file. then create a constant variable by using the word "LET" and assign a value to it. remember assigning a value at this point depends on how and when you want the security protocol or the settimeout to execute on your program. as seen on my time.js, I used 200 as my value and it's applicable on your end if you wish. +5: in addition, the fifth step should be an easy one for everyone. after you must've selected the required element from your html file. then create a constant variable by using the word "LET" and assign a value to it. remember assigning a value at this point depends on how and when you want the security protocol or the settimeout to execute on your program. as seen on my time.js, I used 200 as my value and it's applicable on your end if you wish. -6:the next step is where a reaquired function timer() was created. don't worry if you don't know how to create a function in Javascript, you're 100% free to access and use my work template. on that note, the timer function will execute whenever the initial function is been called outside the gobal function. don't get afraid yet alright hahaha!. alright, A global function is a function that is defined outside of a class or struct and can be accessed from anywhere in the program. after which assign your input element.innerHTML = time. +6: the next step is where a reaquired function timer() was created. don't worry if you don't know how to create a function in Javascript, you're 100% free to access and use my work template. on that note, the timer function will execute whenever the initial function is been called outside the gobal function. don't get afraid yet alright hahaha!. alright, A global function is a function that is defined outside of a class or struct and can be accessed from anywhere in the program. after which assign your input element.innerHTML = time. -7:in this step, you'll create another constant veriable which will be assign to setinterval function and set the time you want as a timer. it's usally caculated in sec which is 1000 = 1sec. haven't understood how to assign and store the setinterval function to a varibale which I named as timing on my time.js file. +7: in this step, you'll create another constant veriable which will be assign to setinterval function and set the time you want as a timer. it's usally caculated in sec which is 1000 = 1sec. haven't understood how to assign and store the setinterval function to a varibale which I named as timing on my time.js file. -8:The setTimeout is a function method which will perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once so be careful when setting your varibale. +8: The setTimeout is a function method which will perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once so be careful when setting your varibale. -9:on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. +9: on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. -10:lastly, you can clear the timer function by using assignment operator mutiply(*), by mutiplying the variable time(value) which 200 * 1000(timer) to be able to iterate and perform its expected function at the right time. I presumed that we must've assimilated alot today. +10: lastly, you can clear the timer function by using assignment operator mutiply(*), by mutiplying the variable time(value) which 200 * 1000(timer) to be able to iterate and perform its expected function at the right time. I presumed that we must've assimilated alot today. Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. From c45ed3d4e36e5dabd5efcbf304bf4d066439b0c0 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 20 Dec 2023 08:46:03 +0100 Subject: [PATCH 62/83] =?UTF-8?q?Revert=20"Merge=20pull=20request=20#80=20?= =?UTF-8?q?from=20KidiIT/revert-68-revert-67-revert-66-reve=E2=80=A6"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From b2663113c5ccc7e8938c847979f637ae25113ad4 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 14:21:36 +0100 Subject: [PATCH 63/83] Update README.md --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index e89c471..9d4d378 100644 --- a/README.md +++ b/README.md @@ -5,31 +5,31 @@ To begin with, I want to start by thanking everyone for the massive review and l How to use and the purpose of this project: -1: This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. +1. This project was intensively developed with the motive of ensuring prevention and improvement of proactive security software for the protection of an organization infrastructure. -2: Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. +2. Before rolling on the real deal, an indepth knowledge of html,css and Javascript is needed to be able to understand how to clear settimeout funtion with Javascript because it's kinda tricky if this is your first time here. -3: First thing first, make sure you've created or will create a nice template on your html file to be able to fit in on this project. +3. First thing first, make sure you've created or will create a nice template on your html file to be able to fit in on this project. -4: After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new in programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. this will automatically lead us to the 5th step. +4. After which, link your Js.file with your html file. then use an attribute selector to make it more easier for you to get your elements to your Js.file at once. as seen on my time.js file. moreover, if you're new in programming then you've nothing to worry about because I'll stick with you throughout this project or problem solving because it's a very tricky one to work on alone. this will automatically lead us to the 5th step. -5: in addition, the fifth step should be an easy one for everyone. after you must've selected the required element from your html file. then create a constant variable by using the word "LET" and assign a value to it. remember assigning a value at this point depends on how and when you want the security protocol or the settimeout to execute on your program. as seen on my time.js, I used 200 as my value and it's applicable on your end if you wish. +5. in addition, the fifth step should be an easy one for everyone. after you must've selected the required element from your html file. then create a constant variable by using the word "LET" and assign a value to it. remember assigning a value at this point depends on how and when you want the security protocol or the settimeout to execute on your program. as seen on my time.js, I used 200 as my value and it's applicable on your end if you wish. -6: the next step is where a reaquired function timer() was created. don't worry if you don't know how to create a function in Javascript, you're 100% free to access and use my work template. on that note, the timer function will execute whenever the initial function is been called outside the gobal function. don't get afraid yet alright hahaha!. alright, A global function is a function that is defined outside of a class or struct and can be accessed from anywhere in the program. after which assign your input element.innerHTML = time. +6. the next step is where a reaquired function timer() was created. don't worry if you don't know how to create a function in Javascript, you're 100% free to access and use my work template. on that note, the timer function will execute whenever the initial function is been called outside the gobal function. don't get afraid yet alright hahaha!. alright, A global function is a function that is defined outside of a class or struct and can be accessed from anywhere in the program. after which assign your input element.innerHTML = time. -7: in this step, you'll create another constant veriable which will be assign to setinterval function and set the time you want as a timer. it's usally caculated in sec which is 1000 = 1sec. haven't understood how to assign and store the setinterval function to a varibale which I named as timing on my time.js file. +7. in this step, you'll create another constant veriable which will be assign to setinterval function and set the time you want as a timer. it's usally caculated in sec which is 1000 = 1sec. haven't understood how to assign and store the setinterval function to a varibale which I named as timing on my time.js file. -8: The setTimeout is a function method which will perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once so be careful when setting your varibale. +8. The setTimeout is a function method which will perform the timeout task and clear the time you set on your initial variable as seen on my time.js mine was set as 200. and these can only be done once so be careful when setting your varibale. -9: on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. +9. on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. -10: lastly, you can clear the timer function by using assignment operator mutiply(*), by mutiplying the variable time(value) which 200 * 1000(timer) to be able to iterate and perform its expected function at the right time. I presumed that we must've assimilated alot today. +10. lastly, you can clear the timer function by using assignment operator mutiply(*), by mutiplying the variable time(value) which 200 * 1000(timer) to be able to iterate and perform its expected function at the right time. I presumed that we must've assimilated alot today. Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. Furthermore, In reference to develop a proactive security software that will be used to protect an organization infrastructure. this is where the knowledge of this project will be appplicable and used. -for instance, If an entry-level cybersecurity analyst personnel is been assign a task to develop a proactive software that will protect the organization from their potential threats, risks and vulnerabilities.that been said, the use of the setinterval function to set a timer and the SetTimeout function to clear the time of which the program will execute its functionality on the software will be very effective and essential in validating and creating a software that will protect the financial aspect of an organization, by detecting and clearing any found threats, risks and vulnerabilities that will harm the security standard of an organization. Most importantly, It'll protect the company's reputation by making them to meet up with the regulatory policy in cybersecurity. also,it can help to prevent and protect the organization from any potential threats or risks from happening at the first place. if deployed intensively with well stated algorithms and functions when developing your software. +For instance, If an entry-level cybersecurity analyst personnel is been assign a task to develop a proactive software that will protect the organization from their potential threats, risks and vulnerabilities.that been said, the use of the setinterval function to set a timer and the SetTimeout function to clear the time of which the program will execute its functionality on the software will be very effective and essential in validating and creating a software that will protect the financial aspect of an organization, by detecting and clearing any found threats, risks and vulnerabilities that will harm the security standard of an organization. Most importantly, It'll protect the company's reputation by making them to meet up with the regulatory policy in cybersecurity. also,it can help to prevent and protect the organization from any potential threats or risks from happening at the first place. if deployed intensively with well stated algorithms and functions when developing your software. From eabbd495fe8f7dd010a650c2bf55876303958eb8 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 15:13:54 +0100 Subject: [PATCH 64/83] Update README.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d4d378..374c1d0 100644 --- a/README.md +++ b/README.md @@ -23,15 +23,19 @@ How to use and the purpose of this project: 9. on the next, create a settimeout function after or on the next line of your code and inside your function, use the key word "clearTimeout(timing)" to store the veriable you assign to the setInterval function which is "timing" on my end. -10. lastly, you can clear the timer function by using assignment operator mutiply(*), by mutiplying the variable time(value) which 200 * 1000(timer) to be able to iterate and perform its expected function at the right time. I presumed that we must've assimilated alot today. +10. lastly, you can clear the timer function by using an assignment operator mutiply(*), by mutiplying the variable time(value) which 200 * 1000(timer) to be able to iterate and perform its expected function at the right time. I presumed that we must've assimilated alot today. Just a recap for quick understanding, to solve this problem you need two responsive functions which are the setinterval function that take care of the timer while the settimeout function is responsible to execute any function for clearing of the time that's been assign by the programmer at the initial stage. Furthermore, In reference to develop a proactive security software that will be used to protect an organization infrastructure. this is where the knowledge of this project will be appplicable and used. - For instance, If an entry-level cybersecurity analyst personnel is been assign a task to develop a proactive software that will protect the organization from their potential threats, risks and vulnerabilities.that been said, the use of the setinterval function to set a timer and the SetTimeout function to clear the time of which the program will execute its functionality on the software will be very effective and essential in validating and creating a software that will protect the financial aspect of an organization, by detecting and clearing any found threats, risks and vulnerabilities that will harm the security standard of an organization. Most importantly, It'll protect the company's reputation by making them to meet up with the regulatory policy in cybersecurity. also,it can help to prevent and protect the organization from any potential threats or risks from happening at the first place. if deployed intensively with well stated algorithms and functions when developing your software. +In conclusion, I've decided to throw more light or points on the last part of my project.which is clearing SetTimeout with javascript function. however, enlighting us more on how to apply and use the EventListner on this project or any work you want will be a great one to look into and this is what happen on the last part you need to note: +1. I created an EventListner function "oninput" which means my SetTimeout function will start tracking the time whenever a user start typing on the "input Box". The user have 200 sec to type on the input box. after 200sec if you're unable or fast enough to manage the time given then you'll be kicked out of the session. and you can start another session to test how fast you can type the word "HELLO WORLD THIS IS TYPING". +2. secondly, I used "FOR LOOP" to iterate the word to type on the input box. +3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". +4. Lastly, I want to use this opportunity to give y'all heads up on how happy I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys I'm grateful to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From 5a93edf638175e1aeaea39973658da7ebded659a Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 15:25:56 +0100 Subject: [PATCH 65/83] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 374c1d0..88f789f 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,9 @@ In conclusion, I've decided to throw more light or points on the last part of my 1. I created an EventListner function "oninput" which means my SetTimeout function will start tracking the time whenever a user start typing on the "input Box". The user have 200 sec to type on the input box. after 200sec if you're unable or fast enough to manage the time given then you'll be kicked out of the session. and you can start another session to test how fast you can type the word "HELLO WORLD THIS IS TYPING". 2. secondly, I used "FOR LOOP" to iterate the word to type on the input box. -3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -4. Lastly, I want to use this opportunity to give y'all heads up on how happy I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys I'm grateful to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then + console.log(element) which is "HELLO WORLD THIS IS TYPING". +Lastly, I want to use this opportunity to give y'all heads up on how happy glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From 297b4aacbe8ffb4e1d837fb7497a9856fccafb37 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 15:49:32 +0100 Subject: [PATCH 66/83] Revert "Update README.md" --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 88f789f..374c1d0 100644 --- a/README.md +++ b/README.md @@ -34,9 +34,8 @@ In conclusion, I've decided to throw more light or points on the last part of my 1. I created an EventListner function "oninput" which means my SetTimeout function will start tracking the time whenever a user start typing on the "input Box". The user have 200 sec to type on the input box. after 200sec if you're unable or fast enough to manage the time given then you'll be kicked out of the session. and you can start another session to test how fast you can type the word "HELLO WORLD THIS IS TYPING". 2. secondly, I used "FOR LOOP" to iterate the word to type on the input box. -3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then - console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how happy glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". +4. Lastly, I want to use this opportunity to give y'all heads up on how happy I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys I'm grateful to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From f99b3b41a8c48be333a854e13c75946177af81af Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 18:53:16 +0100 Subject: [PATCH 67/83] Revert "Revert "Update README.md"" --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 374c1d0..88f789f 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,9 @@ In conclusion, I've decided to throw more light or points on the last part of my 1. I created an EventListner function "oninput" which means my SetTimeout function will start tracking the time whenever a user start typing on the "input Box". The user have 200 sec to type on the input box. after 200sec if you're unable or fast enough to manage the time given then you'll be kicked out of the session. and you can start another session to test how fast you can type the word "HELLO WORLD THIS IS TYPING". 2. secondly, I used "FOR LOOP" to iterate the word to type on the input box. -3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -4. Lastly, I want to use this opportunity to give y'all heads up on how happy I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys I'm grateful to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then + console.log(element) which is "HELLO WORLD THIS IS TYPING". +Lastly, I want to use this opportunity to give y'all heads up on how happy glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From 7b307ec5003cfd70440a87909b35fd0d4ae875a0 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 21:38:11 +0100 Subject: [PATCH 68/83] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 88f789f..44bb409 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 2. secondly, I used "FOR LOOP" to iterate the word to type on the input box. 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". + Lastly, I want to use this opportunity to give y'all heads up on how happy glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From c3da32b1f9f1d2d4ecb118e250dd6954f61e02de Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 21:39:25 +0100 Subject: [PATCH 69/83] Revert "Update README.md" --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 44bb409..88f789f 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,6 @@ In conclusion, I've decided to throw more light or points on the last part of my 2. secondly, I used "FOR LOOP" to iterate the word to type on the input box. 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". - Lastly, I want to use this opportunity to give y'all heads up on how happy glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From d0a9d4f06650c761a9ee36490a59b5f0908ade51 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 22:08:37 +0100 Subject: [PATCH 70/83] Revert "Revert "Update README.md"" --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 88f789f..44bb409 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 2. secondly, I used "FOR LOOP" to iterate the word to type on the input box. 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". + Lastly, I want to use this opportunity to give y'all heads up on how happy glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From 0f57aef480b8ee0213624e402248549b9a7bc869 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 22:15:14 +0100 Subject: [PATCH 71/83] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44bb409..6c1f6dc 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how happy glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +Lastly, I want to use this opportunity to give y'all heads up on how glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From 93b7449d317b14677e281256a36e70e2ab74d15d Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 22:16:39 +0100 Subject: [PATCH 72/83] Revert "Update README.md" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c1f6dc..44bb409 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +Lastly, I want to use this opportunity to give y'all heads up on how happy glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From a482255a61391d242008a34c84b7df4bc230024f Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 22:19:10 +0100 Subject: [PATCH 73/83] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44bb409..91930a2 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how happy glad and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From 72d3cc4c0a5b908f70f09557bbe0c0e0cc7a33ad Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 22:23:34 +0100 Subject: [PATCH 74/83] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 91930a2..e132528 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From f016b24c31a01062e53c750be9ce515d24f147d9 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 21 Dec 2023 23:57:36 +0100 Subject: [PATCH 75/83] Revert "Update README.md" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e132528..91930a2 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From c9c905d5605ee13b6d9d5f0f6db2faf9f5bb1c89 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Mon, 25 Dec 2023 21:08:51 +0100 Subject: [PATCH 76/83] Revert "Revert "Update README.md"" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 91930a2..e132528 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From a64102073983fbdf0f29e910b82ecc61bd48f743 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 27 Dec 2023 02:47:43 +0100 Subject: [PATCH 77/83] Revert "Revert "Revert "Update README.md""" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e132528..91930a2 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From 7597136df5372a6851ca0050e95dc3d73a257bef Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 27 Dec 2023 02:50:52 +0100 Subject: [PATCH 78/83] Revert "Revert "Revert "Revert "Update README.md"""" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 91930a2..e132528 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From e1d8186ef6826a6979249396b770bb9da2cbd2d7 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Wed, 27 Dec 2023 03:01:06 +0100 Subject: [PATCH 79/83] Revert "Revert "Revert "Revert "Revert "Update README.md""""" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e132528..91930a2 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ In conclusion, I've decided to throw more light or points on the last part of my 3. on the next step, I assign a constant element to the word to type variable and I passed an "IF STATEMENT" which is If the element is equal to e.target.value[i]. then console.log(element) which is "HELLO WORLD THIS IS TYPING". -Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you. that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. +Lastly, I want to use this opportunity to give y'all heads up on how happy and delighted I'm at the moment about the progress we've made on this repo. I won't have come this far without you guys. my warmest gratitude goes to each and everyone of you that been said, this repo is about 964+ views with 212 clones. I'm still surprised about the views and clones. I hope we achieve more on my next repo/project guys. see y'all soon. From 9c1f323de4404dcaa7fce5859fa193fd184c9c3d Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 28 Dec 2023 15:20:21 +0100 Subject: [PATCH 80/83] Create FUNDING.yml Signed-off-by: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> --- FUNDING.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 FUNDING.yml diff --git a/FUNDING.yml b/FUNDING.yml new file mode 100644 index 0000000..8967df5 --- /dev/null +++ b/FUNDING.yml @@ -0,0 +1,23 @@ +jobs: + job_id: + permissions: + contents: 'read' + id-token: 'write' + + steps: + + # ... + + - uses: 'google-github-actions/auth@v2' + with: + workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' + service_account: 'my-service-account@my-project.iam.gserviceaccount.com' + + - uses: 'google-github-actions/deploy-cloudrun@v2' + with: + image: 'gcr.io/cloudrun/hello' + service: 'hello-cloud-run' +github: [KIDI’S TECH.com,kidiit] +patreon: KIDI'S-TECH@patreon.com +community_bridge: https://openprofile.dev/profile/kiditech +custom: [https://github.com/KIDI-S-TECH, https://github.com/KidiIT] From e935cee608101db730e17fb57b671e172f770ed4 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 28 Dec 2023 16:36:55 +0100 Subject: [PATCH 81/83] Create dependabot.yml Signed-off-by: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> --- .github/dependabot.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f575ec7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,34 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +# `dependabot.yml` file with updates +# disabled for Docker and limited for npm + +version: 2 +updates: + # Configuration for Dockerfile + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + # Disable all pull requests for Docker dependencies + open-pull-requests-limit: 0 + + # Configuration for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + ignore: + # Ignore updates to packages that start with 'aws' + # Wildcards match zero or more arbitrary characters + - dependency-name: "aws*" + # Ignore some updates to the 'express' package + - dependency-name: "express" + # Ignore only new versions for 4.x and 5.x + versions: ["4.x", "5.x"] + # For all packages, ignore all patch updates + - dependency-name: "*" + update-types: ["version-update:semver-patch"] From d40f743fa5406bb8d6a02deb04de8bd1fc8d5384 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Thu, 28 Dec 2023 19:15:04 +0100 Subject: [PATCH 82/83] Create codeql.yml Signed-off-by: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> --- .github/workflows/codeql.yml | 81 ++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..62abdb2 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,81 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '44 14 * * 2' + +jobs: + analyze: + name: Analyze + # Runner size impacts CodeQL analysis time. To learn more, please see: + # - https://gh.io/recommended-hardware-resources-for-running-codeql + # - https://gh.io/supported-runners-and-hardware-resources + # - https://gh.io/using-larger-runners + # Consider using larger runners for possible analysis time improvements. + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'javascript-typescript' ] + # CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ] + # Use only 'java-kotlin' to analyze code written in Java, Kotlin or both + # Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + + # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + # ℹ️ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" From 6fc11a567cd52db7c7e7b1ce80c22b882811a314 Mon Sep 17 00:00:00 2001 From: KIDI'S-TECH <146373396+KidiIT@users.noreply.github.com> Date: Fri, 29 Dec 2023 01:20:49 +0100 Subject: [PATCH 83/83] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/custom.md | 10 ++++++++ 2 files changed, 48 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/custom.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..dd84ea7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 0000000..48d5f81 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: '' +labels: '' +assignees: '' + +--- + +