You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[RedisLeaderboard](https://github.com/KI7MT/dotnet-core-examples/tree/master/Database)|Redis|[See Docs](https://github.com/KI7MT/jtsdk-dotnet-core/wiki/Install-Redis)|Stable|Ham Radio Contest Leaderboard Example
112
-
113
-
### Under Development
114
-
115
-
The following applications are in various states of development, anywhere from Database Design to final API/MVC integration. The projects may reside in the
116
-
repository, but should not be considered functional. As they move from
117
-
development to testing, will move up to [Stable for Testing Purposes](#stable-for-testing-purposes)
|[Rural-Fire-API](https://github.com/KI7MT/dotnet-core-examples/tree/master/Database)|SQL-Server|TBD|Devel|Swagger RESt-API for County Rural Fire Management
122
-
|[Rural-Fire-MVC](https://github.com/KI7MT/dotnet-core-examples/tree/master/Database)|SQL-Server|TBD|Devel|Razor WebMVC for County Rural Fire Management
123
-
|[WslNeo4J](https://github.com/KI7MT/dotnet-core-examples/tree/master/Database)|Neo4J|TDB|Devel|Movie DB queries using Console App and Neo4j
124
-
125
-
## Advanced Structures Methods and Classes
126
-
127
-
`Advanced` applications are a combination of both [Basic](#basic-functions)
128
-
and [Intermediate](#intermediate-functions) functions. They may also use instantiation
129
-
of classes, interfaces, abstracts, or more advanced
|[EmployeeCommissionV1](https://github.com/KI7MT/dotnet-core-examples/tree/master/Advanced) |various |Calculate commission for one or more employee's
136
-
|[EmployeeCommissionV2](https://github.com/KI7MT/dotnet-core-examples/tree/master/Advanced) |various |Uses: Struct, Array of Struct, if-else, loops and methods
137
-
|[TikTakToe](https://github.com/KI7MT/dotnet-core-examples/tree/master/Advanced)|various|Game: uses 2D Arrays, if-else, loops, methods, and colors
138
104
139
-
## Intermediate Functions
140
-
141
-
`Intermediate` employs things such as [structures](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/struct),
142
-
and [methods](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/methods)
143
-
outside of the [main method](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/inside-a-program/hello-world-your-first-program)
144
-
or `(Program.cs`) file.
145
-
146
-
| Application |Type|Description
147
-
| :--- |:---|:---
148
-
|[AreaOfCircle](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to calc the Area of a Circle
149
-
|[AreaOfTriangle](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to calc the Area of a Triangle
150
-
|[CalculatePay](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to calculate Gross Pay
151
-
|[InchesToCentimeters](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to Convert In. to Cn.
152
-
|[VolumeOfCylinder](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to calc the Volume of a Cylinder
153
-
|[JobListing](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/struct)|struct|Use struct to generate job postings
154
-
|[MSLListing](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/struct)|struct|Use struct to add to listings array and MLS IDs
155
-
|[RandGen](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate)|struct|Advanced Password generator with user input options
156
-
157
-
## Basic Functions
105
+
## Introductory Logic, Conditions, Loops
158
106
159
107
`Basic Functions` employ things such as [Arrays](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/arrays/),
@@ -200,3 +148,51 @@ file. Typically, no other classes are involved apart basic from
200
148
|[PowerOff](https://github.com/KI7MT/dotnet-core-examples/tree/master/Introductory/while-loops)|while-loops|Loop that calculates powers of 10 for x < <= 10
201
149
202
150
151
+
## Intermediate Structures, Methods and Functions
152
+
153
+
`Intermediate` employs things such as [structures](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/struct),
154
+
and [methods](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/methods)
155
+
outside of the [main method](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/inside-a-program/hello-world-your-first-program)
156
+
or `(Program.cs`) file.
157
+
158
+
| Application |Type|Description
159
+
| :--- |:---|:---
160
+
|[AreaOfCircle](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to calc the Area of a Circle
161
+
|[AreaOfTriangle](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to calc the Area of a Triangle
162
+
|[CalculatePay](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to calculate Gross Pay
163
+
|[InchesToCentimeters](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to Convert In. to Cn.
164
+
|[VolumeOfCylinder](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/methods)|methods|Use methods to calc the Volume of a Cylinder
165
+
|[JobListing](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/struct)|struct|Use struct to generate job postings
166
+
|[MSLListing](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate/struct)|struct|Use struct to add to listings array and MLS IDs
167
+
|[RandGen](https://github.com/KI7MT/dotnet-core-examples/tree/master/Intermediate)|struct|Advanced Password generator with user input options
168
+
169
+
## Advanced Structures Methods and Classes
170
+
171
+
`Advanced` applications are a combination of both [Basic](#basic-functions)
172
+
and [Intermediate](#intermediate-functions) functions. They may also use instantiation
173
+
of classes, interfaces, abstracts, or more advanced
|[RedisLeaderboard](https://github.com/KI7MT/dotnet-core-examples/tree/master/Database)|Redis|[See Docs](https://github.com/KI7MT/jtsdk-dotnet-core/wiki/Install-Redis)|Stable|Ham Radio Contest Leaderboard Example
190
+
191
+
192
+
## WSL Neo4J Stable For Testing Purposes
193
+
194
+
This application is functional for it's intended purpose, e.g. `Testing`. However, none should not be considered production worthy.
0 commit comments