e5

 0    63 Datenblatt    tomekmarczak1
mp3 downloaden Drucken spielen überprüfen
 
Frage Antworten
W tym podręczniku będziemy mówić o pisaniu „czystego” kodu.
Lernen beginnen
In this handbook we're going to talk about writing "clean" code.
Jest to temat, który trochę mnie dezorientował, gdy zaczynałem pracę jako programista i odkryłem, że ma on wiele niuansów i możliwych interpretacji.
Lernen beginnen
It's a topic that used to confuse me a bit when I was starting out as a programmer, and I find that it has many nuances and possible interpretations.
Zatem w tym artykule porozmawiamy o tym, co oznacza termin „czysty kod”, dlaczego jest on ważny i jak możemy ocenić, czy baza kodu jest czysta, czy nie.
Lernen beginnen
So in this article we'll talk about what the term "clean code" means, why it's important, how can we assess whether a codebase is clean or not.
Poznasz także najlepsze praktyki i konwencje, których możesz przestrzegać, aby Twój kod był czystszy.
Lernen beginnen
You'll also learn some best practices and conventions you can follow to make your code cleaner.
Czysty kod to termin używany do opisania kodu komputerowego, który jest łatwy do odczytania, zrozumienia i konserwacji.
Lernen beginnen
Clean code is a term used to describe computer code that is easy to read, understand, and maintain.
Czysty kod jest napisany w sposób prosty, zwięzły i wyrazisty.
Lernen beginnen
Clean code is written in a way that makes it simple, concise, and expressive.
Jest zgodny z zestawem konwencji, standardów i praktyk, które ułatwiają czytanie i przestrzeganie.
Lernen beginnen
It follows a set of conventions, standards, and practices that make it easy to read and follow.
Czysty kod jest wolny od złożoności, nadmiarowości i innych zapachów kodu oraz antywzorców, które mogą utrudniać konserwację, debugowanie i modyfikowanie.
Lernen beginnen
Clean code is free from complexity, redundancy, and other code smells and anti-patterns that can make it difficult to maintain, debug, and modify.
Nie mogę przecenić znaczenia czystego kodu.
Lernen beginnen
I can't overstate the importance of clean code.
Nie mogę przecenić znaczenia czystego kodu.
Lernen beginnen
I can't overstate the importance of clean code.
Gdy kod jest łatwy do odczytania i zrozumienia, ułatwia programistom pracę nad bazą kodu.
Lernen beginnen
When code is easy to read and understand, it makes it easier for developers to work on the codebase.
Może to prowadzić do zwiększenia produktywności i zmniejszenia liczby błędów.
Lernen beginnen
This can lead to increased productivity and reduced errors.
Półkula północna
Lernen beginnen
Northern Hemisphere
Półkula północna to połowa Ziemi położona na północ od równika.
Lernen beginnen
The Northern Hemisphere is the half of Earth that is north of the Equator.
równik
Lernen beginnen
equator
drapieżnik
Lernen beginnen
a predator
nadal mnie przewyższał we wszystkich meczach
Lernen beginnen
he continued to surpass me at all games
przewyższać
Lernen beginnen
surpass
obawa - oznacza martwienie się o coś
Lernen beginnen
concern - means worried about something
wspomnieć - odnieść się do (czegoś) krótko i bez wchodzenia w szczegóły.
Lernen beginnen
mention - refer to (something) briefly and without going into detail.
Nie wspomniałam jeszcze o tym Williamowi
Lernen beginnen
I haven't mentioned it to William yet
Ekstremalne zjawiska pogodowe nie pokazały, że rządy odpowiednio poradziły sobie z wyzwaniami.
Lernen beginnen
Extreme weather events didn't show that governments have dealt adequately with the challenges.
energia odnawialna
Lernen beginnen
renewable energy
spakuj swoje marzenia - gotowy i chętny do realizacji swoich aspiracji.
Lernen beginnen
pack your dreams - ready and willing to pursue your aspirations.
serce kompasu - ktoś, kto ma silną chęć podróżowania
Lernen beginnen
compass heart - someone who has a strong desire to travel
bilet do odkrycia - możliwość uczenia się i odkrywania nowych rzeczy
Lernen beginnen
ticket to discovery - opportunity to learn and explore new things
zaplanuj wspomnienia - aby stworzyć niezapomniane wrażenia
Lernen beginnen
map out memories - to create memorable experiences
skrzydła wolności - poczucie wyzwolenia i przygody
Lernen beginnen
wings of freedom - feeling of liberation and adventure
paszport do przygody - możliwość wyruszenia w ekscytujące podróże
Lernen beginnen
passport to adventure - opportunity to embark on exciting travels
zaokrętować
Lernen beginnen
embark
wyślemy Ci plan podróży
Lernen beginnen
we will send you an itinerary
plan podróży
Lernen beginnen
itinerary
kontynuować
Lernen beginnen
pursue
Rozpowszechniane
Lernen beginnen
distributed
rozproszone przesyłanie strumieniowe
Lernen beginnen
distributed streaming
chętny
Lernen beginnen
eager
wywołujący
Lernen beginnen
invoker
odbiorca
Lernen beginnen
reciever
Jestem pewien, że większość czytelników spotkała się z sytuacją, w której odwiedzasz swój kod zaledwie kilka miesięcy później i trudno ci zrozumieć, co zrobiłeś wcześniej.
Lernen beginnen
And I am sure most readers have faced the situation where you visit your code only a few months later and have a hard time understanding what you did before.
Jak tworzyć znaczące nazwy
Lernen beginnen
How to Create Meaningful Names
Nie używaj komentarzy do wyjaśnienia, dlaczego użyto zmiennej. Jeśli nazwa wymaga komentarza, zamiast pisać komentarz, poświęć trochę czasu na zmianę nazwy tej zmiennej.
Lernen beginnen
Do not use comments to explain why a variable is used. If a name requires a comment, then you should take your time to rename that variable instead of writing a comment.
Jeśli nazwa wymaga komentarza, to nie zdradza swojego zamysłu.
Lernen beginnen
If a name requires a comment, then the name does not reveal its intent.
odsłonić
Lernen beginnen
reveal
upłynęło
Lernen beginnen
elapsed
Są zbędne i należy je usunąć.
Lernen beginnen
They are redundant and should be removed.
zbędny
Lernen beginnen
redundant
Jeśli nie potrafisz wymówić jakiegoś imienia, nie możesz o nim rozmawiać tak, żeby nie zabrzmiało głupio.
Lernen beginnen
If you can't pronounce a name, you can't discuss it without sounding silly.
Upewnij się, że robią tylko jedną rzecz
Lernen beginnen
Make Sure They Just Do One Thing
Tylko oni powinni to zrobić.
Lernen beginnen
They should do it only.
Dobrym sposobem sprawdzenia jest próba wyodrębnienia innej funkcji o innej nazwie.
Lernen beginnen
One good way to check is to try to extract another function with a different name.
i przyzwyczajenie się do tego zajmie trochę czasu.
Lernen beginnen
and it will take some time to get used to.
Ale gdy już to opanujesz, Twój kod będzie wyglądał na znacznie dojrzalszy i na pewno będzie łatwiej go refaktoryzować, zrozumieć i przetestować.
Lernen beginnen
But once you get the hang of it, your code will look much more mature, and it will be more easily refactorable, understandable, and testable for sure.
Hermetyzuj warunki warunkowe w funkcjach
Lernen beginnen
Encapsulate Conditionals in Functions
Oto fragment kodu z mojego projektu szkolnego.
Lernen beginnen
Here is a piece of code from a school project of mine.
Obrzydliwe, prawda? Zgadzam się.
Lernen beginnen
Gross, right? I agree.
Funkcje powinny mieć dwa lub mniej argumentów, im mniej, tym lepiej.
Lernen beginnen
Functions should have two or fewer arguments, the fewer the better.
Argumenty flagowe w naturalny sposób zaprzeczają zasadzie pojedynczej odpowiedzialności.
Lernen beginnen
Flag arguments naturally contradict the principle of single responsibility.
Skutki uboczne to niezamierzone konsekwencje Twojego kodu.
Lernen beginnen
Side effects are unintended consequences of your code.
Mogą powodować nieprzyjemne błędy.
Lernen beginnen
They can result in some nasty bugs.
Powtarzanie kodu może być źródłem wszelkiego zła w oprogramowaniu.
Lernen beginnen
Code repetition may be the root of all evil in software.
Zduplikowany kod oznacza, że w przypadku zmiany logiki musisz zmienić elementy w wielu miejscach i jest to bardzo podatne na błędy.
Lernen beginnen
Duplicate code means you need to change things in multiple places when there is a change in logic and it is very error prone.
Wtedy, gdy zmienią się nazwy zmiennych lub nazw metod, staje się to nieistotne, ale nadal nikt ich nie usuwa.
Lernen beginnen
Then when variable names or method names change, it gets irrelevant but still nobody deletes it.
Czyste kodowanie nie jest umiejętnością, którą można nabyć z dnia na dzień.
Lernen beginnen
Clean coding is not a skill that can be acquired overnight.

Sie müssen eingeloggt sein, um einen Kommentar zu schreiben.