Skip to content

Instantly share code, notes, and snippets.

View jawn's full-sized avatar
✔️
Probably sending a PR for typos.

Bernard Vander Beken jawn

✔️
Probably sending a PR for typos.
View GitHub Profile
@jawn
jawn / Learning log 2022.md
Last active January 4, 2023 10:22
Learning log 2022

<< Previous Year

January

Ukulele

Continued taking private ukulele lessons.

March-May

@jawn
jawn / LaunchChromeMultipleInstances.cmd
Last active January 21, 2024 19:56
Launch new browser instance from Windows command line or batch file
REM Open new Chrome instance with two tabs
REM Thanks to https://stackoverflow.com/a/46488816/65545
start chrome --new-window "https://www.facebook.com" "https://www.microsoft.com"
REM Open new Chrome instance with single tab
start chrome --new-window "https://www.google.com"
@jawn
jawn / git commands.md
Last active October 6, 2020 11:34
Git commands
Expectations regarding Information Security?
* Reply to emails.
* Inform & teach infosec concepts (confidentiality, integrity, and availability, etc)
* Review, improve and simplify existing policies based on feedback and current security recommendations
* Example: use modern password policy
* Support the org to apply infosec internally.
* Help the product/project org
* to apply infosec in all created/installed software
* to integrated security checking in the continuous delivery processes. Example: checking for insecure software packages that have an update.
@jawn
jawn / Logitec MX Master 2S disconnect.md
Last active July 25, 2021 17:01
Logitech MX Master 2S disconnect issue

I am using a Logitech MX Master 2S mouse since a while. In recent weeks/months, I see occasional disconnection issues.

Question:

It is unclear whether this is a mouse or a Windows 10 update issue. How can I diagnose this further?

Details

  • Logitech MX Master 2S mouse
https://www.blackboxx.be/nl - 1 free day
https://www.brugge.be/coworking
@jawn
jawn / Web API Checklist (.NET Framework).md
Last active February 5, 2019 13:18
.NET Framework: Web API Checklist (.NET Framework)

Swashbuckle installation and configuration

  • Use Swashbuckle to get Swagger API documentation at http(s)://website/swagger
  • Disable online Swagger validation to fix validation error on swagger page: uncomment c.DisableValidator() in SwaggerConfig.cs
  • Describe all enum values as string in swagger: uncomment c.DescribeAllEnumsAsStrings() in SwaggerConfig.cs
  • Add to automated build/deployment pipeline: expect HTTP Status 200 for GET /swagger/ui/index
  • Add to automated build/deployment pipeline: expect HTTP Status 200 for GET /swagger/docs/v1

Web API configuration