[CSharp_EmbedBytes] is a C# Console App that scans an input folder and embeds binary files as C# code byte arrays.
[Example #47] shows using the embedded byte array which is the output from the above tool.
The Development Blog of Tim Graupmann
[CSharp_EmbedBytes] is a C# Console App that scans an input folder and embeds binary files as C# code byte arrays.
[Example #47] shows using the embedded byte array which is the output from the above tool.
VSCode has [document formatting] shortcuts.
[cpprestsdk] – [how to build for Windows] – [Getting Started]
[vcpkg] – [quick start on Windows]
cpprestsdk> mkdir build.x64v142
cpprestsdk> cd build.x64v142
cpprestsdk/build.x64v142> cmake ../Release -A x64 -DCMAKE_TOOLCHAIN_FILE=C:\Public\vcpkg\scripts\buildsystems\vcpkg.cmake
[OpenSSL] [Windows Notes] [StrawBerryPerl] [NASM]
(Configure x64 Debug)
perl Configure VC-WIN64A --debug --prefix=C:\Out\Lib\x64\Debug --openssldir=C:\Out\SSL no-shared
(Build Steps)
nmake clean
nmake
nmake test
nmake install_sw
(Configure x64 Release)
perl Configure VC-WIN64A --prefix=C:\Out\Lib\x64\Release --openssldir=C:\Out\SSL no-shared
(Repeat Build Steps)
C++ Rest SDK Sample: [Cpp_BoostJsonZipPostJwt]
[Kaitai Struct] – A new way to develop parsers for binary structures.
Language-neutral: write once, use in all supported languages:
C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\plmdebug.exe
To debug on a remote computer install the [Visual Studio Remote Debugging Tools].
Given a github user name, the events/public will provide their email if it's not listed on their profile, which does happen. https://api.github.com/users/tgraupmann/events/public
https://api.github.com/users/tgraupmann/events/public
This worked like a charm!
The [Html Agility Pack] is under MIT license and is an HTML parser written in C# to read/write DOM and supports plain XPATH or XSLT.
HtmlWeb hw = new HtmlWeb(); HtmlDocument doc = hw.Load(/* url */); foreach(HtmlNode link in doc.DocumentNode.SelectNodes("//a[@href]")) { }
#1 Python
#2 Java
#3 JavaScript
[Paste JSON as Code] as a Visual Studio Extension
The Mixer streaming platform supports custom widget overlays over the video streams. Those widgets support [two-way communication].
After manually trying to get libxml2 to run for an hour, this solution took two minutes…
SET OD=%CD% FOR /d %%i in (*) do CD "%%i" && git pull & CD %OD% PAUSE