-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathresources.html
More file actions
953 lines (904 loc) · 44.6 KB
/
Copy pathresources.html
File metadata and controls
953 lines (904 loc) · 44.6 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
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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Developer Resources — Ethiopian Tech Camp</title>
<meta name="description" content="Comprehensive interactive developer resources, learning paths, tools, communities, and career guides tailored for Ethiopian developers." />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="/resources.html" />
<!-- Optimized CSS loading -->
<link rel="stylesheet" href="assets/css/theme.css" />
<link rel="stylesheet" href="assets/css/nav.css" />
<link rel="stylesheet" href="assets/css/resources.css" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/icons/favicon.png" />
</head>
<body data-auth-required="true">
<!-- Navigation -->
<nav class="nav-link">
<div class="nav-container">
<a href="index.html" class="logo">
<div class="logo-animation">
<div class="logo-circle circle-1"></div>
<div class="logo-circle circle-2"></div>
<div class="logo-circle circle-3"></div>
</div>
<img src="assets/images/logo.png" alt="ETC" width="60" loading="lazy">
</a>
<div class="theme-switch">
<button class="theme-toggle" id="themeToggle" data-tooltip="Toggle Theme"> <i class="fas fa-moon"></i> <i class="fas fa-sun"></i> </button>
</div>
<div class="nav-link">
<a href="index.html" class="nav-item" data-tooltip="Home">
<i class="fas fa-home"></i>
<span class="nav-label">Home</span>
</a>
<a href="resources.html" class="nav-item active" data-tooltip="Resources">
<i class="fas fa-cube"></i>
<span class="nav-label">Resources</span>
</a>
<a href="articles.html" class="nav-item" data-tooltip="Articles">
<i class="fas fa-newspaper"></i>
<span class="nav-label">Articles</span>
</a>
<a href="community.html" class="nav-item" data-tooltip="Articles">
<i class="fas fa-newspaper"></i>
<span class="nav-label">Community</span>
</a>
</div>
</div>
</nav>
<main id="main" class="container">
<!-- Page Header -->
<header class="page-header">
<div class="page-header-content">
<h1>Developer Resources for Ethiopia</h1>
<div class="time-indicator">
<i class="far fa-clock"></i>
<span id="current-time">Loading GMT...</span>
</div>
<p class="lead">Interactive roadmaps, tools, communities, and career resources optimized for Ethiopian developers. All times in GMT. Designed for reliability on local networks.</p>
</div>
</header>
<!-- Hero Images with lazy loading -->
<div class="hero-images-grid">
<div class="hero-image-wrapper">
<img
src="assets/images/resources/ethioExplore.png"
alt="Ethiopian tech hub"
class="lazy-image"
loading="lazy"
width="400"
height="300">
</div>
<div class="hero-image-wrapper">
<img
src="assets/images/resources/EthioAI.png"
alt="Ethiopian AI developer"
class="lazy-image"
loading="lazy"
width="400"
height="300">
</div>
<div class="hero-image-wrapper">
<img
src="assets/images/resources/EthioBootcamp.png"
alt="Tech meetup in Ethiopia"
class="lazy-image"
loading="lazy"
width="400"
height="300">
</div>
</div>
<!-- Interactive Learning Paths -->
<section class="learning-paths-section">
<div class="section-header">
<h2><i class="fas fa-map-signs"></i> Interactive Learning Paths</h2>
<p>Progress saved locally. Estimated times account for Ethiopian internet/power constraints.</p>
</div>
<div class="learning-paths-grid">
<!-- Web Developer Path -->
<article class="path-card active" id="web-path">
<div class="path-header">
<h3>Ethiopian Web Developer</h3>
<span class="path-estimate">6-12 months</span>
</div>
<div class="path-content">
<ol class="path-steps">
<li class="completed">
<i class="fas fa-check-circle"></i>
<span>HTML/CSS/JS Basics (freeCodeCamp – offline)</span>
</li>
<li class="in-progress">
<i class="fas fa-spinner"></i>
<span>React.js (most in-demand in Addis jobs)</span>
</li>
<li>
<i class="far fa-circle"></i>
<span>Node.js/Express backend</span>
</li>
<li>
<i class="far fa-circle"></i>
<span>Deploy on local hosts (HahuCloud/Yegara)</span>
</li>
<li>
<i class="far fa-circle"></i>
<span>Integrate payments (Chapa, HelloCash)</span>
</li>
<li>
<i class="far fa-circle"></i>
<span>Amharic localization & offline support</span>
</li>
</ol>
<div class="path-progress">
<div class="progress-bar">
<div class="progress-fill" style="width: 30%"></div>
</div>
<div class="progress-info">
<span>30% Complete</span>
<button class="btn-progress" onclick="updateProgress('web', 10)">Mark 10% Complete</button>
</div>
</div>
</div>
</article>
<!-- Mobile Developer Path -->
<article class="path-card" id="mobile-path">
<div class="path-header">
<h3>Mobile App Developer</h3>
<span class="path-estimate">8-14 months</span>
</div>
<div class="path-content">
<ol class="path-steps">
<li class="completed">
<i class="fas fa-check-circle"></i>
<span>Flutter (cross-platform, low data usage)</span>
</li>
<li class="in-progress">
<i class="fas fa-spinner"></i>
<span>Android focus (90%+ market share)</span>
</li>
<li>
<i class="far fa-circle"></i>
<span>Offline-first architecture</span>
</li>
<li>
<i class="far fa-circle"></i>
<span>Amharic/Ge'ez script support</span>
</li>
<li>
<i class="far fa-circle"></i>
<span>Publish on local app stores</span>
</li>
</ol>
<div class="path-progress">
<div class="progress-bar">
<div class="progress-fill" style="width: 20%"></div>
</div>
<div class="progress-info">
<span>20% Complete</span>
<button class="btn-progress" onclick="updateProgress('mobile', 10)">Mark 10% Complete</button>
</div>
</div>
</div>
</article>
<!-- AI Learning Track -->
<article class="path-card" id="ai-path">
<div class="path-header">
<h3>AI & Data Science Track</h3>
<span class="path-estimate">9-15 months</span>
</div>
<div class="path-content">
<ol class="path-steps">
<li class="completed">
<i class="fas fa-check-circle"></i>
<span>Python basics (Anaconda offline)</span>
</li>
<li class="in-progress">
<i class="fas fa-spinner"></i>
<span>ML with Google Colab (low bandwidth)</span>
</li>
<li>
<i class="far fa-circle"></i>
<span>Local apps: AgriTech, Amharic NLP</span>
</li>
<li>
<i class="far fa-circle"></i>
<span>Ethiopian AI Institute projects</span>
</li>
</ol>
<div class="path-progress">
<div class="progress-bar">
<div class="progress-fill" style="width: 25%"></div>
</div>
<div class="progress-info">
<span>25% Complete</span>
<button class="btn-progress" onclick="updateProgress('ai', 10)">Mark 10% Complete</button>
</div>
</div>
</div>
</article>
</div>
</section>
<!-- Interactive Tutorials Section -->
<section class="interactive-tutorials-section section-card">
<div class="section-header">
<h2><i class="fas fa-graduation-cap"></i> Interactive Ethiopian Tutorials</h2>
<p>Step-by-step guides optimized for Ethiopian context</p>
</div>
<div class="tutorials-container">
<div class="tutorial-card glass" data-tutorial="ethio-website">
<div class="tutorial-card-header">
<h3>Build Ethiopian Business Website</h3>
<span class="badge">Beginner</span>
</div>
<div class="tutorial-card-body">
<p>Create websites optimized for Ethiopian market with local payment integration</p>
<div class="tutorial-meta">
<span><i class="fas fa-clock"></i> 2-3 weeks</span>
<span><i class="fas fa-wifi"></i> Works offline</span>
</div>
<button class="btn btn-primary btn-start-tutorial" data-tutorial="ethio-website">
Start Tutorial
</button>
<div class="tutorial-steps" style="display: none;">
<ol>
<li data-step="1">Set up project with Ethiopian timezone</li>
<li data-step="2">Implement Amharic language support</li>
<li data-step="3">Integrate Chapa payment gateway</li>
<li data-step="4">Optimize for slow internet connections</li>
<li data-step="5">Deploy on Ethiopian hosting (HahuCloud)</li>
</ol>
<div class="tutorial-progress">
<div class="progress-bar">
<div class="progress-fill" style="width: 0%"></div>
</div>
<button class="btn btn-secondary btn-mark-complete">Mark Step Complete</button>
</div>
</div>
</div>
</div>
<div class="tutorial-card glass" data-tutorial="mobile-app">
<div class="tutorial-card-header">
<h3>Create Ethiopian Mobile App</h3>
<span class="badge">Intermediate</span>
</div>
<div class="tutorial-card-body">
<p>Build mobile apps for Ethiopian market with offline capabilities</p>
<div class="tutorial-meta">
<span><i class="fas fa-clock"></i> 1-2 months</span>
<span><i class="fas fa-mobile-alt"></i> Android focused</span>
</div>
<button class="btn btn-primary btn-start-tutorial" data-tutorial="mobile-app">
Start Tutorial
</button>
<div class="tutorial-steps" style="display: none;">
<ol>
<li data-step="1">Choose Flutter for cross-platform</li>
<li data-step="2">Implement offline-first architecture</li>
<li data-step="3">Add Amharic/Ge'ez text support</li>
<li data-step="4">Integrate Ethiopian payment options</li>
<li data-step="5">Publish on local app stores</li>
</ol>
<div class="tutorial-progress">
<div class="progress-bar">
<div class="progress-fill" style="width: 0%"></div>
</div>
<button class="btn btn-secondary btn-mark-complete">Mark Step Complete</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Cheatsheet Generator -->
<section class="cheatsheet-section section-card">
<div class="section-header">
<h2><i class="fas fa-file-code"></i> Ethiopian Developer Cheatsheets</h2>
<p>Quick reference guides for Ethiopian tech stacks</p>
</div>
<div class="cheatsheet-generator glass">
<div class="cheatsheet-controls">
<select id="cheatsheetType" class="select">
<option value="">Select Cheatsheet Type</option>
<option value="tech-stack">Ethiopian Tech Stack</option>
<option value="deployment">Deployment Commands</option>
<option value="apis">Ethiopian APIs</option>
<option value="localization">Amharic Localization</option>
</select>
<div class="button-group">
<button id="generateCheatsheet" class="btn btn-primary">
<i class="fas fa-code"></i> Generate Cheatsheet
</button>
<button id="downloadCheatsheet" class="btn btn-secondary">
<i class="fas fa-download"></i> Download
</button>
</div>
</div>
<div class="cheatsheet-output" id="cheatsheetOutput">
<div class="placeholder">
<i class="fas fa-file-alt"></i>
<p>Select a cheatsheet type and generate your guide</p>
</div>
</div>
</div>
</section>
<!-- Tech Stack Builder -->
<section class="tech-stack-section section-card">
<div class="section-header">
<h2><i class="fas fa-layer-group"></i> Ethiopian Tech Stack Builder</h2>
<p>Build your optimal tech stack for Ethiopian market</p>
</div>
<div class="stack-builder-container">
<div class="components-panel glass">
<h3><i class="fas fa-toolbox"></i> Available Components</h3>
<div class="components-grid">
<div class="component-category">
<h4>Frontend</h4>
<div class="component-list">
<div class="component-item" draggable="true" data-component="react" data-category="frontend">
<i class="fab fa-react"></i>
<span>React.js</span>
<small>Most in-demand in Addis</small>
</div>
<div class="component-item" draggable="true" data-component="vue" data-category="frontend">
<i class="fab fa-vuejs"></i>
<span>Vue.js</span>
<small>Growing in popularity</small>
</div>
</div>
</div>
<div class="component-category">
<h4>Backend</h4>
<div class="component-list">
<div class="component-item" draggable="true" data-component="node" data-category="backend">
<i class="fab fa-node-js"></i>
<span>Node.js</span>
<small>JavaScript full stack</small>
</div>
<div class="component-item" draggable="true" data-component="python" data-category="backend">
<i class="fab fa-python"></i>
<span>Python/Django</span>
<small>AI/Data Science</small>
</div>
</div>
</div>
<div class="component-category">
<h4>Hosting</h4>
<div class="component-list">
<div class="component-item" draggable="true" data-component="hahu" data-category="hosting">
<i class="fas fa-cloud"></i>
<span>HahuCloud</span>
<small>Local, best support</small>
</div>
<div class="component-item" draggable="true" data-component="yegara" data-category="hosting">
<i class="fas fa-server"></i>
<span>Yegara Host</span>
<small>Unlimited bandwidth</small>
</div>
</div>
</div>
</div>
</div>
<div class="stack-panel glass">
<h3><i class="fas fa-project-diagram"></i> Your Ethiopian Tech Stack</h3>
<div class="stack-area" id="stackArea">
<p class="empty-stack">Drag components here to build your stack</p>
</div>
<div class="stack-actions">
<button id="saveStack" class="btn btn-primary">
<i class="fas fa-save"></i> Save Stack
</button>
<button id="clearStack" class="btn btn-secondary">
<i class="fas fa-trash"></i> Clear
</button>
<button id="exportStack" class="btn btn-secondary">
<i class="fas fa-download"></i> Export
</button>
</div>
</div>
</div>
<div class="stack-output glass" id="stackOutput" style="display: none;">
<h4>Generated Configuration:</h4>
<pre><code id="stackConfig"></code></pre>
</div>
</section>
<!-- Community Features -->
<section class="community-features-section section-card">
<div class="section-header">
<h2><i class="fas fa-hands-helping"></i> Community Features</h2>
<p>Connect, learn, and grow with Ethiopian developers</p>
</div>
<div class="community-grid">
<div class="community-card glass">
<div class="community-card-header">
<i class="fas fa-star"></i>
<h3>Resource Rating</h3>
</div>
<div class="community-card-body">
<p>Rate resources to help other developers</p>
<div class="rating-section">
<div class="stars">
<span class="star" data-rating="1">★</span>
<span class="star" data-rating="2">★</span>
<span class="star" data-rating="3">★</span>
<span class="star" data-rating="4">★</span>
<span class="star" data-rating="5">★</span>
</div>
<small class="rating-text">Rate this page</small>
</div>
</div>
</div>
<div class="community-card glass">
<div class="community-card-header">
<i class="fas fa-trophy"></i>
<h3>Achievements</h3>
</div>
<div class="community-card-body">
<p>Earn achievements as you learn</p>
<div class="achievements-preview">
<div class="achievement-badge" data-achieved="false">
<i class="fas fa-code"></i>
<span>First Resource</span>
</div>
<div class="achievement-badge" data-achieved="false">
<i class="fas fa-graduation-cap"></i>
<span>Tutorial Complete</span>
</div>
<div class="achievement-badge" data-achieved="false">
<i class="fas fa-users"></i>
<span>Community Helper</span>
</div>
</div>
</div>
</div>
<div class="community-card glass">
<div class="community-card-header">
<i class="fas fa-certificate"></i>
<h3>Skill Verification</h3>
</div>
<div class="community-card-body">
<p>Get your skills verified by the community</p>
<div class="verification-options">
<button class="btn btn-sm btn-secondary" data-skill="html_css">
HTML/CSS
</button>
<button class="btn btn-sm btn-secondary" data-skill="javascript">
JavaScript
</button>
<button class="btn btn-sm btn-secondary" data-skill="react">
React.js
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Resource Library Grid -->
<section class="resources-grid-section">
<div class="section-header">
<h2><i class="fas fa-th-large"></i> Resource Library</h2>
<p>Curated resources for Ethiopian developers across all regions</p>
</div>
<div class="resources-grid">
<!-- Communities & Meetups -->
<article class="resource-card">
<div class="resource-card-header">
<i class="fas fa-users"></i>
<h3>Communities & Meetups</h3>
</div>
<div class="resource-card-body">
<ul>
<li>
<a href="https://gdg.community.dev/gdg-addis/" target="_blank" class="resource-link">
GDG Addis (DevFest 2026)
</a>
</li>
<li>
<a href="https://ethiocoders.et/" target="_blank" class="resource-link">
5 Million Ethiopian Coders
</a>
</li>
<li>
<a href="https://www.facebook.com/groups/154989467898754/" target="_blank" class="resource-link">
Ethiopian Developers Network
</a>
</li>
<li>
<a href="https://www.iceaddis.com/" target="_blank" class="resource-link">
iceAddis Events
</a>
</li>
</ul>
</div>
</article>
<!-- Learning Hubs & Bootcamps -->
<article class="resource-card">
<div class="resource-card-header">
<i class="fas fa-graduation-cap"></i>
<h3>Learning Hubs & Bootcamps</h3>
</div>
<div class="resource-card-body">
<ul>
<li>
<a href="https://a2sv.org/" target="_blank" class="resource-link">
A2SV Academy
</a>
</li>
<li>
<a href="https://www.iceaddis.com/" target="_blank" class="resource-link">
iceAddis
</a>
</li>
<li>
<a href="https://blueMoon.et/" target="_blank" class="resource-link">
blueMoon AgriTech Youth Academy
</a>
</li>
<li>
<a href="https://learn.zalatechs.com/" target="_blank" class="resource-link">
ZalaTech
</a>
</li>
<li>
<span class="resource-text">AddisCoder (free summer program)</span>
</li>
</ul>
</div>
</article>
<!-- Open Source Projects -->
<article class="resource-card">
<div class="resource-card-header">
<i class="fab fa-github"></i>
<h3>Open Source Projects</h3>
</div>
<div class="resource-card-body">
<ul>
<li>
<a href="https://github.com/ethiopian" target="_blank" class="resource-link">
Ethiopian GitHub Org
</a>
</li>
<li>
<a href="https://github.com/abela12/made-in-ethiopia" target="_blank" class="resource-link">
Made in Ethiopia Collection
</a>
</li>
<li>
<span class="resource-text">Amharic NLP tools & calendars</span>
</li>
</ul>
</div>
</article>
<!-- Tech Media & News -->
<article class="resource-card">
<div class="resource-card-header">
<i class="fas fa-newspaper"></i>
<h3>Tech Media & News</h3>
</div>
<div class="resource-card-body">
<ul>
<li>
<a href="https://shega.co/" target="_blank" class="resource-link">
Shega (leading source)
</a>
</li>
<li>
<a href="https://zarejournal.com/" target="_blank" class="resource-link">
Zare Journal
</a>
</li>
</ul>
</div>
</article>
<!-- Government & Policy -->
<article class="resource-card">
<div class="resource-card-header">
<i class="fas fa-landmark"></i>
<h3>Government & Policy</h3>
</div>
<div class="resource-card-body">
<ul>
<li>
<a href="http://www.mint.gov.et/" target="_blank" class="resource-link">
Ministry of Innovation & Technology
</a>
</li>
<li>
<span class="resource-text">Digital Ethiopia 2025 → 2030</span>
</li>
<li>
<span class="resource-text">Fayda Digital ID</span>
</li>
</ul>
</div>
</article>
<!-- Startup Hubs & Incubators -->
<article class="resource-card">
<div class="resource-card-header">
<i class="fas fa-rocket"></i>
<h3>Startup Hubs & Incubators</h3>
</div>
<div class="resource-card-body">
<ul>
<li>
<a href="https://www.iceaddis.com/" target="_blank" class="resource-link">
iceAddis
</a>
</li>
<li>
<a href="https://blueMoon.et/" target="_blank" class="resource-link">
blueMoon
</a>
</li>
<li>
<span class="resource-text">XHub Addis</span>
</li>
<li>
<span class="resource-text">EDI (Entrepreneurship Development Institute)</span>
</li>
</ul>
</div>
</article>
</div>
</section>
<!-- Tool Comparison Matrix -->
<section class="tool-comparison-section">
<div class="section-header">
<h2><i class="fas fa-balance-scale"></i> Tool Comparison for Ethiopian Context</h2>
<p>Evaluated for slow internet, cost in ETB, and local support</p>
</div>
<div class="comparison-table-container">
<table class="comparison-table">
<thead>
<tr>
<th>Category</th>
<th>Tool</th>
<th>Slow Internet Performance</th>
<th>Cost (ETB approx)</th>
<th>Local Adoption/Support</th>
</tr>
</thead>
<tbody>
<tr>
<td>Hosting</td>
<td>HahuCloud</td>
<td><span class="rating excellent">Excellent</span></td>
<td>From ~500/year</td>
<td>High, Telegram support</td>
</tr>
<tr>
<td>Hosting</td>
<td>Yegara Host</td>
<td><span class="rating good">Very Good</span></td>
<td>Unlimited ~1,000/year</td>
<td>High, phone/chat</td>
</tr>
<tr>
<td>Payment Gateway</td>
<td>Chapa</td>
<td><span class="rating excellent">Excellent</span></td>
<td>~2% fee</td>
<td>Very High</td>
</tr>
<tr>
<td>Payment Gateway</td>
<td>HelloCash</td>
<td><span class="rating good">Good</span></td>
<td>Low fees</td>
<td>Widespread</td>
</tr>
<tr>
<td>Framework</td>
<td>React/Flutter</td>
<td><span class="rating good">Good</span></td>
<td>Free</td>
<td>High in major cities</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- Career Resources -->
<section class="career-resources-section">
<div class="section-header">
<h2><i class="fas fa-briefcase"></i> Career Resources</h2>
<p>2026 Salary Estimates & Career Guidance</p>
</div>
<div class="career-content">
<div class="salary-guide">
<h3>Salary Estimates (Monthly)</h3>
<div class="salary-grid">
<div class="salary-level">
<span class="level">Junior Developer</span>
<span class="salary">20,000 - 40,000 ETB</span>
</div>
<div class="salary-level">
<span class="level">Mid-Level Developer</span>
<span class="salary">40,000 - 60,000 ETB</span>
</div>
<div class="salary-level">
<span class="level">Senior Developer</span>
<span class="salary">60,000 - 100,000 ETB</span>
</div>
<div class="salary-level">
<span class="level">Remote (International)</span>
<span class="salary">$3,000+ USD</span>
</div>
</div>
</div>
<div class="career-tips">
<h3>Career Development Tips</h3>
<ul>
<li>
<i class="fas fa-code"></i>
<span>Popular stacks: React/Node, Flutter, Python/ML</span>
</li>
<li>
<i class="fas fa-comments"></i>
<span>Interview prep: LeetCode + local context questions</span>
</li>
<li>
<i class="fas fa-globe"></i>
<span>Remote work: Strong GitHub portfolio & LinkedIn</span>
</li>
<li>
<i class="fas fa-passport"></i>
<span>Visa focus: Remote opportunities or local startups</span>
</li>
</ul>
</div>
</div>
</section>
<!-- Download Center -->
<section class="download-center-section">
<div class="section-header">
<h2><i class="fas fa-download"></i> Download Center</h2>
<p>Offline materials for Ethiopian developers</p>
</div>
<div class="download-grid">
<div class="download-item">
<div class="download-icon">
<i class="fas fa-file-contract"></i>
</div>
<h3>Ethiopian Tech Templates</h3>
<p>Contract templates and project proposals</p>
<button class="btn-download" onclick="downloadResource('templates')">
Download (Coming Soon)
</button>
</div>
<div class="download-item">
<div class="download-icon">
<i class="fas fa-code"></i>
</div>
<h3>Localized ChGMTsheets</h3>
<p>React/Chapa setup, deployment guides</p>
<button class="btn-download" onclick="downloadResource('chGMTsheets')">
Download (Coming Soon)
</button>
</div>
<div class="download-item">
<div class="download-icon">
<i class="fas fa-book"></i>
</div>
<h3>Offline Tutorials</h3>
<p>PDF guides for slow internet access</p>
<button class="btn-download" onclick="downloadResource('tutorials')">
Download (Coming Soon)
</button>
</div>
</div>
</section>
<!-- Community Contributions -->
<section class="contribution-section">
<div class="section-header">
<h2><i class="fas fa-hands-helping"></i> Contribute & Suggest Resources</h2>
<p>Help build the Ethiopian tech ecosystem</p>
</div>
<div class="contribution-content">
<p>Open an issue on GitHub or email us. Let's build together!</p>
<div class="contribution-actions">
<a href="https://github.com/ETC-Ethiopia/resources" target="_blank" class="btn-contribute">
<i class="fab fa-github"></i> GitHub Issues
</a>
<a href="mailto:resources@ethiopiantechcamp.et" class="btn-contribute">
<i class="fas fa-envelope"></i> Email Suggestions
</a>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<img src="assets/images/logo.png" alt="ETC" width="60" loading="lazy">
<div>
<h3>Ethiopian Tech Camp</h3>
<p>Empowering developers nationwide</p>
</div>
</div>
<p class="footer-description">
Connecting Ethiopian developers with resources, communities, and opportunities across all regions.
</p>
</div>
<div class="footer-section">
<h4>Platform</h4>
<a href="index.html">Home</a>
<a href="resources.html">Resources</a>
<a href="articles.html">Articles</a>
<a href="community.html">Community</a>
</div>
<div class="footer-section">
<h4>Support</h4>
<a href="about.html">About Us</a>
<a href="contact.html">Contact</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
</div>
<div class="footer-section">
<h4>Ethiopia-Wide</h4>
<p>Serving developers across all regions of Ethiopia.</p>
<div class="footer-time">
<i class="far fa-clock"></i>
Current GMT: <span id="footer-time"></span>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 202 Ethiopian Tech Camp — Built for Ethiopian developers.</p>
</div>
</footer>
<!-- Font Awesome loaded asynchronously -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" media="print" onload="this.media='all'">
<!-- JavaScript loaded defer -->
<script src="assets/js/api.js"></script>
<script src="assets/js/app.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/theme.js"></script>
<script src="assets/js/resources.js"></script>
<script src="assets/js/performance.js"></script>
<!-- Inline scripts for critical functionality -->
<script>
// Update Ethiopia time
function updateEthiopiaTime() {
const now = new Date();
const ethiopiaTime = new Date(now.getTime());
const timeString = ethiopiaTime.toLocaleTimeString('en-US', {
hour: '2-digit',
minute: '2-digit'
});
document.getElementById('current-time').textContent = timeString + ' GMT';
document.getElementById('footer-time').textContent = timeString + ' GMT';
}
// Progress tracking
function updateProgress(path, amount) {
const progress = localStorage.getItem(path + '-progress') || 0;
const newProgress = Math.min(parseInt(progress) + amount, 100);
localStorage.setItem(path + '-progress', newProgress);
// Update UI
const fill = document.querySelector(`#${path}-path .progress-fill`);
if (fill) {
fill.style.width = newProgress + '%';
}
alert(`Progress updated to ${newProgress}%`);
}
// Initialize on page load
document.addEventListener('DOMContentLoaded', function() {
updateEthiopiaTime();
lazyLoadImages();
// Update time every minute
setInterval(updateEthiopiaTime, 60000);
// Load saved progress
['web', 'mobile', 'ai'].forEach(path => {
const saved = localStorage.getItem(path + '-progress');
if (saved) {
const fill = document.querySelector(`#${path}-path .progress-fill`);
if (fill) {
fill.style.width = saved + '%';
}
}
});
});
</script>
</body>
</html>