Skip to content

Instantly share code, notes, and snippets.

View Yorxck's full-sized avatar

Yorick Yorxck

  • Netherlands
  • 22:10 (UTC +02:00)
View GitHub Profile
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.
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:/
@Yorxck
Yorxck / Vector2.hpp
Last active April 18, 2025 17:10
Simple c++ header only Vector2 class for 2 dimentional calculations
#ifndef VECTOR2_H
#define VECTOR2_H
#include <cmath>
#include <string>
struct Vector2 {
public:
// Constructors
Vector2() : X(0), Y(0) {}
@Yorxck
Yorxck / Vector3.hpp
Last active April 18, 2025 17:10
Simple c++ header only Vector3 class for 3 dimentional or color calculations
#ifndef VECTOR3_H
#define VECTOR3_H
#include <cmath>
#include <string>
struct Vector3 {
public:
// Constructors
Vector3() : X(0), Y(0), Z(0) {}