<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: bingchandler671</title>
    <description>The latest articles on DEV Community by bingchandler671 (@bingchandler671).</description>
    <link>https://dev.to/bingchandler671</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F521424%2Fe49e5bd7-b77d-432b-b419-70c5c3207374.png</url>
      <title>DEV Community: bingchandler671</title>
      <link>https://dev.to/bingchandler671</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bingchandler671"/>
    <language>en</language>
    <item>
      <title>Double Free or Corruption error in C++</title>
      <dc:creator>bingchandler671</dc:creator>
      <pubDate>Thu, 26 Nov 2020 21:08:12 +0000</pubDate>
      <link>https://dev.to/bingchandler671/double-free-or-corruption-error-in-c-e28</link>
      <guid>https://dev.to/bingchandler671/double-free-or-corruption-error-in-c-e28</guid>
      <description>&lt;p&gt;C++ programming language uses the free() function to “free” the run-time allocated in the memory of the operating system. Basically, the function reallocates more memory, other functions use that memory. The parameters in free function are null or block of memory allocated, and denoted by a pointer to a memory (ptr) block previously allocated with malloc, calloc or realloc. If ptr is null, the free( ) function does nothing else; Malloc, calloc and realloc allocate a memory block. &lt;/p&gt;

&lt;h1&gt;
  
  
  Cause
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;The double-free error occurs when free( ) is called over one time with the same memory.&lt;/strong&gt; The program memory data structures become corrupted or altered, and an intruder like a hacker can write values in the memory spaces. A program can crash or alter execution flow. &lt;/p&gt;

&lt;p&gt;Corruption (Fasttop) error happens when memory blocks allocated on the runtime or on the stack or workspace used to manage the heap. The error is hard to detect because the memory is valid for reading and writing unlike double free. &lt;/p&gt;

&lt;p&gt;The memory corruption include&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Register memory &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;user virtual memory &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Solution
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.kodlogs.com/blog/1913/double-free-or-corruption-error-in-c"&gt;Read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cpp</category>
      <category>oop</category>
      <category>computerscience</category>
    </item>
    <item>
      <title> How to block someone on youtube from replying to your comments.</title>
      <dc:creator>bingchandler671</dc:creator>
      <pubDate>Thu, 26 Nov 2020 21:03:25 +0000</pubDate>
      <link>https://dev.to/bingchandler671/how-to-block-someone-on-youtube-from-replying-to-your-comments-f8g</link>
      <guid>https://dev.to/bingchandler671/how-to-block-someone-on-youtube-from-replying-to-your-comments-f8g</guid>
      <description>&lt;p&gt;The user can disable replies to your Google+ posts and Youtube comments in your Google+ settings. The only tricky step is to make sure that you are updating the settings for Google+ profile or page connected to the channel that’s doing the commenting.&lt;/p&gt;

&lt;h1&gt;
  
  
  Steps to follow:
&lt;/h1&gt;

&lt;p&gt;This functionality can be performed by the following steps;&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Sign in to youtube channel:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--j6Sx-lo1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/l7ef4dsy0lpm8yzcgu69.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--j6Sx-lo1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/l7ef4dsy0lpm8yzcgu69.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
Always sign in with the channel identity that you use to post comments. You can switch channel identities by clicking your avatar in the upper right corner and selecting a different channel.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Open the page connected to channel:
&lt;/h2&gt;

&lt;p&gt;Click on the avatar in the upper right corner, then click your avatar a second time. That will open your channels profile page with you are acting as a manager.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Go to settings:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--iceIa3OZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/0bp9o754gtgsalgxatng.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--iceIa3OZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/0bp9o754gtgsalgxatng.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.kodlogs.com/blog/687/%C2%A0%C2%A0%C2%A0%C2%A0-how-block-someone-youtube-from-replying-your-comments"&gt;Read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>youtube</category>
      <category>internet</category>
    </item>
    <item>
      <title>org.codeaurora.btmultisim</title>
      <dc:creator>bingchandler671</dc:creator>
      <pubDate>Thu, 26 Nov 2020 20:58:10 +0000</pubDate>
      <link>https://dev.to/bingchandler671/org-codeaurora-btmultisim-29cm</link>
      <guid>https://dev.to/bingchandler671/org-codeaurora-btmultisim-29cm</guid>
      <description>&lt;p&gt;There are so many data file managers over there. On ios, AppStore and android google play store contains tons of the data managers. Many of them are provided by the authentic sources and contains many features. But on the ark side, there are many of the managers are corrupted and sending some data of your phone or keep track of your data by using these data managers.&lt;/p&gt;

&lt;p&gt;Many corrupted data managers use the file making tactics for keeping a track record. &lt;/p&gt;

&lt;h1&gt;
  
  
  How it works?
&lt;/h1&gt;

&lt;p&gt;→ The track of the files can be done by two types. Installing additional files into the platform. OR adding files or extracting constantly for hours and hours.&lt;/p&gt;

&lt;p&gt;‘org.codeaurora.btmultisim’ is the most data corrupters are using. It is a file transfer protocol and contains the power of the tackle each anti corrupt software. It causes the overwhelming of the files of gigabytes in the pc or phones. &lt;/p&gt;

&lt;h2&gt;
  
  
  How to stay away?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.kodlogs.com/blog/17/org-codeaurora-btmultisim"&gt;Read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>computerscience</category>
    </item>
    <item>
      <title>How to get checked and unchecked checkbox array value in PHP?</title>
      <dc:creator>bingchandler671</dc:creator>
      <pubDate>Thu, 26 Nov 2020 20:56:58 +0000</pubDate>
      <link>https://dev.to/bingchandler671/how-to-get-checked-and-unchecked-checkbox-array-value-in-php-3ljm</link>
      <guid>https://dev.to/bingchandler671/how-to-get-checked-and-unchecked-checkbox-array-value-in-php-3ljm</guid>
      <description>&lt;p&gt;This process has 5 steps&lt;br&gt;
&lt;strong&gt;Step 1: For getting value of a checked checkbox&lt;br&gt;
Code:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;form action="#" method="post"&amp;gt;
&amp;lt;input type="checkbox" name="gender" value="Male"&amp;gt;Male&amp;lt;/input&amp;gt;
&amp;lt;input type="checkbox" name="gender" value="Female"&amp;gt;Female&amp;lt;/input&amp;gt;
&amp;lt;input type="submit" name="submit" value="Submit"/&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;?php
if (isset($_POST['gender'])){
echo $_POST['gender']; // Displays value of checked checkbox.
}
?&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Step 2: For getting values of multiple checked checkbox&lt;br&gt;
Code:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;form action="#" method="post"&amp;gt;
&amp;lt;input type="checkbox" name="check_list[]" value="C/C++"&amp;gt;&amp;lt;label&amp;gt;C/C++&amp;lt;/label&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;input type="checkbox" name="check_list[]" value="Java"&amp;gt;&amp;lt;label&amp;gt;Java&amp;lt;/label&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;input type="checkbox" name="check_list[]" value="PHP"&amp;gt;&amp;lt;label&amp;gt;PHP&amp;lt;/label&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;input type="submit" name="submit" value="Submit"/&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;?php
if(isset($_POST['submit'])){//to run PHP script on submit
if(!empty($_POST['check_list'])){
// Loop to store and display values of individual checked checkbox.
foreach($_POST['check_list'] as $selected){
echo $selected."&amp;lt;/br&amp;gt;";
}
}
}
?&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Step 3: php_checkbox.php (HTML code)&lt;br&gt;
Code:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;title&amp;gt;PHP: Get Values of Multiple Checked Checkboxes&amp;lt;/title&amp;gt;
&amp;lt;link rel="stylesheet" href="css/php_checkbox.css" /&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;div class="container"&amp;gt;
&amp;lt;div class="main"&amp;gt;
&amp;lt;h2&amp;gt;PHP: Get Values of Multiple Checked Checkboxes&amp;lt;/h2&amp;gt;
&amp;lt;form action="php_checkbox.php" method="post"&amp;gt;
&amp;lt;label class="heading"&amp;gt;Select Your Technical Exposure:&amp;lt;/label&amp;gt;
&amp;lt;input type="checkbox" name="check_list[]" value="C/C++"&amp;gt;&amp;lt;label&amp;gt;C/C++&amp;lt;/label&amp;gt;
&amp;lt;input type="checkbox" name="check_list[]" value="Java"&amp;gt;&amp;lt;label&amp;gt;Java&amp;lt;/label&amp;gt;
&amp;lt;input type="checkbox" name="check_list[]" value="PHP"&amp;gt;&amp;lt;label&amp;gt;PHP&amp;lt;/label&amp;gt;
&amp;lt;input type="checkbox" name="check_list[]" value="HTML/CSS"&amp;gt;&amp;lt;label&amp;gt;HTML/CSS&amp;lt;/label&amp;gt;
&amp;lt;input type="checkbox" name="check_list[]" value="UNIX/LINUX"&amp;gt;&amp;lt;label&amp;gt;UNIX/LINUX&amp;lt;/label&amp;gt;
&amp;lt;input type="submit" name="submit" Value="Submit"/&amp;gt;
&amp;lt;!----- Including PHP Script -----&amp;gt;
&amp;lt;?php include 'checkbox_value.php';?&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://www.kodlogs.com/blog/451/how-to-get-checked-and-unchecked-checkbox-array-value-in-php"&gt;Read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>php</category>
      <category>webdev</category>
      <category>webperf</category>
    </item>
    <item>
      <title>Display html form values in same page after submit using javaScript</title>
      <dc:creator>bingchandler671</dc:creator>
      <pubDate>Thu, 26 Nov 2020 20:51:17 +0000</pubDate>
      <link>https://dev.to/bingchandler671/display-html-form-values-in-same-page-after-submit-using-javascript-24gj</link>
      <guid>https://dev.to/bingchandler671/display-html-form-values-in-same-page-after-submit-using-javascript-24gj</guid>
      <description>&lt;h1&gt;
  
  
  Method 1
&lt;/h1&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
  &amp;lt;head lang="en"&amp;gt;
  &amp;lt;meta charset="UTF-8"&amp;gt;
  &amp;lt;script language="JavaScript"&amp;gt;
    function showInput() {
        document.getElementById('display').innerHTML = 
                    document.getElementById("user_input").value;
    }
  &amp;lt;/script&amp;gt;

  &amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

  &amp;lt;form&amp;gt;
    &amp;lt;label&amp;gt;&amp;lt;b&amp;gt;Enter a Message&amp;lt;/b&amp;gt;&amp;lt;/label&amp;gt;
    &amp;lt;input type="text" name="message" id="user_input"&amp;gt;
  &amp;lt;/form&amp;gt;

  &amp;lt;input type="submit" onclick="showInput();"&amp;gt;&amp;lt;br/&amp;gt;
  &amp;lt;label&amp;gt;Your input: &amp;lt;/label&amp;gt;
  &amp;lt;p&amp;gt;&amp;lt;span id='display'&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Another way you can do that. Point to be noted input type is button&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;input type="button" onclick="showMessage()" value="submit" /&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Follow this code:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;HTML JavaScript output on same page&amp;lt;/title&amp;gt;
    &amp;lt;script type="text/JavaScript"&amp;gt;
        function showMessage(){
            var message = document.getElementById("message").value;
            display_message.innerHTML= message;
        }
    &amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;form&amp;gt;
Enter message: &amp;lt;input type="text" id = "message"&amp;gt;
&amp;lt;input type="button" onclick="showMessage()" value="submit" /&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;p&amp;gt; Message is: &amp;lt;span id = "display_message"&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  MEthod 3
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.kodlogs.com/blog/138/display-html-form-values-same-after-submit-using-javascript"&gt;Read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>computerscience</category>
    </item>
    <item>
      <title>Unit Testing Technical Test &amp; Interview Questions</title>
      <dc:creator>bingchandler671</dc:creator>
      <pubDate>Thu, 26 Nov 2020 18:04:56 +0000</pubDate>
      <link>https://dev.to/bingchandler671/unit-testing-technical-test-interview-questions-11m9</link>
      <guid>https://dev.to/bingchandler671/unit-testing-technical-test-interview-questions-11m9</guid>
      <description>&lt;h1&gt;
  
  
  The most frequently asked technical and Interview Questions regarding Unit Testing?
&lt;/h1&gt;

&lt;p&gt;What does unit refer to in unit testing?&lt;br&gt;
What is unit testing in software testing&lt;br&gt;
How to do unit testing in java&lt;br&gt;
Which is not one of the primary characteristic of unit testing:&lt;br&gt;
Which is not one of the primary characteristic of unit testing:&lt;br&gt;
How to set up unit testing for backbone and requirejs using jasmine&lt;br&gt;
What is unit testing in oracle database&lt;br&gt;
Unit testing in java how tests drive the code pdf&lt;br&gt;
How to automate unit testing in visual studio 2013&lt;br&gt;
Why not use standard panel unit root test for testing ppp&lt;br&gt;
How to print in unit testing scode&lt;br&gt;
What are the challenges of unit testing&lt;br&gt;
Which of the following is unethical in testing intelligence unit ap psych&lt;br&gt;
How to use repository pattern and moq for unit testing c#&lt;br&gt;
How to do unit testing in angular 4&lt;br&gt;
How to do async calling in unit testing&lt;br&gt;
Where to buy home water testing unit&lt;br&gt;
How do i use one touch ultra mini blood testing unit&lt;br&gt;
For unit testing, what does "unit" usually refer to?&lt;br&gt;
How to test 560sl idle speed control unit testing&lt;br&gt;
How to do unit testing in objective c&lt;br&gt;
What is unit testing in visual studio 2017&lt;br&gt;
"for unit testing, what does \"unit\" usually refer to?"&lt;br&gt;
Which tool or framework is best for unit testing api with mocks&lt;br&gt;
Visual studio 2010 unit testing what to initialize values to&lt;br&gt;
Laravel 5 how to unit testing queue&lt;br&gt;
Which architecture better support automated unit test in software testing phase of the development?&lt;br&gt;
Typescript unit testing how to test form.valuechanges&lt;br&gt;
What is unit testing in java code&lt;br&gt;
How to enable unit testing on ios project&lt;br&gt;
What is unit testing and integration testing?&lt;br&gt;
How to do unit testing with tox&lt;br&gt;
Which tools are used for unit testing in angularjs&lt;br&gt;
How to perform unit testing in visual studio 2012&lt;br&gt;
How to start unit testing in vs2017&lt;br&gt;
Where can i buy a glucose testing unit for dogs nearby&lt;br&gt;
C# unit testing how to provide user input&lt;br&gt;
How to do unit testing with drupla 8&lt;br&gt;
How to unit testing of kafka producer in spring java&lt;br&gt;
What is unit testing integration testing and system testing&lt;br&gt;
How to load rootscope data by http get service in unit testing&lt;br&gt;
How to do unit testing using jasmine&lt;br&gt;
Angularjs unit testing how to mock $http.get response inside functin&lt;br&gt;
What shouldn't unit testing be used for&lt;br&gt;
How to do javascript unit testing in visual code&lt;br&gt;
How would you describe unit testing?&lt;br&gt;
Ios testing how to write unit tests&lt;br&gt;
What is system testing and unit testing&lt;br&gt;
Which of the following are javascript unit testing tools&lt;br&gt;
Mocking entity framework when unit testing asp.net web api 2&lt;br&gt;
How to use mock in unit testing&lt;br&gt;
Why use unit testing and system testing&lt;br&gt;
Which utility allows you to configure a testing module for unit tests?&lt;br&gt;
How to start unit testing an application in any technology&lt;br&gt;
How to create unit testing code in java&lt;br&gt;
Why interfaces are helpful for unit testing&lt;br&gt;
What is the primary goal of unit testing?&lt;br&gt;
What is the unit in unit testing j&lt;br&gt;
Who is responsible for unit testing of user story&lt;br&gt;
How to do unit testing in interview&lt;br&gt;
What the hell is unit testing?&lt;br&gt;
Why most unit testing is a waste of time&lt;br&gt;
How to do unit testing in visual studio 2013&lt;br&gt;
How to test only one fucntion in unit testing python&lt;br&gt;
How to perform unit testing in visual studio 2013&lt;br&gt;
What is unit testing with example java&lt;br&gt;
In which year unit testing was introtuded&lt;br&gt;
Typescript unit testing how to test form valuechanges&lt;br&gt;
What is difference between debugging and unit testing&lt;br&gt;
What is unit testing in python'&lt;br&gt;
Unit testing how do i get my okresult not wrapped in iactionresult&lt;br&gt;
Unit testing how to trigger select, optgroup, and option change function&lt;br&gt;
How to add unit testing in angular 2&lt;br&gt;
What is meant by unit testing with example&lt;br&gt;
What is the unit testing ci/cd jenkins&lt;br&gt;
What was the testing unit for java before junit&lt;br&gt;
How to do unit testing in react&lt;br&gt;
How to use unit and integration testing (junit means&lt;br&gt;
What can the "unit" in the phrase "unit testing" be? (more than one possible answer)&lt;br&gt;
Unit testing in java how tests drive the code pdf download&lt;br&gt;
How to do unit testing in c#&lt;br&gt;
Which unit testing libraries you have used for testing java programs&lt;br&gt;
How to set up unit testing with jenkins&lt;br&gt;
How to conduct a unit testing on an inventory program&lt;br&gt;
What unit is used in breath alcohol testing&lt;br&gt;
How to do unit testing for web based application&lt;br&gt;
What is the purpose of automated unit testing&lt;br&gt;
How to perform unit testing in hive&lt;br&gt;
How to do unit testing in .net&lt;br&gt;
How to do unit testing for ui routing&lt;br&gt;
How to setup unit testing for backbone and requirejs using jasmine&lt;br&gt;
How to do the etl unit testing&lt;br&gt;
How to do unit testing in abap&lt;br&gt;
How to do unit testing visual studio&lt;br&gt;
How to test a unity scripts unit testing&lt;br&gt;
How to do unit testing in qtp&lt;br&gt;
How to do unit testing in jenkinsfile&lt;br&gt;
What are pylint and unit testing for ?&lt;br&gt;
How will you perform unit testing of your app ?&lt;br&gt;
Where to see output from unit testing&lt;br&gt;
Unit testing is more viable using which approach to writing methods java&lt;br&gt;
How to do unit testing in qlikview&lt;br&gt;
How to test void method in j unit testing&lt;br&gt;
How is unit testing done for covering regerssions&lt;br&gt;
What are the benefits of unit testing described by developer&lt;br&gt;
During what stage of sdlc is unit testing essential&lt;br&gt;
What is the purpose of unit testing?&lt;br&gt;
In which year unit testing was introduced&lt;br&gt;
How is test driven development (tdd) different from unit testing?&lt;br&gt;
How dependency injection helps unit testing angular stackoverlfow&lt;br&gt;
How to get unit testing project in visual studio 2015 test version&lt;br&gt;
Visual studio unit testing what to initialize values to&lt;br&gt;
How to use unit testing in java&lt;br&gt;
How to do unit testing of tableau reports&lt;br&gt;
How to do unit testing in sap bi&lt;br&gt;
What is stub in unit testing c#&lt;br&gt;
What is the name of the unit testing framework module included with the python standard library?&lt;br&gt;
Java spring how to generate unit testing report&lt;br&gt;
What are the purposes of unit testing and who needs to conduct unit testing?&lt;br&gt;
How to unit testing using visual studio 2013&lt;br&gt;
How to do unit testing in angularjs&lt;br&gt;
Why is unit testing important bob martin&lt;br&gt;
How to document unit testing sample document&lt;br&gt;
See what a variable holds while unit testing visual studio 2015&lt;br&gt;
What is the point of unit testing in microservices&lt;br&gt;
How did you do unit testing in your project&lt;br&gt;
Unit testing how to fix error: 1 timer(s) still in the queue.&lt;br&gt;
How to use marked in typescript unit testing&lt;br&gt;
In which pahse of application unit testing is done&lt;br&gt;
How to do unit testing in javascript&lt;br&gt;
How to test click unit testing karma chai on lick&lt;br&gt;
Why singleton design pattern interferes with unit testing&lt;br&gt;
How to add another test in the j unit testing&lt;br&gt;
How to use jasmine for unit testing of typescript&lt;br&gt;
How to mock a database in unit testing java&lt;br&gt;
What are the things comes under unit testing&lt;br&gt;
How does functional testing differ from unit testing&lt;br&gt;
What is unit testing and how it is done&lt;br&gt;
Which action do you perform prior to unit testing to reduce the number of bugs&lt;br&gt;
How to create a unit testing on css and html&lt;br&gt;
Which tools are used for unit testing in angular&lt;br&gt;
How to do unit testing in visual scode?&lt;br&gt;
&lt;a href="https://www.kodlogs.com/blog/7/unit-testing-technical-test-%26-interview-questions"&gt;Read more&lt;/a&gt;&lt;/p&gt;

</description>
      <category>computerscience</category>
    </item>
    <item>
      <title>How to check if a character is a number in java?</title>
      <dc:creator>bingchandler671</dc:creator>
      <pubDate>Thu, 26 Nov 2020 17:33:19 +0000</pubDate>
      <link>https://dev.to/bingchandler671/how-to-check-if-a-character-is-a-number-in-java-432e</link>
      <guid>https://dev.to/bingchandler671/how-to-check-if-a-character-is-a-number-in-java-432e</guid>
      <description>&lt;p&gt;Hi, I am new to this world of programming in java language. You might feel to check if a character is a number in java? I mean what is the best way to do it?&lt;/p&gt;

&lt;h1&gt;
  
  
  Solution:
&lt;/h1&gt;

&lt;p&gt;I'm not sure if this is the best option or not, But this seems pretty simple to me. We can check whether the given character is a number or not by using the isDigit() method of Character class. This method returns true if the passed character is really a digit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Please check out the example below:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;public class CharacterCheck {
   public static void main(String[] args) {
      String s = "ABC123";
      for(int Count=0; Count &amp;lt; s.length(); Count++) {
         Boolean ReturnValue = Character.isDigit(s.charAt(Count));
         if(ReturnValue) {
            System.out.println("'"+ s.charAt(Count)+"' = Num");
         }
         else {
            System.out.println("'"+ s.charAt(Count)+"' = NAN");
         }
      }
   }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Output
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;'A' = NAN
'B' = NAN
'C' = NAN
'1' = Num
'2' = Num
'3' = Num
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Also there is alternatine method, &lt;a href="https://www.kodlogs.com/blog/2/how-to-check-if-a-character-is-a-number-in-java"&gt;read alternative&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>programming</category>
    </item>
    <item>
      <title>What Should i do to start a new Angular Application ?</title>
      <dc:creator>bingchandler671</dc:creator>
      <pubDate>Thu, 26 Nov 2020 17:28:22 +0000</pubDate>
      <link>https://dev.to/bingchandler671/what-should-i-do-to-start-a-new-angular-application-1595</link>
      <guid>https://dev.to/bingchandler671/what-should-i-do-to-start-a-new-angular-application-1595</guid>
      <description>&lt;p&gt;If you want to create a new Angular application locally you should have the following software  installed on your machine.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Visual Studio Code&lt;/strong&gt;  &lt;a href="https://code.visualstudio.com/download"&gt;Installation&lt;/a&gt; 
VSCode is a open source code editor developed by Microsoft for Windows, Linux and macOS. It includes the following features 
debugging, 
embedded Git control and GitHub, 
syntax highlighting, 
intelligent code completion, 
snippets, and code refactoring.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Node.js&lt;/strong&gt; &lt;a href="https://nodejs.org/en/download/"&gt;Installation&lt;/a&gt;
Node.js is an open-source code, platform independent that run JavaScript code outside of a browser.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NPM&lt;/strong&gt; &lt;a href="https://cli.angular.io/"&gt;Installation&lt;/a&gt;
Angular, the Angular CLI, and Angular applications depend on &lt;a href="https://docs.npmjs.com/getting-started/what-is-npm"&gt;npm packages&lt;/a&gt; for many features and functions. To download and install npm packages, you need an npm package manager. This guide uses the &lt;a href="https://docs.npmjs.com/cli/install"&gt;npm client&lt;/a&gt; command line interface, which is installed with Node.js by default. To check that you have the npm client installed, run npm -v in a terminal window.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So these are the prerequisites tools which you should have installed in your machine&lt;/p&gt;

&lt;p&gt;as for as you skills to start angular application you should be familiar with the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HTML&lt;/li&gt;
&lt;li&gt;CSS/LCSS/SASS&lt;/li&gt;
&lt;li&gt;TYPESCRIPT/JAVASCRIPT&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now you have all done so the next thing is to go for creating angular application. creating angular application is very simple job you just run a command and an application will be created. to create application you will go to the directory where you want to create with cmd ( command line ) and run the command given &lt;a href="https://www.kodlogs.com/blog/2111/what-should-i-do-to-start-a-new-angular-application"&gt;below&lt;/a&gt;&lt;/p&gt;

</description>
      <category>angular</category>
      <category>javascript</category>
    </item>
    <item>
      <title>How to fetch data from the database using AngularJs in php?</title>
      <dc:creator>bingchandler671</dc:creator>
      <pubDate>Thu, 26 Nov 2020 16:57:12 +0000</pubDate>
      <link>https://dev.to/bingchandler671/how-to-fetch-data-from-the-database-using-angularjs-in-php-4f71</link>
      <guid>https://dev.to/bingchandler671/how-to-fetch-data-from-the-database-using-angularjs-in-php-4f71</guid>
      <description>&lt;h1&gt;
  
  
  AngularJs code to get MYSQL data:
&lt;/h1&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;script&amp;gt;

var app = angular.module('myApp', []);

app.controller('usersCtrl', function($scope, $http) {

  $http.get("https://freewebmentor.com/api/users_mysql.php")

  .then(function (response) {$scope.names = response.data.records;});

});

&amp;lt;/script&amp;gt;

//UserCtrl is used to display all the user data on your web page.

div ng-app="myApp" ng-controller="usersCtrl"&amp;gt;

&amp;lt;table&amp;gt;

  &amp;lt;tr ng-repeat="result in names"&amp;gt;

    &amp;lt;td&amp;gt;{{ result.username }}&amp;lt;/td&amp;gt;

    &amp;lt;td&amp;gt;{{ result.email }}&amp;lt;/td&amp;gt;

  &amp;lt;/tr&amp;gt;

&amp;lt;/table&amp;gt;

&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://www.kodlogs.com/blog/293/how-to-fetch-data-from-the-database-using-angularjs-in-php"&gt;Read more&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  HTML Form:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;

&amp;lt;html &amp;gt;

&amp;lt;style&amp;gt;

table, th, td {

  border: 1px solid grey;

  border-collapse: collapse;

  padding: 5px;

}

table tr:nth-child(odd) {

  background-color: #f1f1f1;

}

table tr:nth-child(even) {

  background-color: #ffffff;

}

&amp;lt;/style&amp;gt;

&amp;lt;script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"&amp;gt;&amp;lt;/script&amp;gt;

&amp;lt;body&amp;gt;
&amp;lt;div ng-app="myApp" ng-controller="usersCtrl"&amp;gt;
&amp;lt;table&amp;gt; 

  &amp;lt;tr ng-repeat="x in results"&amp;gt;

    &amp;lt;td&amp;gt;{{ x.username }}&amp;lt;/td&amp;gt;

    &amp;lt;td&amp;gt;{{ x.email }}&amp;lt;/td&amp;gt;

  &amp;lt;/tr&amp;gt;

&amp;lt;/table&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;script&amp;gt;

var app = angular.module('myApp', []);

app.controller('usersCtrl', function($scope, $http) {

  $http.get("https://freewebmentor.com/api/users_mysql.php")  

  .then(function (response) {$scope.results = response.data;});

});

&amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>angular</category>
      <category>javascript</category>
      <category>php</category>
    </item>
  </channel>
</rss>
