-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
2425 lines (2290 loc) · 117 KB
/
index.html
File metadata and controls
2425 lines (2290 loc) · 117 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
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
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cybersecurity Consulting Sweden | Public ISMS | Hack23</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Critical CSS - Inline for faster FCP -->
<style>
/* Critical above-the-fold styles only */
:root {
--primary-color: #006633;
--primary-light: #007744;
--accent-color: #008838; /* WCAG 2.1 AA: 4.59:1 contrast on white (was #00C853 at 2.24:1) */
--bg-color: #f8f9fa;
--text-color: #1a1a1a;
--text-secondary: #4a4a4a; /* WCAG 2.1 AA: 8.86:1 contrast on white (improved from #555555 at 7.46:1) */
--button-bg: #007744;
--button-text: #fff;
--spacing-md: 1rem;
--spacing-lg: 1.5rem;
--spacing-xl: 2rem;
--border-radius: 8px;
--border-radius-lg: 12px;
}
@media (prefers-color-scheme: dark) {
:root {
--primary-color: #00cc66;
--primary-light: #00ff88;
--accent-color: #33eeff;
--bg-color: #001a1a;
--text-color: #f0f0f0;
--text-secondary: #aaaaaa;
--button-bg: #2188ff;
--button-text: #e0e0e0;
}
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.7;
color: var(--text-color);
background-color: var(--bg-color);
max-width: 1200px;
margin: 0 auto;
padding: var(--spacing-xl);
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
header {
text-align: center;
margin-bottom: var(--spacing-xl);
padding: var(--spacing-xl) var(--spacing-lg);
border-radius: var(--border-radius-lg);
/* Reserve minimum space for header content to reduce Cumulative Layout Shift (CLS) */
min-height: 400px;
/* Optimize layout performance by creating a new containing block */
contain: layout;
}
h1 {
margin-top: 0;
font-size: 2.5rem;
line-height: 1.2;
color: var(--primary-color);
font-weight: 600;
}
.header-subtitle {
display: block;
font-size: 1.1rem;
font-weight: 400;
margin-top: 0.5rem;
color: var(--text-secondary);
}
.hero-tagline {
font-size: 1.25rem;
line-height: 1.6;
color: var(--text-color);
margin: var(--spacing-lg) auto;
max-width: 800px;
font-weight: 500;
}
.hero-subtitle {
font-size: 1rem;
line-height: 1.6;
color: var(--text-secondary);
margin: var(--spacing-md) auto var(--spacing-xl);
max-width: 700px;
}
.hero-cta {
display: flex;
gap: var(--spacing-md);
flex-wrap: wrap;
justify-content: center;
margin: var(--spacing-xl) 0;
/* Reserve space for CTA buttons to reduce Cumulative Layout Shift (CLS) */
min-height: 56px;
}
.btn-primary-large,
.btn-secondary {
display: inline-block;
padding: 1rem 2rem;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
min-height: 48px;
min-width: 48px;
line-height: 1.5;
}
.btn-primary-large {
background: var(--button-bg);
color: var(--button-text);
box-shadow: 0 4px 12px rgba(0, 119, 68, 0.3);
border: 1px solid transparent;
}
.btn-primary-large:hover {
background: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 119, 68, 0.4);
}
.btn-secondary {
background: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
background: var(--primary-color);
color: white;
}
.logo {
width: 80px;
height: 80px;
border-radius: var(--border-radius-lg);
box-shadow: 0 4px 12px rgba(0, 71, 171, 0.15);
}
.logo-container {
margin-bottom: var(--spacing-lg);
}
</style>
<!-- Preconnect to external domains for performance -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://img.shields.io">
<link rel="dns-prefetch" href="https://hack23.github.io">
<!-- Preload LCP hero image for faster above-the-fold rendering -->
<link rel="preload" href="cia-icon-140.webp" as="image" type="image/webp" fetchpriority="high">
<!-- Defer non-critical CSS -->
<link rel="preload" href="styles.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="styles.css"></noscript><link rel="canonical" href="https://hack23.com/">
<meta name="description" content="Premium cybersecurity consulting and AI-powered political intelligence media in Sweden. Public ISMS, AI-generated parliamentary news, OSINT platforms. ISO 27001, GDPR/NIS2. Gothenburg.">
<meta name="keywords" content="cybersecurity consulting Sweden, public ISMS, ISO 27001, GDPR compliance, NIS2, DevSecOps, AWS security, CISSP consultant, security architecture, cloud security, Gothenburg cybersecurity, compliance automation, zero trust, AI political intelligence, AI-generated news, parliamentary monitoring, OSINT platform, riksdagsmonitor, EU parliament monitor, political transparency, democratic accountability, agentic AI news generation, MCP server">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta name="author" content="James Pether Sörling, CISSP, CISM">
<!-- Open Graph / Social Media -->
<meta property="og:title" content="Hack23 AB | Cybersecurity Consulting & AI-Powered Political Intelligence">
<meta property="og:description" content="Sweden's only public ISMS. AI-powered political intelligence media: autonomous news generation for Swedish & EU parliaments. ISO 27001, GDPR/NIS2 consulting.">
<meta property="og:locale" content="en_US">
<meta property="og:locale:alternate" content="ar_SA">
<meta property="og:locale:alternate" content="da_DK">
<meta property="og:locale:alternate" content="de_DE">
<meta property="og:locale:alternate" content="es_ES">
<meta property="og:locale:alternate" content="fi_FI">
<meta property="og:locale:alternate" content="fr_FR">
<meta property="og:locale:alternate" content="he_IL">
<meta property="og:locale:alternate" content="ja_JP">
<meta property="og:locale:alternate" content="ko_KR">
<meta property="og:locale:alternate" content="nl_NL">
<meta property="og:locale:alternate" content="nb_NO">
<meta property="og:locale:alternate" content="sv_SE">
<meta property="og:locale:alternate" content="zh_CN">
<meta property="og:type" content="website">
<meta property="og:url" content="https://hack23.com/">
<meta property="og:image" content="cia-icon-140.webp">
<meta property="og:image:width" content="140">
<meta property="og:image:height" content="140">
<meta property="og:site_name" content="Hack23 AB - Premium Cybersecurity Consulting"><meta property="og:image:alt" content="Hack23 AB - Cybersecurity Excellence Through Transparency">
<meta property="og:updated_time" content="2026-03-05T00:00:00Z">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Hack23 AB | Cybersecurity & AI Political Intelligence Sweden">
<meta name="twitter:description" content="Sweden's only public ISMS. AI-powered political intelligence: autonomous news generation for Swedish & EU parliaments. CISSP/CISM certified.">
<meta name="twitter:image" content="cia-icon-140.webp">
<meta name="twitter:image:alt" content="Hack23 AB - Security Excellence Through Transparency">
<meta name="twitter:site" content="@hack23ab">
<meta name="twitter:creator" content="@jamessorling">
<!-- Load fonts with font-display swap for better performance (deferred) -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700&family=Share+Tech+Mono&display=swap"
as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700&family=Share+Tech+Mono&display=swap" rel="stylesheet"></noscript>
<!-- Additional branding / UX meta -->
<meta name="application-name" content="Hack23 AB">
<meta name="theme-color" content="#0066CC">
<!-- Schema.org structured data -->
<script type="application/ld+json">{
"@context": "https://schema.org",
"@graph": [
{
"@type": [
"Organization",
"ProfessionalService"
],
"@id": "https://hack23.com/#org",
"url": "https://hack23.com/",
"logo": "cia-icon-140.webp",
"name": "Hack23 AB",
"alternateName": "Hack23",
"slogan": "Security Excellence Through Transparent Innovation",
"legalName": "Hack23 AB",
"foundingDate": "2025-01-01",
"description": "Swedish innovation hub pioneering cybersecurity consulting and AI-powered political intelligence media. Public ISMS, compliance automation, autonomous AI-generated parliamentary news covering Swedish and European parliaments in 14 languages, and security-enabled innovation across five business lines: cybersecurity consulting, AI political intelligence media, CIA Compliance Manager, Citizen Intelligence Agency, and Black Trigram educational gaming.",
"industry": [
"Information Security",
"Cybersecurity Consulting",
"Compliance Automation",
"AI-Powered Media",
"Political Intelligence",
"Game Development"
],
"knowsAbout": [
"Information Security Management Systems",
"Public ISMS Sweden",
"Cybersecurity Consulting",
"ISO 27001 Implementation",
"CIA Triad Assessment",
"Compliance Automation",
"Security Architecture",
"Transparent Operations",
"Risk Management",
"Open Source Security",
"OSINT Methodology",
"Parliamentary Monitoring",
"Political Transparency",
"Swedish Government Analysis",
"AI-Powered News Generation",
"Agentic AI Workflows",
"Political Intelligence Platforms",
"European Parliament Monitoring",
"AI-Disrupted Journalism",
"Model Context Protocol",
"Autonomous Content Generation",
"Multi-Language Political Analysis",
"DevSecOps",
"Cloud Security Architecture",
"OSPO Management",
"AWS Security",
"Enterprise Security Consulting",
"Supply Chain Security",
"SLSA Level 3 Compliance",
"Container Security",
"Serverless Security",
"Zero Trust Architecture",
"Security Culture Training",
"Korean Martial Arts Gaming",
"Cultural Preservation Technology"
],
"areaServed": [
{
"@type": "City",
"name": "Gothenburg",
"containedInPlace": {
"@type": "Country",
"name": "Sweden"
}
},
{
"@type": "Country",
"name": "Sweden"
},
{
"@type": "Place",
"name": "Nordic Region"
},
{
"@type": "Place",
"name": "Europe"
},
{
"@type": "Country",
"name": "United States"
},
{
"@type": "Country",
"name": "United Kingdom"
},
{
"@type": "Country",
"name": "Israel"
},
{
"@type": "Country",
"name": "Canada"
}
],
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "CISSP - Certified Information Systems Security Professional",
"recognizedBy": {
"@type": "Organization",
"name": "(ISC)²"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "CISM - Certified Information Security Manager",
"recognizedBy": {
"@type": "Organization",
"name": "ISACA"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "AWS Certified Security - Specialty",
"recognizedBy": {
"@type": "Organization",
"name": "Amazon Web Services"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "AWS Certified Solutions Architect - Professional",
"recognizedBy": {
"@type": "Organization",
"name": "Amazon Web Services"
}
}
],
"address": {
"@type": "PostalAddress",
"addressLocality": "Gothenburg",
"addressRegion": "Västra Götaland",
"addressCountry": "SE"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "57.7089",
"longitude": "11.9746"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "00:00",
"closes": "00:00",
"description": "By appointment only"
}
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Customer Service",
"url": "https://www.linkedin.com/company/hack23/",
"availableLanguage": [
"English",
"Swedish"
]
},
"numberOfEmployees": {
"@type": "QuantitativeValue",
"value": 1
},
"founder": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling",
"name": "James Pether Sörling",
"givenName": "James Pether",
"familyName": "Sörling",
"additionalName": "pethers",
"jobTitle": "CEO / Founder",
"email": "pether@hack23.com",
"url": "https://www.linkedin.com/in/jamessorling/",
"description": "Cybersecurity leader with 20+ years of experience in information security, cloud architecture, and open source development. Founder of Hack23 AB, creator of CIA Compliance Manager, Citizen Intelligence Agency, and Black Trigram martial arts game.",
"worksFor": {
"@type": "Organization",
"name": "Hack23 AB",
"url": "https://hack23.com"
},
"alumniOf": {
"@type": "EducationalOrganization",
"name": "Chalmers University of Technology"
},
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "CISSP - Certified Information Systems Security Professional"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "CISM - Certified Information Security Manager"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "AWS Certified Security - Specialty"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Professional Certification",
"name": "AWS Certified Solutions Architect - Professional"
}
],
"knowsAbout": [
"Cybersecurity",
"Cloud Security",
"Information Security Management",
"ISO 27001",
"NIST Cybersecurity Framework",
"AWS Security",
"DevSecOps",
"Open Source Security",
"Game Development",
"Korean Martial Arts",
"Taekwondo"
],
"sameAs": [
"https://www.linkedin.com/in/jamessorling/",
"https://github.com/Hack23",
"https://github.com/pethers",
"https://www.openhub.net/accounts/pether",
"https://slashdot.org/~pether",
"https://openprofile.dev/profile/pether"
]
},
"sameAs": [
"https://github.com/Hack23",
"https://www.linkedin.com/company/hack23/",
"https://blacktrigram.com",
"https://riksdagsmonitor.com",
"https://euparliamentmonitor.com",
"https://www.allabolag.se/foretag/hack23-ab/g%C3%B6teborg/konsulter/2KJBPZZI5YF3I"
],
"hasPart": [
{
"@id": "https://blacktrigram.com/#blacktrigram"
},
{
"@id": "https://hack23.com/#cia-compliance-manager"
},
{
"@id": "https://hack23.com/#citizen-intelligence-agency"
},
{
"@id": "https://hack23.com/#riksdagsmonitor"
},
{
"@id": "https://hack23.com/#euparliamentmonitor"
},
{
"@id": "https://hack23.com/#european-parliament-mcp-server"
}
],
"makesOffer": [
{
"@id": "https://hack23.com/services.html#service-security-architecture"
},
{
"@id": "https://hack23.com/services.html#service-cloud-security"
},
{
"@id": "https://hack23.com/services.html#service-secure-development"
},
{
"@id": "https://hack23.com/services.html#service-compliance"
},
{
"@id": "https://hack23.com/services.html#service-opensource-security"
},
{
"@id": "https://hack23.com/services.html#service-security-culture"
}
]
},
{
"@type": "WebSite",
"@id": "https://hack23.com/#website",
"url": "https://hack23.com/",
"name": "Hack23 AB",
"inLanguage": "en",
"publisher": {
"@id": "https://hack23.com/#org"
},
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://hack23.com/?search={search_term_string}"
},
"query-input": "required name=search_term_string"
},
"description": "Swedish cybersecurity consulting and AI-powered political intelligence media. Public ISMS, autonomous AI news generation for Swedish and EU parliaments in 14 languages, and open-source security tools."
},
{
"@type": "VideoGame",
"@id": "https://blacktrigram.com/#blacktrigram",
"name": "Black Trigram",
"alternateName": [
"흑괘",
"Black Trigram Game"
],
"url": "https://blacktrigram.com",
"downloadUrl": "https://github.com/Hack23/blacktrigram/releases",
"codeRepository": "https://github.com/Hack23/blacktrigram",
"image": "https://hack23.com/black-trigram-140.webp",
"screenshot": "https://hack23.com/black-trigram-140.webp",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"description": "Revolutionary 3D precision combat simulator inspired by traditional Korean martial arts focusing on anatomical targeting, realistic physics, and cultural preservation. Features 70 vital points, 5 combat archetypes, and authentic Taekkyeon/Hapkido techniques.",
"genre": [
"Fighting",
"Simulation",
"Educational",
"Cultural"
],
"applicationCategory": "GameApplication",
"applicationSubCategory": "Fighting Game",
"operatingSystem": "Cross-platform",
"gamePlatform": [
"PC",
"Cross-platform",
"Web Browser"
],
"contentRating": "Teen",
"programmingLanguage": [
"C#"
],
"softwareRequirements": "Unity Engine",
"softwareVersion": "latest",
"author": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling",
"name": "James Pether Sörling",
"email": "pether@hack23.com"
},
"creator": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling"
},
"publisher": {
"@type": "Organization",
"@id": "https://hack23.com/#org",
"name": "Hack23 AB",
"email": "info@hack23.com"
},
"maintainer": {
"@type": "Organization",
"@id": "https://hack23.com/#org"
},
"inLanguage": [
"en",
"ko"
],
"educationalUse": "Korean martial arts education and cultural preservation",
"teaches": [
"Korean Traditional Martial Arts",
"Taekkyeon Techniques",
"Hapkido Joint Locks",
"Cultural Heritage",
"Anatomical Vital Points",
"I Ching Principles"
],
"audience": {
"@type": "Audience",
"audienceType": [
"Martial Arts Enthusiasts",
"Cultural Heritage Students",
"Gamers",
"Korean Culture Learners"
]
},
"playMode": [
"SinglePlayer",
"MultiPlayer"
],
"accessibilityFeature": [
"Customizable controls",
"Visual and audio feedback",
"Educational tooltips for martial arts techniques",
"Adjustable difficulty settings"
],
"featureList": [
"70 Anatomical Vital Points System",
"5 Combat Archetypes (Musa, Amsalja, Hacker, Jeongbo, Jojik)",
"Authentic Korean Martial Arts Techniques",
"Physics-Based Combat Simulation",
"Educational Gameplay",
"Cultural Preservation Focus",
"Open Source Development",
"Cross-platform Deployment",
"SLSA Level 3 Supply Chain Security"
],
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"ratingCount": "5",
"bestRating": "5",
"worstRating": "1"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "Open Source Game"
},
"isAccessibleForFree": true,
"keywords": "Black Trigram, Korean martial arts game, Taekkyeon, Hapkido, combat simulator, vital points, educational gaming, cultural preservation, Unity game, C#, open source game",
"sameAs": [
"https://github.com/Hack23/blacktrigram"
]
},
{
"@type": "SoftwareApplication",
"@id": "https://hack23.com/#cia-compliance-manager",
"name": "CIA Compliance Manager",
"alternateName": "Confidentiality Integrity Availability Compliance Manager",
"applicationCategory": "SecurityApplication",
"applicationSubCategory": "Enterprise Security Management",
"operatingSystem": "Cross-platform",
"softwareVersion": "latest",
"url": "https://ciacompliancemanager.com/",
"downloadUrl": "https://github.com/Hack23/cia-compliance-manager/releases",
"codeRepository": "https://github.com/Hack23/cia-compliance-manager",
"image": "https://hack23.com/cia-icon-140.webp",
"screenshot": "https://hack23.com/cia-icon-140.webp",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"description": "Advanced security assessment platform covering confidentiality, integrity and availability with business impact analysis, cost estimation, and compliance mapping to NIST, ISO 27001, GDPR, HIPAA, SOC2 frameworks.",
"featureList": [
"CIA Triad Security Assessment",
"Business Impact Analysis",
"NIST Framework Compliance Mapping",
"ISO 27001 Controls Implementation",
"GDPR Data Protection Assessment",
"HIPAA Compliance Mapping",
"SOC2 Controls Mapping",
"Risk Quantification & Reporting",
"Automated Compliance Reports",
"Security Control Gap Analysis"
],
"programmingLanguage": [
"Java",
"JavaScript",
"TypeScript"
],
"runtimePlatform": "Java",
"softwareRequirements": "Java 11+, Maven",
"audience": [
{
"@type": "Audience",
"audienceType": "Chief Information Security Officers (CISOs)"
},
{
"@type": "Audience",
"audienceType": "Compliance Officers"
},
{
"@type": "Audience",
"audienceType": "IT Security Managers"
},
{
"@type": "Audience",
"audienceType": "Risk Management Professionals"
},
{
"@type": "Audience",
"audienceType": "Security Auditors"
}
],
"teaches": [
"CIA Triad Principles",
"NIST Cybersecurity Framework",
"ISO 27001 Controls",
"GDPR Compliance",
"HIPAA Security Requirements",
"SOC2 Trust Principles",
"Business Impact Analysis",
"Security Risk Management"
],
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "Open Source Security Tool"
},
"publisher": {
"@type": "Organization",
"@id": "https://hack23.com/#org",
"name": "Hack23 AB",
"email": "info@hack23.com"
},
"author": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling",
"name": "James Pether Sörling",
"email": "pether@hack23.com"
},
"creator": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling"
},
"maintainer": {
"@type": "Organization",
"@id": "https://hack23.com/#org"
},
"inLanguage": "en",
"isAccessibleForFree": true,
"keywords": "CIA Triad, security assessment, compliance management, NIST, ISO 27001, GDPR, HIPAA, SOC2, risk management",
"sameAs": [
"https://github.com/Hack23/cia-compliance-manager"
]
},
{
"@type": "WebApplication",
"@id": "https://hack23.com/#citizen-intelligence-agency",
"name": "Citizen Intelligence Agency",
"alternateName": "CIA Political Transparency Platform",
"applicationCategory": "DataVisualizationApplication",
"applicationSubCategory": "Political Intelligence Platform",
"operatingSystem": "Cross-platform",
"url": "https://github.com/Hack23/cia",
"downloadUrl": "https://github.com/Hack23/cia/releases",
"codeRepository": "https://github.com/Hack23/cia",
"image": "cia-logo.png",
"screenshot": "https://hack23.com/cia-icon-140.webp",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"description": "Open-source intelligence and political transparency platform providing data-driven governance insights, parliamentary monitoring, democratic accountability metrics, and real-time political analysis for Swedish democracy.",
"featureList": [
"Swedish Parliamentary Monitoring (Riksdag)",
"Political Decision Tracking",
"Governance Metrics & Rankings",
"Democratic Accountability Analysis",
"Open Data Integration (World Bank, Swedish Government)",
"Political Trend Visualization",
"Voting Pattern Analysis",
"Party Performance Metrics",
"Minister Activity Tracking",
"Committee Work Analysis"
],
"programmingLanguage": [
"Java",
"JavaScript"
],
"runtimePlatform": "Java",
"softwareRequirements": "Java 11+, PostgreSQL",
"audience": [
{
"@type": "Audience",
"audienceType": "Citizens"
},
{
"@type": "Audience",
"audienceType": "Journalists"
},
{
"@type": "Audience",
"audienceType": "Researchers"
},
{
"@type": "Audience",
"audienceType": "Policy Analysts"
},
{
"@type": "Audience",
"audienceType": "Political Scientists"
},
{
"@type": "Audience",
"audienceType": "Democracy Advocates"
}
],
"teaches": [
"Parliamentary Process Analysis",
"Democratic Accountability Metrics",
"Political Decision Tracking",
"OSINT Methodology",
"Swedish Governance System",
"Data-Driven Political Analysis",
"Open Government Data Usage"
],
"browserRequirements": "Requires JavaScript. Recommended: Chrome, Firefox, Safari, Edge (latest versions)",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "Open Source Political Intelligence Platform"
},
"publisher": {
"@type": "Organization",
"@id": "https://hack23.com/#org",
"name": "Hack23 AB",
"email": "info@hack23.com"
},
"author": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling",
"name": "James Pether Sörling",
"email": "pether@hack23.com"
},
"creator": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling"
},
"maintainer": {
"@type": "Organization",
"@id": "https://hack23.com/#org"
},
"inLanguage": [
"en",
"sv"
],
"isAccessibleForFree": true,
"keywords": "political transparency, Swedish parliament, Riksdag monitoring, democratic accountability, OSINT, open government data, political analysis",
"sameAs": [
"https://cia.sourceforge.io/",
"https://github.com/Hack23/cia"
]
},
{
"@type": "WebApplication",
"@id": "https://hack23.com/#riksdagsmonitor",
"name": "Riksdagsmonitor",
"alternateName": "Swedish Parliament Intelligence Platform",
"applicationCategory": "NewsApplication",
"applicationSubCategory": "AI-Powered Political Intelligence Platform",
"operatingSystem": "Cross-platform",
"url": "https://riksdagsmonitor.com",
"codeRepository": "https://github.com/Hack23/riksdagsmonitor",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"description": "AI-powered political intelligence platform for Swedish Parliament monitoring. Features fully autonomous agentic news generation with 10 AI workflows producing deep political analysis in 14 languages, covering 349 current MPs, 50+ years of historical data, and real-time parliamentary intelligence — zero human editors required.",
"featureList": [
"Autonomous AI News Generation (10 Agentic Workflows)",
"14-Language Political Intelligence Coverage",
"Swedish Parliament Real-Time Monitoring",
"349 MP Tracking with Risk Analysis",
"3.5+ Million Vote Records Analysis",
"50+ Years Historical Parliamentary Data",
"OSINT-Based Political Intelligence",
"Anomaly Detection and Early Warning System",
"Party Performance Analytics",
"Pre-Election Monitoring Dashboard"
],
"audience": [
{
"@type": "Audience",
"audienceType": "Citizens"
},
{
"@type": "Audience",
"audienceType": "Journalists"
},
{
"@type": "Audience",
"audienceType": "Political Analysts"
},
{
"@type": "Audience",
"audienceType": "Researchers"
}
],
"publisher": {
"@type": "Organization",
"@id": "https://hack23.com/#org"
},
"author": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling"
},
"inLanguage": [
"en", "sv", "da", "no", "fi", "de", "fr", "es", "nl", "ar", "he", "ja", "ko", "zh"
],
"isAccessibleForFree": true,
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "Open Source AI Political Intelligence"
},
"keywords": "AI news generation, Swedish parliament, riksdag monitoring, political intelligence, OSINT, agentic AI, autonomous journalism, parliamentary analysis, democratic transparency",
"sameAs": [
"https://github.com/Hack23/riksdagsmonitor"
]
},
{
"@type": "WebApplication",
"@id": "https://hack23.com/#euparliamentmonitor",
"name": "EU Parliament Monitor",
"alternateName": "European Parliament Intelligence Platform",
"applicationCategory": "NewsApplication",
"applicationSubCategory": "AI-Powered European Parliament Intelligence",
"operatingSystem": "Cross-platform",
"url": "https://euparliamentmonitor.com",
"codeRepository": "https://github.com/Hack23/euparliamentmonitor",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"description": "Automated multi-language AI news platform monitoring EU Parliament activities with agentic intelligence. Generates political analysis covering plenary sessions, committee reports, propositions, and breaking news across 14 languages using AI-driven workflows powered by the European Parliament MCP Server.",
"featureList": [
"AI-Generated EU Parliament News Coverage",
"14-Language Automated Political Journalism",
"Plenary Session Analysis",
"Committee Report Coverage",
"Legislative Proposition Tracking",
"Breaking Political News Generation",
"Week Ahead Parliamentary Preview",
"MCP Server Integration for EU Parliament Data",
"OSINT Intelligence Capabilities",
"SEO-Optimized Structured News Output"
],
"publisher": {
"@type": "Organization",
"@id": "https://hack23.com/#org"
},
"author": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling"
},
"inLanguage": [
"en", "sv", "da", "no", "fi", "de", "fr", "es", "nl", "ar", "he", "ja", "ko", "zh"
],
"isAccessibleForFree": true,
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"category": "Open Source AI Political Intelligence"
},
"keywords": "EU parliament monitoring, AI news generation, European Parliament, political intelligence, MEP tracking, agentic AI journalism, democratic transparency",
"sameAs": [
"https://github.com/Hack23/euparliamentmonitor"
]
},
{
"@type": "SoftwareApplication",
"@id": "https://hack23.com/#european-parliament-mcp-server",
"name": "European Parliament MCP Server",
"alternateName": "EP MCP Server",
"applicationCategory": "DeveloperApplication",
"applicationSubCategory": "Model Context Protocol Server",
"operatingSystem": "Cross-platform",
"url": "https://www.npmjs.com/package/european-parliament-mcp-server",
"codeRepository": "https://github.com/Hack23/European-Parliament-MCP-Server",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"description": "Model Context Protocol Server providing AI assistants with structured access to European Parliament open data. Features 61 tools including 15 OSINT intelligence tools for MEP influence scoring, coalition analysis, anomaly detection, and political landscape generation.",
"featureList": [
"61 MCP Tools (15 OSINT Intelligence)",
"MEP Influence Scoring (5-Dimension Model)",
"Coalition Cohesion Analysis",
"Voting Anomaly Detection",
"Political Landscape Generation",
"Legislative Pipeline Monitoring",
"GDPR-Compliant Data Access",
"Type-Safe TypeScript Implementation",
"Intelligent Caching and Rate Limiting"
],
"programmingLanguage": ["TypeScript"],
"runtimePlatform": "Node.js",
"publisher": {
"@type": "Organization",
"@id": "https://hack23.com/#org"
},
"author": {
"@type": "Person",
"@id": "https://hack23.com/#james-pether-sorling"
},
"isAccessibleForFree": true,
"offers": {