-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
387 lines (227 loc) · 8.73 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="My programmer homepage">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="btstrp_min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<title>amirlogic | Welcome to my GitHub repository</title>
<style>
header{
height:50px;
padding:20px 10%;
font-weight:bold;
background-color:#FFFFFF;
color:#555555;
}
header a{
text-decoration:none;
}
#headtext{
color:#8B909A;
text-align:center;
}
.celltxt p{
color:#565656;
font-size:16px;
}
.celltxt h5{
color:#212a36;
margin-bottom:20px;
}
#topimg{
background-image: url('datacenter.jpg');
background-position: top;
background-repeat: no-repeat;
background-size:cover;
height:500px;
}
.purpose{
margin-top:50px;
}
#visform{
background-color:#E5E5E5;
padding-top:30px;
padding-bottom:30px;
}
h5{
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body{
background-color:#FEFEFE;
font-size:90%;
}
footer{
min-height:200px;
padding-top:30px;
padding-bottom:100px;
text-align:center;
font-size:14px;
background-color:#EEEEEE;
color:#777777;
}
@media only screen and (max-width: 600px) {
body {
font-size:16px;
}
footer{
display:none;
}
#topimg{
display:none;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-light">
<span class="navbar-brand " href="#">amirlogic</span>
<div class="navbar-text"><a href="/userpanel" title="userpanel"><strong>>></strong></a></div>
</nav>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/three.min.js"></script>
<script>
// Set up the scene, camera, and renderer
var scene = new THREE.Scene();
var camera = new THREE.PerspectiveCamera(75, window.innerWidth/400, 0.1, 1000); // window.innerHeight
var renderer = new THREE.WebGLRenderer();
renderer.setSize(window.innerWidth, 400); // window.innerHeight
document.body.appendChild(renderer.domElement);
// Create a blue cube and add it to the scene
var geometry = new THREE.BoxGeometry();
var material = new THREE.MeshBasicMaterial( { color: 0x0000ff } );
var cube = new THREE.Mesh( geometry, material );
scene.add( cube );
// Set the initial position of the camera and the cube
camera.position.z = 5;
cube.position.set(0, 0, 0);
// Animate the cube
function animate() {
requestAnimationFrame(animate);
cube.rotation.x += 0.01;
cube.rotation.y += 0.01;
renderer.render(scene, camera);
}
animate();
</script>
<main class="container-fluid vh-100">
<div style="margin-top:100px;margin-bottom:40px;min-height:300px;">
<div class="row">
<div class="col-sm" style="font-size:130%;font-weight:300;padding-bottom:50px;">
<div class="celltxt" style="padding:0 4%;">
<h5>Welcome to my GitHub Repo</h5>
<p>My name is Amir, I have been learning web technologies since I created my first web page back in 2007</p>
<p>Two years later I created my first dynamic website using PHP and MySQL</p>
<p><!-- Getting user feedback as early as possible and then on a regular basis is the way to go for creating the best final product --></p>
</div>
<div style="padding:0 4%;">
</div>
</div>
<div class="col-sm" style="font-size:130%;font-weight:300;padding-bottom:50px;">
<div class="celltxt" style="padding:0 4%;">
<h5>Data-driven web applications</h5>
<p>Web applications have a fantastic power, but I think that this power can be made more accessible, especially when it comes to working with data.</p>
<p>In 2017, I started working on NestedLogic, a web-based tool to create full stack web applications using vanilla javascript.
Two years later, it was functionnal, and I used it to successfully create an inventory management software.</p>
<p></p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm" style="font-size:130%;font-weight:300;padding-bottom:50px;">
<div class="celltxt" style="padding:0 4%;">
<h5>React and Typescript</h5>
<p><a href="https://github.com/amirlogic/react-drag-and-drop" target="_blank">Drag and Drop using Beautiful DnD</a></p>
<p><a href="https://github.com/amirlogic/drag-and-drop-quiz" target="_blank">Drag and Drop Quiz</a></p>
<p><a href="https://github.com/amirlogic/didactic-robot" target="_blank">To-do list</a></p>
</div>
<div style="padding:0 4%;">
</div>
</div>
<div class="col-sm" style="font-size:130%;font-weight:300;padding-bottom:50px;">
<div class="celltxt" style="padding:0 4%;">
<h5>NRGA (energia) stack</h5>
<p>Next.js Redis GraphQL and API</p>
<p><a href="https://github.com/amirlogic/energia-me" target="_blank">My Personal Blog</a></p>
<p><a href="https://github.com/amirlogic/funbio" target="_blank">Functional Biology</a></p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm" style="font-size:130%;font-weight:300;padding-bottom:50px;">
<div class="celltxt" style="padding:0 4%;">
<h5>Dynalgo</h5>
<p>Dynalgo allows you to to create dynamic documents</p>
<p><a href="https://amirlogic.github.io/dynalgo">dynalgo examples</a></p>
</div>
</div>
<div class="col-sm" style="font-size:130%;font-weight:300;padding-bottom:50px;">
<div class="celltxt" style="padding:0 4%;">
<h5>Experiments</h5>
<p>Some small experiments</p>
<p><a href="https://amirlogic.github.io/experiments">see experiments</a></p>
</div>
</div>
</div>
</div>
</main>
<!-- <div id="visform">
<form action="submsg.html" method="get" style="margin:30px 20%;">
<div style="font-size:20px;">Let's start today!</div>
<div><input type="email" name="email" placeholder="email" style="width:300px; height:38px; padding:6px; vertical-align:middle;" required>
<input type="submit" class="btn btn-info" value="Send"></div>
<div style="margin-top:10px;"><textarea name="msg" rows="4" cols="60" placeholder="Message" style="padding:10px;"></textarea></div>
</form>
</div> -->
<!-- <section>
<div class="container" style="padding-bottom:100px;margin-top:100px;">
<h5>Steps</h5>
<div class="card-group" style="margin-top:20px;">
<div class="card">
<div class="card-body">
<h5 class="card-title">1. Choose plan</h5>
<p class="card-text" style="color:#565656;"><span>Define your monthly budget to support the development</span><br>
<a href="plans-and-pricing.html"><button class="btn btn-primary" style="margin-top:10px;">Show plans</button></a></p>
<p class="card-text"><small class="text-muted">billed monthly</small></p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">2. Active development</h5>
<p class="card-text" style="color:#565656;">
<span>Every month, functionalities are added or updated, while your prototype always remains usable.</span></p>
<p class="card-text"><small class="text-muted">billed monthly</small></p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">3. Code is released</h5>
<p class="card-text" style="color:#565656;"><span>After the end of the subscribtion, you can get the server-side code and deploy the app on your servers</span></p>
<p class="card-text"><small class="text-muted">billed monthly</small></p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<footer>
<div style="padding:20px 0;">Copyright 2025</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/gsap.min.js"></script>
<script src="main.js"></script>
<script type="text/javascript">
var sc_project=11946176;
var sc_invisible=1;
var sc_security="b6cf0959";
</script>
<script type="text/javascript"
src="https://www.statcounter.com/counter/counter.js"
async></script>
</body>
</html>