-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
618 lines (549 loc) · 24.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic SEO -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Page title and description -->
<!-- <title>Passionate about Rust, and all STEM | xorio homepage</title> -->
<title>Software craftsmanship taken to perfection</title>
<meta
name="description"
content="xorio offers expert Rust development services, specializing in high-performance systems, web services, and open-source collaboration. Explore innovative Rust projects with us."
/>
<!-- Open Graph meta tags for social media sharing -->
<meta property="og:title" content="xorio - Passionate about Rust & STEM" />
<meta
property="og:description"
content="xorio is dedicated to expert Rust development and open-source innovation. Learn more about our high-performance solutions and collaborative projects."
/>
<meta property="og:image" content="path_to_image.png" />
<meta property="og:url" content="https://xorio.rs" />
<meta property="og:type" content="website" />
<!-- Twitter Card for social media optimization -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="xorio - Passionate about Rust & STEM" />
<meta
name="twitter:description"
content="Explore xorio's expertise in Rust development and our open-source contributions."
/>
<meta name="twitter:image" content="path_to_image.png" />
<!-- Keywords (while not a ranking factor anymore, still useful for some crawlers) -->
<meta
name="keywords"
content="Rust, Rust Development, Open-Source, High-Performance Systems, Web Services, STEM, Embedded Solutions, GitHub"
/>
<!-- Canonical link to avoid duplicate content -->
<link rel="canonical" href="https://xorio.rs" />
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<!-- Stylesheets -->
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<!-- Robots meta tag to guide indexing -->
<meta name="robots" content="index, follow" />
</head>
<body>
<!-- navbar -->
<nav>
<div class="logo">
<h1><img src="logo.png" alt="xorio Company Logo" /></h1>
</div>
<div class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<li>
<button id="theme-toggle" class="theme-toggle">
<i class="fas fa-sun"></i>
</button>
</li>
</ul>
</div>
<div class="menu">
<span class="sp1"></span>
<span class="sp2"></span>
<span class="sp3"></span>
</div>
</nav>
<!-- --home -->
<section id="home">
<div class="scroll-to-top">
<a href="#home" aria-label="Back to top">
<i class="fas fa-angle-double-up"></i>
</a>
</div>
</section>
<!-- about -->
<section id="about">
<div class="image">
<img src="About.jpg" alt="About xorio - Rust Development Team" />
</div>
<div class="info">
<h1>Software craftsmanship taken to perfection</h1>
<p>
At xorio, we craft innovative, open-source solutions built on the power of Rust (the fastest-growing programming language) and other safe languages like Kotlin, Go, Python, Flutter, and Java. Our commitment to collaboration and transparency drives us to deliver cutting-edge projects.
</p>
<button
onclick="window.open('https://calendly.com/hello-xorio', '_blank')">
Book A Meeting Now!
</button>
</div>
</section>
<!-- services -->
<section id="services">
<div class="service-box ser1">
<p><i class="fas fa-cog"></i></p>
<h1>High-Performance Systems Development</h1>
</div>
<div class="service-box ser2">
<p><i class="fas fa-server"></i></p>
<h1>Robust Web Services</h1>
</div>
<div class="service-box ser3">
<p><i class="fas fa-robot"></i></p>
<h1>Secure and Efficient Rust Applications</h1>
</div>
<div class="service-box ser4">
<p><i class="fas fa-code-branch"></i></p>
<h1>Open-Source Collaboration</h1>
</div>
</section>
<!-- status -->
<section id="Status">
<h1>
<span
><i
><b
><a target="_blank" href="https://user-badge.committers.top/romania/radumarias">
6th most active</a
></b
></i
></span
>
GitHub user in Romania
</h1>
<img src='https://github-readme-stats.vercel.app/api?username=radumarias&theme=vue-dark&show_icons=true&hide_border=true&count_private=true' />
<img src='https://github-readme-streak-stats.herokuapp.com/?user=radumarias&theme=vue-dark&hide_border=true' />
<img height=195 src='https://github-readme-stats.vercel.app/api/top-langs/?username=radumarias&theme=vue-dark&show_icons=true&hide_border=true&layout=compact' />
<h2>
<a href="Docs/Resume-Radu-Marias.pdf" target="_blank">Resume</a> &
<a href="Docs/cover-letter.pdf" target="_blank">Cover Letter</a>
</h2>
<p class="h2">
Discover the professional journey and personalized letter of xorio's
visionary.
</p>
<h2 class="h2">
<b
>Interested in Contributing to Open Source? Discover the Steps to Get
Involved</b
>
<a target="_blank" href="https://github.com/radumarias/rencfs/blob/main/CONTRIBUTING.md">here</a>.
</h2>
<h2 class="h2">Articles</h1>
<ul>
<li><a href="https://medium.com/@xorio42/list/the-hitchhikers-guide-to-building-distributed-filesystem-317d40f38304" class="fetch-title">The Hitchhiker's Guide to Building Distributed Filesystem</a></li>
<li><a href="https://medium.com/@xorio42/list/the-hitchhikers-guide-to-building-an-encrypted-filesystem-828492b94c23" class="fetch-title">The Hitchhiker's Guide to Building an Encrypted Filesystem</a></li>
<li><a href="https://medium.com/@xorio42/project-idea-81c5a7faf307" class="fetch-title">Project Idea</a></li>
</ul>
<h2 class="h2">Presentations</h1>
<ul>
<li><a href="https://miro.com/app/board/uXjVLa8i1h0=/?share_link_id=915475950725" class="fetch-title">Building an Encrypted Filesystem in Rust</a></li>
<li><a href="https://miro.com/app/board/uXjVLccxeCE=/?share_link_id=893688822262" class="fetch-title">Basics of cryptography for building a filesystem in Rust</a></li>
</ul>
<h2 class="h2">Talks</h1>
<ul>
<li><a href="https://startech-rd.io/hitchhikers-guide-to/" class="fetch-title">The Hitchhiker's Guide to Building an Encrypted Filesystem</a></li>
<li><a href="https://www.youtube.com/live/HwmVxOl3pQg" class="fetch-title">YouTube Live Talk: The Hitchhiker's Guide to Building an Encrypted Filesystem</a></li>
</ul>
<h2 class="h2">Book</h1>
<ul>
<li><a href="https://docs.google.com/document/d/1UGNNZZ4hDENxlr09ic7qXsKX7iyuI9MZBRQJyziFSOI/edit?usp=sharing" class="fetch-title">Rust Advanced Techniques for High-Performance and Secure Systems Programming - TOC</a></li>
<li><a href="https://docs.google.com/document/d/1sInnf4umYPBi_zSmKKF4k4w8TJ7jVldUwoV9bOsERM4/edit?usp=sharing" class="fetch-title">Rust Advanced Techniques for High-Performance and Secure Systems Programming - Outline</a></li>
</ul>
</section>
<!-- projects -->
<section id="projects">
<h1>Our Projects</h1>
<div class="projects-container">
<!-- Project 1 -->
<div class="project">
<img
src="projects/pr1.png"
alt="rencfs encrypted file system in Rust for cloud backups"
/>
<h2>rencfs</h2>
<p>
An encrypted file system that mounts with FUSE on Linux, allowing
the creation of encrypted directories for secure backups on
untrusted servers or cloud storage like Google Drive, ensuring data
integrity and privacy.
It was <a style="color: blue ; background: none; padding: none;" href="https://this-week-in-rust.org/blog/2024/08/14/this-week-in-rust-560/#crate-of-the-week">crate of the week</a>
in Aug 2024. </p>
<a href="https://github.com/radumarias/rencfs" target="_blank">Learn More</a>
</div>
<!-- Project 2 -->
<div class="project">
<img
src="projects/pr14.jpg"
alt="rfs distributed file system in Rust"
/>
<h2>rfs</h2>
<p>
A distributed filesystem written in Rust, designed for learning
and experimentation, offering insights into distributed computing
principles and practical implementation challenges.
</p>
<a href="https://github.com/radumarias/rfs" target="_blank">Learn More</a>
</div>
<!-- Project 3 -->
<div class="project">
<img
src="projects/pr2.png"
alt="SyncOxiders cloud file sync and encryption in Rust"
/>
<h2>SyncOxiders</h2>
<p>
A cloud file and email sync, sharing, backup, and encryption
solution written in Rust. It provides real-time sync between multiple
providers, simplifying data management with a focus on security.
</p>
<a href="https://syncoxide.rs/" target="_blank">Learn More</a>
</div>
<!-- Project 4 -->
<div class="project">
<img
src="projects/pr15.jpg"
alt="Genie Do"
/>
<h2>Genie Do</h2>
<p>
A task automation tool designed to simplify everyday tasks, enhancing
productivity and efficiency through streamlined workflows.
</p>
<a href="https://github.com/radumarias/genie-do" target="_blank">Learn More</a>
</div>
<!-- Project 5 -->
<div class="project">
<img
src="projects/pr14.jpg"
alt="Rvirt GPU"
/>
<h2>Rvirt GPU</h2>
<p>
A project focused on GPU virtualization, enabling efficient resource
management and performance enhancement for various applications.
</p>
<a href="https://github.com/radumarias/rvirt-gpu" target="_blank">Learn More</a>
</div>
<!-- Project 6 -->
<div class="project">
<img
src="projects/pr4.jpg"
alt="rencfs-desktop GUI for encrypted file system in Rust"
/>
<h2>rencfs-desktop</h2>
<p>
A GUI for rencfs, currently supporting Linux, using egui for
an intuitive interface and tonic for gRPC communication, enhancing
user experience with seamless functionality.
</p>
<a href="https://github.com/radumarias/rencfs-desktop" target="_blank">Learn More</a>
</div>
<!-- Project 7 -->
<div class="project">
<img
src="projects/pr5.jpg"
alt="rencfs-daemon encrypted file system daemon in Rust"
/>
<h2>rencfs-daemon</h2>
<p>
An encrypted file system daemon in Rust, installable as a systemd
service, exposing a gRPC server for interaction, designed for performance
and security in encrypted file management.
</p>
<a href="https://github.com/radumarias/rencfs-daemon" target="_blank">Learn More</a>
</div>
<!-- Project 7.1 -->
<div class="project">
<img
src="projects/pr6.jpg"
alt="ciphershell-kotlin GUI for rencfs in Koltin Multiplatform with Compose "
/>
<h2>ciphershell-kotlin</h2>
<p>
GUI for rencfs in Koltin Multiplatform with Compose.
It uses the java-bridge to interact with Rust code.
</p>
<a href="https://github.com/radumarias/ciphershell-kotlin" target="_blank">Learn More</a>
</div>
<!-- Project 8 -->
<div class="project">
<img
src="projects/pr6.jpg"
alt="dbos database-optimized operating system in Rust"
/>
<h2>dbos</h2>
<p>
An operating system optimized for database systems, designed for
minimal resource use while executing workloads in kernel space, aiming
for efficient performance for database applications.
</p>
<a href="https://github.com/radumarias/dbos" target="_blank">Learn More</a>
</div>
<!-- Project 9 -->
<div class="project">
<img
src="projects/pr7.png"
alt="rencrypt-python Python encryption library in Rust"
/>
<h2>rencrypt-python</h2>
<p>
A Python encryption library implemented in Rust, supporting various
ciphers with optimized speed, focused on providing fast and secure
encryption options for developers.
</p>
<a href="https://github.com/radumarias/rencrypt-python" target="_blank">Learn More</a>
</div>
<!-- Project 10 -->
<div class="project">
<img
src="projects/pr8.jpg"
alt="zeroize-python secure memory clearing library in Rust"
/>
<h2>zeroize-python</h2>
<p>
A library for securely clearing sensitive information from memory,
ensuring data is zeroed using stable Rust primitives to prevent
data leaks and protect secrets.
</p>
<a href="https://github.com/radumarias/zeroize-python" target="_blank">Learn More</a>
</div>
<!-- Project 11 -->
<div class="project">
<img
src="projects/pr9.jpg"
alt="gdrive-rs Google Drive client in Rust using fuse3"
/>
<h2>gdrive-rs</h2>
<p>
A GDrive client in Rust utilizing fuse3 for easy integration with
Google Drive, simplifying the process of accessing and managing
files directly from the filesystem.
</p>
<a href="https://github.com/radumarias/gdrive-rs" target="_blank">Learn More</a>
</div>
<!-- Project 12 -->
<div class="project">
<img
src="projects/pr10.jpg"
alt="rust-fuse3-template basic Rust filesystem template"
/>
<h2>rust-fuse3-template</h2>
<p>
A template for a Rust project using fuse3, featuring a basic
filesystem implementation, serving as a starting point for
developers building custom filesystem solutions in Rust.
</p>
<a href="https://github.com/radumarias/rust-fuse3-template" target="_blank">Learn More</a>
</div>
<!-- Project 13 -->
<div class="project">
<img
src="projects/pr11.jpg"
alt="AWS Lambda axum DynamoDB template in Rust"
/>
<h2>aws-lambda-axum-dynamodb-template</h2>
<p>
A template app utilizing AWS Lambda, axum, DynamoDB, API Gateway,
and CloudWatch, providing a solid foundation for building
serverless applications with Rust and AWS services.
</p>
<a href="https://github.com/radumarias/aws-lambda-axum-dynamodb-template" target="_blank">Learn More</a>
</div>
<!-- Project 14 -->
<div class="project">
<img
src="projects/pr12.jpg"
alt="in-mem-fs in-memory filesystem in Rust"
/>
<h2>in-mem-fs</h2>
<p>
A basic implementation of an in-memory filesystem in Rust, exposed
with FUSE on Linux, allowing developers to work with files in
memory for fast operations without persistent storage overhead.
</p>
<a href="https://github.com/radumarias/in-mem-fs" target="_blank">Learn More</a>
</div>
<!-- Project 15 -->
<div class="project">
<img
src="projects/pr13.jpg"
alt="python-crypto-benchmark Python cryptographic library performance comparison"
/>
<h2>python-crypto-benchmark</h2>
<p>
A benchmark of multiple Python crypto libraries to compare
performance and efficiency, assisting developers in choosing
the right libraries for their cryptographic needs based on data.
</p>
<a href="https://github.com/radumarias/python-crypto-benchmark" target="_blank">Learn More</a>
</div>
<!-- Project 16 -->
<div class="project">
<img
src="projects/pr16.jpg"
alt="Rust Cargo.toml version checker automation tool"
/>
<h2>action-check-version-changed-rust</h2>
<p>
A tool that checks if the version in Cargo.toml has changed since
the last run, useful for automating releases and streamlining the
development process by ensuring version consistency.
</p>
<a href="https://github.com/radumarias/action-check-version-changed-rust" target="_blank">Learn More</a>
</div>
</div>
</section>
<section id="custom-text-section" class="custom-text-section">
<div class="container">
<h2 class="section-title"><i class="fa-solid fa-circle-info"></i> Info</h2>
<p class="custom-paragraph">If you want to contribute to open source projects and learn <b>Rust</b>, <b>gRPC</b>, <b>REST API</b>, <b>tonic</b>, <b>diesel</b>, <b>sqlite</b>, <b>SurrealDB</b>, <b>tikv</b>, <b>Raft</b> protocol, <b>Mainline DHT</b>, <b>BitTorrent</b>, <b>QUIC</b>, <b>FUSE</b>, <b>Cryptography</b>, <b>Zero-copy</b>, <b>Apache Arrow</b>, <b>Flight</b>, <b>RDMA</b>, <b>Sharding algorithms</b>, <b>egui</b>, <b>Kotlin Multiplatform</b>, <b>Java</b>, <b>Spark</b>, <b>Flink</b>, <b>Airflow<b> and <b>Python</b></p>
</div>
</section>
<!-- contact -->
<section id="contact" class="contact-section">
<h1>Contact Us</h1>
<div class="contact-container">
<div class="details-container">
<h2>Get in Touch</h2>
<div style="display: flex; flex-direction: column;">
<p>
<i class="fas fa-envelope"></i>
<strong>DM:</strong> <br />
<a class="a" href="mailto:[email protected]" target="_blank">[email protected]</a>
</p>
<p>
<i class="fab fa-github"></i>
<strong>GitHub:</strong> <br />
<a class="a" href="https://github.com/xoriors" target="_blank">xoriors</a>
</p>
</div>
</div>
<div class="globe">
<img src="globe.png" alt="">
</div>
</div>
<div class="social-icons">
<a href="https://github.com/radumarias" target="_blank">
<img
src="https://img.shields.io/github/stars/radumarias"
alt="GitHub Stars"
/>
</a>
<a
href="https://user-badge.committers.top/romania/radumarias"
target="_blank"
>
<img
src="https://user-badge.committers.top/romania/radumarias.svg"
alt="committers.top"
/>
</a>
<a href="https://bit.ly/3Cx3AOb" target="_blank">
<i class="fab fa-slack"></i>
</a>
<a href="mailto:[email protected]" target="_blank">
<i class="fa-solid fa-envelope"></i>
</a>
<a href="https://github.com/xoriors" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/company/xorio" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://medium.com/@xorio42" target="_blank">
<i class="fa-brands fa-medium"></i>
</a>
<!--
<a href="https://matrix.to/#/@xorio42:matrix.org" target="_blank">
<i class="fa-solid fa-m matrix-icon"></i>
</a>
<a href="https://t.me/xorio42" target="_blank">
<i class="fab fa-telegram-plane"></i>
</a>
<a href="https://www.reddit.com/user/xorio4210/" target="_blank">
<i class="fa-brands fa-reddit"></i>
</a>
<a href="https://x.com/xorio42" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="40px"
height="20px"
fill="#2f8f48"
>
<path
d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm297.1 84L257.3 234.6 379.4 396H283.8L209 298.1 123.3 396H75.8l111-126.9L69.7 116h98l67.7 89.5L313.6 116h47.5zM323.3 367.6L153.4 142.9H125.1L296.9 367.6h26.3z"
/>
</svg>
</a>
<a href="https://www.facebook.com/radumarias" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="https://www.instagram.com/radumarias" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://threads.com/radumarias" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="40px"
height="20px"
fill="#2f8f48">
<path d="M331.5 235.7c2.2 .9 4.2 1.9 6.3 2.8c29.2 14.1 50.6 35.2 61.8 61.4c15.7 36.5 17.2 95.8-30.3 143.2c-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2c-32.3-41-48.9-98.1-49.5-169.6V256v-.2C17 184.3 33.6 127.2 65.9 86.2C102.2 40.1 156.2 16.5 226.4 16h.3c70.3 .5 124.9 24 162.3 69.9c18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4c-29.2-35.8-73-54.2-130.5-54.6c-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3c28 35.6 71.2 53.9 128.2 54.4c51.4-.4 85.4-12.6 113.7-40.9c32.3-32.2 31.7-71.8 21.4-95.9c-6.1-14.2-17.1-26-31.9-34.9c-3.7 26.9-11.8 48.3-24.7 64.8c-17.1 21.8-41.4 33.6-72.7 35.3c-23.6 1.3-46.3-4.4-63.9-16c-20.8-13.8-33-34.8-34.3-59.3c-2.5-48.3 35.7-83 95.2-86.4c21.1-1.2 40.9-.3 59.2 2.8c-2.4-14.8-7.3-26.6-14.6-35.2c-10-11.7-25.6-17.7-46.2-17.8H227c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6 .4 99.9 39.5 103.7 107.7l-.2 .2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3c25.6-1.4 54.6-11.4 59.5-73.2c-13.2-2.9-27.8-4.4-43.4-4.4c-4.8 0-9.6 .1-14.4 .4c-42.9 2.4-57.2 23.2-56.2 41.8l-.1 .1z"/></svg>
</a>
-->
</div>
</section>
<section id="custom-text-section" class="custom-text-section">
<div class="container">
<h2 class="section-title"><i class="fa-solid fa-circle-info"></i> Info</h2>
<p class="custom-paragraph">Our official Slack is above, but there is one <a href="https://bit.ly/3UU1oXi">dedicated to the <b>recnfs</b> project</a>, where we also discuss more generic topics. Feel free to join that, as we have dedicated channels on various topics. That's where we spend most of our Slack time.</p>
</div>
</section>
<!-- footer -->
<footer>
<div class="footer-content">
<p>
Created by
<a href="https://www.linkedin.com/in/mahenoor-salat/" target="_blank"
>Mahenoor Salat</a
>
| <span>xorio - Rust Language Company</span> | ©
<span id="current-year"></span> All Rights Reserved
</p>
</div>
</footer>
<script src="script.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"
integrity="sha512-7eHRwcbYkK4d9g/6tD/mhkf++eoTHwpNM9woBxtPUBWm67zeAfFC+HrdoE2GanKeocly/VxeLvIqwvCdk7qScg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"
integrity="sha512-onMTRKJBKz8M1TnqqDuGBlowlH0ohFzMXYRNebz+yOcc5TQr/zAKsthzhuv0hiyUKEiQEQXEynnXCvNTOk50dg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</body>
</html>