-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
981 lines (772 loc) · 76.8 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
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
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Think of how Africa/Humanity can empower itself using technology and the right philosophy. Now, meet the people dedicated to making this happen right now.">
<meta name="author" content="NUCHWEZI">
<title>Nuchwezi</title>
<!-- Bootstrap core CSS -->
<link href="static/css/bootstrap.min.css" rel="stylesheet">
<link href="static/font-awesome/css/font-awesome.css" rel="stylesheet"/>
<link href="static/css/main.css" rel="stylesheet">
<!-- link href="static/css/xmas.css" rel="stylesheet" -->
<link href="static/css/xmas.css" rel="stylesheet">
<style>
body {
margin-top: 60px;
background-image: url('/static/images/bg.png');
}
</style>
<!-- Fav and touch icons -->
<link rel="shortcut icon" sizes="196x196" href="static/images/NuChwezi-SIGIL.png">
<link rel="shortcut icon" sizes="128x128" href="static/images/NuChwezi-SIGIL.png">
<link rel="apple-touch-icon" sizes="128x128" href="static/images/NuChwezi-SIGIL.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="static/images/NuChwezi-SIGIL.png">
<link rel="shortcut icon" href="static/images/NuChwezi-SIGIL.png">
</head>
<body>
<div class="container">
<div class="col-lg-12">
<div class="row">
<div class="col-md-10">
<h1 class="brand sugar"> Nuchwezi
<img src="static/images/NuChwezi-SIGIL.png" class="logo" />
<!-- small><br/>think ~ create</small -->
<small><br/>research ~ create</small>
<!-- small><br/>think <img src="/static/images/xmas.png" class="xmas" /> create</small -->
</h1>
</div>
</div>
<div class="row">
<a class="btn btn-link sugar" href="#projects" data-toggle="tab" data-ti="nuchwezi:projects" >Innovations <span class="hide-sm">+ Xperiments</span></a>
<!-- a class="btn btn-link sugar" href="#partners" data-toggle="tab" data-ti="nuchwezi:partners" >Partners <span class="hide-sm">+ Clients</span></a -->
<a class="btn btn-link sugar" href="#partners" data-toggle="tab" data-ti="nuchwezi:partners" >Partners <span class="hide-sm">+ Clients</span></a>
<a class="btn btn-link sugar" href="#intro" data-toggle="tab" data-ti="nuchwezi:about" data-sc="2">Business</a>
<a class="btn btn-link sugar" href="#contact" data-toggle="tab" title="Get in Touch" data-ti="nuchwezi:contact" data-sc="5"><i class="fa fa-globe"></i> meet us</a>
<a class="btn btn-link sugar" href="#feedback" data-toggle="tab" title="Inform Us" data-ti="nuchwezi:feedback" data-sc="5"><i class="fa fa-send"></i> give feedback</a>
<hr class="sugar"/>
</div>
<div class="tab-content">
<div id="intro" class="row tab-pane" >
<h1 class="sugar">Think of how Africa/Humanity can empower itself using technology and the right philosophy. Now, meet the people dedicated to making this happen right now. <small> We represent the best ideals of our age - Liberty, Creativity & Sustainable Development.
</small></h1>
<br/><br/>
<!-- span class="btc"><small>Thinking and innovating for humanity is hard, expensive work! You can readily support our efforts, by <b><a href="https://bit.ly/2DTray" target="_blank" title="Tray, a powerful time-tracking editor for creatives, thinkers and writers">buying our $2 Tray</a></b> Also,note that we support the idea of cryptocurrencies and blockchain-powered business. We do have an account on the blockchain, for those willing to sponsor our efforts in keeping most of our solutions
open-source. A few Satoshis can go a long way!: <span class="sugar"><b>1GhUuxVTxNfjRMAHUL6cMUwMdc3xzE6R79</b></small></span -->
</div>
<div id="contact" class="row tab-pane" >
<h1 class="sugar"> We are Africans dedicated to advancing Africa using the best ideas and philosophy we can harness.</h1>
<h2 class="sugar"><small>We are a company registered in Uganda since 2014.</small></h2>
<!-- div><img src="/static/images/Nuchweziat9.png" style="width:80vw;"/></div -->
<div><img src="/static/images/Nuchweziat10.jpg" style="width:80vw;"/></div>
<h2 class="sugar"><small>Reach us via <b>info [at] nuchwezi.com</b> | Come meet us, in the corporeal world, on 1st Cwa Road, Plot 266, Garuga > Bugabo. Yes, in Uganda. </b></small></h2>
</div>
<div id="feedback" class="row tab-pane" >
<h1 class="sugar"> Please leave some feedback if you can...</h1>
<iframe src="https://chwezi.tech/persona/bb765c31-6959-49d0-b192-6c83bdab5cb4/histrion/?minimal=1&embed=1&save=0" class="embeds" noborder></iframe>
</div>
<div id="projects" class="row tab-pane active">
<div class="row">
<h1 class="sugar hidden-xs">Here are some of our active projects and services...</h1>
<h1 class="sugar visible-xs">Our Active projects...</h1>
</div>
<div class="row">
<div class="start">
<!-- p>First, browse and
<a href="https://bit.ly/appsera" target="_blank">shop some apps from the lab</a>.
<br/>
</p -->
<div class="notice"><b>UPDATES:</b>
<ul>
<li><b>UIC</b> the core UGANDA Internet Community, finally has an official Nuchwezi-sponsored website. Visit <a target="_blank" href="https://uic.nuchwezi.com">UIC Landing Page</a> for more.</li>
<li><b>DEC 2024</b>: we are exploring plans to support our communities with an alternative software product publication service. Research and planning currently underway... with support from concerned ecosystem stakeholders.</a>
<!-- li>CBD, the web-based utility for discovering hidden treasures in books, is back online <a target="_blank" href="https://cbd.chwezi.tech">CBD</a></li -->
<!-- li>For especially academic research from our labs, as well as creative literature, please visit the portfolio page at <a target="_blank" href="https://chwezi.tech">Our Team's Research Portfolio</a></li -->
<li>Our Media Lab and Community Education Office have invested well in Education Materials one might readily consume in video form. Please visit <a target="_blank" href="https://all266.com/mlectures">Video Mini-Lecture Series</a>
<!-- li>Since nearly 2014, we have operated post office box #3, Kisubi, but hardly ever found any mail being posted till now. Thus, for the sake of progress and cost-reduction, <b>we are discouraging and eliminating official communications via snail mail.</b> For any formal communications, please use our electronic mail address: <a href="mailto:info@nuchwezi.com">info [at] nuchwezi.com</a></li -->
<!-- li><b style="color: deeppink;">**SURPRISE!</b> We recently released <a data-sc="5" data-ti="qmark-paid:mobile:install" target="_blank" href="https://bit.ly/1qmark">QMark</a>, a smarter alternative to traditional business cards. It currently costs just $5 on the Store, however, for a limited time, we shall offer you a <a data-sc="5" data-ti="qmark-free:mobile:install" target="_blank"
href="https://drive.google.com/file/d/1PtPh45MR7WwrVd_hQbKWhPant40BH2k7/view?usp=share_link">FREE QMark Download</a></li -->
<!--
<li>Please note that our active official email address is <i>info [at] nuchwezi.com</i>. Previous addresses might still work, but please consider using this one.</li>
<li>
Further development on MoTracy (MoT) the MTN variant of the Mobile Money analytics solution from our lab is temporarily under hold for lack of funding. The same applies to AMT, the equivalent solution for Airtel Money subscribers. If you are interested or wish to get involved, don't hesitate to reach out to us.</li>
-->
</ul>
</div>
</div>
</div>
<!-- start PROJECTS -->
<div class="row">
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/ZYXPVRh8/89799b91be005a6475b446a624d0b6ed.jpg" alt="TTTT">
<div class="caption">
<h3>TEA Language <small>(utility)</small></h3>
<p>
TTTT, is short for TEA (Transforming Executable Alphabet) [T]ext [T]ransformer [T]erminal.
TEA, is useful in problem solving using general programming leveraging Text Processing methods.
TTTT is the official programming environment for the TEA language.
TTTT comes with an in-built mechanism to allow TEA beginners to import some example TEA programs and try them out interactively.
<hr/>
TEA is a new programming language being developed at Nuchwezi. It is currently available for mobile users via Android, and all major Operating Systems via the command-line TTTT</p>
<p>
<!-- a href="https://play.google.com/store/apps/details?id=com.nuchwezi.stranformer" class="btn btn-success" target="_blank" role="button" data-sc="5" data-ti="histrion:mobile:install"><i class="fa fa-android"></i> INSTALL <br/>TTTT</a -->
<a href="https://github.com/mcnemesis/cli_tttt" class="btn btn-lg btn-default" target="_blank" role="button" data-sc="5" data-ti="tttt:view:repo"><i class="fa fa-cap"></i> LINUX TEA </a>
<a href="https://bitbucket.org/nuchwezilabs/tttexttransformer/src/master/" class="btn btn-success" target="_blank" role="button" data-sc="5" data-ti="histrion:mobile:install"><i class="fa fa-android"></i> TEA for <br/>MOBILE</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<!--
<iframe width="100%" height="315" src="https://www.youtube.com/embed/tq938vKQc3c" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<img src="https://i.postimg.cc/MH2VyC0f/vortex.gif" alt="VOSAC" >
<div class="caption">
<h3>VOSAC <small>(conversational robots)</small></h3>
<p>The existing methods of designing and delivering customer support using automation already proved their worth in many domains of business, however, our labs bring you a new generation of customer support robots that are cheap to deploy, quick to customize and ready for real world business cases. Meet the VOSA (Voice Operated Support Assistant), research on which is being actively spearheaded by our own resident researchers
at the lab. The VOSA Client, or rather "VOSAC" is ready to download and test..
<p>
<a href="http://bit.ly/4vosac" class="btn btn-warning" target="_blank" role="button" data-sc="5" data-ti="vosac:view:install"><i class="fa fa-android"></i> GET <br/>VOSAC APP</a>
<a href="https://mak.academia.edu/JosephWillrichLutalo" class="btn btn-lg btn-default" target="_blank" role="button" data-sc="5" data-ti="vosac:view:researcher"><i class="fa fa-cap"></i> The Team </a>
<br/>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/3RD208GH/qrlord.png" alt="QRLOAD">
<div class="caption">
<h3>QRLOAD <small>(utility)</small></h3>
<p>QRLOAD is the best of the simple QRCODE editors you can find for your phone. It can be used to create new quick-response codes (QRCODES) from user-provided text, or via the clipboard, share the code and more, in the simplest of ways. It is a true-must-have tool in this day and age of scan-to-know, scan-to-install, scan-to-pay, etc.</p>
<p>
<a href="https://play.google.com/store/apps/details?id=com.nuchwezi.qrload" class="btn btn-primary" target="_blank" role="button" data-sc="4" data-ti="qrload:mobile:install"><i class="fa fa-android"></i> INSTALL <br/>QRLOAD</a>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<!--
<iframe width="100%" height="315" src="https://www.youtube.com/embed/tq938vKQc3c" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<img src="https://i.postimg.cc/wMvVSGWN/source.gif" alt="266 UNIVERSE" >
<div class="caption">
<h3>266 TV <small>(edutainment)</small></h3>
<p>We once wondered what the most exciting thing possible with the newly established DNAP tech stack could be. Building a modern TV app turned out to be one of them. To most, 266 means Lesotho, however, to us, it means ultimated edutainment and techscapades from the NML! <i>One of the examples of building apps by embedding a DNAP histrion into existing software.</i></p>
<p>
<a href="http://bit.ly/266TVapp" class="btn btn-success" target="_blank" role="button" data-sc="4" data-ti="266tv:view:install"><i class="fa fa-android"></i> GET <br/>TV APP</a>
<a href="https://github.com/NuChwezi/Embed-DNAP-Histrion" class="btn btn-lg btn-default" target="_blank" role="button" data-sc="3" data-ti="DNAp:embed:code"><i class="fa fa-github"></i> Hack DNAP<br/>Embeddables</a>
<br/>
<a title="Official 266 TV and MORE" href="https://all266.com" class="btn btn-broad btn-lg" target="_blank" role="button" data-sc="4" data-ti="266tv:view:all266"><i class="fa fa-globe"></i> 266 UNIVERSE!</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/VLn7xmgm/Promo-Art-1024x500.png" alt="NeD - text file editor">
<div class="caption">
<h3>Nerd Editor <small>(utility)</small></h3>
<p>Nerd Editor is the best of the simple file editors you can find for your phone. It can be used to create new files or edit existing files with little or no hustle. It can serve well as a file editor for those reading or editing source files on phone. Comes with an in-built file-name time-stamping feature.</p>
<p>
<a href="https://play.google.com/store/apps/details?id=com.nuchwezi.nerdeditor" class="btn btn-primary" target="_blank" role="button" data-sc="5" data-ti="ned:mobile:install"><i class="fa fa-android"></i> INSTALL <br/>NeD</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/cCVbQJc5/Promo-Art-1024x500.png" alt="Meta-Egg TRAY">
<div class="caption">
<h3>Meta-Egg TRAY <small>(productivity)</small></h3>
<p>We are not trying to turn humans into egg laying things, but this here app readily serves that purpose! A mobile app that allows one to keep track of a stream of time-stamped strings, and to later be able to read, share, analyze or delete them at will. Great tool for paid scribes, diarists, journalists, researchers and more.</p>
<p>
<a href="https://github.com/mcnemesis/tray" class="btn btn-lg btn-default" target="_blank" role="button" data-sc="5" data-ti="tray:code"><i class="fa fa-github"></i> Hack TRAY</a>
<a href="https://play.google.com/store/apps/details?id=com.nuchwezi.tray" class="btn btn-primary" target="_blank" role="button" data-sc="5" data-ti="tray:mobile:install" ><i class="fa fa-android"></i> INSTALL <br/>TRAY</a>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<!--
<iframe width="100%" height="315" src="https://www.youtube.com/embed/43WODsPkXMI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<img src="https://i.postimg.cc/W13FLJcQ/source.gif" alt="DRAMON" >
<div class="caption">
<h3>DRAMON <small>(utility)</small></h3>
<p>Thinking of those moments when you wish there was someone to suggest to you which of your favorite shoes to wear or which of your friends to visit this weekend? Well, if for now, you don't mind getting suggestions for things to do from Miss Random Personal Assistant Dramon, then make sure to grab this little AI experiment and run with it!!</p>
<p>
<a href="http://bit.ly/getDRAMON" class="btn btn-info" target="_blank" role="button" data-sc="2" data-ti="dramon:view:install"><i class="fa fa-android"></i> GET <br/>APP</a>
</p>
</div>
</div>
</div>
<!-- div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/Wp075ytQ/VSMWard-Azure-Ruby1.jpg" alt="AMTracy">
<div class="caption">
<h3>AMTracy <small>(Finance)</small></h3>
<p>Once you have yourself a copy of AMT, you'll never need another tool for keeping tabs on the most important figures related to your Airtel Money account. Additionally, you get a simple way to do basic financial reports, Airtel Money data backup and restore, and more. On the Google Play Store for Uganda only!</p>
<p>
<a href="https://amtracy.chwezi.tech/" class="btn btn-info" target="_blank" role="button" data-sc="5" data-ti="amtracy:web:view"><i class="fa fa-globe"></i> AMT INFO</a>
<a href="https://play.google.com/store/apps/details?id=com.nuchwezi.amtracy" class="btn btn-danger" target="_blank" role="button" data-sc="5" data-ti="amtracy:mobile:install"><i class="fa fa-android"></i> INSTALL <br/>AMT</a>
</p>
</div>
</div>
</div -->
<!-- div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/2ypdGQ4d/5c2366a21f00002f0926b6b6.jpg" alt="MoTracy">
<div class="caption">
<h3>MoTracy <small>(Finance)</small></h3>
<p>Some folks prefer gold to diamonds or rubies, so we have MoTracy for MTN Mobile Money subscribers! Yes, same features as AMT, but with a whole different experience. <hr/>Is it possible that at a future moment, MoT and AMT might get merged into a single mobile money analytics platform? <br/><i>For business users, that option is currently being experimented with, via a cloud-based offering. <a href="mailto:nuchwezi@gmail.com">Contact us for details.</a></i></p>
<p>
<a href="https://www.youtube.com/watch?v=CMYE3skyW0c&feature=youtu.be" class="btn btn-success" target="_blank" role="button" data-sc="3" data-ti="motracy:view:promo"><i class="fa fa-youtube"></i> WATCH <br/>DEMO</a>
<a href="https://play.google.com/store/apps/details?id=com.nuchwezi.motracy" class="btn btn-warning" target="_blank" role="button" data-sc="5" data-ti="motracy:mobile:install" ><i class="fa fa-android"></i> INSTALL <br/>MoT</a>
</p>
</div>
</div>
</div -->
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/qMM0YYct/1-Chili-Dinner.jpg" alt="THE STUDIO">
<div class="caption">
<h3>THE STUDIO <small>(DNAP)</small></h3>
<p>As the first element of what we originally envisaged when we concieved of <a href="https://nuscribes.com/scribes_app/book/40/read/?#chapter-500"><b>Project Okot</b></a>, The Studio is a technology that enables anyone (including those with no programming knowledge whatsoever), to quickly design, publish and deploy real-world apps for personal, or commercial use - all at the mere click of a button, and currently, at 0-cost! The power and flexibility
our technology brings to apps development has no equal at the moment. Want to try building an app in minutes, with no prior programming experience? Let's show you how!</p>
<p>
<a href="https://studio.chwezi.tech" class="btn btn-danger" target="_blank" role="button" data-sc="5" data-ti="studio:view:use"><i class="fa fa-pencil-square-o"></i><span class="hidden-xs">START<br/> CREATING</span><span class="visible-xs">CREATE</span></a>
<a href="https://theatre.nuchwezi.com/persona/49d1463a-d977-4ceb-9dac-e5c70b521444/histrion/" class="btn btn-info" target="_blank" role="button" data-sc="3" data-ti="histrion:view:test"><i class="fa fa-flask"></i> A TEST <br/>APP</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/KcJTM6JQ/new-droid-city-by-oliverink-ddk96e0-fullview.jpg" alt="THE HISTRION">
<div class="caption">
<h3>THE HISTRION <small>(DNAP)</small></h3>
<p>To enable you to build any kind of apps, that can run/work anywhere, in the easiest manner possible, we built The Histrion. It is a general purpose app, that self-modifies to become any app you have designed using The Studio. You have already seen an example of the histrion at work in the test app, here's another example showing the same histrion having changed into <a
href="https://theatre.nuchwezi.com/persona/b702806bbc0bb46a0c8553a845e17b/histrion/">something else.</a> We currently have built a histrion for Android, and for the modern web. But will build those for WP, IOS and more...</p>
<p>
<a href="https://histrion.chwezi.tech/" class="btn btn-info" target="_blank" role="button" data-sc="5" data-ti="histrion:web:view"><i class="fa fa-globe"></i> WEB <br/>HISTRION</a>
<a href="https://play.google.com/store/apps/details?id=com.nuchwezi.historion" class="btn btn-success" target="_blank" role="button" data-sc="5" data-ti="histrion:mobile:install"><i class="fa fa-android"></i> INSTALL <br/>HISTRION</a>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/0jsL2T8H/Dk-Kqz-Nf-Xg-AAh-Nre.jpg" alt="KIZINA" >
<div class="caption">
<h3>THE THEATRE <small>(DNAP)</small></h3>
<p>The DNAP is very ambitious. To offer a full suite of self-sustaining, self-contained range of data technologies, we had to build something called the THE THEATRE. This platform, which is technically a Cloud Computing, Platform-as-a-Service technology, is the heart of the original Project Okot (now DNAP). It is where personas/apps designed via the The Studio are published and served from. It is also where their acts/data goes, and where the web histrion, and diviners both
pick their data from, and where they are likewise served from. So, basically, this completes the entire story of Project-O, and lots of planned features such as Machine Learning as a service, mean to power your innovations on our platforms, are meant to take place here - mostly behind-the-scenes.<hr/>For now, you need special access to directly use The Theatre, but, even without direct access, anyone already using any of the Project-O technologies is
somehow leveraging this already.</p>
<p>
<a href="https://nuscribes.com/scribes_app/book/40/read/?#chapter-500" class="btn btn-lg btn-info" target="_blank" role="button" data-sc="3" data-ti="theatre:read"><i class="fa fa-cloud"></i> LEARN MORE</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://img02.deviantart.net/25c0/i/2012/344/e/c/dashboard_by_octobermatthew-d5nmmvl.jpg" alt="THE DATA DIVINER">
<div class="caption">
<h3>THE DATA DIVINER <small>(DNAP)</small></h3>
<p>Having given you the power to create compelling and powerful data-apps, we go a step further, and give you an auto-ready, user-controlled analytics dashboard for any app you have created using THE STUDIO. With this, you can not only view data being collected by your apps, but can start to mine information and insights from them, using basic or advanced techniques spanning explorative data-analysis to predictive statistics.<hr/>Also note: our diviner has been
built to be able to actually analyze any compatible datasets anywhere on the web - check the generic diviner for this. It also integrates our work on The Meliorator project (see below)</p>
<p>
<a href="https://diviner.chwezi.tech" class="btn btn-danger" target="_blank" role="button" data-sc="5" data-ti="diviner:view"><i class="fa fa-line-chart"></i> GENERIC <br/>DIVINER</a>
<a href="https://theatre.nuchwezi.com/persona/b702806bbc0bb46a0c8553a845e17b/diviner/" class="btn btn-info" target="_blank" role="button" data-sc="3" data-ti="diviner:example:view" ><i class="fa fa-pie-chart"></i> EXAMPLE <br/>DIVINER</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/c48gHM2Y/16-X52-Portable-Monocular-High-Definition-Monocular-Telescope-Waterproof-Mini-Portable-Military-Zoom.jpg" alt="THE DNAP Seer">
<div class="caption">
<h3>THE SEER <small>(DNAP)</small></h3>
<p>DNAP Seer is a simple means to let data administrators and analyts on teams collecting data via DNAP histrions on web and mobile to be able to readily browse, filter and analyze submitted data.</p>
<p>
<a href="https://play.google.com/store/apps/details?id=com.nuchwezi.dnapseer" class="btn btn-success" target="_blank" role="button" data-sc="5" data-ti="histrion:mobile:install"><i class="fa fa-android"></i> INSTALL <br/>DNAP SEER</a>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<iframe width="100%" height="315" src="https://www.youtube.com/embed/5N-gY2B3qNY" title="New Menuza Bytes | Lux Pro Spiritus home-made candles" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<div class="caption">
<h3>Menuza Bytes <small>(service)</small></h3>
<p>Since 2021, Menuza Bytes, originally a food and drinks startup idea first implemented in Bukaaya-Garuga, saw the era of ICT-driven catering services come to the Nuchwezi family. Also, the idea was to create non-ICT income streams to support the research and developments at parent firm, Nuchwezi. With day-to-day business activities designed to leverage business automation at its simplest - via the popular website and official Menuza Bytes app. We have now transformed into a souvenir shop, with initial focus on marketing and selling our home-made craft-candles and related paraphenalia, mostly for creative and spiritual purposes. It is hoped that this venture shall grow to be a sucessful line of business on its own, and that its impact on technology and society shall create desirable side-effects
as was first envisioned by the architects.</p>
<p>
<a href="https://menuzabytes.com" class="btn btn-success" target="_blank" role="button" data-sc="4" data-ti="menuza:website"><i class="fa fa-globe"></i> Visit Website</a>
<a href="https://bit.ly/4menuza" class="btn btn-primary" target="_blank" role="button" data-sc="5" data-ti="menuza:mobile:install" ><i class="fa fa-android"></i> INSTALL <br/>Menuza Bytes</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<!-- img src="/static/images/projects/xmark.it.png" alt="XMark" -->
<img src="https://orig12.deviantart.net/4c77/f/2014/111/d/c/dragon_dance__sfm__by_argodaemon-d7fhhec.gif" alt="KIZINA" >
<div class="caption">
<h3>KIZINA <small>(framework)</small></h3>
<p>Music has been there since forever, and music albums have existed longer than us, but this, <a href="https://github.com/NuChwezi/KIZINA"><b>KIZINA</b></a>, is the World's first album technology of its kind ever! We have attempted to build a framework upon which music publishers can create self-executing music albums - no external software required, no players, nothing but the album app! It can bundle audio, video, lyrics, bio, art gallery, chat, games, etc. All in an effort to give the fans a richer
experience while enjoying your album. Our friend, <a href="https://nemesisfixx.com" target="_blank">Nemesis Fixx</a>, is the first to use this technology for <a href="https://github.com/NuChwezi/KIZINA/raw/master/BINARIES/Nemesis_Fixx-Esoteric_The-Album_Version1.apk">his debut Hip Hop album</a></p>
<p>
<a href="https://github.com/NuChwezi/KIZINA/raw/master/BINARIES/Nemesis_Fixx-Esoteric_The-Album_Version1.apk" class="btn btn-warning" target="_blank" role="button" data-sc="5" data-ti="kizina:view:album"><i class="fa fa-music"></i> <span class="hidden-xs">Try This!</span><span class="visible-xs">Example</span></a>
<a href="https://github.com/NuChwezi/KIZINA" class="btn btn-lg btn-default" target="_blank" role="button" data-sc="3" data-ti="kizina:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/MHgXjPMF/XMARK-EXAMPLE.png" alt="XMARK">
<div class="caption">
<h3>XMARK <small>(utility & service)</small></h3>
<p>The idea behind the XMARK project is to create a tool that makes generation of and use of QRCode based business cards dead simple. Currently, you can generate the xmark as image, print onto your business cards as the only content and using the XMark app or some barcode scanners, can export the contact info directly into your phone book or contact the associated contact.</p>
<a href="https://xmark.chwezi.tech" class="btn btn-success" target="_blank" role="button" data-sc="5" data-ti="xmark:view"><i class="fa fa-qr"></i> GENERATE <br/>your XMARK</a>
<a href="https://raw.githubusercontent.com/NuChwezi/xmark-android-client/master/release/XMark.apk" class="btn btn-danger" target="_blank" role="button" data-sc="5" data-ti="xmark:mobile:install"><i class="fa fa-android"></i> INSTALL <br/>THE APP</a>
</p>
</div>
</div>
</div>
<!--
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/85hDm9H1/african-writers-publish-final.png" alt="NuScribes.com">
<div class="caption">
<h3>NuScribes.com <small>(utility & service)</small></h3>
<p>NuScribes is a community and <b>meta-library</b> helping shape the future of writing, reading & publishing of books for Africa, by Africans.<hr/>We are exploring new, better (cheaper, more accessible, ubiquitous) ways of helping our sprouting writers get discovered and published.</p>
<p>Our <i>nu</i> books can be read, in <i>nu</i> ways, online or offline. Explore deeper, to find out just what this all means...</p>
<p>
<a href="https://nuscribes.com/" class="btn btn-warning" target="_blank" role="button" data-sc="3" data-ti="nuscribes.com:view"><i class="fa fa-book"></i> DISCOVER <br/>a Book</a>
<a href="https://play.google.com/store/apps/details?id=com.nuchwezi.nuscribes" class="btn btn-danger" target="_blank" role="button" data-sc="5" data-ti="nuscribes:mobile:install"><i class="fa fa-android"></i> INSTALL <br/>THE APP</a>
</p>
</div>
</div>
</div>
-->
</div>
<div class="row">
<!-- div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/projects/allschools.ug.png" alt="AllSchools.ug">
<div class="caption">
<h3>AllSchools.ug <small>(service)</small></h3>
<p>Offering anyone, all the essential facts about any school in Uganda, using one platform to track them all... <hr/>Allowing parents and students to quickly discover and compare local schools.</p>
<p>
<a href="http://allschools.ug/#apply" class="btn btn-warning" target="_blank" role="button" data-sc="5" data-ti="allschools.ug:view:apply"><span class="hidden-xs">+My School</span><span class="visible-xs">+School</span></a>
<a href="http://allschools.ug/#search" class="btn btn-success" target="_blank" role="button" data-sc="3" data-ti="allschools.ug:view:search"><i class="fa fa-search"></i> Schools</a>
</p>
</div>
</div>
</div -->
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/vHS8npLS/1341708070009_ORIGINAL.jpg" alt="The Meliorator" />
<div class="caption">
<h3>The Meliorator <small>(utility)</small></h3>
<p>This project is a JQuery plugin that makes it dead simple for anyone to include a user-controlled Explorative Data Analysis panel in their web pages and web-apps. It can render analytics for compatible data from HTML tables, Javascript collections or from APIs. More power to businesses to leverage data insights.</p>
<hr/>
We have further added some really remarkable, powerful features like the ability to design, render and even save user-controlled dashboards! So, you can explore combinations of analysis that deliver the most insights, and just re-use them later. Those building systems can even plugin-in, and delegage many of the steps to their own server as needed. It's more than a plugin, it's fully-fledged analytics web-app, ready to plug into any existing system.
<p>
<a href="https://nuchwezi.github.io/The-Meliorator/" class="btn btn-info" target="_blank" role="button" data-sc="5" data-ti="meliorator:view:biz"><span class="hidden-xs">Docs & Examples </span><span class="visible-xs">Docs</span></a>
<a href="https://github.com/NuChwezi/The-Meliorator" class="btn btn-lg btn-default" target="_blank" role="button" data-sc="3" data-ti="meliorator:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/Kvnz69n9/mobu-eva-foam-building-blocks-30-pcs-soft-alphabet-blocks-abc-nu.jpg" alt="Ma Ana" >
<div class="caption">
<h3>Ma Ana<small>(utility,app)</small></h3>
<p>IDENTITY! That's one of the most difficult problems to solve. The invention of names, or rather, language, was the GREATEST EVER. But, what really is a WORD? What's the meaning and importance of a NAME? This and more, are the sort of questions one can possibly solve by exploring the meaning of WORDS, by exploring their structure and explicit and implicit associations - knowledge which this little tool can help you keep at your fingertips any and all
time. To any but the dead, this app is a MUST-HAVE.</p>
<p>
<a href="https://play.google.com/store/apps/details?id=com.nuchwezi.maana.maana" class="btn btn-danger" target="_blank" role="button" data-sc="5" data-ti="maana:mobile:install"><i class="fa fa-android"></i> INSTALL Ma Ana</a>
<a href="https://bitbucket.org/nemesisfixx/maana" class="btn btn-lg btn-default" target="_blank" role="button" data-sc="3" data-ti="maana:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<!-- div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://img06.deviantart.net/19b2/i/2004/244/5/b/barcode.png" alt="XMark" >
<div class="caption">
<h3>XMark IT! <small>(service,app)</small></h3>
<p>What's really the purpose of your <i>current</i> business card? <b>The XMark</b>, instead, allows you to save all the info you currently possess on a business card (with just a fraction of the space moreover), and additionally, you can put your entire chain of services, your photo, YouTube, FB, Twitter, interactive website, a poem, etc <b>into</b> a single XMark - which can all reside in a single QRCODE, that you can print to an even smaller card (or
not even have to print at all). With XMark, using paper is just a choice, but you can have all the benefits of a biz card, without any card! Just
scan-to: share, call, sms, email, or view any person, any business, anything! No more boring cards consuming space and adding weight!</p>
<p>
<a href="https://xmark.it" class="btn btn-danger" target="_blank" role="button" data-sc="5" data-ti="xmark:view:biz"><i class="fa fa-qrcode"></i> <span class="hidden-xs">GET a FREE XMark</span><span class="visible-xs">XMark.IT!</span></a>
<a href="https://github.com/NuChwezi/xmark-android-client" class="btn btn-lg btn-default" target="_blank" role="button" data-sc="3" data-ti="xmark:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div -->
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/projects/thaschool.jpg" alt="NPSP">
<div class="caption">
<h3>NPSP <small>(utility & service)</small></h3>
<p><b>NPSP</b> which is <b>N</b>u <b>P</b>rimary <b>S</b>chool <b>P</b>latform, is one of the best, yet simple school management platforms accessible anywhere online! This solution can help your school manage its academic & financial data, generate student reports, analyze academic performance across streams and terms, etc. It can be customized to fit your particular needs, and the curriculum of your school, and more modules can be added on-demand.
<hr/>
Core modules include a registry, academics and finance modules, among others.
</p>
<p>
<a href="http://thaschool.com" class="btn btn-warning" target="_blank" role="button" data-sc="5" data-ti="thaschool.com:view"><i class="fa fa-key"></i> It's REAL</a>
<a href="mailto:nuchwezi@gmail.com" class="btn btn-success" target="_blank" role="button" data-sc="3" data-ti="thaschool.com:apply" ><i class="fa fa-envelope-o"></i> Buy | Info</a>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/projects/trolmote.png" alt="TrolMote">
<div class="caption">
<h3>TrolMote <small>(utility)</small></h3>
<p>Not just an experiment anymore. TrolMote is a Universal Remote Control that allows one to define custom, arbitrary controls for remotely controlling just about anything that can be controlled via a URI. You could trigger a nuclear bomb with this thingie! <i>Haha, not kidding!</i></p> <p>Actually, we use it to manage many of our remote resources, hustle-free and securely.</p>
<p>
<!-- a href="http://trolmote.nuchwezi.com/" class="btn btn-primary" target="_blank" role="button" data-sc="2" data-ti="trolmote:view">TrolMote!</a -->
<a href="https://bitbucket.org/nemesisfixx/trolmote" class="btn btn-default" target="_blank" data-sc="2" role="button" data-ti="trolmote:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/projects/pagematrix.png" alt="Page Matrix">
<div class="caption">
<h3>Page Matrix <small>(utility)</small></h3>
<p>A tool for allowing you to explore more of the web in an efficient (and simple) way</p>
<p>
<a href="http://pagematrix.nuchwezi.com" class="btn btn-primary" target="_blank" role="button" data-sc="2" data-ti="pagematrix:view"><i class="fa fa-search"></i> Explore</a>
<a href="https://github.com/mcnemesis/pagematrix" class="btn btn-default" target="_blank" role="button" data-sc="2" data-ti="pagematrix:code" ><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/projects/nuchwezi-fortune-hunter.png" alt="Fortune Hunter Game">
<div class="caption">
<h3>Fortune Hunter <small>(game)</small></h3>
<p><i>Fortune Cookies are Awesome! So, let's mine some from these ruins!</i> Basically, get to relax and have fun discovering classic quotables known as "Unix Fortune Cookies", by attempting to re-assemble them...</p>
<p>
<a href="https://github.com/NuChwezi/fhunter" class="btn btn-default" target="_blank" role="button" data-sc="2" data-ti="fhunter:code" ><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://orig04.deviantart.net/1d72/f/2015/312/2/e/2e00acf5c2cefc6cf7634c167749abb7-d9fz2u3.jpg" alt="Ghost Message">
<div class="caption">
<h3>Ghost Messages <small>(utility)</small></h3>
<p>Ghost is yet another one of our experimental technologies exploring the use of occult cryptography for mostly esoteric purposes and fun. This one uses a form of encryption known as steganography. The messages can be hidden in plain-sight, and the encrpyted content doesn't have to suggest that it is so - a very potent means of employing cryptography in interesting ways. Ok, now go read that lol posting one more time - there might be something hidden
underneath...<p>
<a href="http://ghost.nuchwezi.com/" class="btn btn-primary" target="_blank" role="button" data-ti="ghost:view">Invisible SMS?</a>
<a href="https://codepen.io/mcnemesis/pen/zqBmdL" class="btn btn-default" target="_blank" role="button" data-ti="ghost:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://img00.deviantart.net/6fdb/i/2014/233/1/0/cthulhu_s_book_by_azot2014-d7w3yw8.jpg" alt="CBD">
<div class="caption">
<h3>CBD <small>(service)</small></h3>
<p>The very ancient, yet still present, science or art of divination, also considered to be one of the earliest means by which mankind was able to consciously tap into and read the contents of his unconscious (not necessarily internal contents), also has a tradition of those who truly read between the lines. Bibliomancy, is here revolutonalized, for modern explorers, who still understand the value of books - any written material that is. <i>To the
technical, this tries to use true chaos - the atmosphere (aka. Random.org)</i><p>
<a href="http://cbd.nuchwezi.com/" class="btn btn-primary" target="_blank" role="button" data-ti="cbd:view">Read Divinity</a>
<a href="https://bitbucket.org/nemesisfixx/cbd" class="btn btn-default" target="_blank" role="button" data-ti="cbd:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/wTytZ7QR/Natural-Scrying-Pool.jpg" alt="SCRY">
<div class="caption">
<h3>SCRY <small>(service)</small></h3>
<p>Yet another mind technology, and still, a subconscious-mind interface. This one is a rendition of the fascinating divination art, this time, aimed at the more visual diviners. The innovation is mostly in the medium - you might see it.<p>
<a href="http://scry.nuchwezi.com/" class="btn btn-primary" target="_blank" role="button" data-ti="scry:view">See Clearly</a>
<a href="https://codepen.io/mcnemesis/pen/VezGwp" class="btn btn-default" target="_blank" role="button" data-ti="scry:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/projects/drop-a-spell.png" alt="Drop-A-Spell">
<div class="caption">
<h3>Drop-A-Spell <small>(utility)</small></h3>
<p>This is an experiment in letting you modify content on any website using special voice commands called <i>spells</i>! Sounds fun? Get your Chrome browser and mic ready...</p>
<p>
<a href="https://nuchwezi.github.io/dropaspell/" class="btn btn-primary" target="_blank" role="button" data-sc="2" data-ti="dropaspell:view:install">INSTALL!</a>
<a href="https://github.com/NuChwezi/dropaspell" class="btn btn-default" target="_blank" role="button" data-sc="2" data-ti="dropaspell:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<!-- this project (Crypto), is now considered unsafe for public consumption -->
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://img02.deviantart.net/df7f/i/2009/292/e/f/thoth_by_myp55.jpg" alt="TrolMote">
<div class="caption">
<h3>Crypto <small>(utility)</small></h3>
<p>Crypto is less about typical cryptography as known to the majority of people, and more about the relatively ancient art of encoding messages in occult ciphers. The applications of this kind of technnology beyond mere fascniation might elude those with not interest in the esoteric - for those who don't know the use of ciphers, consider hacking for the fun of it. Otherwise, it's dead serious.<p>
<a href="https://crypto.nuchwezi.com/" class="btn btn-primary" target="_blank" role="button" data-ti="crypto:view">Get Occult!</a>
<a href="https://bitbucket.org/nemesisfixx/crypto" class="btn btn-default" target="_blank" role="button" data-ti="crypto:code"><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<img src="https://i.postimg.cc/J7YCYyKy/source.gif" alt="GLOBAL Clipboard" >
<div class="caption">
<h3>Global Clipboard <small>(utility)</small></h3>
<p><i>Copy-Paste rules the World! <br/>So the nerds need only 1 Clipboard to rule them all</i> <br/>With this one piece of software installed, you get the ability to copy something on one device and then be able to immediately paste it on another device! With powerful GPG encryption in-built, to ensure this is being done securely</p>
<p>
<a href="mailto:nuchwezi@gmail.com" class="btn btn-primary" target="_blank" role="button" data-sc="2" data-ti="gclipboard:mail:demo">Request</a>
<a href="https://github.com/mcnemesis/globalclipboard" class="btn btn-default" target="_blank" role="button" data-sc="2" data-ti="gclipboard:code" ><i class="fa fa-github"></i> Hack</a>
</p>
</div>
</div>
</div>
<!-- div class="project col-sm-6 col-md-4">
<div class="thumbnail">
<iframe src="https://devruption.neocities.org/" height=500 style="width:100%"></iframe>
<div class="caption">
<h3>DEVRUPTION! <small>(service)</small></h3>
<p>Leveraging our combined extensive experience building cutting-edge mobile and web apps for clients in the region, we are using the hackathon model, to deliver high-quality apps for clients demanding very ridiculous deadlines and no compromise on quality of execution!<hr/>Prices? As low as UGX 1M per app - in 48hrs or less!</p>
<p>
<a href="https://docs.google.com/document/d/1yl9wohaa_UXfwbGpYVdJ3wLvI4pThk-V9WD_f-n-lfk/pub" class="btn btn-warning" target="_blank" role="button" data-sc="5" data-ti="devruption:view:biz"><span class="hidden-xs">Check the Deal</span><span class="visible-xs">DEAL!</span></a>
<a href="https://www.linkedin.com/in/lutalo-joseph-willrich" class="btn btn-success" target="_blank" role="button" data-sc="3" data-ti="linkedin:view:cv"><i class="fa fa-rocket"></i> Team?</a>
</p>
</div>
</div>
</div -->
</div>
</div><!-- end PROJECTS -->
<!-- partners -->
<div id="partners" class="row tab-pane" >
<div class="row">
<h1 class="sugar hidden-xs">Behold, some of our dear partners <small> & clients over the years...</small></h1>
<h1 class="sugar visible-xs">Our Partners...</h1>
</div>
<!-- new entries -->
<div class="row">
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/google.jpg" alt="Google">
<div class="caption">
<h3>Google (<a href="https://abc.xyz/" target="_blank">abc.xyz</a>)</h3>
<p>Alphabet, which is the parent company of Google is a kind of very important partner to Nuchwezi.</p>
<hr/>
<p><i>Several technologies and products built by or sold by Nuchwezi do leverage the IP and or services of Google. For example, VOSAC leverages Google's TTS Services, 266 TV leverages YouTube for content hosting and streaming.</p>
</div>
</div>
</div>
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/microsoft.jpg" alt="Microsoft">
<div class="caption">
<h3>Microsoft (<a href="https://microsoft.com" target="_blank">microsoft.com </a>)</h3>
<p>Apart from providing the main platform from which we develop our in-house products, Microsoft, via their Bing Image Generation service is at the core of many edutainment and content promotion solutions from our media lab; NML.</p>
</div>
</div>
</div>
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/meta.jpg" alt="Meta/Facebook">
<div class="caption">
<h3>Meta/Facebook (<a href="http://meta.com" target="_blank">meta.com</a>)</h3>
<p>Meta, which is the parent company of Facebook, provides social and interaction services that have played a big role in the advancement and outreach efforts of Nuchwezi. In particular, we leverage the WhatsApp platform for customer outreach and after-sales services, but also for hosting our product and service catalogs among other things.</p>
</div>
</div>
</div>
</div>
<!-- end new entries -->
<div class="row">
<!-- div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/8techconsults.jpeg" alt="Eight Tech Consults">
<div class="caption">
<h3>Eight Tech Consults (<a href="https://8technologies.net/" target="_blank">8technologies.net</a>)</small></h3>
<p>Eight Tech Consults Ltd is an ICT services and Management consultancy firm</p>
<hr/>
<p><i>Our best consultants have worked with them to build some critical systems for the private sector.</i></p>
</div>
</div>
</div -->
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/tellistic.png" alt="Tellistic Technology Services">
<div class="caption">
<h3>TELLISTIC Technology Services (<a href="https://tellistic.com" target="_blank">www.tellistic.com</a>)</h3>
<p>TELLISTIC Technology Services is a relatively new firm spanning most of Africa, led by an elite team. They research and offer consultancy services in most things Microsoft Office and Cloud/Azure. In this domain, they are the regional leaders.</p>
<hr/>
<p><i>Our own team used to partner with them in basic and engineering research, and we also once worked with them on various design and branding services.</i></p>
</div>
</div>
</div>
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/fitinsights.png" alt="FIT Insights Group">
<div class="caption">
<h3>FIT Insights Group (<a href="https://fitinsightsgroup.com" target="_blank">fitinsightsgroup.com </a>)</h3>
<p>Fit Insights Group is a well known leader in the design, implementation and dissemination of ICT based solutions for the agricultural sector, especially with regards to enhancing trade in the sector, all across the region. They are one of the leaders in producing high quality info-products consumable online and offline.</p>
<hr/>
<p><i>We used to jointly explore new info gathering and analysis technologies, and also once offered them web master services.</i></p>
</div>
</div>
</div>
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/ds.png" alt="Digital Solutions">
<div class="caption">
<h3>Digital Solutions (<a href="http://www.dsmagic.com/" target="_blank">www.dsmagic.com</a>)</h3>
<p>A legacy software development firm based in Uganda, offering high tech solutions including Chrysalid and Butterfly Internet Cafe Software, and which is both a pioneer and leader in opensource innovations in the African region.</p>
<hr/>
<p><i>In the past, we have been partners on mobile and web powered innovations. We continue to collaborate on advancing big-impact ICT systems in the region.</i></p>
</div>
</div>
</div>
<div class="row">
<!-- div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/aqtiv.png" alt="aQtiv">
<div class="caption">
<h3>aQtiv (<a href="http://aqtiv.ug/" target="_blank">aqtiv.ug</a>)</small></h3>
<p>We provide ICT consultation services & partner on e-learning innovations.</p>
</div>
</div>
</div -->
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/kizito.png" alt="ST. KIZITO LEARNING CENTRE">
<div class="caption">
<h3>ST. KIZITO LEARNING CENTRE (<a href="https://kizitolearningcentre.net" target="_blank">kizitolearningcentre.net</a>)</h3>
<p>This school, operating at primary level, based in Mityana, Uganda, is perhaps one of the most loyal clients and partners of Nuchwezi in the Education Technology sector. We have worked together on several approaches to school management systems, since 2008, and have explored desktop, web and mobile school solutions that are generic enough to adopt perhaps nation-wide or in schools operating on the standard Uganda cirriculum.</p>
</div>
</div>
</div>
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/afli.png" alt="AFLI">
<div class="caption">
<h3>Africa Leadership Institute (<a href="https://aflinstitute.net/" target="_blank">aflinstitute.net</a>)</h3>
<p>African Leadership Institute, AFLI, prides itself as Improving lives by propagating the use of evidence-based advocacy and policy analysis to stimulate change</p>
<hr/>
<p><i>At some point, we were their consultant of choice, in problems solvable using ICTs (such as cloud computing, iot and mobile networks, big data and bi/analytics), especially for the betterment of government and our collective society. <b>Visit <a href="https://mpscanug.com" target="_blank">MPSCANUG</a></b> for more.</i></p>
</div>
</div>
</div>
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/Mak.png" alt="Prof. Donald (Makerere University)">
<div class="caption">
<h3>Professor Donald K.R (<a href="https://rugirakugonza.com/" target="_blank">rugirakugonza.com</a>)</h3>
<p>We designed their Website, and offer them Webmaster support Services</p>
</div>
</div>
</div>
</div><!-- end row -->
<div class="row">
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/serval.png" alt="SBI">
<div class="caption">
<h3>Serval Ltd. (<a href="http://serval.ug/" target="_blank">serval.ug</a>)</h3>
<p>We used to provide consultation services spanning mobile and web technologies.</p>
</div>
</div>
</div>
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/acode.png" alt="Advocates Coalition for Development and Environment">
<div class="caption">
<h3>ACODE (<a href="http://acode-u.org/" target="_blank">acode-u.org</a>)</h3>
<p>ACODE is an independent public policy research and advocacy think tank registered in Uganda with operations in the Eastern and Southern Africa sub-region.</p>
<hr/>
<p><i>We once provided ICT consultation services to them & built some of their powerful mobile & web-powerered research and data-collection platforms.</i></p>
</div>
</div>
</div>
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/bekks.png" alt="Bekks Group of Companies">
<div class="caption">
<h3>BEKKS Group (<a href="#" target="_blank">bekks.net</a>)</h3>
<p>We used to provide ICT consultation services & build their micro-finance technologies. Perhaps this company is not active anymore.</p>
</div>
</div>
</div>
</div><!-- end row -->
<div class="row">
<div class="project partner col-sm-6 col-md-4">
<div class="thumbnail">
<img src="/static/images/partners/sbi.png" alt="SBI">
<div class="caption">
<h3>Smart Business Intelligence (<a href="http://sbintell.com" target="_blank">sbintell.com</a>)</h3>
<p>We once provided them with consultation services in the domain of mobile technologies - especially in aspects of business automation and business intelligence/analytics solutions.</p>
</div>
</div>
</div>
</div>
</div><!-- end row -->
</div>
<!-- end partners -->
</div>
</div>
</div><!-- /.container -->
<!-- JavaScript -->
<script src="/static/js/jquery-1.10.2.js"></script>
<script src="/static/js/analytics.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
<script src="/static/js/jquery.fittext.js"></script>
<!-- script src="/static/js/xmas.js"></script -->
<script>
$(function(){
jQuery(".brand").fitText(1.2);
window.__stats();
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-51296531-1', 'nuchwezi.com');
ga('send', 'pageview');
</script>
</body>
</html>