-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.xml
1415 lines (1011 loc) · 94 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Academic</title>
<link>/</link>
<atom:link href="/index.xml" rel="self" type="application/rss+xml" />
<description>Academic</description>
<generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><lastBuildDate>Sat, 01 Jun 2030 13:00:00 +0000</lastBuildDate>
<image>
<url>/media/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_3.png</url>
<title>Academic</title>
<link>/</link>
</image>
<item>
<title>Example Talk</title>
<link>/talk/example-talk/</link>
<pubDate>Sat, 01 Jun 2030 13:00:00 +0000</pubDate>
<guid>/talk/example-talk/</guid>
<description><div class="alert alert-note">
<div>
Click on the <strong>Slides</strong> button above to view the built-in slides feature.
</div>
</div>
<p>Slides can be added in a few ways:</p>
<ul>
<li><strong>Create</strong> slides using Wowchemy&rsquo;s <a href="https://wowchemy.com/docs/managing-content/#create-slides" target="_blank" rel="noopener"><em>Slides</em></a> feature and link using <code>slides</code> parameter in the front matter of the talk file</li>
<li><strong>Upload</strong> an existing slide deck to <code>static/</code> and link using <code>url_slides</code> parameter in the front matter of the talk file</li>
<li><strong>Embed</strong> your slides (e.g. Google Slides) or presentation video on this page using <a href="https://wowchemy.com/docs/writing-markdown-latex/" target="_blank" rel="noopener">shortcodes</a>.</li>
</ul>
<p>Further event details, including <a href="https://wowchemy.com/docs/writing-markdown-latex/" target="_blank" rel="noopener">page elements</a> such as image galleries, can be added to the body of this page.</p>
</description>
</item>
<item>
<title>May 23-29</title>
<link>/post/recent-week-2/</link>
<pubDate>Sat, 28 May 2022 17:28:13 +0300</pubDate>
<guid>/post/recent-week-2/</guid>
<description><h1 id="hello-again">Hello again.</h1>
<h2 id="i-am-starting-to-write-a-another-post-about-my-recent-week">I am starting to write a another post about my recent week.</h2>
<h3 id="personal-feelings">Personal Feelings</h3>
<p>I relaxed on this week, because of early doing my homework. So I spend time watching Education Videos and listening to some music and games, of course.</p>
<h3 id="technology-programming">Technology Programming</h3>
<p>We did class Vector and Matrix with overloaded operators and some functions and constructors. So in this week I am going to do System of linear equations. It&rsquo;s hard to write discriminant function, but i find out that we need to do recursion.</p>
</description>
</item>
<item>
<title>Scientific Programming Language</title>
<link>/post/scientific-programming-language/</link>
<pubDate>Sun, 22 May 2022 13:11:32 +0300</pubDate>
<guid>/post/scientific-programming-language/</guid>
<description><p>In computer programming, a scientific programming language can refer to two degrees of the same concept.</p>
<p>In a wide sense, a scientific programming language is a programming language that is used widely for computational science and computational mathematics. In this sense, C/C++ and Python[1] can be considered scientific programming languages.</p>
<p>In a stronger sense, a scientific programming language is one that is designed and optimized for the use of mathematical formula and matrices.[2] Such languages are characterized not only by the availability of libraries performing mathematical or scientific functions, but by the syntax of the language itself.[3] For example, neither C++ nor Python have built-in matrix types or functions for matrix arithmetic (addition, multiplication etc); instead, this functionality is made available through standard libraries. Scientific programming languages in the stronger sense include ALGOL, APL, Fortran, J, Julia, Maple, MATLAB and R.[4][5]</p>
<p>Scientific programming languages should not be confused with scientific language in general, which refers loosely to the higher standards in precision, correctness and concision expected from practitioners of the scientific method.</p>
<h2 id="examples">Examples</h2>
<h3 id="linear-algebra">Linear algebra</h3>
<p>Scientific programming languages provide facilities to work with linear algebra. For example, the following Julia program solves a system of linear equations:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-C++" data-lang="C++"><span class="line"><span class="cl"><span class="n">A</span> <span class="o">=</span> <span class="n">rand</span><span class="p">(</span><span class="mi">20</span><span class="p">,</span> <span class="mi">20</span><span class="p">)</span> <span class="err">#</span> <span class="n">A</span> <span class="n">is</span> <span class="n">a</span> <span class="mi">20</span><span class="n">x20</span> <span class="n">matrix</span>
</span></span><span class="line"><span class="cl"><span class="n">b</span> <span class="o">=</span> <span class="n">rand</span><span class="p">(</span><span class="mi">20</span><span class="p">)</span> <span class="err">#</span> <span class="n">b</span> <span class="n">is</span> <span class="n">a</span> <span class="mi">20</span><span class="o">-</span><span class="n">element</span> <span class="n">vector</span>
</span></span><span class="line"><span class="cl"><span class="n">x</span> <span class="o">=</span> <span class="n">A</span><span class="err">\</span><span class="n">b</span> <span class="err">#</span> <span class="n">x</span> <span class="n">is</span> <span class="n">the</span> <span class="n">solution</span> <span class="n">to</span> <span class="n">A</span><span class="o">*</span><span class="n">x</span> <span class="o">=</span>
</span></span></code></pre></div><p>Working with large vectors and matrices is a key feature of these languages, as linear algebra lays the foundation to mathematical optimization, which in turn enables major applications such as deep learning.</p>
<h3 id="mathematical-optimization">Mathematical optimization</h3>
<p>In a scientific programming language, we can compute function optima with a syntax close to mathematical language. For instance, the following Julia code finds the minimum of the polynomial P(x,y) = x^2 - 3xy + 5y^2 - 7y + 3</p>
<pre tabindex="0"><code>using Optim
P(x,y) = x^2 - 3x*y + 5y^2 - 7y + 3
z₀ = [ 0.0
0.0 ] # starting point for optimization algorithm
optimize(z -&gt; P(z...), z₀, Newton();
autodiff = :forward)
</code></pre><p>In this example, Newton&rsquo;s method for minimizing is used. Modern scientific programming languages will use automatic differentiation to compute the gradients and Hessians of the function given as input; cf. differentiable programming. Here, automatic forward differentiation has been chosen for that task. Older scientific programming languages such as the venerable Fortran would require the programmer to pass, next to the function to be optimized, a function that computes the gradient, and a function that computes the Hessian.</p>
<p>With more knowledge of the function to be minimized, more efficient algorithms can be used. For instance, convex optimization provides faster computations when the function is convex, quadratic programming provides faster computations when the function is at most quadratic in its variables, and linear programming when the function is at most linear.</p>
</description>
</item>
<item>
<title>May 16 to 22</title>
<link>/post/may-16-to-22/</link>
<pubDate>Sun, 22 May 2022 13:11:17 +0300</pubDate>
<guid>/post/may-16-to-22/</guid>
<description><h1 id="the-universe-is-full-of-questions-that-you-will-never-answer-yet-there-are-also-ones-that-only-you-can-answer-when-the-truth-is-revealed-what-will-you-do">The universe is full of questions that you will never answer. Yet&hellip; there are also ones that only you can answer. When the truth is revealed, what will you do?</h1>
<h2 id="okay-hello-again-i-added-quote-from-omori-game-to-not-to-do-so-common-so-lets-talk-about-personal-life">Okay, Hello again, I added quote from OMORI game, to not to do so common. So let&rsquo;s talk about Personal Life.</h2>
<h3 id="omori">OMORI</h3>
<p>It&rsquo;s a cool game with strong plot, music and quotes (in the header of post one of them). Plot is about boy, that has Post-Traumatic Amnesia. He after the key moment, hid yourself in world of dreams, where everyone is happy. but in the end he must find path to get out from that world and face the reality or became depression version of himself that lives in hopes and dreames world</p>
<h3 id="some-personal">Some personal</h3>
<p>There is no special moments that I want to talk about. It&rsquo;s so common: make labs, programms for Technology of Programms and write Reports about them. So it&rsquo;s like I don&rsquo;t have enough time for myself. Yeah, I guess so.</p>
<p>Conclusion: Previous week was terribly boring than another weeks. So my always companion is music.</p>
<p>Thanks for reading.</p>
</description>
</item>
<item>
<title>Operating Systems</title>
<link>/project/operating-systems/</link>
<pubDate>Sun, 22 May 2022 13:06:33 +0300</pubDate>
<guid>/project/operating-systems/</guid>
<description><h1 id="linux-project">Linux Project</h1>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="" srcset="
/project/operating-systems/linux_hu97493a239b62773cfb5bd55bf6691e76_123692_96807ce01ea501158a0e90a8f69fb2ae.webp 400w,
/project/operating-systems/linux_hu97493a239b62773cfb5bd55bf6691e76_123692_f0084fde23b942e3be7c419829f1fe8f.webp 760w,
/project/operating-systems/linux_hu97493a239b62773cfb5bd55bf6691e76_123692_1200x1200_fit_q75_h2_lanczos_2.webp 1200w"
src="/project/operating-systems/linux_hu97493a239b62773cfb5bd55bf6691e76_123692_96807ce01ea501158a0e90a8f69fb2ae.webp"
width="760"
height="760"
loading="lazy" data-zoomable /></div>
</div></figure>
</p>
<p>Some text for future references.</p>
</description>
</item>
<item>
<title>How to Write a Report: A Guide</title>
<link>/post/report-or-presentation/</link>
<pubDate>Mon, 16 May 2022 12:16:19 +0300</pubDate>
<guid>/post/report-or-presentation/</guid>
<description><p>A report is a nonfiction account that presents and/or summarizes the facts about a particular event, topic, or issue. The idea is that people who are unfamiliar with the subject can find everything they need to know from a good report.</p>
<p>Reports make it easy to catch someone up to speed on a subject, but actually writing a report is anything but easy. So to help you understand what to do, below we present a little report of our own, all about report writing.</p>
<h2 id="what-is-a-report">What is a report?</h2>
<p>In technical terms, the definition of a report is pretty vague: any account, spoken or written, of the matters concerning a particular topic. This could refer to anything from a courtroom testimony to a grade schooler’s book report.</p>
<p>Really, when people talk about “reports,” they’re usually referring to official documents outlining the facts of a topic, typically written by an expert on the subject or someone assigned to investigate it. There are different types of reports, explained in the next section, but they mostly fit this description.</p>
<p>What kind of information is shared in reports? Although all facts are welcome, reports, in particular, tend to feature these types of content:</p>
<ul>
<li>
<p>Details of an event or situation</p>
</li>
<li>
<p>The consequences or ongoing effect of an event or situation</p>
</li>
<li>
<p>Evaluation of statistical data or analytics</p>
</li>
<li>
<p>Interpretations from the information in the report</p>
</li>
<li>
<p>Predictions or recommendations based on the information in the report</p>
</li>
<li>
<p>How the information relates to other events or reports</p>
</li>
</ul>
<p>Reports are closely related to essay writing, although there are some clear distinctions. While both rely on facts, essays add the personal opinions and arguments of the authors. Reports typically stick only to the facts, although they may include some of the author’s interpretation of these facts, most likely in the conclusion.</p>
<p>Moreover, reports are heavily organized, commonly with tables of contents and copious headings and subheadings. This makes it easier for readers to scan reports for the information they’re looking for. Essays, on the other hand, are meant to be read start to finish, not browsed for specific insights.</p>
<h2 id="types-of-reports">Types of reports</h2>
<p>There are a few different types of reports, depending on the purpose and to whom you present your report. Here’s a quick list of the common types of reports:</p>
<ul>
<li>
<p>Academic report: Tests a student’s comprehension of the subject matter, such as book reports, reports on historical events, and biographies</p>
</li>
<li>
<p>Business reports: Identifies information useful in business strategy, such as marketing reports, internal memos, SWOT analysis, and feasibility reports</p>
</li>
<li>
<p>Scientific reports: Shares research findings, such as research papers and case studies, typically in science journals</p>
</li>
</ul>
<p>Reports can be further divided into categories based on how they are written. For example, a report could be formal or informal, short or long, and internal or external. In business, a vertical report shares information with people on different levels of the hierarchy (i.e., people who work above you and below you), while a lateral report is for people on the author’s same level, but in different departments.</p>
<p>There are as many types of reports as there are writing styles, but in this guide, we focus on academic reports, which tend to be formal and informational.</p>
<h2 id="what-is-the-structure-of-a-report">What is the structure of a report?</h2>
<p>The structure of a report depends on the type of report and the requirements of the assignment. While reports can use their own unique structure, most follow this basic template:</p>
<ul>
<li>
<p>Executive summary: Just like an abstract in an academic paper, an executive summary is a standalone section that summarizes the findings in your report so readers know what to expect. These are mostly for official reports and less so for school reports.</p>
</li>
<li>
<p>Introduction: Setting up the body of the report, your introduction explains the overall topic that you’re about to discuss, with your thesis statement and any need-to-know background information before you get into your own findings.</p>
</li>
<li>
<p>Body: The body of the report explains all your major discoveries, broken up into headings and subheadings. The body makes up the majority of the entire report; whereas the introduction and conclusion are just a few paragraphs each, the body can go on for pages.</p>
</li>
<li>
<p>Conclusion: The conclusion is where you bring together all the information in your report and come to a definitive interpretation or judgment. This is usually where the author inputs their own personal opinions or inferences.</p>
</li>
</ul>
<p>If you’re familiar with how to write a research paper, you’ll notice that report writing follows the same introduction-body-conclusion structure, sometimes adding an executive summary. Reports usually have their own additional requirements as well, such as title pages and tables of content, which we explain in the next section.</p>
<h2 id="what-should-be-included-in-a-report">What should be included in a report?</h2>
<p>There are no firm requirements for what’s included in a report. Every school, company, laboratory, task manager, and teacher can make their own format, depending on their unique needs. In general, though, be on the lookout for these particular requirements—they tend to crop up a lot:</p>
<ul>
<li>
<p>Title page: Official reports often use a title page to keep things organized; if a person has to read multiple reports, title pages make them easier to keep track of.</p>
</li>
<li>
<p>Table of contents: Just like in books, the table of contents helps readers go directly to the section they’re interested in, allowing for faster browsing.</p>
</li>
<li>
<p>Page numbering: A common courtesy if you’re writing a longer report, page numbering makes sure the pages are in order in the case of mix-ups or misprints.</p>
</li>
<li>
<p>Headings and subheadings: Reports are typically broken up into sections, divided by headings and subheadings, to facilitate browsing and scanning.</p>
</li>
<li>
<p>Citations: If you’re citing information from another source, the citations guidelines tell you the recommended format.</p>
</li>
<li>
<p>Works cited page: A bibliography at the end of the report lists credits and the legal information for the other sources you got information from.</p>
</li>
</ul>
<p>As always, refer to the assignment for the specific guidelines on each of these. The people who read the report should tell you which style guides or formatting they require.</p>
<h2 id="how-to-write-a-report-in-7-steps">How to write a report in 7 steps</h2>
<p>Now let’s get into the specifics of how to write a report. Follow the seven steps on report writing below to take you from an idea to a completed paper.</p>
<ol>
<li>Choose a topic based on the assignment</li>
</ol>
<p>Before you start writing, you need to pick the topic of your report. Often, the topic is assigned for you, as with most business reports, or predetermined by the nature of your work, as with scientific reports. If that’s the case, you can ignore this step and move on.</p>
<p>If you’re in charge of choosing your own topic, as with a lot of academic reports, then this is one of the most important steps in the whole writing process. Try to pick a topic that fits these two criteria:</p>
<ul>
<li>
<p>There’s adequate information: Choose a topic that’s not too general but not too specific, with enough information to fill your report without padding, but not too much that you can’t cover everything.</p>
</li>
<li>
<p>It’s something you’re interested in: Although this isn’t a strict requirement, it does help the quality of a report if you’re engaged by the subject matter.</p>
</li>
</ul>
<p>Of course, don’t forget the instructions of the assignment, including length, so keep those in the back of your head when deciding.</p>
<ol start="2">
<li>Conduct research</li>
</ol>
<p>With business and scientific reports, the research is usually your own or provided by the company—although there’s still plenty of digging for external sources in both.</p>
<p>For academic papers, you’re largely on your own for research, unless you’re required to use class materials. That’s one of the reasons why choosing the right topic is so crucial; you won’t go far if the topic you picked doesn’t have enough available research.</p>
<p>The key is to search only for reputable sources: official documents, other reports, research papers, case studies, books from respected authors, etc. Feel free to use research cited in other similar reports. You can often find a lot of information online through search engines, but a quick trip to the library can also help in a pinch.</p>
<ol start="3">
<li>Write a thesis statement</li>
</ol>
<p>Before you go any further, write a thesis statement to help you conceptualize the main theme of your report. Just like the topic sentence of a paragraph, the thesis statement summarizes the main point of your writing, in this case, the report.</p>
<p>Once you’ve collected enough research, you should notice some trends and patterns in the information. If these patterns all infer or lead up to a bigger, overarching point, that’s your thesis statement.</p>
<p>For example, if you were writing a report on the wages of fast-food employees, your thesis might be something like, “Although wages used to be commensurate with living expenses, after years of stagnation they are no longer adequate.” From there, the rest of your report will elaborate on that thesis, with ample evidence and supporting arguments.</p>
<p>It’s good to include your thesis statement in both the executive summary and introduction of your report, but you still want to figure it out early so you know which direction to go when you work on your outline next.</p>
<ol start="4">
<li>Prepare an outline</li>
</ol>
<p>Writing an outline is recommended for all kinds of writing, but it’s especially useful for reports given their emphasis on organization. Because reports are often separated by headings and subheadings, a solid outline makes sure you stay on track while writing without missing anything.</p>
<p>Really, you should start thinking about your outline during the research phase, when you start to notice patterns and trends. If you’re stuck, try making a list of all the key points, details, and evidence you want to mention. See if you can fit them into general and specific categories, which you can turn into headings and subheadings respectively.</p>
<ol start="5">
<li>Write a rough draft</li>
</ol>
<p>Actually writing the rough draft, or first draft, is usually the most time-consuming step. Here’s where you take all the information from your research and put it into words. To avoid getting overwhelmed, simply follow your outline step by step to make sure you don’t accidentally leave out anything.</p>
<p>Don’t be afraid to make mistakes; that’s the number one rule for writing a rough draft. Expecting your first draft to be perfect adds a lot of pressure. Instead, write in a natural and relaxed way, and worry about the specific details like word choice and correcting mistakes later. That’s what the last two steps are for, anyway.</p>
<ol start="6">
<li>Revise and edit your report</li>
</ol>
<p>Once your rough draft is finished, it’s time to go back and start fixing the mistakes you ignored the first time around. (Before you dive right back in, though, it helps to sleep on it to start editing fresh, or at least take a small break to unwind from writing the rough draft.)</p>
<p>We recommend first rereading your report for any major issues, such as cutting or moving around entire sentences and paragraphs. Sometimes you’ll find your data doesn’t line up, or that you misinterpreted a key piece of evidence. This is the right time to fix the “big picture” mistakes and rewrite any longer sections as needed.</p>
<p>If you’re unfamiliar with what to look for when editing, you can read our previous guide with some more advanced self-editing tips.</p>
<ol start="7">
<li>Proofread and check for mistakes</li>
</ol>
<p>Last, it pays to go over your report one final time, just to optimize your wording and check for grammatical or spelling mistakes. In the previous step you checked for “big picture” mistakes, but here you’re looking for specific, even nitpicky problems.</p>
<p>A writing assistant like Grammarly flags those issues for you. Grammarly’s free version points out any spelling and grammatical mistakes while you write, with suggestions to improve your writing that you can apply with just one click. The Premium version offers even more advanced features, such as tone adjustments and word choice recommendations for taking your writing to the next level.</p>
</description>
</item>
<item>
<title>May 9 to 15</title>
<link>/post/may-9-to-15/</link>
<pubDate>Mon, 16 May 2022 12:15:42 +0300</pubDate>
<guid>/post/may-9-to-15/</guid>
<description><h1 id="hello-again">Hello, again!</h1>
<p>I am starting to write a second post about my last week. So what&rsquo;s happened there:</p>
<h2 id="lab">lab</h2>
<p>We did labs №9 and №10. What were they about?</p>
<p>Lab №9 was about Text Redactor Emacs. It&rsquo;s terrible redactor worse than Vim.
So many shortcuts and long start-up.</p>
<p>Lab №10 was about programming on language Bash. We made some scripts like (ls or dir), each argument on next line, backup sh file in archive, and type of file counter</p>
<h2 id="programming-classes">Programming classes</h2>
<p>We had a lab to make a Vector class with overloading operators and some constructors and destructors.</p>
<h1 id="conclusion">Conclusion</h1>
<p>I had spent time solving labs and i had no time for myself :(</p>
<p>Thanks for reading</p>
</description>
</item>
<item>
<title>Markdown</title>
<link>/post/markdown/</link>
<pubDate>Tue, 10 May 2022 11:21:17 +0300</pubDate>
<guid>/post/markdown/</guid>
<description><h1 id="beginner-guide-to-markdown">Beginner Guide to Markdown</h1>
<p>Let me introduce you to markdown first,</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="markdown logo" srcset="
/post/markdown/img/1_hu29704fd9e22ae7e3acf7f9ee23777277_14947_99b600292e03f117fc01f3b929abc5a7.webp 400w,
/post/markdown/img/1_hu29704fd9e22ae7e3acf7f9ee23777277_14947_9a2d0359a5918b373fbedfb166ddceee.webp 760w,
/post/markdown/img/1_hu29704fd9e22ae7e3acf7f9ee23777277_14947_1200x1200_fit_q75_h2_lanczos_3.webp 1200w"
src="/post/markdown/img/1_hu29704fd9e22ae7e3acf7f9ee23777277_14947_99b600292e03f117fc01f3b929abc5a7.webp"
width="760"
height="467"
loading="lazy" data-zoomable /></div>
</div></figure>
</p>
<p>Markdown is made by John Gruber, you can use markdown to write blogs, texts, books and practically 100% of your writing work in a single format and you can easily distribute it in Word, PDFs, EPUBs, HTML, and many other formats.</p>
<p><strong>Some pro’s of markdown:</strong></p>
<pre><code>- Easy and simple formatting.
- Can be converted to tons of different formats easily.
- Platform and app independent format. (you just need a simple text editor on any PC ever existed on this planet)
- Pleasant syntax and easy to learn.
</code></pre>
<p><strong>Learning basic Markdown syntax:</strong></p>
<ul>
<li><strong>Paragraphs:</strong> Everything you write are just wrapped in paragraphs. You can separate paragraphs by leaving a line between them.</li>
</ul>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-Markdown" data-lang="Markdown"><span class="line"><span class="cl">Hi this is simple paragraph
</span></span><span class="line"><span class="cl">and this is also the part of line.
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">Yeah, this is another paragraph.
</span></span></code></pre></div><ul>
<li><strong>Headings:</strong> you can create headings with number of hashes # . The more the number of hashes the lesser the power of heading.</li>
</ul>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-Markdown" data-lang="Markdown"><span class="line"><span class="cl"><span class="gh"># Main Heading
</span></span></span><span class="line"><span class="cl"><span class="gh"></span><span class="gu">## Sub Heading
</span></span></span><span class="line"><span class="cl"><span class="gu">### may be used as topic heading
</span></span></span><span class="line"><span class="cl"><span class="gu">#### sub-topic headings
</span></span></span><span class="line"><span class="cl"><span class="gu">##### another heading
</span></span></span><span class="line"><span class="cl"><span class="gu">###### smallest heading
</span></span></span></code></pre></div><ul>
<li><strong>Links:</strong> are really important in documents and markdown’s syntax for links is great too.</li>
</ul>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-Markdown" data-lang="Markdown"><span class="line"><span class="cl">I read a lot and also write some cool blogs. You can read [<span class="nt">My blog</span>](<span class="na">https://emirenru.github.io/post/choice</span>) here.
</span></span></code></pre></div><ul>
<li><strong>Images:</strong> everyone loves to make their text visually appealing by adding high quality images.</li>
</ul>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-Markdown" data-lang="Markdown"><span class="line"><span class="cl">
</span></span></code></pre></div><p>it’s just adding ! a link to make it an image.</p>
<ol>
<li><strong>Un-ordered List:</strong> they are made by</li>
</ol>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-Markdown" data-lang="Markdown"><span class="line"><span class="cl"><span class="k">-</span> first item
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">some text about it.
</span></span><span class="line"><span class="cl"><span class="k">-</span> Second item
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">some text also about it.
</span></span></code></pre></div><ol start="2">
<li><strong>Ordered List:</strong> Items are listed with some number or counting.</li>
</ol>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-Markdown" data-lang="Markdown"><span class="line"><span class="cl"><span class="k">1.</span> Hello this about me.
</span></span><span class="line"><span class="cl"><span class="k">2.</span> I&#39;m a great blogger.
</span></span><span class="line"><span class="cl"><span class="k">3.</span> I write on medium.
</span></span></code></pre></div><ul>
<li><strong>Blockquote:</strong> want to show some quotes or highlight some text to get users attention, then blockquote is what you need.</li>
</ul>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-Markdown" data-lang="Markdown"><span class="line"><span class="cl"><span class="k">&gt; </span><span class="ge">Make it simple not simpler. -- Albert Einstein
</span></span></span></code></pre></div><p><strong>Code:</strong> you can write code samples in your markdown by using pair of <code>(upperticks)</code> you can write multi-line code with 3 pair of upperticks.</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl"><span class="c1"># ping on google server (bash script)</span>
</span></span><span class="line"><span class="cl">ping -t www.google.com
</span></span></code></pre></div><ul>
<li>
<p><strong>Bold text:</strong> if you want to bold the text use <code>**Bold**</code> or <code>__bold__</code> whatever you prefer, I generally prefer to use stars for bold and underscores for italics.</p>
</li>
<li>
<p><strong>Italic text:</strong> for italic text use single underscore <em>italic</em> or star <em>italic</em> around the text.</p>
</li>
</ul>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-Markdown" data-lang="Markdown"><span class="line"><span class="cl">*italic*
</span></span><span class="line"><span class="cl"><span class="ge">_italic_</span>
</span></span></code></pre></div><h1 id="some-places-where-markdown-are-used">Some places where Markdown are used.</h1>
<ul>
<li>
<p>Slack</p>
</li>
<li>
<p>Github and Github wiki</p>
</li>
<li>
<p>Project management products like Trello</p>
</li>
<li>
<p>Blog-aware static site generators like Jekyll or Hugo</p>
</li>
</ul>
<h1 id="some-apps-for-doing-markdown">Some apps for doing markdown</h1>
<p>By the way, you can use your Notepad for writing markdown for any other text editor (don’t use Word). If you want to make your workflow better there are some apps made for writing markdown.</p>
<ul>
<li>
<p><a href="https://typora.io/" target="_blank" rel="noopener">https://typora.io/</a> (cross platform simple markdown editor)</p>
</li>
<li>
<p><a href="http://writeapp.net/mac/" target="_blank" rel="noopener">http://writeapp.net/mac/</a> (mac only app)</p>
</li>
<li>
<p><a href="https://codepen.io/itsjzt/full/mMRbVj/" target="_blank" rel="noopener">https://codepen.io/itsjzt/full/mMRbVj/</a> (webpage for writing quick markdown)</p>
</li>
</ul>
<p>Created by Saurabh Sharma</p>
</description>
</item>
<item>
<title>Week May 2 to May 8</title>
<link>/post/week-may-2-to-may-8/</link>
<pubDate>Tue, 10 May 2022 11:20:56 +0300</pubDate>
<guid>/post/week-may-2-to-may-8/</guid>
<description><h1 id="hello-world">Hello, World!</h1>
<p>I am starting writting first post about how i spend my last week: May 2-8. So lets start with labs.</p>
<h2 id="labs">Labs</h2>
<p>Labs were not as hard as were on April 25 - May 1.</p>
<p>Lab №5 was about File Structure Analysis in UNIX-like Systems and commands to work with files and directories.</p>
<p>lab #6 was about Finding files, I/O redirection, Looking at running proccesses.</p>
<h2 id="technology-of-programming">Technology of Programming</h2>
<p>Programming practical lessons were about C++ classes, how to work with them and understanding of constructions, deconstructions and differences between structure and class.</p>
<h1 id="thanks-for-your-reading">Thanks for your reading.</h1>
<p>It&rsquo;s my first post so don&rsquo;t think about it so highly. Okay? :)</p>
</description>
</item>
<item>
<title>What is Git.</title>
<link>/post/choice/</link>
<pubDate>Thu, 05 May 2022 22:44:53 +0300</pubDate>
<guid>/post/choice/</guid>
<description><p>Git is a system for managing the source code versions of programs. In the article we will get acquainted with its main features, show the difference from GitHub and explain why Git is for a beginner. You will also learn where to start learning and why it is not worth wasting time on alternative programs.</p>
<p>#Git is a commit system</p>
<p>Imagine the situation: a gamer reaches the final, loses and returns to the beginning of the level — gets to the nearest control point of the game, where the developers allowed to be saved. If we remove the checkpoints, after each loss we will have to start the game again.</p>
<blockquote>
<p>In programming, the version control system is responsible for saving code at checkpoints — a special technology that can be connected to any project. The version control system insures against errors and returns the code to the state when everything worked.</p>
</blockquote>
<p>Checkpoints are called commits. A single commit is a package of changes that stores information with added, edited, or deleted code files. It is customary to add no more than ten changes to one commit — this is how a long version history turns out, which allows you to roll back in case of an error with minimal loss of workable code.</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="The version control system is a repository with files of all project changes. It allows you to return the project to any previous state when the program was working stably" srcset="
/post/choice/images/1_hu3d344bab70c2efb59841d7137a55c0e5_6504_d62366b2233a59cefacaebc706160e88.webp 400w,
/post/choice/images/1_hu3d344bab70c2efb59841d7137a55c0e5_6504_df6b2cb1562eeaf0aedd35e449e9b556.webp 760w,
/post/choice/images/1_hu3d344bab70c2efb59841d7137a55c0e5_6504_1200x1200_fit_q75_h2_lanczos_2.webp 1200w"
src="/post/choice/images/1_hu3d344bab70c2efb59841d7137a55c0e5_6504_d62366b2233a59cefacaebc706160e88.webp"
width="760"
height="428"
loading="lazy" data-zoomable /></div>
</div></figure>
</p>
<p>#Git is a complex of related branches</p>
<p>Commits are located on the master branch - the main version of the project, which will turn into a product after completion.</p>
<blockquote>
<p>The version control system allows you to create branches from the master branch and experiment with the project without interfering with other team members.</p>
</blockquote>
<p>Let&rsquo;s take the previous scheme, where we found an error and rolled back one commit. To fix the code, we will create several additional branches and test different solutions to the problem in each one. When a solution is found, we transfer the branch with the correct code to the master branch and save the commit. We leave or delete the extra branches, because they do not affect the project and are hidden from other developers — this is your personal draft.</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="The version control system helps developers to work on the project in parallel, not to interfere with each other and add only high-quality code to the master branch" srcset="
/post/choice/images/2_hua10696087e5d022e714be5434b68cc9b_8208_820565f6ce4bd6c97d0e57e3d079b12c.webp 400w,
/post/choice/images/2_hua10696087e5d022e714be5434b68cc9b_8208_9469b465640bd065635552d2290cc50b.webp 760w,
/post/choice/images/2_hua10696087e5d022e714be5434b68cc9b_8208_1200x1200_fit_q75_h2_lanczos_2.webp 1200w"
src="/post/choice/images/2_hua10696087e5d022e714be5434b68cc9b_8208_820565f6ce4bd6c97d0e57e3d079b12c.webp"
width="760"
height="428"
loading="lazy" data-zoomable /></div>
</div></figure>
</p>
<p>#Git is a collaborative code creation tool</p>
<p>It often happens like this: developers separate from the master branch and work on part of the project on their own - for example, to test additional functions. But they can&rsquo;t continue until someone from the team completes the code.</p>
<blockquote>
<p>The version control system allows you not to wait for the master branch to be updated and allows all team members to move freely between the branches of other developers to copy the necessary code fragments.</p>
</blockquote>
<p>There are also reverse situations when several developers simultaneously add code, upload it to the master branch and face a conflict - one file receives several inconsistent changes. In this case, Git will try to fix the errors automatically. If it doesn&rsquo;t work out, the developers will see it and will be able to correct the code manually.</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Version control system opens access to branches of other developers" srcset="
/post/choice/images/3_hu07a7d258261d72db22a14f5e291b2f65_6954_95c20176276cb83223f7f98d100cefdc.webp 400w,
/post/choice/images/3_hu07a7d258261d72db22a14f5e291b2f65_6954_6a53570b3ece7b51f7d6094cd0fb2b0a.webp 760w,
/post/choice/images/3_hu07a7d258261d72db22a14f5e291b2f65_6954_1200x1200_fit_q75_h2_lanczos_2.webp 1200w"
src="/post/choice/images/3_hu07a7d258261d72db22a14f5e291b2f65_6954_95c20176276cb83223f7f98d100cefdc.webp"
width="760"
height="428"
loading="lazy" data-zoomable /></div>
</div></figure>
</p>
</description>
</item>
<item>
<title>Lab</title>
<link>/post/last_week/</link>
<pubDate>Thu, 05 May 2022 22:44:37 +0300</pubDate>
<guid>/post/last_week/</guid>
<description><h1 id="цель-работы">Цель Работы</h1>
<p><strong>Приобретение практических навыков взаимодействия пользователя с системой посредством командной строки</strong></p>
<h1 id="ход-работы">Ход Работы</h1>
<ol>
<li>
<p>Определили полное имя домашнего каталога.(рис. [-@fig:001])</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Определили с помощью команды pwd" srcset="
/post/last_week/Images/1_hue4c4a161bf00fd7e11f3675fa5f63eb9_240308_241780ab0ce8ce7a166ff749e26d2289.webp 400w,
/post/last_week/Images/1_hue4c4a161bf00fd7e11f3675fa5f63eb9_240308_6186fe9b4653f5b91fd0db57dd2f60c2.webp 760w,
/post/last_week/Images/1_hue4c4a161bf00fd7e11f3675fa5f63eb9_240308_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/1_hue4c4a161bf00fd7e11f3675fa5f63eb9_240308_241780ab0ce8ce7a166ff749e26d2289.webp"
width="760"
height="417"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:001 width=70% }</p>
</li>
<li>
<ul>
<li>Перешли в каталог /tmp .(рис. [-@fig:002])</li>
</ul>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Переход в каталог /tmp" srcset="
/post/last_week/Images/2.1_hu73a29dabca78da57929d71920fa10d4b_239630_c54677e76668a4e8db07942dad6fd7f8.webp 400w,
/post/last_week/Images/2.1_hu73a29dabca78da57929d71920fa10d4b_239630_26eef863a1991ea032f67279684adfd8.webp 760w,
/post/last_week/Images/2.1_hu73a29dabca78da57929d71920fa10d4b_239630_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/2.1_hu73a29dabca78da57929d71920fa10d4b_239630_c54677e76668a4e8db07942dad6fd7f8.webp"
width="760"
height="419"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:002 width=70% }</p>
<ul>
<li>Вывели содержимое каталога /tmp с опцией -a.(рис. [-@fig:003])</li>
</ul>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Вывод содержимого с помощью ls -a" srcset="
/post/last_week/Images/2.2.1_huf86b49d240fcee802fb21309b1739fac_262639_ee17cf6b3efd78d28c8a1d60f1abf9a7.webp 400w,
/post/last_week/Images/2.2.1_huf86b49d240fcee802fb21309b1739fac_262639_c68bb855186b4e4b93613c564dddad3e.webp 760w,
/post/last_week/Images/2.2.1_huf86b49d240fcee802fb21309b1739fac_262639_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/2.2.1_huf86b49d240fcee802fb21309b1739fac_262639_ee17cf6b3efd78d28c8a1d60f1abf9a7.webp"
width="760"
height="419"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:003 width=70% }</p>
<ul>
<li>Вывели содержимое с опцией -l.(рис. [-@fig:004])</li>
</ul>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Вывод содержимого с помощью ls -l" srcset="
/post/last_week/Images/2.2.2_huc48f3fd92d23354d576a7bee7e021276_286050_4515a3e9eb4684221e6f4a20a2de047d.webp 400w,
/post/last_week/Images/2.2.2_huc48f3fd92d23354d576a7bee7e021276_286050_43d49743c24875fbd8ecd842574af854.webp 760w,
/post/last_week/Images/2.2.2_huc48f3fd92d23354d576a7bee7e021276_286050_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/2.2.2_huc48f3fd92d23354d576a7bee7e021276_286050_4515a3e9eb4684221e6f4a20a2de047d.webp"
width="760"
height="418"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:004 width=70% }</p>
<ul>
<li>Попробовали найти каталог cron в каталоге /var/spool .(рис. [-@fig:005])</li>
</ul>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Нахождение cron" srcset="
/post/last_week/Images/2.3_hu4af3356f097f1100e57571e484cc066f_276725_bafacf37ba74bce69a1c688fafd507c8.webp 400w,
/post/last_week/Images/2.3_hu4af3356f097f1100e57571e484cc066f_276725_2914e434e9c375cc8b90b3bda1b323db.webp 760w,
/post/last_week/Images/2.3_hu4af3356f097f1100e57571e484cc066f_276725_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/2.3_hu4af3356f097f1100e57571e484cc066f_276725_bafacf37ba74bce69a1c688fafd507c8.webp"
width="760"
height="419"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:005 width=70% }</p>
<ul>
<li>Перешли в домашний каталог и вывели его содержимое.(рис. [-@fig:006])</li>
</ul>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Вывод содержимового дом.катаога" srcset="
/post/last_week/Images/2.4_hu20476f2c2d272bccd27187cbe02da7ee_279057_b0a606767b15ffadf6e4406e9571122a.webp 400w,
/post/last_week/Images/2.4_hu20476f2c2d272bccd27187cbe02da7ee_279057_3c29c3d79f5eade317c3f562064bda15.webp 760w,
/post/last_week/Images/2.4_hu20476f2c2d272bccd27187cbe02da7ee_279057_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/2.4_hu20476f2c2d272bccd27187cbe02da7ee_279057_b0a606767b15ffadf6e4406e9571122a.webp"
width="760"
height="419"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:006 width=70% }</p>
</li>
<li>
<ul>
<li>Создал каталоги newdir и создал в нем каталог morefun и проверил на их наличие.(рис. [-@fig:007])</li>
</ul>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Cоздание newdir &#43; newdir/morefun" srcset="
/post/last_week/Images/3.1_hu4d3afbabc75d4374393007854403772b_249028_ff6f433d3acbe52ea76f37ba5228b694.webp 400w,
/post/last_week/Images/3.1_hu4d3afbabc75d4374393007854403772b_249028_bc869be2e58accb808e15b56518d02f3.webp 760w,
/post/last_week/Images/3.1_hu4d3afbabc75d4374393007854403772b_249028_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/3.1_hu4d3afbabc75d4374393007854403772b_249028_ff6f433d3acbe52ea76f37ba5228b694.webp"
width="760"
height="418"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:007 width=70% }</p>
<ul>
<li>Создал в домашнем каталоге одной командой каталоги letters, memos, misk и после удалил их.(рис. [-@fig:008])</li>
</ul>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Создание и удаление letters, memos, misk" srcset="
/post/last_week/Images/3.3_hue8d6584a83b2092fa8dc01980a698097_246007_c4018755929ee5865c068348459da333.webp 400w,
/post/last_week/Images/3.3_hue8d6584a83b2092fa8dc01980a698097_246007_b7ebc82f0a2f1039e01ba72c782af5dc.webp 760w,
/post/last_week/Images/3.3_hue8d6584a83b2092fa8dc01980a698097_246007_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/3.3_hue8d6584a83b2092fa8dc01980a698097_246007_c4018755929ee5865c068348459da333.webp"
width="760"
height="420"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:008 width=70% }</p>
<ul>
<li>Попробовали удалить каталог newdir с помощью команды rm, но не получилось. Используя опцию -r, получилось удалить.(рис. [-@fig:009])</li>
</ul>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Удаление newdir &#43; newdir/morefun" srcset="
/post/last_week/Images/3.5_hu6aa15eea4e2ed9cb1b5fb498511ea43b_247813_d95b53fdf411f4b41e4289798eb8cb02.webp 400w,
/post/last_week/Images/3.5_hu6aa15eea4e2ed9cb1b5fb498511ea43b_247813_b60417a3a159247a8097cb4a8bce326f.webp 760w,
/post/last_week/Images/3.5_hu6aa15eea4e2ed9cb1b5fb498511ea43b_247813_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/3.5_hu6aa15eea4e2ed9cb1b5fb498511ea43b_247813_d95b53fdf411f4b41e4289798eb8cb02.webp"
width="760"
height="420"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:009 width=70% }</p>
</li>
<li>
<p>Посмотрели с помощью команды man ls и узнали о опции -R.(рис. [-@fig:010], [-@fig:011])</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Просмотр man" srcset="
/post/last_week/Images/4.1_hu9ea4dc871864e8e0cdfcc0430e412dba_260013_f985e1c0668966366bc0e9f3074a1477.webp 400w,
/post/last_week/Images/4.1_hu9ea4dc871864e8e0cdfcc0430e412dba_260013_7c60aa5128020cbad91e256b6238f026.webp 760w,
/post/last_week/Images/4.1_hu9ea4dc871864e8e0cdfcc0430e412dba_260013_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/4.1_hu9ea4dc871864e8e0cdfcc0430e412dba_260013_f985e1c0668966366bc0e9f3074a1477.webp"
width="760"
height="420"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:010 width=70% }</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Вопроизвели команду" srcset="
/post/last_week/Images/4.2_hua944323e991389b5580dc1f0230639ea_239035_d7c6d7d371726f04074cbca874a4fe24.webp 400w,
/post/last_week/Images/4.2_hua944323e991389b5580dc1f0230639ea_239035_7efeed73cd6faf053a1be89ba690e6a9.webp 760w,
/post/last_week/Images/4.2_hua944323e991389b5580dc1f0230639ea_239035_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/4.2_hua944323e991389b5580dc1f0230639ea_239035_d7c6d7d371726f04074cbca874a4fe24.webp"
width="760"
height="419"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:011 width=70% }</p>
</li>
<li>
<p>Посмотрели с помощью man ls и узнали о опции -t.(рис. [-@fig:012], [-@fig:013])</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Посмотрели на man" srcset="
/post/last_week/Images/5.1_hu4d645ff2fba14df69d533387c3116d67_278717_1215624b7cbc18b59beab4a048798e5e.webp 400w,
/post/last_week/Images/5.1_hu4d645ff2fba14df69d533387c3116d67_278717_01a203222c5dc4bb6b6760712b615df3.webp 760w,
/post/last_week/Images/5.1_hu4d645ff2fba14df69d533387c3116d67_278717_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/5.1_hu4d645ff2fba14df69d533387c3116d67_278717_1215624b7cbc18b59beab4a048798e5e.webp"
width="760"
height="419"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:012 width=70% }</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Вопроизвели команду" srcset="
/post/last_week/Images/5.2_hu4b1de79e5383bdb2a042635581f4a268_278666_90a280b93e2d0935f4233fa6611b7fff.webp 400w,
/post/last_week/Images/5.2_hu4b1de79e5383bdb2a042635581f4a268_278666_d626a8879bdd28012b5349929f6198da.webp 760w,
/post/last_week/Images/5.2_hu4b1de79e5383bdb2a042635581f4a268_278666_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/5.2_hu4b1de79e5383bdb2a042635581f4a268_278666_90a280b93e2d0935f4233fa6611b7fff.webp"
width="760"
height="417"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:013 width=70% }</p>
</li>
<li>
<p>Использовали man для просмотра описания команд: cd, pwd, mkdir, rmdir, rm.(рис. [-@fig:014], [-@fig:015], [-@fig:016], [-@fig:017], [-@fig:018])</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Использовали man cd" srcset="
/post/last_week/Images/6.1_hu9d44c8c584c54eb646a7220596e6b72a_321992_36a221e2bc8080b9649ba3499e4df5a6.webp 400w,
/post/last_week/Images/6.1_hu9d44c8c584c54eb646a7220596e6b72a_321992_a6c90adc6d3f972b4ad58f2148a95026.webp 760w,
/post/last_week/Images/6.1_hu9d44c8c584c54eb646a7220596e6b72a_321992_1200x1200_fit_q75_h2_lanczos.webp 1200w"
src="/post/last_week/Images/6.1_hu9d44c8c584c54eb646a7220596e6b72a_321992_36a221e2bc8080b9649ba3499e4df5a6.webp"
width="760"
height="422"
loading="lazy" data-zoomable /></div>
</div></figure>
{ #fig:014 width=70% }</p>
<p>