-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (126 loc) · 5.73 KB
/
index.html
File metadata and controls
142 lines (126 loc) · 5.73 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors" />
<meta name="generator" content="Hugo 0.84.0" />
<title>Codekatte</title>
<link rel="canonical" href="https://getbootstrap.com/docs/5.0/examples/starter-template/" />
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous" />
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<link href="css/mystyle.css" rel="stylesheet" />
</head>
<body id="home">
<div class="col-lg-8 mx-auto p-3 py-md-5">
<header class="d-flex align-items-center pb-3 mb-5 border-bottom">
<a href="/" class="d-flex align-items-center text-dark text-decoration-none">
<img src="img/codekatte.png" alt="" width="35" height="35" style="margin-right: 10px;">
<span class="fs-2">Codekatte</span>
</a>
</header>
<main>
<h1>Welcome to codekatte</h1>
<p class="fs-5 col-md-12 mb-5">
It is a place where you will find solutions to common problems. Solutions are built on top of other open
source components and/or technologies and implement fully functional workflows. These are built as modular as
possible to help easy integration into any larger application software.
</p>
<hr class="col-3 col-md-12 mb-5" />
<div class="row g-5">
<div class="col-md-12">
<h2 class="fs-2 col-md-12 mb-4">Projects</h2>
<ul>
<li>
<h5>
<a class="menuitem" href="#idTLSCliServerPrj">TLS Client Server</a>
</h5>
<p class="fs-6 col-md-12 mb-3">TLS Client Server provides a set of APIs to create a TLS based secure
client-server application over TCP. The easy and ready to use APIs will bringup a client and server in
matter of minutes. The APIs provide extension points to implement business specific logic. Refer
instructions to create self-signed certificates in detailed description. Sample certificates are also
made available for a quick test of the APIs.</p>
</li>
<li>
<h5>
<a class="menuitem" href="#idTcpCliServerPrj">TCP Client Server</a>
</h5>
<p class="fs-6 col-md-12 mb-3">TCP Client Servre provides a set of APIs to create a TCP based
client-server application. The easy and ready to use APIs will bringup a client and server in matter
of minutes. The APIs provide extension points to implement business specific logic.</p>
</li>
<li>
<h5>
<a class="menuitem" href="#idCurlPlusPrj">cURL Plus</a>
</h5>
<p class="fs-6 col-md-12 mb-3">curlplus is a C++ wrapper over curl easy APIs. It provides APIs to
perform get, put and post operations using curl easy APIs.</p>
</li>
</ul>
</div>
<hr class="col-3 col-md-12 mb-1" />
<div class="col-md-12 text-bg-dark" id="idTLSCliServerPrj">
<object class="ms-auto" data="https://voidptr007.github.io/tls_client_server/" type="text/html"
style="margin-top: 20px;" width="100%" height="800"></object>
<br>
<br>
<p>Source code is availble in github here:
<a href="https://github.com/voidptr007/tls_client_server" target="_blank" style="color: skyblue;">tls
client server</a>
<a href="#home" style="float: right;color:whitesmoke">home</a>
</p>
<br>
</div>
<hr class="col-3 col-md-12 mb-1" />
<div class="col-md-12 text-bg-dark" id="idTcpCliServerPrj">
<object class="ms-auto" data="https://voidptr007.github.io/tcp_client_server/" type="text/html"
style="margin-top: 20px;" width="100%" height="800"></object>
<br>
<br>
<p>Source code is availble in github here:
<a href="https://github.com/voidptr007/tcp_client_server" target="_blank" style="color: skyblue;">tcp
client server</a>
<a href="#home" style="float: right;color:whitesmoke">home</a>
</p>
<br>
</div>
<hr class="col-3 col-md-12 mb-1" />
<div class="col-md-12 text-bg-dark" id="idCurlPlusPrj">
<object class="ms-auto" data="https://voidptr007.github.io/curlplus/" type="text/html"
style="margin-top: 20px;" width="100%" height="800"></object>
<br>
<br>
<p>Source code is availble in github here:
<a href="https://github.com/voidptr007/curlplus" target="_blank" style="color: skyblue;">curlplus</a>
<a href="#home" style="float: right;color:whitesmoke">home</a>
</p>
<br>
</div>
</div>
</main>
<footer class="pt-5 my-5 text-muted border-top">
Created by the voidptr007 · © 2022
</footer>
</div>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"></script>
</body>
</html>