Six months on the job confused, give you a beacon

Great God, the front end of six months of work, the school is very confused, do not know how to always feel self-study, reading absorption ability, can give people a little confused your valuable comments?

A few days ago, a small partner star micro letter I said above paragraph.

First of all it, to correct two points, I am not a big God, I'm really not, at most, a big brother (leather look); you do not have any comments on my stars Oh, to have it, just a little suggestion for reference purposes only Ha .

Secondly, to be honest, six months of work, confused a little early ah. As far as I know, the young newly recruited like full swing to dry, just like the exchanges, like lovers, put it yet. Could it be that the work is not love?

01, to open a drug

For front-end, the Nuggets are a great learning site, which Daniel will push a variety of learning routes every day. I deliberately spent a morning time to find a few.

1) front-end development in 79 knowledge can not be ignored summary , this article up to now received a total of 1494 praise.

2) decrypts the beginning, middle and senior programmer evolutionary path of the (front-end) , this article up to now received a total of 1406 praise.

3) a qualified (excellent) front-end should read these articles , this article up to now received a total of 4854 praise.

4) 100 front-end Q: Can you get 80% of your resume to me , this article up to now received a total of 6006 praise.

5) 8 years ago precipitation-side development of knowledge , this article up to now received a total of 1801 praise.

6) a list of front-end [qualified] self-test engineers , this article up to now received a total of 4144 praise.

There are many, I will not list them. This all-inclusive article 6, inside the front you learn enough knowledge for some time, and then biting off more than it can chew up.

02, some more remedies

In my opinion, the most effective way is self-copy or imitate, do not look down ah.

When I was entering the workplace, the ability to really not much, is the only show for copy. Lead in organizing the mission, will not do, how to do? Programming ah-oriented search engine to find solutions began to move bricks.

Free time to complete the task, how to effectively improve yourself? Go on a variety of programming website provides examples of other people copied. I was shining early demo network programming entry one by one knock, knock a chat room (front-end Flex, the back-end Java, Socket Communications) feel very excited. Unfortunately, the passage of time, the site does not exist anymore.

Do not laugh at my kind of innovative approaches, people are not born Ah imitate you grow up? From primary school to speak, according to adult mouth repeat the line, all right pronunciation is not accurate, over time, slowly enough.

The same goes for learning, especially for newcomers for the workplace, do not be afraid shame, to imitate single-minded, according to demo copy.

And I was a newcomer who work there are several, in which a relationship called Huihui pretty good. But he could not understand that I did tech approach, often ridicule I said, "Ah you copy shining so interesting?"

For him to hang some face, my mouth did not return to him. I found myself silently scolded him: "Do not special What attracted me, all right, to the point that you 'dissatisfaction with a bottle and a half bottle sloshing' level, how can qualified to ridicule me?"

In short, not ridicule his troubles, still go its own way. Do you think it is easy to copy it? Tell the conscience, even if it is copied, and often copied the article no effect other people, do not believe me give an example to show you.

Front-end code have not had to write, for example backend code on it. I had the time to learn Java fail-fast mechanism, see an article Hollis great God, which has a piece of code like this:

List<String> userNames = new ArrayList<String>() {{
    add("Hollis");
    add("hollis");
    add("HollisChuang");
    add("H");
}};

for (String userName : userNames) {
    if (userName.equals("Hollis")) {
        userNames.remove(userName);
    }
}

System.out.println(userNames);

I then copying my local, a little done some changes:

List<String> list = new ArrayList<>();
list.add("沉默王二");
list.add("一个文章真特么有趣的程序员");

for (String str : list) {
    if ("沉默王二".equals(str)) {
        list.remove(str);
    }
}

System.out.println(list);

Two pieces of code is not very different now! However, operating results are completely different, the first paragraph of the code will throw an exception.

Exception in thread "main" java.util.ConcurrentModificationException
    at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:901)
    at java.util.ArrayList$Itr.next(ArrayList.java:851)
    at com.cmower.java_demo.str.Cmower7.main(Cmower7.java:16)

The second code will not. I was just wondering, do Hollis Great God of the article was wrong? I was ready to leave a message at the bottom of his article to remind him about it, I look at the results after the source code to understand.

You see, such a simple copy of the code can be a problem, but also forced me to study a lot ArrayList source, really learned a lot of knowledge before never understood the point. Know how self-study it!

03, some more secret

Conscience, on the market a lot of technical books are particularly dull, look at these books of the time, really not as good as playing a Tetris (wang zhe nong yao). Title Jiaosha I do not convenient to disclose, and to the author or translator save face.

Is it that no books to read, and that it really give up reading, is not popular poem called the Song dynasty saying: "A book holds a house of gold, the book a beautiful woman," Well?

Of course the book to read, but reading to pay attention to the method point, or really poorly absorbed ah.

1) watch video

Knowledge of methods to learn there are many, reading is just one of them. I remember when I first started to learn programming, reading can not see in, look for a run to God.

At that time the school library has a variety of book "21 days learn to XXX", it seems really painful, it feels like eating in a moldy stone. At that time no seniors listed some of the quality of books, columns or I do not know.

But then, when Mashi Bing Li Xinghua teacher and the teacher's curriculum is very popular, the big guys are watching this, I followed to see. I especially love the teacher Li Xinghua, lectures speaks fast, easy transit of the Three Kingdoms than listening to all interesting. Li Xinghua teacher has a special feature, even with that type of smart ABC, however, called a typing fast, smooth, as my sincere admiration of the audience.

In order to pay tribute to the idol, I even uninstalled favorite Google Pinyin, turned into a smart ABC, abruptly stays for two months, and finally ...... did not hold out, in exchange for the Google Pinyin.

Watch the video to learn what good is it, that attention can be highly concentrated, to describe it with a professional idiom - attentively.

Where is that going to find these high-quality, high-definition instructional videos keeping with the times it?

Good friend "Jiangnan one o'clock Rain" gave me a priceless ah, this all-inclusive set of video (large front-end has "HTML5 new features", "AngularJS video tutorials", "NodeJS video tutorials", "React video tutorial" , "Vue project combat video", "JavaScript140 set"), after having been categorized well, you may download the index (number of public attention, reply "free video" to see index).

2) the correct reading method

Last year, when I read such a book, the name of the series is called "masters take you to learn the language," which he mentions several reading method, I find it very useful and recommend again to everyone.

①, extensive reading

Extensive not refer to generalities read, but to the Bo public long home, explore new ideas, dabble in all aspects of the book. For example, a front-end programmer best have read "soft skills", "Code Complete", "Code of the Road clean" type of book.

②, intensive reading

Some knowledge is to repeatedly refined, repeated studies of view to understand thoroughly understand the heart, in order to learn from the best. For example, some books algorithm design models. I've read "Fun learning algorithm", "Zen Design Patterns."

③, skip

This is a leap of reading methods. You can put the book aside irrelevant content, to seize the bones context of the book to read. Sometimes encounter ruminating content hard to understand, you can jump in the past, such as reading the back and then read back, maybe on the front and back through. If you skip the whole book, it must first explain the book shelf.

④, read-write

As the saying goes, "a good memory as bad written." When reading out the excerpt important knowledge can then writing experience, so not only can accumulate large amounts of material, but also effectively improve writing skills, more importantly, can increase the absorption capacity of reading.

Regular readers may be more clear, I am writing inspiration comes from reading a lot of articles have. When I was reading, in fact, looking for a writing theme, or find a topic thesis writing, and prepare the material, after the end of the article finished, he found himself all the knowledge points are mastered.

04, the last silver bullet

I'll bet you a dollar, all people will experience confused period. What is in the confusion of people who most need it?

By no means vocal criticism and ridicule, for example, so you do not make progress gnaw it? You still have time to actually confused, really great.

Confused people need a beacon, or need a mentor friend. I'm looking forward to be your friend.

These are the suggestions I gave a little star for reference purposes only Ha.


Thank you for reading, originality is not easy, like they readily point a praise, this will be my strongest writing power. If you think the article for your help, but also quite interesting to look at my micro-channel public number " silence the king, " Bese.

Guess you like

Origin www.cnblogs.com/qing-gee/p/11832646.html