A Java program which accepts grades and prints grade distribution












1












$begingroup$


I'm doing the MOOC Java course, this is the problem:



This is a link to the problem in detail if you'd prefer that, CTRL+F "distribution"




The input of the program is a set of exam scores of a course. Each score is an integer. When -1 is entered, the program stops asking for further input.



After the scores have been read, the program prints the grade distribution and acceptance percentage of the course.



Grade distribution is formed as follows:




  • Each exam score is mapped to a grade using the same formula as in exercise 18. If the score is not within the range 0-60 it is not taken into account.


  • The number of grades are printed as stars, e.g. if there are 2 scores that correspond to grade 5, the line 5: ** is printed. If there are no scores that correspond to a particular grade, the printed line is 4:



All the grades besides zeros are accepted, so in the above 7 out of 8 participants were accepted. Acceptance percentage is calculated with the formula 100*accepted/allScores.




The formula in exercise 18 is (Run the snippet below, I don't think SE lets you format a table directly):






<table >
<tr>
<th>Points</th>
<th>Grade</th>

</tr>
<tr>
<td>0-29</td>
<td>Failed</td>

</tr>
<tr>
<td>30-34</td>
<td>1</td>
</tr>
<tr>
<td>35-39</td>
<td>2</td>
</tr>
<tr>
<td>40-44</td>
<td>3</td>
</tr>
<tr>
<td>45-49</td>
<td>4</td>
</tr>
<tr>
<td>50-60</td>
<td>5</td>
</tr>
</table>





I wrote code that seems to work fine based on my tests, no compile errors, no run-time errors (except for cases where you enter a string instead of a number or a ridiculously large number).



I tested it using input from the table above, i.e I entered the numbers (0, 29, 30, 34, 35, 39, 40, 44, 45, 49, 50, 60), and there were two stars printed in each grade range, as expected. I also tested it with numbers inbetween the ranges, and numbers outside of [0, 60]. I found no logical errors.



I found the names I used too repetitive, GradeDistribution class, 3 arrays called gradeRanges, gradeDistributionList, gradeList.



Other problems: The logic of calculating gradeDistribution seems too nested, should I have used switch-case? Should I have used static methods instead of a class? Should I have combined the methods calculateGradeDistribution and printGradeDistribution into one? Am I worrying too much about little things?



This is main:



import java.util.ArrayList;
import java.util.Scanner;

public class Main {
public static void main(String args) {
Scanner reader = new Scanner(System.in);
ArrayList<Integer> grades = new ArrayList<Integer>();
int number = 0;
System.out.println("Type exam scores, -1 to end");
do{
number = Integer.parseInt(reader.nextLine());
if(number != -1){
grades.add(number);
}
}while(number != -1);

GradeDistribution syrianGradeDistribution = new GradeDistribution();
syrianGradeDistribution.calculateGradeDistribution(grades);
syrianGradeDistribution.printGradeDistribution();
System.out.println(syrianGradeDistribution.acceptancePercentage());
}
}


This is the GradeDistribution class:



import java.util.ArrayList;
import java.util.Collections;

public class GradeDistribution {
private ArrayList<Integer> gradeRanges = new ArrayList<>();
private ArrayList<Integer> gradeDistributionList = new ArrayList<>();

public GradeDistribution(){
Collections.addAll(gradeRanges, 0, 30, 35, 40, 45, 50, 61);
Collections.addAll(gradeDistributionList, 0, 0, 0, 0, 0, 0);
}

public void calculateGradeDistribution(ArrayList<Integer> gradeList){
for(int grade: gradeList){
if(grade < 0 || grade > 60){ //invalid grades
continue;
}
for(int i = 0; i < gradeRanges.size() -1 ; i++){
if(grade >= gradeRanges.get(i) && grade < gradeRanges.get(i + 1)){
gradeDistributionList.set(i, gradeDistributionList.get(i)+ 1);
}
}
}
}

public void printGradeDistribution(){
for(int i = 0; i < gradeDistributionList.size(); i++){
System.out.print(i + ": ");
for(int j = 0; j < gradeDistributionList.get(i); j++){
System.out.print("*");
}
System.out.println();
}
}

public double acceptancePercentage(){
int allScores = 0;
for(int number: gradeDistributionList){
allScores += number;
}
int acceptedScores = allScores - gradeDistributionList.get(0);
double acceptancePercentage = 100.0 * acceptedScores / allScores;
return acceptancePercentage;
}
}


The code above compiles without any errors on Windows 10, Java 11.0.2



This is a very simple program, but yet, I still have many questions about the choices I made, how can I become confident in my choices and know what's acceptable and what's not?










share|improve this question







New contributor




Ammir Barakat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$

















    1












    $begingroup$


    I'm doing the MOOC Java course, this is the problem:



    This is a link to the problem in detail if you'd prefer that, CTRL+F "distribution"




    The input of the program is a set of exam scores of a course. Each score is an integer. When -1 is entered, the program stops asking for further input.



    After the scores have been read, the program prints the grade distribution and acceptance percentage of the course.



    Grade distribution is formed as follows:




    • Each exam score is mapped to a grade using the same formula as in exercise 18. If the score is not within the range 0-60 it is not taken into account.


    • The number of grades are printed as stars, e.g. if there are 2 scores that correspond to grade 5, the line 5: ** is printed. If there are no scores that correspond to a particular grade, the printed line is 4:



    All the grades besides zeros are accepted, so in the above 7 out of 8 participants were accepted. Acceptance percentage is calculated with the formula 100*accepted/allScores.




    The formula in exercise 18 is (Run the snippet below, I don't think SE lets you format a table directly):






    <table >
    <tr>
    <th>Points</th>
    <th>Grade</th>

    </tr>
    <tr>
    <td>0-29</td>
    <td>Failed</td>

    </tr>
    <tr>
    <td>30-34</td>
    <td>1</td>
    </tr>
    <tr>
    <td>35-39</td>
    <td>2</td>
    </tr>
    <tr>
    <td>40-44</td>
    <td>3</td>
    </tr>
    <tr>
    <td>45-49</td>
    <td>4</td>
    </tr>
    <tr>
    <td>50-60</td>
    <td>5</td>
    </tr>
    </table>





    I wrote code that seems to work fine based on my tests, no compile errors, no run-time errors (except for cases where you enter a string instead of a number or a ridiculously large number).



    I tested it using input from the table above, i.e I entered the numbers (0, 29, 30, 34, 35, 39, 40, 44, 45, 49, 50, 60), and there were two stars printed in each grade range, as expected. I also tested it with numbers inbetween the ranges, and numbers outside of [0, 60]. I found no logical errors.



    I found the names I used too repetitive, GradeDistribution class, 3 arrays called gradeRanges, gradeDistributionList, gradeList.



    Other problems: The logic of calculating gradeDistribution seems too nested, should I have used switch-case? Should I have used static methods instead of a class? Should I have combined the methods calculateGradeDistribution and printGradeDistribution into one? Am I worrying too much about little things?



    This is main:



    import java.util.ArrayList;
    import java.util.Scanner;

    public class Main {
    public static void main(String args) {
    Scanner reader = new Scanner(System.in);
    ArrayList<Integer> grades = new ArrayList<Integer>();
    int number = 0;
    System.out.println("Type exam scores, -1 to end");
    do{
    number = Integer.parseInt(reader.nextLine());
    if(number != -1){
    grades.add(number);
    }
    }while(number != -1);

    GradeDistribution syrianGradeDistribution = new GradeDistribution();
    syrianGradeDistribution.calculateGradeDistribution(grades);
    syrianGradeDistribution.printGradeDistribution();
    System.out.println(syrianGradeDistribution.acceptancePercentage());
    }
    }


    This is the GradeDistribution class:



    import java.util.ArrayList;
    import java.util.Collections;

    public class GradeDistribution {
    private ArrayList<Integer> gradeRanges = new ArrayList<>();
    private ArrayList<Integer> gradeDistributionList = new ArrayList<>();

    public GradeDistribution(){
    Collections.addAll(gradeRanges, 0, 30, 35, 40, 45, 50, 61);
    Collections.addAll(gradeDistributionList, 0, 0, 0, 0, 0, 0);
    }

    public void calculateGradeDistribution(ArrayList<Integer> gradeList){
    for(int grade: gradeList){
    if(grade < 0 || grade > 60){ //invalid grades
    continue;
    }
    for(int i = 0; i < gradeRanges.size() -1 ; i++){
    if(grade >= gradeRanges.get(i) && grade < gradeRanges.get(i + 1)){
    gradeDistributionList.set(i, gradeDistributionList.get(i)+ 1);
    }
    }
    }
    }

    public void printGradeDistribution(){
    for(int i = 0; i < gradeDistributionList.size(); i++){
    System.out.print(i + ": ");
    for(int j = 0; j < gradeDistributionList.get(i); j++){
    System.out.print("*");
    }
    System.out.println();
    }
    }

    public double acceptancePercentage(){
    int allScores = 0;
    for(int number: gradeDistributionList){
    allScores += number;
    }
    int acceptedScores = allScores - gradeDistributionList.get(0);
    double acceptancePercentage = 100.0 * acceptedScores / allScores;
    return acceptancePercentage;
    }
    }


    The code above compiles without any errors on Windows 10, Java 11.0.2



    This is a very simple program, but yet, I still have many questions about the choices I made, how can I become confident in my choices and know what's acceptable and what's not?










    share|improve this question







    New contributor




    Ammir Barakat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.







    $endgroup$















      1












      1








      1





      $begingroup$


      I'm doing the MOOC Java course, this is the problem:



      This is a link to the problem in detail if you'd prefer that, CTRL+F "distribution"




      The input of the program is a set of exam scores of a course. Each score is an integer. When -1 is entered, the program stops asking for further input.



      After the scores have been read, the program prints the grade distribution and acceptance percentage of the course.



      Grade distribution is formed as follows:




      • Each exam score is mapped to a grade using the same formula as in exercise 18. If the score is not within the range 0-60 it is not taken into account.


      • The number of grades are printed as stars, e.g. if there are 2 scores that correspond to grade 5, the line 5: ** is printed. If there are no scores that correspond to a particular grade, the printed line is 4:



      All the grades besides zeros are accepted, so in the above 7 out of 8 participants were accepted. Acceptance percentage is calculated with the formula 100*accepted/allScores.




      The formula in exercise 18 is (Run the snippet below, I don't think SE lets you format a table directly):






      <table >
      <tr>
      <th>Points</th>
      <th>Grade</th>

      </tr>
      <tr>
      <td>0-29</td>
      <td>Failed</td>

      </tr>
      <tr>
      <td>30-34</td>
      <td>1</td>
      </tr>
      <tr>
      <td>35-39</td>
      <td>2</td>
      </tr>
      <tr>
      <td>40-44</td>
      <td>3</td>
      </tr>
      <tr>
      <td>45-49</td>
      <td>4</td>
      </tr>
      <tr>
      <td>50-60</td>
      <td>5</td>
      </tr>
      </table>





      I wrote code that seems to work fine based on my tests, no compile errors, no run-time errors (except for cases where you enter a string instead of a number or a ridiculously large number).



      I tested it using input from the table above, i.e I entered the numbers (0, 29, 30, 34, 35, 39, 40, 44, 45, 49, 50, 60), and there were two stars printed in each grade range, as expected. I also tested it with numbers inbetween the ranges, and numbers outside of [0, 60]. I found no logical errors.



      I found the names I used too repetitive, GradeDistribution class, 3 arrays called gradeRanges, gradeDistributionList, gradeList.



      Other problems: The logic of calculating gradeDistribution seems too nested, should I have used switch-case? Should I have used static methods instead of a class? Should I have combined the methods calculateGradeDistribution and printGradeDistribution into one? Am I worrying too much about little things?



      This is main:



      import java.util.ArrayList;
      import java.util.Scanner;

      public class Main {
      public static void main(String args) {
      Scanner reader = new Scanner(System.in);
      ArrayList<Integer> grades = new ArrayList<Integer>();
      int number = 0;
      System.out.println("Type exam scores, -1 to end");
      do{
      number = Integer.parseInt(reader.nextLine());
      if(number != -1){
      grades.add(number);
      }
      }while(number != -1);

      GradeDistribution syrianGradeDistribution = new GradeDistribution();
      syrianGradeDistribution.calculateGradeDistribution(grades);
      syrianGradeDistribution.printGradeDistribution();
      System.out.println(syrianGradeDistribution.acceptancePercentage());
      }
      }


      This is the GradeDistribution class:



      import java.util.ArrayList;
      import java.util.Collections;

      public class GradeDistribution {
      private ArrayList<Integer> gradeRanges = new ArrayList<>();
      private ArrayList<Integer> gradeDistributionList = new ArrayList<>();

      public GradeDistribution(){
      Collections.addAll(gradeRanges, 0, 30, 35, 40, 45, 50, 61);
      Collections.addAll(gradeDistributionList, 0, 0, 0, 0, 0, 0);
      }

      public void calculateGradeDistribution(ArrayList<Integer> gradeList){
      for(int grade: gradeList){
      if(grade < 0 || grade > 60){ //invalid grades
      continue;
      }
      for(int i = 0; i < gradeRanges.size() -1 ; i++){
      if(grade >= gradeRanges.get(i) && grade < gradeRanges.get(i + 1)){
      gradeDistributionList.set(i, gradeDistributionList.get(i)+ 1);
      }
      }
      }
      }

      public void printGradeDistribution(){
      for(int i = 0; i < gradeDistributionList.size(); i++){
      System.out.print(i + ": ");
      for(int j = 0; j < gradeDistributionList.get(i); j++){
      System.out.print("*");
      }
      System.out.println();
      }
      }

      public double acceptancePercentage(){
      int allScores = 0;
      for(int number: gradeDistributionList){
      allScores += number;
      }
      int acceptedScores = allScores - gradeDistributionList.get(0);
      double acceptancePercentage = 100.0 * acceptedScores / allScores;
      return acceptancePercentage;
      }
      }


      The code above compiles without any errors on Windows 10, Java 11.0.2



      This is a very simple program, but yet, I still have many questions about the choices I made, how can I become confident in my choices and know what's acceptable and what's not?










      share|improve this question







      New contributor




      Ammir Barakat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.







      $endgroup$




      I'm doing the MOOC Java course, this is the problem:



      This is a link to the problem in detail if you'd prefer that, CTRL+F "distribution"




      The input of the program is a set of exam scores of a course. Each score is an integer. When -1 is entered, the program stops asking for further input.



      After the scores have been read, the program prints the grade distribution and acceptance percentage of the course.



      Grade distribution is formed as follows:




      • Each exam score is mapped to a grade using the same formula as in exercise 18. If the score is not within the range 0-60 it is not taken into account.


      • The number of grades are printed as stars, e.g. if there are 2 scores that correspond to grade 5, the line 5: ** is printed. If there are no scores that correspond to a particular grade, the printed line is 4:



      All the grades besides zeros are accepted, so in the above 7 out of 8 participants were accepted. Acceptance percentage is calculated with the formula 100*accepted/allScores.




      The formula in exercise 18 is (Run the snippet below, I don't think SE lets you format a table directly):






      <table >
      <tr>
      <th>Points</th>
      <th>Grade</th>

      </tr>
      <tr>
      <td>0-29</td>
      <td>Failed</td>

      </tr>
      <tr>
      <td>30-34</td>
      <td>1</td>
      </tr>
      <tr>
      <td>35-39</td>
      <td>2</td>
      </tr>
      <tr>
      <td>40-44</td>
      <td>3</td>
      </tr>
      <tr>
      <td>45-49</td>
      <td>4</td>
      </tr>
      <tr>
      <td>50-60</td>
      <td>5</td>
      </tr>
      </table>





      I wrote code that seems to work fine based on my tests, no compile errors, no run-time errors (except for cases where you enter a string instead of a number or a ridiculously large number).



      I tested it using input from the table above, i.e I entered the numbers (0, 29, 30, 34, 35, 39, 40, 44, 45, 49, 50, 60), and there were two stars printed in each grade range, as expected. I also tested it with numbers inbetween the ranges, and numbers outside of [0, 60]. I found no logical errors.



      I found the names I used too repetitive, GradeDistribution class, 3 arrays called gradeRanges, gradeDistributionList, gradeList.



      Other problems: The logic of calculating gradeDistribution seems too nested, should I have used switch-case? Should I have used static methods instead of a class? Should I have combined the methods calculateGradeDistribution and printGradeDistribution into one? Am I worrying too much about little things?



      This is main:



      import java.util.ArrayList;
      import java.util.Scanner;

      public class Main {
      public static void main(String args) {
      Scanner reader = new Scanner(System.in);
      ArrayList<Integer> grades = new ArrayList<Integer>();
      int number = 0;
      System.out.println("Type exam scores, -1 to end");
      do{
      number = Integer.parseInt(reader.nextLine());
      if(number != -1){
      grades.add(number);
      }
      }while(number != -1);

      GradeDistribution syrianGradeDistribution = new GradeDistribution();
      syrianGradeDistribution.calculateGradeDistribution(grades);
      syrianGradeDistribution.printGradeDistribution();
      System.out.println(syrianGradeDistribution.acceptancePercentage());
      }
      }


      This is the GradeDistribution class:



      import java.util.ArrayList;
      import java.util.Collections;

      public class GradeDistribution {
      private ArrayList<Integer> gradeRanges = new ArrayList<>();
      private ArrayList<Integer> gradeDistributionList = new ArrayList<>();

      public GradeDistribution(){
      Collections.addAll(gradeRanges, 0, 30, 35, 40, 45, 50, 61);
      Collections.addAll(gradeDistributionList, 0, 0, 0, 0, 0, 0);
      }

      public void calculateGradeDistribution(ArrayList<Integer> gradeList){
      for(int grade: gradeList){
      if(grade < 0 || grade > 60){ //invalid grades
      continue;
      }
      for(int i = 0; i < gradeRanges.size() -1 ; i++){
      if(grade >= gradeRanges.get(i) && grade < gradeRanges.get(i + 1)){
      gradeDistributionList.set(i, gradeDistributionList.get(i)+ 1);
      }
      }
      }
      }

      public void printGradeDistribution(){
      for(int i = 0; i < gradeDistributionList.size(); i++){
      System.out.print(i + ": ");
      for(int j = 0; j < gradeDistributionList.get(i); j++){
      System.out.print("*");
      }
      System.out.println();
      }
      }

      public double acceptancePercentage(){
      int allScores = 0;
      for(int number: gradeDistributionList){
      allScores += number;
      }
      int acceptedScores = allScores - gradeDistributionList.get(0);
      double acceptancePercentage = 100.0 * acceptedScores / allScores;
      return acceptancePercentage;
      }
      }


      The code above compiles without any errors on Windows 10, Java 11.0.2



      This is a very simple program, but yet, I still have many questions about the choices I made, how can I become confident in my choices and know what's acceptable and what's not?






      <table >
      <tr>
      <th>Points</th>
      <th>Grade</th>

      </tr>
      <tr>
      <td>0-29</td>
      <td>Failed</td>

      </tr>
      <tr>
      <td>30-34</td>
      <td>1</td>
      </tr>
      <tr>
      <td>35-39</td>
      <td>2</td>
      </tr>
      <tr>
      <td>40-44</td>
      <td>3</td>
      </tr>
      <tr>
      <td>45-49</td>
      <td>4</td>
      </tr>
      <tr>
      <td>50-60</td>
      <td>5</td>
      </tr>
      </table>





      <table >
      <tr>
      <th>Points</th>
      <th>Grade</th>

      </tr>
      <tr>
      <td>0-29</td>
      <td>Failed</td>

      </tr>
      <tr>
      <td>30-34</td>
      <td>1</td>
      </tr>
      <tr>
      <td>35-39</td>
      <td>2</td>
      </tr>
      <tr>
      <td>40-44</td>
      <td>3</td>
      </tr>
      <tr>
      <td>45-49</td>
      <td>4</td>
      </tr>
      <tr>
      <td>50-60</td>
      <td>5</td>
      </tr>
      </table>






      java






      share|improve this question







      New contributor




      Ammir Barakat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Ammir Barakat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Ammir Barakat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 2 hours ago









      Ammir BarakatAmmir Barakat

      61




      61




      New contributor




      Ammir Barakat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Ammir Barakat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Ammir Barakat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes











          Your Answer





          StackExchange.ifUsing("editor", function () {
          return StackExchange.using("mathjaxEditing", function () {
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
          });
          });
          }, "mathjax-editing");

          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "196"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          Ammir Barakat is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215158%2fa-java-program-which-accepts-grades-and-prints-grade-distribution%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Ammir Barakat is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          Ammir Barakat is a new contributor. Be nice, and check out our Code of Conduct.













          Ammir Barakat is a new contributor. Be nice, and check out our Code of Conduct.












          Ammir Barakat is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Code Review Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215158%2fa-java-program-which-accepts-grades-and-prints-grade-distribution%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

          is 'sed' thread safe

          How to make a Squid Proxy server?