Why does an industry I've never heard of know so much about me? There are companies buying and selling your information behind the scenes, and you probably won't know until it's leaked.
Compiler Explorer - C++ (x86-64 clang 7.0.0) void append_vector(std::vector<long double> foo, std::vector<long double> bar) { for (int i=0; i < bar.size(); ++i) foo.push_back(bar[i]); }
Episode v1.3 - 12 Configuration Blues Chris is joined by Steve Collins to talk about the wonderful world of configuration files. What wonders do they hold? How many configuration files does it take to setup an application? How to handle secure connection information across environments? And i...
Exploring borrowed annotations in C# One request I see fairly often for C# is to add the concept of borrowed values. That is values which can be used but not stored beyond the invocation of a particular method. This generally comes up in the context of features which require a form of owner...
Guarding Against Physical Attacks: The Xbox One Story — Tony Chen, Microsoft https://PlatformSecuritySummit.com/2019/speaker/chen Every game console since the first Atari was more or less designed to prevent the piracy of games and yet every single game console has been successfully modified to enable piracy. However, this trend ...
BlueHat Seattle 2019 || Guarding Against Physical Attacks: The Xbox One Story Tony Chen Every game console since the first Atari was more or less designed to prevent the piracy of games and yet every single game console has been successfully modified to enable piracy. However, this trend has come to an end. Both the Xbox One and t...
EfCore.GenericEventRunner: an event-driven library that works with EF Core – The Reformed Programmer Last Updated: January 3, 2020 | Created: December 1, 2019
Using HTTP Request Routes, Request Body, and Query string parameters for Authorization in ASP.NET Core This post shows how HTTP route parameters, a HTTP request body or HTTP request query string parameters can be used for authorization in ASP.NET Core. Code: Authorization using ASP.NET Core Route pa…
Edward Thomson: GitHub Actions Day 1: CI/CD Triggers GitHub Actions is a unique system: it provides CI/CD build functionality - the ability to build and test pull requests and merges into your master branch - but it's more than just a build system. So you need to specify when workflows should run, with tri...