We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 28 columns, instead of 1 in line 4.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| URL,Organisatietype,Organisatie,Suborganisatie,Afdeling,Bezoeken/mnd,Voldoet,Totaal,IPv6,DNSSEC,HTTPS,CSP,RefPol.,X-Cont.,X-Frame.,SecurityTxt,RPKI,Testdatum,Totaal,IPv6,DNSSEC,STARTTLS en DANE,DMARC,DKIM,SPF,RPKI,Testdatum,Platformgebruik | |
| http://www.rijksoverheid.nl,Rijksoverheid,AZ (Ministerie van Algemene Zaken),DPC (Dienst Publiek en Communicatie),Online Advies,8.082.507,ja,ja,ja,ja,ja,waarschuwing,info,ja,ja,ja,ja,20-10-2025,ja,ja,ja,,ja,,ja,ja,14-10-2025,Platform Rijksoverheid Online (AZ/DPC) | |
| http://www.knmi.nl,Rijksoverheid,IenW (Ministerie van Infrastructuur en Waterstaat),KNMI (Koninklijk Nederlands Meteorologisch Instituut),,4.200.468,nee,ja,ja,ja,ja,waarschuwing,info,ja,ja,waarschuwing,ja,20-10-2025,nee,ja,ja,info,ja,nee,nee,ja,14-10-2025, | |
| http://www.rivm.nl,Rijksoverheid,VWS (Ministerie van Volksgezondheid Welzijn en Sport),RIVM (Rijksinstituut voor Volksgezondheid en Milieu),,1.499.419,nee,ja,ja,ja,ja,waarschuwing,waarschuwing,ja,ja,ja,ja,20-10-2025,nee,ja,ja,info,ja,nee,nee,ja,14-10-2025, | |
| http:/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef VECTOR2_H | |
| #define VECTOR2_H | |
| #include <cmath> | |
| #include <string> | |
| struct Vector2 { | |
| public: | |
| // Constructors | |
| Vector2() : X(0), Y(0) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef VECTOR3_H | |
| #define VECTOR3_H | |
| #include <cmath> | |
| #include <string> | |
| struct Vector3 { | |
| public: | |
| // Constructors | |
| Vector3() : X(0), Y(0), Z(0) {} |