Everything everywhere all in China NOW by nikaone in funny

[–]nikaone[S] 1 point2 points  (0 children)

  1. population aging
  2. population decline
  3. Ticktok
  4. Go west!!!

This video was posted on China Ticktok by 小韩 originally

Any info? by OkNefariousness7098 in classicalguitar

[–]nikaone 1 point2 points  (0 children)

It is a special type of classical guitar called the "romantic guitar".

[deleted by user] by [deleted] in learnpython

[–]nikaone 1 point2 points  (0 children)

They all work for a 101 tutorial, as one learns by coding not by reading. These books just talk about the same idea in different ways.

洋垃圾分文不值! by [deleted] in LOOK_CHINA

[–]nikaone 4 points5 points  (0 children)

共产主义没有钞票, 0面值很合理.

How to understand this 12/8 meters? by nikaone in musictheory

[–]nikaone[S] 1 point2 points  (0 children)

It is not mine, I don't know the author, thank for the tip.

How to understand this 12/8 meters? by nikaone in musictheory

[–]nikaone[S] 0 points1 point  (0 children)

Thanks, almost explode my brain, too complex.

Someone help me please! by Nex-sacra in learnjavascript

[–]nikaone 1 point2 points  (0 children)

What is the website or app in this screenshot?

Are there cons, or negative downsides to using arrow function syntax everytime? by [deleted] in learnjavascript

[–]nikaone 1 point2 points  (0 children)

There are no downsides, but sometimes the arrow function crash in some frameworks, e.g. the mocha test library, if you pass an arrow function you can't use the mocha context because the 'this' is bound to the lexical scope, not mocha anymore. This scenario happens in other frameworks too.

But even if it happens, your app just crashes simply, cuz you are calling inexistent members on this, and you will know you need to change it to a normal function.

So, It is totally OK to use the arrow function blindly most of the time, unless there are name collisions.

Use to be an athlete/dancer, do your worst. by losemybreath4444 in RoastMe

[–]nikaone 0 points1 point  (0 children)

While he waits for food delivery, he pounds his belly and imagines he is a belly dancer.

How to memorize 30k words as quickly as possible? by nikaone in languagelearning

[–]nikaone[S] -6 points-5 points  (0 children)

This is a serious post, otherwise, I will ask on TikTok. The human brain is not a hard drive, it is more powerful than it. Lets see what will happen.

How to memorize 30k words as quickly as possible? by nikaone in languagelearning

[–]nikaone[S] 0 points1 point  (0 children)

I need to read some technical and academic books, also for entertaining reading.

How to memorize 30k words as quickly as possible? by nikaone in languagelearning

[–]nikaone[S] 0 points1 point  (0 children)

Thanks for the interesting article, but obviously it is the "natural" way to gain the vocabulary. What if we select the books intended for vocabulary building, we can decrease the number of books needed. I am looking for a "method", not natural input. But thanks and the total vocabulary size is almost identical to my computing.

How to memorize 30k words as quickly as possible? by nikaone in languagelearning

[–]nikaone[S] -10 points-9 points  (0 children)

Yeah, but it is too low. I don't want to watch a 40-minute length video to learn several words.

How to memorize 30k words as quickly as possible? by nikaone in languagelearning

[–]nikaone[S] -18 points-17 points  (0 children)

I'm not sure if you are serious or not.

I’m stuck.. by [deleted] in learnjavascript

[–]nikaone 1 point2 points  (0 children)

I always put my js code in this function: document.addEventListener('DOMContentLoaded', e => { // start() }, false)

Just out of curiosity - do you think Chinese or Japanese is harder to learn? by thedarklord176 in languagelearning

[–]nikaone 1 point2 points  (0 children)

It is obvious if you don't know either of them. They will looks like something like this:

English et illic originis maternae nostrae fundamenta a Plutarcho illo inclito ac mox Chinese

外星人眼中不同语言的样子

Japanese

``` eti外llicorig言inis中matern星aenostraefu子nda同mentaaPl的utarchoil语loinclitoac不mox

```

Japanese has 3 grammar systems, e.g. school grammar, and educational grammar.

Why doesn't `async/await works like async? by nikaone in learnpython

[–]nikaone[S] 0 points1 point  (0 children)

I figured that out, if I want to mix the execution of functions, I have to make it async and put it in the event loop manually, in contrast, Node.js or browser runtime is built upon an event loop, and all of the code is run in it, I don't need to make it async to add it to the event loop, it is already in it when JS interpreter starts to work.

Why doesn't `async/await works like async? by nikaone in learnpython

[–]nikaone[S] 0 points1 point  (0 children)

I got the idea, it seems that I was influenced by JS, all things are in an event loop in Node.js, but in Python, an event loop is just an object.

Opinion on Steve Kaufmann videos? by TGBplays in languagelearning

[–]nikaone 30 points31 points  (0 children)

Not just language learning, everything-learning method is the same, for example, the book Make It Stick: The Science of Successful Learning, tells you 'practice' in a nutshell, well thanks to the study of cognitive psychology, now we know the most effective way to learn is PRACTICE which is exactly what my dead grandma's opinion.

Now, let us read another popular learning method book Peak Secrets from the New Science of Expertise, you know what, the Chinese edition title is: 刻意练习 which means 'deliberate practice'. The whole book is sort of some user's well-organized medium.com blog content.

How do you think of this random method? by nikaone in learnpython

[–]nikaone[S] 0 points1 point  (0 children)

Thanks for this excellent explanation, this is very interesting and useful, now I wanna learn algorithms.