Every projects that i made is actually started from problems that i faced when using something else.

Reply to this note

Please Login to reply.

Discussion

I am always wonder do coders code each letter by themselves?

Letters?

Every word, every letter & symbol

That entirely depends on the programming language except words.

Less so with AI auto complete. Now my code is shittier, bloated AND i have less understanding of it 😎🙌

Hence why i never use AI code entirely.

差不多都是要手敲的,IDE有一定的自动补全功能,比如某个变量名(可以简单理解为几个单词的合并缩写),敲前面几个字母,然后按tab键就行,如果不用IDE,用文本编辑器那是要每个字母都得手敲的(Ctrl-C/V的部分除外)。

现在有AI助手了,很多代码已经可以大段的自动补全了,但大部分还是要手敲的。

note that it's better to use AI feature ONLY FOR REFERENCES as long you know what the codes are doing.

yes, AI only can help programers when they know what AI is doing for them😇

那邏輯能力得很強吧?怎麼知道先寫什麼後寫什麼。還是跟蓋房一樣,有個基本順序,先有個平面圖,再框架,然後裝修😂?

复杂的项目要有详细设计文档的

You haven't feel what's on programmer's head i see.

We have a plan, think of the code, then start coding. That's how it works.

However, Don't make an (graphic) designer the same as programmer. We do not "decorate" or "frame". We're more of getting stuff works.

If you are referring to how different a code was written on different languages, Like in Python:

```

while True:

print("Hello world")

```

In go:

```

package main

func main() {

for {

print("Hello world")

}

}

```

In js:

```

while (true) {

console.log("Hello world")

}

```

And In C:

```

#include

void main() {

while (true) {

printf("Hello world\n")

}

}

```

It's all depending on what language that the programmer use or prefer. There are language that is easier to learn (high level lang, but sometimes offer less control over computer), machine friendly (low level lang like C), and so on.

If you ask why are there so many different programming languages that has different syntax / writings when they all essentially do the same thing,

It's almost equal to why are there so many different kinds of motorized vehicles when they all essentially do the same thing

Some programming language was created due to some problem on some language, Legacy code on the language, Innovation, and so on.