L
L
Lev Levenets2018-07-29 22:19:49
Programming
Lev Levenets, 2018-07-29 22:19:49

Who is a bydlokoder?

What do you need to know / be able to not be a bydocoder?

Answer the question

In order to leave comments, you need to log in

5 answer(s)
A
Artem Spiridonov, 2018-07-29
@levenetslev

I, like many colleagues, have repeatedly noticed that successful colleagues, as a rule, have a good command of the basics. There are such disciplines as "Fundamentals of Programming", DBMS, a bunch of fundamental articles on the wiki. There are books by Fowler and Clean Code. In any PL there are data types, their casting, cases, applicability.
For some reason, those who are called "bydlokoders" neglect all this.

S
Satangelus, 2018-07-30
@Satangelus

The article on lurkmore answers this question very well, read here
. I will not quote it here and insert quotes from it. Since I am very afraid of Article 282.

X
xmoonlight, 2018-07-29
@xmoonlight

Someone who has learned two or three functions and the installation of a CMS and a couple of plugins for it.
And the creation of something more complex is already being assessed as a "cosmic task".
For example, creating a primitive personal account with authorization.
To avoid them, you need to learn and practice on your own, accept criticism from colleagues and draw conclusions.
Javascript: here
PHP: here

J
Johnny Smith, 2018-07-30
@Olek1

What do you need to know to not be a bydocoder?

0. Make human understandable code.
1. The one who has English level A - A1 Survival Level
2. The one who knows how to make Сopypast from StackOverflow

D
Dmitry Bashinsky, 2018-07-30
@BashkaMen

I'll give you a couple of code examples

StringBuilder Phone = new StringBuilder();
               Phone.Append(ClientMobileNearest + ',');
               Phone.Append(ClientMobileCorrect + ',');
               Phone.Append(ClientHomeCorrect + ',');
               Phone.Append(ContactPersonMobileCorrect + ',');
               Phone.Append(OtherMobileNearest + ',');
               Phone.Append(OtherMobileCorrect + ',');
               Phone.Append(ClientHomeNearest + ',');
               Phone.Append(ClientMobileCorrectSecond);
               if(Phone.ToString()==",,,,,,,")
               {
                   return null;
               }

private static Random _random = new Random(); 
  
  public static bool IsMnogo(this object value) {
    try {
      var n = double.Parse(value.ToString());
      return n > 9999999999;
    } catch {
      return true;
    }
  }
  
  public static bool IsDavno(this DateTime value) {
    return value < new DateTime(1900 + _random.Next(10, 90), 04, 17);
  }

string IsChtoto()
{
return "true";
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question