-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_programs.html
More file actions
79 lines (71 loc) · 3.82 KB
/
my_programs.html
File metadata and controls
79 lines (71 loc) · 3.82 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Portfolio</title>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Resume</a></li>
<li><a href="my_websites.html">My Websites</a></li>
<li><a href="#">My Programs</a></li>
</ul>
</nav>
<h1>My Programs</h1>
<section>
<h3>About Me</h3>
<p> Here is another Oxxxymiron's <a href="https://www.youtube.com/watch?v=gNTL8XkV7-4">track</a>.:)</p>
<audio controls>
<source src="audio/oxxxymiron2.mp3" type="audio/mpeg">
</audio>
<p> Hi! My name is Mykola Tokar. I am a Junior Student at Illinois Institute of Technology where
I am studing Information Technology and Management.
</p>
<p> The main thing what I like about programming is solving problems. As for my, programming is something that super hard to begin but when you started it is becomes really hard to stop.
There is always an issue with something and every time you are solving a small problem your brain getting a small dose of dopamine which is pretty enjoyable.
If to speak about what kind of programming am I like or what languages I would say ".NET Framework and Java programming language are my best friends". Right after this introduction you will find couple programs that I personally created.
</p>
</section>
<section>
<h2>Cafe Program for calculations (.NET C#)</h2>
<p> This program I created on one of my programming courses. Basically, this program can be used in any cafe or restaurant for calculation purposes.
The main function of "Cafe Program" is to calculate the total amount to pay for any order. Another functionality of this program is that user can change price for any product
without any interaction with actual code. Also, since this program read the data from .CSV file if user has his/her own menu he/she can easily replace default .CSV file by a new one (with appropriate structure)
and program will use new menu next time you open it. So, if you want to download this program there is a link to my repository on GitHub right under this description.
</p>
<a href="https://github.com/TokarM/CafeProgram_C_Sharp">Link</a>
<figure class="screenshot" aria-labelledby="projectC#1-screenshot-caption">
<img src="../Project/images/project_c2.png" alt="ProjectC#1 form screenshot" />
<figcaption id="projectC#1-screenshot-caption">
<b>Initial Form</b>
</figcaption>
</figure>
<figure class="screenshot" aria-labelledby="projectC#2-screenshot-caption">
<img src="../Project/images/projectc1.png" alt="ProjectC#2 form screenshot" />
<figcaption id="projectC#2-screenshot-caption">
<b>Form with calculations</b>
</figcaption>
</figure>
</section>
<section>
<h2>Java Program</h2>
<p> This is my Java program on which I am currently working on. This is going to be three stage project for Intermediate Software Development course which I am currently taking.
Basically, for now this program just take a .CSV file, read first 25 records from it, and display them on console.
So, if you want to download this program there is a link to my repository on GitHub right under this description.
</p>
<a href="https://github.com/TokarM/JavaBankAccountsProgram">Link</a>
<figure class="screenshot" aria-labelledby="excel-screenshot-caption">
<img src="../Project/images/project_java2.png" alt="excel screenshot" />
<figcaption id="excel-screenshot-caption">
<b>Excel File</b>
</figcaption>
</figure>
<figure class="screenshot" aria-labelledby="projectJava-screenshot-caption">
<img src="../Project/images/project_java1.png" alt="Eclipse console screenshot" />
<figcaption id="projectJava-screenshot-caption">
<b>Eclipse console screenshot</b>
</figcaption>
</figure>
</section>
</body>
</html>