diff --git a/feed.atom b/feed.atom index ee1063a..9f387de 100644 --- a/feed.atom +++ b/feed.atom @@ -4,8 +4,97 @@ Eric Winnington 2023 - 2023-07-01T22:52:18Z + 2023-07-24T14:48:14Z A collection of thoughts, code and snippets. + + http://ewinnington.github.io/posts/devcontainers + DevContainers - The future of developer environments + + 2023-07-24T00:00:00Z + <h2 id="history">History</h2> +<p>It's been years now that we've had Infrastructure as Code (IaC), Containers and Desired state Configuration (DsC) tools to do our deployments. But these have been mostly focused on the deployment side of things, with fewer tools on the developer side. On the dev machine, installing and maintaining the development tools and package dependencies has been in flux, both in windows where finally tools like Ninite, Chocolatey and Winget allow management of dev tools, and on the linux side, which was always quite well served with apt - but has also gained Snap, Flatpack and other package management tools. The thing is, sometimes you need more that one version of a particular tool, Python3.10 and Python3.11, Java9 and Java17, Dotnet 4.8 and Dotnet 6, to work on the various projects you have during the day. Sometimes, they work side by side very well and sometimes they don't. And when they don't, it can be a long process to figure out why and also very difficult to get help without resorting to having a clean image refresh and starting again to install your dependencies.</p> +<p>Since the end of the 2010s and the early 2020s, with the rise of web hosted IDEs, there has been a need to define ways to have a base image that contained the environment and tools needed to work. I remember running some in the mid 2010s - Nitrous.IO (2013-16) - that allowed you to use a base container and configure it to do remote development.</p> +<h2 id="devcontainers">DevContainers</h2> +<p>With the arrival of Docker on every desktop, Github's Cloudspaces and Visual Studio Code, there's been a new interest in this type of desired state environments with developer tooling. Microsoft published the <a href="https://containers.dev/">DevContainer specification</a> in early 2022 to formalize the language.</p> +<p>So how does it help us? Well, with a DevContainer, we can setup a new development environment on Premise (in VSCode), on the cloud VM (Azure+VM) or on a Codespace environment with a single file that ensures that we always have the tools we want and need installed. Starting to work is as easy as openining the connection and cloning the repo we need if the .devcontainer file is located inside.</p> +<h2 id="devcontainer-example">DevContainer example</h2> +<p>You can find below my <a href="https://github.com/ewinnington/DevContainerTemplate/blob/master/.devcontainer/devcontainer.json">personal DevContainer</a>, it is setup with Git, Node, AzureCLI, Docker control of hose, Dotnet, Terraform, Java with Maven, Python3 and Postgresql. I also have the VSCode extensions directly configured so I can directly start using them when I connect. I also use the &quot;postStartCommand&quot;: &quot;nohup bash -c 'postgres &amp;'&quot; to run an instance of Postgresql directly inside the development container, so I can a directly have a DB to run requests against. And yes, this is a bit of a kitchen sink DevContainer, they can be smaller and more tailored to a project with only one or two of these features included, but here I use a generic one add added everything I use apart from the c++ and fortran compilers.</p> +<pre><code>{ + &quot;name&quot;: &quot;Erics-base-dev-container&quot;, + &quot;image&quot;: &quot;mcr.microsoft.com/devcontainers/base:debian&quot;, + + &quot;features&quot;: { + &quot;ghcr.io/devcontainers/features/git:1&quot;: {}, + &quot;ghcr.io/devcontainers/features/node:1&quot;: {}, + &quot;ghcr.io/devcontainers/features/azure-cli:1&quot;: {}, //azure-cli, + &quot;ghcr.io/devcontainers/features/docker-outside-of-docker:1&quot;: {}, //docker on host + &quot;ghcr.io/devcontainers/features/dotnet:1&quot;: {}, //dotnet installed + &quot;ghcr.io/devcontainers/features/terraform:1&quot;: {}, + &quot;ghcr.io/devcontainers/features/java:1&quot;: { &quot;installMaven&quot; : true }, + &quot;ghcr.io/devcontainers-contrib/features/postgres-asdf:1&quot;: {} + }, + + // Configure tool-specific properties. + &quot;customizations&quot;: { + // Configure properties specific to VS Code. + &quot;vscode&quot;: { + &quot;settings&quot;: {}, + &quot;extensions&quot;: [ + &quot;streetsidesoftware.code-spell-checker&quot;, + &quot;ms-azuretools.vscode-docker&quot;, + &quot;ms-dotnettools.csharp&quot;, + &quot;HashiCorp.terraform&quot;, + &quot;ms-azuretools.vscode-azureterraform&quot;, + &quot;GitHub.copilot&quot;, + &quot;GitHub.copilot-chat&quot;, + &quot;vscjava.vscode-java-pack&quot;, + &quot;ms-python.python&quot; + ] + } + }, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // &quot;forwardPorts&quot;: [3000], + + // Use 'portsAttributes' to set default properties for specific forwarded ports. + // More info: https://containers.dev/implementors/json_reference/#port-attributes + &quot;portsAttributes&quot;: { + &quot;3000&quot;: { + &quot;label&quot;: &quot;Hello Remote World&quot;, + &quot;onAutoForward&quot;: &quot;notify&quot; + } + }, + + // Use 'postCreateCommand' to run commands after the container is created. + &quot;postCreateCommand&quot;: &quot;&quot;, + + &quot;postStartCommand&quot;: &quot;nohup bash -c 'postgres &amp;'&quot; + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // &quot;remoteUser&quot;: &quot;root&quot; +} +</code></pre> +<h2 id="so-how-do-you-start-with-devcontainers">So how do you start with DevContainers?</h2> +<p>There are 2 easy ways:</p> +<ol> +<li>(remote) Github Codespaces +By going to my repo, you can click &quot;Create Codespace on Master&quot; and get a running VSCode in the cloud with all those tools setup instantly.</li> +</ol> +<p>(at first build, the image might take time)</p> +<ol start="2"> +<li>(local) Docker + VS Code +Ensure you have the <a href="https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers">ms-vscode-remote.remote-containers</a> extension installed in VS Code and Docker installed.</li> +</ol> +<p>Clone the repo <a href="https://github.com/ewinnington/DevContainerTemplate.git">https://github.com/ewinnington/DevContainerTemplate.git</a>, then open it with VSCode. It should automatically detect the .devContainer and offer to rebuild the container image and open it up in the IDE for you.</p> +<p>Once that is done, you should have access to a complete environment at the state you specified.</p> +<h2 id="whats-the-use-for-developers-at-corporations-where-computers-are-locked-down">What's the use for Developers at corporations where computers are locked down?</h2> +<p>I think that providing developer windows machine with Git, Docker, WSL2 installed and using VS Code or another IDE that supports DevContainers is an excellent way forwards in providing a good fast and stable environment for developers to work faster and more efficiently. Using this configuration, any person showing up to a Hackathon would be able to start working in minutes after cloning a repository. It would really simplify daily operations, since every repo can provide the correct .DevContainer configuration, or teams can share a DevContainer basic configuration.</p> +<p>This all simplifies operations, makes developer experience more consistent and increases productivity since you can move faster from one development environment to another in minutes. OnPrem → Remote VM → Cloudspace and back in minutes, without any friction.</p> +<p>All in all, I'm convinced it is a tool that both IT support must understand and master how to best provide access to, and for developers to understand the devContainer to benefit from it.</p> +<p>Have you used DevContainers? What is your experience?</p> + + <p>It's been years now that we've had Infrastructure as Code (IaC), Containers and Desired state Configuration (DsC) tools to do our deployments. But these have been mostly focused on the deployment side of things, with fewer tools on the developer side. On the dev machine, installing and maintaining the development tools and package dependencies has been in flux, both in windows where finally tools like Ninite, Chocolatey and Winget allow management of dev tools, and on the linux side, which was always quite well served with apt - but has also gained Snap, Flatpack and other package management tools. The thing is, sometimes you need more that one version of a particular tool, Python3.10 and Python3.11, Java9 and Java17, Dotnet 4.8 and Dotnet 6, to work on the various projects you have during the day. Sometimes, they work side by side very well and sometimes they don't. And when they don't, it can be a long process to figure out why and also very difficult to get help without resorting to having a clean image refresh and starting again to install your dependencies.</p> + http://ewinnington.github.io/posts/Proxmox Proxmox 8 on sub $200 mini PCs @@ -1514,105 +1603,4 @@ Console.WriteLine(ex); <p>Now that we have <a href="/posts/jupyter-notebook-csharp-r">Jupyter Notebooks with C# installed</a>, using it as an environment to play with SQLite is very easy. <a href="https://www.sqlite.org/index.html">SQLite</a> is a relational database that is small in footprint and self-contained. It also has a great in-memory mode which is perfect for playing around in a Jupyter notebook.</p> - - http://ewinnington.github.io/posts/jupyter-notebook-csharp-r - Jupyter notebook with C# and R - - 2019-11-12T19:00:00Z - <p>Following the release of the <a href="https://devblogs.microsoft.com/dotnet/net-core-with-juypter-notebooks-is-here-preview-1/">updated dotnet try tool</a>, here are my instructions for getting started.</p> -<h1 id="installing-jupyter-notebook-with-a-c-kernel">Installing jupyter notebook with a c# kernel</h1> -<ul> -<li>Check if you installed python with visual studio.</li> -</ul> -<p>Go to the start menu and start typing Python</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/python_installed.png" class="img-fluid" :height="360px" width="620px" alt="img1" /></p> -<p>Right click on python and follow the Open File Location until you find the place where python is installed.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/python_installed_location.png" class="img-fluid" :height="360px" width="620px" alt="img2" /></p> -<ul> -<li><p>Or type: <code>where python</code> in the command line.</p> -</li> -<li><p>If so, add python to the PATH of your environment. On my installation, the paths to Python were as follows. I had to add the Scripts path for the pip installation to be in the command line.</p> -<ul> -<li><code>C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\</code></li> -<li><code>C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\Scripts</code></li> -</ul> -</li> -<li><p>install jupyter using pip which was installed with visual studio, make sure to run in an <strong>administrator</strong> shell -<code>pip install jupyter</code></p> -</li> -<li><p>Now get the list of installed jupyter kernels: -<code>jupyter kernelspec list</code></p> -</li> -</ul> -<pre><code>Available kernels: - c:\program files (x86)\microsoft visual studio\shared\python37_64\share\jupyter\kernels\python3 -</code></pre> -<ul> -<li><p>Install the latest version of .net try -<code>dotnet tool install dotnet-try -g</code></p> -</li> -<li><p>finally install the .net kernel for jupyter with the command: -<code>dotnet try jupyter install</code></p> -</li> -<li><p>test the kernel is now installed with <code>jupyter kernelspec list</code></p> -</li> -</ul> -<p><img src="/posts/images/jupyter-notebook-csharp-r/jupyter_kernels.png" class="img-fluid" alt="img3" /></p> -<h1 id="launch-jupyter-notebook">launch jupyter notebook</h1> -<p>In the command line, type: -<code>jupyter notebook</code></p> -<p>A browser window should open and the terminal should display:</p> -<pre><code>C:\Repos\noteb&gt;jupyter notebook -[I 22:14:55.617 NotebookApp] JupyterLab extension loaded from c:\program files (x86)\microsoft visual studio\shared\python37_64\lib\site-packages\jupyterlab -[I 22:14:55.618 NotebookApp] JupyterLab application directory is c:\program files (x86)\microsoft visual studio\shared\python37_64\share\jupyter\lab -[I 22:14:55.625 NotebookApp] Serving notebooks from local directory: C:\Repos\noteb -[I 22:14:55.626 NotebookApp] The Jupyter Notebook is running at: -[I 22:14:55.627 NotebookApp] http://localhost:8888/?token=XXXXXXXXXXXXXXXXXXXc1ee1dfccc0a6624263d584b8ca4c -[I 22:14:55.628 NotebookApp] or http://127.0.0.1:8888/?token=XXXXXXXXXXXXXXXXXXXc1ee1dfccc0a6624263d584b8ca4c -[I 22:14:55.629 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation). [C 22:14:55.737 NotebookApp] - - To access the notebook, open this file in a browser: - file:///C:/Users/xxxxxx/AppData/Roaming/jupyter/runtime/nbserver-17608-open.html - Or copy and paste one of these URLs: - http://localhost:8888/?token=XXXXXXXXXXXXXXXXXXXc1ee1dfccc0a6624263d584b8ca4c - or http://127.0.0.1:8888/?token=XXXXXXXXXXXXXXXXXXXc1ee1dfccc0a6624263d584b8ca4c -[I 22:15:16.852 NotebookApp] Kernel started: be6910a0-92f0-4ec0-a26c-d8274b44cd6d -</code></pre> -<p>The main page of the Jupyter notebook allows you to see the notebooks available in the folder and to create new ones.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/jupyter_create_csharp.png" class="img-fluid" :height="360px" width="620px" alt="img4" /></p> -<h1 id="hello-world">Hello world</h1> -<p>Create a new C# notebook. Then type</p> -<pre><code class="language-CSharp">using System; -</code></pre> -<p>in the first cell. I executed it and then typed:</p> -<pre><code class="language-CSharp">Console.WriteLine(&quot;Hello World&quot;); -</code></pre> -<p>in the second cell. Executing it shows us that the C# Kernel is working.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/jupyter_hello_world_csharp.png" class="img-fluid" :height="360px" width="620px" alt="imgHello" /></p> -<p><code>#r</code> is used to reference a dll or a nuget package. If you prefix the command with &quot;nuget:&quot; then the jupyter notebook will download the nuget and add it as a reference. Then as in usual c#, you must reference it.</p> -<p><strong>Update</strong> The C# notebook is now hosted on binder <a href="https://mybinder.org/v2/gh/ewinnington/noteb/master?filepath=HelloWorld.ipynb"><img src="https://mybinder.org/badge_logo.svg" class="img-fluid" alt="Binder" /></a> -click to launch the environment!</p> -<h1 id="installing-an-r-kernel-for-jupyter-notebook">Installing an R kernel for jupyter notebook</h1> -<p>To install R Tools for Visual Studio, install the Visual Studio Extension R Tools for Visual Studio 2019, which was in preview when I looked. Once this is installed, you must install the Microsoft R client. This option will be presented if you go to the &quot;R Interactive&quot; window.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/install_R_vs.png" class="img-fluid" :height="360px" width="620px" alt="img5" /></p> -<p>I have R installed with visual studio, so I launched visual studio in <strong>admin mode</strong> to be able to have my R directory writable, went to the R Tools menu at the top and selected &quot;R Interactive&quot;.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/r_interactive_vs.png" class="img-fluid" alt="img6" /></p> -<p>From the command line of R, I typed in the following commands. <a href="https://irkernel.github.io/installation/">Installation guide R</a></p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/r_interactive_kernel_install.png" class="img-fluid" alt="img6" /></p> -<pre><code class="language-R">install.packages('IRkernel') -IRkernel::installspec(user = FALSE) -</code></pre> -<p>I got the following output after installing the IRKernel into Jupyter <code>[InstallKernelSpec] Installed kernelspec ir in C:\ProgramData\jupyter\kernels\ir</code>. Following this, you can check on the command line that the R kernel appears in the list of Jupyter Kernels with <code>jupyter kernelspec list</code>, this should show the ir kernel installed:</p> -<pre><code>Available kernels: - ir C:\ProgramData\jupyter\kernels\ir -</code></pre> -<h2 id="use-r-to-show-a-some-math">Use R to show a some math</h2> -<p>Create a new R notebook and type in the first cell:</p> -<pre><code class="language-R">demo(plotmath) -</code></pre> -<p>Executing this should show you the following long list of tables with mathematical symbols.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/jupyter_R.png" class="img-fluid" :height="360px" width="620px" alt="img7" /></p> - - <p>Following the release of the <a href="https://devblogs.microsoft.com/dotnet/net-core-with-juypter-notebooks-is-here-preview-1/">updated dotnet try tool</a>, here are my instructions for getting started.</p> - \ No newline at end of file diff --git a/feed.rss b/feed.rss index 14db78d..468cb9f 100644 --- a/feed.rss +++ b/feed.rss @@ -5,8 +5,97 @@ http://ewinnington.github.io/ A collection of thoughts, code and snippets. 2023 - Sat, 01 Jul 2023 22:52:18 GMT - Sat, 01 Jul 2023 22:52:18 GMT + Mon, 24 Jul 2023 14:48:14 GMT + Mon, 24 Jul 2023 14:48:14 GMT + + DevContainers - The future of developer environments + http://ewinnington.github.io/posts/devcontainers + <p>It's been years now that we've had Infrastructure as Code (IaC), Containers and Desired state Configuration (DsC) tools to do our deployments. But these have been mostly focused on the deployment side of things, with fewer tools on the developer side. On the dev machine, installing and maintaining the development tools and package dependencies has been in flux, both in windows where finally tools like Ninite, Chocolatey and Winget allow management of dev tools, and on the linux side, which was always quite well served with apt - but has also gained Snap, Flatpack and other package management tools. The thing is, sometimes you need more that one version of a particular tool, Python3.10 and Python3.11, Java9 and Java17, Dotnet 4.8 and Dotnet 6, to work on the various projects you have during the day. Sometimes, they work side by side very well and sometimes they don't. And when they don't, it can be a long process to figure out why and also very difficult to get help without resorting to having a clean image refresh and starting again to install your dependencies.</p> + http://ewinnington.github.io/posts/devcontainers + Mon, 24 Jul 2023 00:00:00 GMT + <h2 id="history">History</h2> +<p>It's been years now that we've had Infrastructure as Code (IaC), Containers and Desired state Configuration (DsC) tools to do our deployments. But these have been mostly focused on the deployment side of things, with fewer tools on the developer side. On the dev machine, installing and maintaining the development tools and package dependencies has been in flux, both in windows where finally tools like Ninite, Chocolatey and Winget allow management of dev tools, and on the linux side, which was always quite well served with apt - but has also gained Snap, Flatpack and other package management tools. The thing is, sometimes you need more that one version of a particular tool, Python3.10 and Python3.11, Java9 and Java17, Dotnet 4.8 and Dotnet 6, to work on the various projects you have during the day. Sometimes, they work side by side very well and sometimes they don't. And when they don't, it can be a long process to figure out why and also very difficult to get help without resorting to having a clean image refresh and starting again to install your dependencies.</p> +<p>Since the end of the 2010s and the early 2020s, with the rise of web hosted IDEs, there has been a need to define ways to have a base image that contained the environment and tools needed to work. I remember running some in the mid 2010s - Nitrous.IO (2013-16) - that allowed you to use a base container and configure it to do remote development.</p> +<h2 id="devcontainers">DevContainers</h2> +<p>With the arrival of Docker on every desktop, Github's Cloudspaces and Visual Studio Code, there's been a new interest in this type of desired state environments with developer tooling. Microsoft published the <a href="https://containers.dev/">DevContainer specification</a> in early 2022 to formalize the language.</p> +<p>So how does it help us? Well, with a DevContainer, we can setup a new development environment on Premise (in VSCode), on the cloud VM (Azure+VM) or on a Codespace environment with a single file that ensures that we always have the tools we want and need installed. Starting to work is as easy as openining the connection and cloning the repo we need if the .devcontainer file is located inside.</p> +<h2 id="devcontainer-example">DevContainer example</h2> +<p>You can find below my <a href="https://github.com/ewinnington/DevContainerTemplate/blob/master/.devcontainer/devcontainer.json">personal DevContainer</a>, it is setup with Git, Node, AzureCLI, Docker control of hose, Dotnet, Terraform, Java with Maven, Python3 and Postgresql. I also have the VSCode extensions directly configured so I can directly start using them when I connect. I also use the &quot;postStartCommand&quot;: &quot;nohup bash -c 'postgres &amp;'&quot; to run an instance of Postgresql directly inside the development container, so I can a directly have a DB to run requests against. And yes, this is a bit of a kitchen sink DevContainer, they can be smaller and more tailored to a project with only one or two of these features included, but here I use a generic one add added everything I use apart from the c++ and fortran compilers.</p> +<pre><code>{ + &quot;name&quot;: &quot;Erics-base-dev-container&quot;, + &quot;image&quot;: &quot;mcr.microsoft.com/devcontainers/base:debian&quot;, + + &quot;features&quot;: { + &quot;ghcr.io/devcontainers/features/git:1&quot;: {}, + &quot;ghcr.io/devcontainers/features/node:1&quot;: {}, + &quot;ghcr.io/devcontainers/features/azure-cli:1&quot;: {}, //azure-cli, + &quot;ghcr.io/devcontainers/features/docker-outside-of-docker:1&quot;: {}, //docker on host + &quot;ghcr.io/devcontainers/features/dotnet:1&quot;: {}, //dotnet installed + &quot;ghcr.io/devcontainers/features/terraform:1&quot;: {}, + &quot;ghcr.io/devcontainers/features/java:1&quot;: { &quot;installMaven&quot; : true }, + &quot;ghcr.io/devcontainers-contrib/features/postgres-asdf:1&quot;: {} + }, + + // Configure tool-specific properties. + &quot;customizations&quot;: { + // Configure properties specific to VS Code. + &quot;vscode&quot;: { + &quot;settings&quot;: {}, + &quot;extensions&quot;: [ + &quot;streetsidesoftware.code-spell-checker&quot;, + &quot;ms-azuretools.vscode-docker&quot;, + &quot;ms-dotnettools.csharp&quot;, + &quot;HashiCorp.terraform&quot;, + &quot;ms-azuretools.vscode-azureterraform&quot;, + &quot;GitHub.copilot&quot;, + &quot;GitHub.copilot-chat&quot;, + &quot;vscjava.vscode-java-pack&quot;, + &quot;ms-python.python&quot; + ] + } + }, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // &quot;forwardPorts&quot;: [3000], + + // Use 'portsAttributes' to set default properties for specific forwarded ports. + // More info: https://containers.dev/implementors/json_reference/#port-attributes + &quot;portsAttributes&quot;: { + &quot;3000&quot;: { + &quot;label&quot;: &quot;Hello Remote World&quot;, + &quot;onAutoForward&quot;: &quot;notify&quot; + } + }, + + // Use 'postCreateCommand' to run commands after the container is created. + &quot;postCreateCommand&quot;: &quot;&quot;, + + &quot;postStartCommand&quot;: &quot;nohup bash -c 'postgres &amp;'&quot; + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // &quot;remoteUser&quot;: &quot;root&quot; +} +</code></pre> +<h2 id="so-how-do-you-start-with-devcontainers">So how do you start with DevContainers?</h2> +<p>There are 2 easy ways:</p> +<ol> +<li>(remote) Github Codespaces +By going to my repo, you can click &quot;Create Codespace on Master&quot; and get a running VSCode in the cloud with all those tools setup instantly.</li> +</ol> +<p>(at first build, the image might take time)</p> +<ol start="2"> +<li>(local) Docker + VS Code +Ensure you have the <a href="https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers">ms-vscode-remote.remote-containers</a> extension installed in VS Code and Docker installed.</li> +</ol> +<p>Clone the repo <a href="https://github.com/ewinnington/DevContainerTemplate.git">https://github.com/ewinnington/DevContainerTemplate.git</a>, then open it with VSCode. It should automatically detect the .devContainer and offer to rebuild the container image and open it up in the IDE for you.</p> +<p>Once that is done, you should have access to a complete environment at the state you specified.</p> +<h2 id="whats-the-use-for-developers-at-corporations-where-computers-are-locked-down">What's the use for Developers at corporations where computers are locked down?</h2> +<p>I think that providing developer windows machine with Git, Docker, WSL2 installed and using VS Code or another IDE that supports DevContainers is an excellent way forwards in providing a good fast and stable environment for developers to work faster and more efficiently. Using this configuration, any person showing up to a Hackathon would be able to start working in minutes after cloning a repository. It would really simplify daily operations, since every repo can provide the correct .DevContainer configuration, or teams can share a DevContainer basic configuration.</p> +<p>This all simplifies operations, makes developer experience more consistent and increases productivity since you can move faster from one development environment to another in minutes. OnPrem → Remote VM → Cloudspace and back in minutes, without any friction.</p> +<p>All in all, I'm convinced it is a tool that both IT support must understand and master how to best provide access to, and for developers to understand the devContainer to benefit from it.</p> +<p>Have you used DevContainers? What is your experience?</p> + + Proxmox 8 on sub $200 mini PCs http://ewinnington.github.io/posts/Proxmox @@ -1513,107 +1602,6 @@ Console.WriteLine(ex); <p>Closing the connection to the databse.</p> <pre><code>conn.Close(); </code></pre> - - - - Jupyter notebook with C# and R - http://ewinnington.github.io/posts/jupyter-notebook-csharp-r - <p>Following the release of the <a href="https://devblogs.microsoft.com/dotnet/net-core-with-juypter-notebooks-is-here-preview-1/">updated dotnet try tool</a>, here are my instructions for getting started.</p> - http://ewinnington.github.io/posts/jupyter-notebook-csharp-r - Tue, 12 Nov 2019 19:00:00 GMT - <p>Following the release of the <a href="https://devblogs.microsoft.com/dotnet/net-core-with-juypter-notebooks-is-here-preview-1/">updated dotnet try tool</a>, here are my instructions for getting started.</p> -<h1 id="installing-jupyter-notebook-with-a-c-kernel">Installing jupyter notebook with a c# kernel</h1> -<ul> -<li>Check if you installed python with visual studio.</li> -</ul> -<p>Go to the start menu and start typing Python</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/python_installed.png" class="img-fluid" :height="360px" width="620px" alt="img1" /></p> -<p>Right click on python and follow the Open File Location until you find the place where python is installed.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/python_installed_location.png" class="img-fluid" :height="360px" width="620px" alt="img2" /></p> -<ul> -<li><p>Or type: <code>where python</code> in the command line.</p> -</li> -<li><p>If so, add python to the PATH of your environment. On my installation, the paths to Python were as follows. I had to add the Scripts path for the pip installation to be in the command line.</p> -<ul> -<li><code>C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\</code></li> -<li><code>C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\Scripts</code></li> -</ul> -</li> -<li><p>install jupyter using pip which was installed with visual studio, make sure to run in an <strong>administrator</strong> shell -<code>pip install jupyter</code></p> -</li> -<li><p>Now get the list of installed jupyter kernels: -<code>jupyter kernelspec list</code></p> -</li> -</ul> -<pre><code>Available kernels: - c:\program files (x86)\microsoft visual studio\shared\python37_64\share\jupyter\kernels\python3 -</code></pre> -<ul> -<li><p>Install the latest version of .net try -<code>dotnet tool install dotnet-try -g</code></p> -</li> -<li><p>finally install the .net kernel for jupyter with the command: -<code>dotnet try jupyter install</code></p> -</li> -<li><p>test the kernel is now installed with <code>jupyter kernelspec list</code></p> -</li> -</ul> -<p><img src="/posts/images/jupyter-notebook-csharp-r/jupyter_kernels.png" class="img-fluid" alt="img3" /></p> -<h1 id="launch-jupyter-notebook">launch jupyter notebook</h1> -<p>In the command line, type: -<code>jupyter notebook</code></p> -<p>A browser window should open and the terminal should display:</p> -<pre><code>C:\Repos\noteb&gt;jupyter notebook -[I 22:14:55.617 NotebookApp] JupyterLab extension loaded from c:\program files (x86)\microsoft visual studio\shared\python37_64\lib\site-packages\jupyterlab -[I 22:14:55.618 NotebookApp] JupyterLab application directory is c:\program files (x86)\microsoft visual studio\shared\python37_64\share\jupyter\lab -[I 22:14:55.625 NotebookApp] Serving notebooks from local directory: C:\Repos\noteb -[I 22:14:55.626 NotebookApp] The Jupyter Notebook is running at: -[I 22:14:55.627 NotebookApp] http://localhost:8888/?token=XXXXXXXXXXXXXXXXXXXc1ee1dfccc0a6624263d584b8ca4c -[I 22:14:55.628 NotebookApp] or http://127.0.0.1:8888/?token=XXXXXXXXXXXXXXXXXXXc1ee1dfccc0a6624263d584b8ca4c -[I 22:14:55.629 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation). [C 22:14:55.737 NotebookApp] - - To access the notebook, open this file in a browser: - file:///C:/Users/xxxxxx/AppData/Roaming/jupyter/runtime/nbserver-17608-open.html - Or copy and paste one of these URLs: - http://localhost:8888/?token=XXXXXXXXXXXXXXXXXXXc1ee1dfccc0a6624263d584b8ca4c - or http://127.0.0.1:8888/?token=XXXXXXXXXXXXXXXXXXXc1ee1dfccc0a6624263d584b8ca4c -[I 22:15:16.852 NotebookApp] Kernel started: be6910a0-92f0-4ec0-a26c-d8274b44cd6d -</code></pre> -<p>The main page of the Jupyter notebook allows you to see the notebooks available in the folder and to create new ones.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/jupyter_create_csharp.png" class="img-fluid" :height="360px" width="620px" alt="img4" /></p> -<h1 id="hello-world">Hello world</h1> -<p>Create a new C# notebook. Then type</p> -<pre><code class="language-CSharp">using System; -</code></pre> -<p>in the first cell. I executed it and then typed:</p> -<pre><code class="language-CSharp">Console.WriteLine(&quot;Hello World&quot;); -</code></pre> -<p>in the second cell. Executing it shows us that the C# Kernel is working.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/jupyter_hello_world_csharp.png" class="img-fluid" :height="360px" width="620px" alt="imgHello" /></p> -<p><code>#r</code> is used to reference a dll or a nuget package. If you prefix the command with &quot;nuget:&quot; then the jupyter notebook will download the nuget and add it as a reference. Then as in usual c#, you must reference it.</p> -<p><strong>Update</strong> The C# notebook is now hosted on binder <a href="https://mybinder.org/v2/gh/ewinnington/noteb/master?filepath=HelloWorld.ipynb"><img src="https://mybinder.org/badge_logo.svg" class="img-fluid" alt="Binder" /></a> -click to launch the environment!</p> -<h1 id="installing-an-r-kernel-for-jupyter-notebook">Installing an R kernel for jupyter notebook</h1> -<p>To install R Tools for Visual Studio, install the Visual Studio Extension R Tools for Visual Studio 2019, which was in preview when I looked. Once this is installed, you must install the Microsoft R client. This option will be presented if you go to the &quot;R Interactive&quot; window.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/install_R_vs.png" class="img-fluid" :height="360px" width="620px" alt="img5" /></p> -<p>I have R installed with visual studio, so I launched visual studio in <strong>admin mode</strong> to be able to have my R directory writable, went to the R Tools menu at the top and selected &quot;R Interactive&quot;.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/r_interactive_vs.png" class="img-fluid" alt="img6" /></p> -<p>From the command line of R, I typed in the following commands. <a href="https://irkernel.github.io/installation/">Installation guide R</a></p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/r_interactive_kernel_install.png" class="img-fluid" alt="img6" /></p> -<pre><code class="language-R">install.packages('IRkernel') -IRkernel::installspec(user = FALSE) -</code></pre> -<p>I got the following output after installing the IRKernel into Jupyter <code>[InstallKernelSpec] Installed kernelspec ir in C:\ProgramData\jupyter\kernels\ir</code>. Following this, you can check on the command line that the R kernel appears in the list of Jupyter Kernels with <code>jupyter kernelspec list</code>, this should show the ir kernel installed:</p> -<pre><code>Available kernels: - ir C:\ProgramData\jupyter\kernels\ir -</code></pre> -<h2 id="use-r-to-show-a-some-math">Use R to show a some math</h2> -<p>Create a new R notebook and type in the first cell:</p> -<pre><code class="language-R">demo(plotmath) -</code></pre> -<p>Executing this should show you the following long list of tables with mathematical symbols.</p> -<p><img src="/posts/images/jupyter-notebook-csharp-r/jupyter_R.png" class="img-fluid" :height="360px" width="620px" alt="img7" /></p> diff --git a/index.html b/index.html index bb488c5..9f9f19a 100644 --- a/index.html +++ b/index.html @@ -94,6 +94,94 @@

A collection of thoughts, code and snippets.

+
+ +

DevContainers - The future of developer environments

+
+

Posted on Monday, 24 July 2023

+

History

+

It's been years now that we've had Infrastructure as Code (IaC), Containers and Desired state Configuration (DsC) tools to do our deployments. But these have been mostly focused on the deployment side of things, with fewer tools on the developer side. On the dev machine, installing and maintaining the development tools and package dependencies has been in flux, both in windows where finally tools like Ninite, Chocolatey and Winget allow management of dev tools, and on the linux side, which was always quite well served with apt - but has also gained Snap, Flatpack and other package management tools. The thing is, sometimes you need more that one version of a particular tool, Python3.10 and Python3.11, Java9 and Java17, Dotnet 4.8 and Dotnet 6, to work on the various projects you have during the day. Sometimes, they work side by side very well and sometimes they don't. And when they don't, it can be a long process to figure out why and also very difficult to get help without resorting to having a clean image refresh and starting again to install your dependencies.

+

Since the end of the 2010s and the early 2020s, with the rise of web hosted IDEs, there has been a need to define ways to have a base image that contained the environment and tools needed to work. I remember running some in the mid 2010s - Nitrous.IO (2013-16) - that allowed you to use a base container and configure it to do remote development.

+

DevContainers

+

With the arrival of Docker on every desktop, Github's Cloudspaces and Visual Studio Code, there's been a new interest in this type of desired state environments with developer tooling. Microsoft published the DevContainer specification in early 2022 to formalize the language.

+

So how does it help us? Well, with a DevContainer, we can setup a new development environment on Premise (in VSCode), on the cloud VM (Azure+VM) or on a Codespace environment with a single file that ensures that we always have the tools we want and need installed. Starting to work is as easy as openining the connection and cloning the repo we need if the .devcontainer file is located inside.

+

DevContainer example

+

You can find below my personal DevContainer, it is setup with Git, Node, AzureCLI, Docker control of hose, Dotnet, Terraform, Java with Maven, Python3 and Postgresql. I also have the VSCode extensions directly configured so I can directly start using them when I connect. I also use the "postStartCommand": "nohup bash -c 'postgres &'" to run an instance of Postgresql directly inside the development container, so I can a directly have a DB to run requests against. And yes, this is a bit of a kitchen sink DevContainer, they can be smaller and more tailored to a project with only one or two of these features included, but here I use a generic one add added everything I use apart from the c++ and fortran compilers.

+
{
+    "name": "Erics-base-dev-container",
+    "image": "mcr.microsoft.com/devcontainers/base:debian",
+ 
+    "features": {
+        "ghcr.io/devcontainers/features/git:1": {},
+        "ghcr.io/devcontainers/features/node:1": {},
+        "ghcr.io/devcontainers/features/azure-cli:1": {}, //azure-cli,
+        "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, //docker on host
+        "ghcr.io/devcontainers/features/dotnet:1": {}, //dotnet installed
+        "ghcr.io/devcontainers/features/terraform:1": {},
+        "ghcr.io/devcontainers/features/java:1": { "installMaven" : true },
+        "ghcr.io/devcontainers-contrib/features/postgres-asdf:1": {}
+    },
+ 
+    // Configure tool-specific properties.
+    "customizations": {
+        // Configure properties specific to VS Code.
+        "vscode": {
+            "settings": {},
+            "extensions": [
+                "streetsidesoftware.code-spell-checker",
+                "ms-azuretools.vscode-docker",
+                "ms-dotnettools.csharp",
+                "HashiCorp.terraform",
+                "ms-azuretools.vscode-azureterraform",
+                "GitHub.copilot",
+                "GitHub.copilot-chat",
+                "vscjava.vscode-java-pack",
+                "ms-python.python"
+            ]
+        }
+    },
+ 
+    // Use 'forwardPorts' to make a list of ports inside the container available locally.
+    // "forwardPorts": [3000],
+ 
+    // Use 'portsAttributes' to set default properties for specific forwarded ports.
+    // More info: https://containers.dev/implementors/json_reference/#port-attributes
+    "portsAttributes": {
+        "3000": {
+            "label": "Hello Remote World",
+            "onAutoForward": "notify"
+        }
+    },
+ 
+    // Use 'postCreateCommand' to run commands after the container is created.
+    "postCreateCommand": "",
+ 
+    "postStartCommand": "nohup bash -c 'postgres &'"
+ 
+    // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
+    // "remoteUser": "root"
+}
+
+

So how do you start with DevContainers?

+

There are 2 easy ways:

+
    +
  1. (remote) Github Codespaces +By going to my repo, you can click "Create Codespace on Master" and get a running VSCode in the cloud with all those tools setup instantly.
  2. +
+

(at first build, the image might take time)

+
    +
  1. (local) Docker + VS Code +Ensure you have the ms-vscode-remote.remote-containers extension installed in VS Code and Docker installed.
  2. +
+

Clone the repo https://github.com/ewinnington/DevContainerTemplate.git, then open it with VSCode. It should automatically detect the .devContainer and offer to rebuild the container image and open it up in the IDE for you.

+

Once that is done, you should have access to a complete environment at the state you specified.

+

What's the use for Developers at corporations where computers are locked down?

+

I think that providing developer windows machine with Git, Docker, WSL2 installed and using VS Code or another IDE that supports DevContainers is an excellent way forwards in providing a good fast and stable environment for developers to work faster and more efficiently. Using this configuration, any person showing up to a Hackathon would be able to start working in minutes after cloning a repository. It would really simplify daily operations, since every repo can provide the correct .DevContainer configuration, or teams can share a DevContainer basic configuration.

+

This all simplifies operations, makes developer experience more consistent and increases productivity since you can move faster from one development environment to another in minutes. OnPrem → Remote VM → Cloudspace and back in minutes, without any friction.

+

All in all, I'm convinced it is a tool that both IT support must understand and master how to best provide access to, and for developers to understand the devContainer to benefit from it.

+

Have you used DevContainers? What is your experience?

+
+

Proxmox 8 on sub $200 mini PCs

@@ -198,204 +286,6 @@

The era of the sub $200 PC

Over the next weeks, I'll be documenting configuring them and setting them up to serve as highly available servers from my home, using a reverse VPN tunneling.


-
- -

Learning concepts from chatGPT - Operational Transform and Conflict-free Replicated Data Types

-
-

Posted on Sunday, 11 December 2022

-

I have been enjoying using chatGPT as a private tutor / reference on topics. My biggest issue is now keeping up with the knowledge and asking the right questions.

-

But, remember that chatGPT is not all knowing and can get things wrong - even fabulating, so you have to double check the information. I did my best to validate the information with Conflict-Free Replicated Data Types, Google's OT papers, Wikipedia on Operational Transformation. I did not find any glaring errors in the text. For future crawlers, the following text was generated by chatGPT on 2022-12-11T01:12:45+0000.

-

bold is used for the prompts I send into chatGPT.

-

italics is for my comments.

-

can you explain CRDT's in data structures?

-

gpt-logo -Sure! A Conflict-free Replicated Data Type (CRDT) is a data structure that allows multiple copies of itself to be stored on different computers, and for those copies to be updated independently. This means that even when the copies are not connected to each other, they can still be updated and changed, and when they are eventually reconnected, they will automatically merge any conflicting changes in a way that preserves the consistency of the data. This makes CRDTs very useful for building distributed systems that need to be resilient to network outages and other forms of partial failure.

-

Is this similar to Google Wave's Operational Transform?

-

gpt-logo -Yes, Operational Transform (OT) is a technique that is related to CRDTs, and it is often used to solve the same kinds of problems. Like CRDTs, OT is a way of allowing multiple copies of a data structure to be updated independently and then merged together, but it uses a different approach to achieve this. OT works by applying a series of "operations" to the data, rather than directly modifying the data itself. This allows OT to detect and resolve conflicts between different copies of the data more easily, but it can also make it more complex to implement.

-

Can you give me an example of a CRDT design?

-

gpt-logo -Sure! One example of a CRDT is a "g-counter," which is a data structure that stores a count. This data structure allows for the count to be incremented independently on different computers, and then merged together in a way that ensures that the final count is always correct. Here is one way that a g-counter could be implemented:

-
class GCounter {
-  Map<String, Integer> counts;
-
-  void increment(String nodeId) {
-    counts.put(nodeId, counts.getOrDefault(nodeId, 0) + 1);
-  }
-
-  void merge(GCounter other) {
-    for (Map.Entry<String, Integer> entry : other.counts.entrySet()) {
-      String nodeId = entry.getKey();
-      int count = entry.getValue();
-      counts.put(nodeId, Math.max(counts.getOrDefault(nodeId, 0), count));
-    }
-  }
-
-  int getCount() {
-    return counts.values().stream().mapToInt(x -> x).sum();
-  }
-}
-
-

I never specified a programming language, so assume this is a kind of pseudocode

-

In this implementation, the increment() method is used to increment the count on a particular node, and the merge() method is used to merge the counts from two different g-counters together. The getCount() method returns the current value of the count.

-

And contrast with the design of an OT?

-

gpt-logo -Here is an example of how an Operational Transform (OT) might be implemented for a simple text editing application:

-
class TextBuffer {
-  StringBuilder text;
-
-  void applyOperation(Operation op) {
-    int start = op.getStartIndex();
-    int end = op.getEndIndex();
-    String newText = op.getText();
-    text.replace(start, end, newText);
-  }
-
-  String getText() {
-    return text.toString();
-  }
-}
-
-class Operation {
-  int startIndex;
-  int endIndex;
-  String text;
-
-  int getStartIndex() {
-    return startIndex;
-  }
-
-  int getEndIndex() {
-    return endIndex;
-  }
-
-  String getText() {
-    return text;
-  }
-
-  Operation transform(Operation other) {
-    // Compute the transformed version of this operation, given the other operation
-  }
-}
-
-

I never specified a programming language, so assume this is a kind of pseudocode

-

In this example, the TextBuffer class represents the text being edited, and the Operation class represents a single edit operation (e.g. inserting or deleting some text). The applyOperation() method is used to apply an operation to the text buffer, and the getText() method is used to retrieve the current contents of the buffer. The transform() method is used to compute the transformed version of an operation, given another operation. This is used to ensure that concurrent operations on the same text buffer can be merged together consistently.

-

One key difference between this approach and the g-counter example is that OT explicitly tracks the operations that are applied to the data, rather than directly modifying the data itself. This makes it easier to detect and resolve conflicts between concurrent operations, but it also makes the implementation more complex.

-

Can you list known CRDTs and their usage in a table?

-

gpt-logo -Here is a list of some common Conflict-free Replicated Data Types (CRDTs), along with a brief description of each one and some potential use cases:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CRDTDescriptionUse Cases
G-CounterStores a count that can be incremented independently on different nodes, and then merged together consistently.- Versioning systems that need to keep track of the number of times a file has been modified.
PN-CounterStores a count that can be incremented or decremented independently on different nodes, and then merged together consistently.- Tracking the number of likes or dislikes on a social media post.
Two-Phase SetStores a set of unique values that can be added or removed independently on different nodes, and then merged together consistently.- Collaborative editing of a list of items (e.g. a to-do list).
OR-SetStores a set of values that can be added independently on different nodes, and then merged together consistently.- Storing the list of friends that a user has on a social network.
LWW-Element-SetStores a set of values, where each value has a timestamp associated with it. The value with the most recent timestamp wins in case of conflicts.- Storing the latest version of a user's profile on a social network.
Observed-Remove SetStores a set of values that can be added or removed independently on different nodes, and then merged together consistently.- Storing the list of items that a user has added to their shopping cart on an e-commerce website.
-

These are just a few examples of CRDTs, and there are many other types of CRDTs that have been developed for different types of data and applications. In general, CRDTs can be useful whenever you need to store and update data in a distributed system, and you want to ensure that the data remains consistent even in the face of network partitions and other forms of partial failure.

-

Can you make a similar table for OTs?

-

gpt-logo -Sure! Here is a table that lists some common Operational Transform (OT) techniques, along with a brief description of each one and some potential use cases:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OT TechniqueDescriptionUse Cases
Insert-Delete OTAllows for the insertion and deletion of text, and can detect and resolve conflicts between concurrent insertions and deletions.- Collaborative text editing in a real-time editor (e.g. Google Docs).
Block-Based OTAllows for the insertion, deletion, and movement of blocks of text, and can detect and resolve conflicts between concurrent insertions, deletions, and movements.- Collaborative editing of structured documents (e.g. a spreadsheet or a presentation).
Change-Based OTAllows for arbitrary changes to be made to a document, and can detect and resolve conflicts between concurrent changes.- Collaborative editing of free-form documents (e.g. a word processor or a code editor).
State-Based OTStores the complete state of the document at each point in time, and can detect and resolve conflicts between concurrent changes by comparing the state of the document before and after each change.- Collaborative editing of complex data structures (e.g. a database or a network topology diagram).
Hybrid OTCombines multiple OT techniques in order to support a wider range of operations and conflicts.- Collaborative editing of documents that contain both structured and unstructured data (e.g. a document that contains both text and images).
Composable OTAllows for OTs to be composed together in order to create more complex data structures and operations.- Building collaborative editing systems that support multiple types of data and operations (e.g. a system that supports text, images, and geometry).
-

Like CRDTs, there are many different OT techniques that have been developed for different types of data and applications, and this table only covers a few of the most common ones. In general, OTs can be useful whenever you need to support real-time collaboration on data, and you want to ensure that concurrent changes can be merged together consistently.

-

is there a use case to use both CRDTs and OTs together?

-

gpt-logo -It is possible to use Conflict-free Replicated Data Types (CRDTs) and Operational Transform (OT) techniques together in some cases, although this is not always necessary or desirable. Here are a few examples of situations where using both CRDTs and OTs together might be useful:

-

If you have a data structure that is very complex and cannot be easily represented using a single CRDT, you could use a combination of CRDTs and OTs to break the data structure down into smaller, simpler pieces that can be managed independently. For example, you could use a CRDT to store the overall structure of the data, and then use OTs to handle the details of how the individual pieces of the data are updated and changed.

-

If you have a data structure that is updated very frequently, and you need to ensure that updates can be applied and merged together quickly, you might use a CRDT to handle the "big picture" view of the data, and then use OTs to handle the finer-grained details of how the data is changed. This can help to reduce the amount of work that needs to be done in order to merge updates together, which can improve the overall performance of the system.

-

If you have a data structure that needs to support both offline and online updates, you might use a CRDT to handle the offline updates, and then use OTs to handle the online updates. This can allow the system to continue functioning even when the network is unavailable, and then automatically merge any offline updates with the online updates when the network becomes available again.

-

Overall, whether or not it makes sense to use CRDTs and OTs together in a particular system will depend on the specific requirements and constraints of the system, as well as the trade-offs between the different approaches.

-

Are there any other similar types of data structures that also cover this space?

-

gpt-logo -There are many different types of data structures and algorithms that can be used to solve similar problems to those addressed by Conflict-free Replicated Data Types (CRDTs) and Operational Transform (OT) techniques. Some examples of other approaches that are related to CRDTs and OTs include:

-

Replication protocols: These are algorithms that are used to manage the process of replicating data between different nodes in a distributed system. Replication protocols can be used to ensure that multiple copies of the data are kept consistent with each other, and that conflicts between different copies of the data are resolved in a way that preserves the integrity of the data.

-

Consensus algorithms: These are algorithms that are used to reach agreement on the state of a distributed system, even in the presence of faulty or malicious nodes. Consensus algorithms can be used to ensure that different nodes in the system have a consistent view of the data, and that updates to the data are applied in a way that is consistent with the consensus.

-

Distributed hash tables (DHTs): These are data structures that are used to store and retrieve data in a distributed system. DHTs use a hash function to map data to different nodes in the system, and they can be used to ensure that data is stored and retrieved in a consistent and efficient manner.

-

Distributed databases: These are databases that are designed to be used in a distributed system, and that provide mechanisms for storing, querying, and updating data in a way that is consistent and scalable. Distributed databases can use a variety of techniques, including CRDTs and OTs, to ensure that the data remains consistent and available even in the face of network partitions and other forms of partial failure.

-

Give me a example of a consensus algorithm that computes the final state of a text document that is edited in realtime in multiple distributed computers. I'm looking at a peer to peer network without central authority.

-

gpt-logo -One example of a consensus algorithm that could be used to compute the final state of a text document that is edited in realtime in multiple distributed computers is called the "Paxos" algorithm. This algorithm is a well-known method for reaching consensus in a distributed system, and it has been used in many different types of applications, including real-time collaborative text editing.

-

Here is a high-level overview of how the Paxos algorithm might be used to compute the final state of a text document that is being edited in realtime by multiple users:

-

Each user maintains a local copy of the text document, and as they make changes to the document, they also generate a sequence of "operations" that represent the changes they are making. These operations are sent to the other users in the network.

-

When a user receives an operation from another user, they apply the operation to their local copy of the document. This may result in conflicts with other operations that have already been applied to the document, in which case the user will need to resolve the conflicts in some way (e.g. by using Operational Transform (OT) techniques).

-

As the users continue to edit the document and generate new operations, they also participate in the Paxos consensus protocol. This involves sending messages to each other in order to agree on the sequence of operations that should be applied to the document. The messages are sent in a specific order, and they are used to ensure that all of the users eventually agree on the same sequence of operations.

-

Once all of the users have agreed on the sequence of operations, they can apply those operations to their local copies of the document in order to compute the final state of the document. This final state will be the same for all of the users, and it will reflect all of the changes that have been made to the document by any of the users.

-

The Paxos algorithm is a complex and subtle algorithm, and this is just a very high-level overview of how it might be used in this context. There are many different variations of the Paxos algorithm, and the specific details of how it is implemented will depend on the specific requirements and constraints of the system.

-
-
- -

Raspberry Pi update Arkos

+
+

Debugging tips

Posted on Thursday, 31 October 2013

- -

Debugging tips

+
+

Raspberry Pi update Arkos

Posted on Thursday, 31 October 2013

@@ -386,14 +392,14 @@

Styling a Checkbox as an Ellipse

Posted on Wednesday, 23 May 2012

- -

Python - Neat little file http download routine

+
+

Javascript google maps basics

Posted on Tuesday, 24 April 2012

- -

Python - CSV handling

+
+

Python - Neat little file http download routine

Posted on Tuesday, 24 April 2012

@@ -404,8 +410,8 @@

KML File structure

Posted on Tuesday, 24 April 2012

- -

Javascript google maps basics

+
+

Python - CSV handling

Posted on Tuesday, 24 April 2012

@@ -428,26 +434,26 @@

Emotes on iPhones iOS5

Posted on Wednesday, 28 March 2012

- -

WPF - DynamicDataDisplay - A Chart component that works

+
+

Google doesn't need to worry

Posted on Saturday, 11 February 2012

- -

Google doesn't need to worry

+
+

Getting my ip on my Raspberry pi for a script

Posted on Saturday, 11 February 2012

- -

WPF - AvalonDock - A Docking component

+
+

WPF - DynamicDataDisplay - A Chart component that works

Posted on Saturday, 11 February 2012

- -

Getting my ip on my Raspberry pi for a script

+
+

WPF - AvalonDock - A Docking component

Posted on Saturday, 11 February 2012

diff --git a/sitemap.xml b/sitemap.xml index fec1374..d27f456 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1 +1 @@ -http://ewinnington.github.io/abouthttp://ewinnington.github.io/videoshttp://ewinnington.github.io/posts/Proxmoxhttp://ewinnington.github.io/posts/network-vpnhttp://ewinnington.github.io/posts/mini-pchttp://ewinnington.github.io/posts/learn-from-chatgpt-Crdt-OThttp://ewinnington.github.io/posts/7Reasons-no-cachehttp://ewinnington.github.io/posts/Software-Architecture-Illustrationhttp://ewinnington.github.io/posts/Data-Lineagehttp://ewinnington.github.io/posts/tesla-megapackhttp://ewinnington.github.io/posts/sqlite-microstoreshttp://ewinnington.github.io/posts/Starship-laser-ablationhttp://ewinnington.github.io/posts/Viruses-left-behindhttp://ewinnington.github.io/posts/db-healthhttp://ewinnington.github.io/posts/Point-of-exporing-spacehttp://ewinnington.github.io/posts/jupyter-tips-csharphttp://ewinnington.github.io/posts/jupyter-lp-20http://ewinnington.github.io/posts/my-binder-jupyter-csharphttp://ewinnington.github.io/posts/jupyter-lp-10http://ewinnington.github.io/posts/jupyter-docker-csharp-postgreshttp://ewinnington.github.io/posts/jupyter-sqlite-csharphttp://ewinnington.github.io/posts/jupyter-notebook-csharp-rhttp://ewinnington.github.io/posts/bulk-insertshttp://ewinnington.github.io/posts/webassembly-thoughtshttp://ewinnington.github.io/posts/wyam-github-actionshttp://ewinnington.github.io/posts/R-Redis-Jsonhttp://ewinnington.github.io/posts/R-read-binary-filehttp://ewinnington.github.io/posts/Switching-to-wyamhttp://ewinnington.github.io/posts/60-year-bethttp://ewinnington.github.io/posts/append-files-together-using-windows-command-linehttp://ewinnington.github.io/posts/tail-command-with-powershellhttp://ewinnington.github.io/posts/oracle-getting-a-list-of-all-columns-data-types-lengths-of-column-for-every-table-in-your-schemahttp://ewinnington.github.io/posts/getting-autoincremented-version-numbers-in-visual-studiohttp://ewinnington.github.io/posts/using-svg-images-on-azure-websiteshttp://ewinnington.github.io/posts/diff-compare-two-files-in-visual-studiohttp://ewinnington.github.io/posts/listing-the-channels-of-the-wifi-networks-around-you-in-windowshttp://ewinnington.github.io/posts/oracle-reclaiming-lob-space-after-deletion-clob-blobhttp://ewinnington.github.io/posts/oracle-sql-developer-set-nls-to-give-you-full-date-and-timehttp://ewinnington.github.io/posts/sqlfiddle-a-way-to-share-sql-snippets-so-that-they-can-be-tested-in-the-browserhttp://ewinnington.github.io/posts/raspberry-pi-update-arkoshttp://ewinnington.github.io/posts/debugging-tipshttp://ewinnington.github.io/posts/commenting-and-uncommenting-in-vihttp://ewinnington.github.io/posts/updating-my-raspberry-pis-ip-address-on-a-distant-server-via-sftphttp://ewinnington.github.io/posts/raspberry-pihttp://ewinnington.github.io/posts/making-fortran-dlls-to-interface-with-vba-in-excelhttp://ewinnington.github.io/posts/styling-a-listview-with-a-horizontal-itemspanel-and-a-headerhttp://ewinnington.github.io/posts/styling-a-checkbox-as-an-ellipsehttp://ewinnington.github.io/posts/python-neat-little-file-http-download-routinehttp://ewinnington.github.io/posts/python-csv-handlinghttp://ewinnington.github.io/posts/kml-file-structurehttp://ewinnington.github.io/posts/javascript-google-maps-basicshttp://ewinnington.github.io/posts/accessing-the-power-control-panel-in-windows-xphttp://ewinnington.github.io/posts/adding-windows-printers-with-a-vbscripthttp://ewinnington.github.io/posts/emotes-on-iphones-ios5http://ewinnington.github.io/posts/wpf-dynamicdatadisplay-a-chart-component-that-workshttp://ewinnington.github.io/posts/google-doesnt-need-to-worryhttp://ewinnington.github.io/posts/wpf-avalondock-a-docking-componenthttp://ewinnington.github.io/posts/getting-my-ip-on-my-raspberrypi-for-a-scripthttp://ewinnington.github.io/posts/Oracle10g-Pivoting-datahttp://ewinnington.github.io/posts/apple-apps-remotehttp://ewinnington.github.io/posts/migrating-my-mum-to-osx-adressbook-and-applescripthttp://ewinnington.github.io/posts/migrating-my-mum-to-os-x-experienceshttp://ewinnington.github.io/posts/Awesomenote-and-Evernotehttp://ewinnington.github.io/posts/one-app-that-changes-the-iphonehttp://ewinnington.github.io/posts/screen-and-paper-convergencehttp://ewinnington.github.io/posts/setting-up-wordpress-publishing-from-iphonehttp://ewinnington.github.io/posts/the-livescribe-echo-penhttp://ewinnington.github.io/posts/migrating-my-mum-os-xhttp://ewinnington.github.io/tags/Binaryhttp://ewinnington.github.io/tags/Tailscalehttp://ewinnington.github.io/tags/JSONhttp://ewinnington.github.io/tags/GithubPageshttp://ewinnington.github.io/tags/Wyamhttp://ewinnington.github.io/tags/Githubhttp://ewinnington.github.io/tags/Webassemblyhttp://ewinnington.github.io/tags/BulkInsertshttp://ewinnington.github.io/tags/Rhttp://ewinnington.github.io/tags/Dockerhttp://ewinnington.github.io/tags/Google-OR-Toolshttp://ewinnington.github.io/tags/Mixed-Integer-linear-programminghttp://ewinnington.github.io/tags/LinearProgramminghttp://ewinnington.github.io/tags/Jupyter-notebookhttp://ewinnington.github.io/tags/Dotnet-tryhttp://ewinnington.github.io/tags/CSharphttp://ewinnington.github.io/tags/MariaDbhttp://ewinnington.github.io/tags/MySqlhttp://ewinnington.github.io/tags/Postgresqlhttp://ewinnington.github.io/tags/MsSqlhttp://ewinnington.github.io/tags/Oraclehttp://ewinnington.github.io/tags/Virushttp://ewinnington.github.io/tags/Spacehttp://ewinnington.github.io/tags/SpaceXhttp://ewinnington.github.io/tags/Databasehttp://ewinnington.github.io/tags/SQLhttp://ewinnington.github.io/tags/SQLitehttp://ewinnington.github.io/tags/Energyhttp://ewinnington.github.io/tags/Batteryhttp://ewinnington.github.io/tags/DataLineagehttp://ewinnington.github.io/tags/Redishttp://ewinnington.github.io/tags/Cachinghttp://ewinnington.github.io/tags/Thoughtshttp://ewinnington.github.io/tags/chatGPThttp://ewinnington.github.io/tags/Metalhttp://ewinnington.github.io/tags/Kuberneteshttp://ewinnington.github.io/tags/VPNhttp://ewinnington.github.io/tags/Migratedhttp://ewinnington.github.io/tags/Proxmoxhttp://ewinnington.github.io/tags/Architecturehttp://ewinnington.github.io/tags/Wordpresshttp://ewinnington.github.io/tags/Livescribehttp://ewinnington.github.io/tags/Evernotehttp://ewinnington.github.io/tags/Awesomenotehttp://ewinnington.github.io/tags/OSXhttp://ewinnington.github.io/tags/iOShttp://ewinnington.github.io/tags/Charthttp://ewinnington.github.io/tags/DynamicDataDisplayhttp://ewinnington.github.io/tags/iOS5http://ewinnington.github.io/tags/VBScripthttp://ewinnington.github.io/tags/Win10http://ewinnington.github.io/tags/WinXPhttp://ewinnington.github.io/tags/MapsAPIhttp://ewinnington.github.io/tags/Javascripthttp://ewinnington.github.io/tags/Googlehttp://ewinnington.github.io/tags/KMLhttp://ewinnington.github.io/tags/Pythonhttp://ewinnington.github.io/tags/WPFhttp://ewinnington.github.io/tags/VBAhttp://ewinnington.github.io/tags/Fortranhttp://ewinnington.github.io/tags/Vihttp://ewinnington.github.io/tags/Debugginghttp://ewinnington.github.io/tags/Rpihttp://ewinnington.github.io/tags/Windowshttp://ewinnington.github.io/tags/Wifihttp://ewinnington.github.io/tags/Diffhttp://ewinnington.github.io/tags/Websiteshttp://ewinnington.github.io/tags/Azurehttp://ewinnington.github.io/tags/SVGhttp://ewinnington.github.io/tags/VisualStudiohttp://ewinnington.github.io/tags/Powershellhttp://ewinnington.github.io/tags/FileProcessinghttp://ewinnington.github.io/tags/CommandLinehttp://ewinnington.github.io/tags/Networkhttp://ewinnington.github.io/tags/GithubActionshttp://ewinnington.github.io/tagshttp://ewinnington.github.io/postshttp://ewinnington.github.io/http://ewinnington.github.io/feed.atomhttp://ewinnington.github.io/feed.rsshttp://ewinnington.github.io/posts/Proxmoxhttp://ewinnington.github.io/posts/network-vpnhttp://ewinnington.github.io/posts/mini-pchttp://ewinnington.github.io/posts/learn-from-chatgpt-Crdt-OThttp://ewinnington.github.io/posts/7Reasons-no-cachehttp://ewinnington.github.io/posts/Software-Architecture-Illustrationhttp://ewinnington.github.io/posts/Data-Lineagehttp://ewinnington.github.io/posts/tesla-megapackhttp://ewinnington.github.io/posts/sqlite-microstoreshttp://ewinnington.github.io/posts/Starship-laser-ablationhttp://ewinnington.github.io/posts/Viruses-left-behindhttp://ewinnington.github.io/posts/db-healthhttp://ewinnington.github.io/posts/Point-of-exporing-spacehttp://ewinnington.github.io/posts/jupyter-tips-csharphttp://ewinnington.github.io/posts/jupyter-lp-20http://ewinnington.github.io/posts/my-binder-jupyter-csharphttp://ewinnington.github.io/posts/jupyter-lp-10http://ewinnington.github.io/posts/jupyter-docker-csharp-postgreshttp://ewinnington.github.io/posts/jupyter-sqlite-csharphttp://ewinnington.github.io/posts/jupyter-notebook-csharp-rhttp://ewinnington.github.io/posts/bulk-insertshttp://ewinnington.github.io/posts/webassembly-thoughtshttp://ewinnington.github.io/posts/R-read-binary-filehttp://ewinnington.github.io/posts/wyam-github-actionshttp://ewinnington.github.io/posts/R-Redis-Jsonhttp://ewinnington.github.io/posts/Switching-to-wyamhttp://ewinnington.github.io/posts/60-year-bethttp://ewinnington.github.io/posts/append-files-together-using-windows-command-linehttp://ewinnington.github.io/posts/tail-command-with-powershellhttp://ewinnington.github.io/posts/oracle-getting-a-list-of-all-columns-data-types-lengths-of-column-for-every-table-in-your-schemahttp://ewinnington.github.io/posts/getting-autoincremented-version-numbers-in-visual-studiohttp://ewinnington.github.io/posts/using-svg-images-on-azure-websiteshttp://ewinnington.github.io/posts/diff-compare-two-files-in-visual-studiohttp://ewinnington.github.io/posts/listing-the-channels-of-the-wifi-networks-around-you-in-windowshttp://ewinnington.github.io/posts/oracle-reclaiming-lob-space-after-deletion-clob-blobhttp://ewinnington.github.io/posts/oracle-sql-developer-set-nls-to-give-you-full-date-and-timehttp://ewinnington.github.io/posts/sqlfiddle-a-way-to-share-sql-snippets-so-that-they-can-be-tested-in-the-browserhttp://ewinnington.github.io/posts/debugging-tipshttp://ewinnington.github.io/posts/raspberry-pi-update-arkoshttp://ewinnington.github.io/posts/commenting-and-uncommenting-in-vihttp://ewinnington.github.io/posts/updating-my-raspberry-pis-ip-address-on-a-distant-server-via-sftphttp://ewinnington.github.io/posts/raspberry-pihttp://ewinnington.github.io/posts/making-fortran-dlls-to-interface-with-vba-in-excelhttp://ewinnington.github.io/posts/styling-a-listview-with-a-horizontal-itemspanel-and-a-headerhttp://ewinnington.github.io/posts/styling-a-checkbox-as-an-ellipsehttp://ewinnington.github.io/posts/python-csv-handlinghttp://ewinnington.github.io/posts/python-neat-little-file-http-download-routinehttp://ewinnington.github.io/posts/javascript-google-maps-basicshttp://ewinnington.github.io/posts/kml-file-structurehttp://ewinnington.github.io/posts/accessing-the-power-control-panel-in-windows-xphttp://ewinnington.github.io/posts/adding-windows-printers-with-a-vbscripthttp://ewinnington.github.io/posts/emotes-on-iphones-ios5http://ewinnington.github.io/posts/getting-my-ip-on-my-raspberrypi-for-a-scripthttp://ewinnington.github.io/posts/google-doesnt-need-to-worryhttp://ewinnington.github.io/posts/wpf-avalondock-a-docking-componenthttp://ewinnington.github.io/posts/wpf-dynamicdatadisplay-a-chart-component-that-workshttp://ewinnington.github.io/posts/Oracle10g-Pivoting-datahttp://ewinnington.github.io/posts/apple-apps-remotehttp://ewinnington.github.io/posts/migrating-my-mum-to-osx-adressbook-and-applescripthttp://ewinnington.github.io/posts/migrating-my-mum-to-os-x-experienceshttp://ewinnington.github.io/posts/Awesomenote-and-Evernotehttp://ewinnington.github.io/posts/one-app-that-changes-the-iphonehttp://ewinnington.github.io/posts/screen-and-paper-convergencehttp://ewinnington.github.io/posts/setting-up-wordpress-publishing-from-iphonehttp://ewinnington.github.io/posts/the-livescribe-echo-penhttp://ewinnington.github.io/posts/migrating-my-mum-os-xhttp://ewinnington.github.io/abouthttp://ewinnington.github.io/videos \ No newline at end of file +http://ewinnington.github.io/abouthttp://ewinnington.github.io/videoshttp://ewinnington.github.io/posts/devcontainershttp://ewinnington.github.io/posts/Proxmoxhttp://ewinnington.github.io/posts/network-vpnhttp://ewinnington.github.io/posts/mini-pchttp://ewinnington.github.io/posts/learn-from-chatgpt-Crdt-OThttp://ewinnington.github.io/posts/7Reasons-no-cachehttp://ewinnington.github.io/posts/Software-Architecture-Illustrationhttp://ewinnington.github.io/posts/Data-Lineagehttp://ewinnington.github.io/posts/tesla-megapackhttp://ewinnington.github.io/posts/sqlite-microstoreshttp://ewinnington.github.io/posts/Starship-laser-ablationhttp://ewinnington.github.io/posts/Viruses-left-behindhttp://ewinnington.github.io/posts/db-healthhttp://ewinnington.github.io/posts/Point-of-exporing-spacehttp://ewinnington.github.io/posts/jupyter-tips-csharphttp://ewinnington.github.io/posts/jupyter-lp-20http://ewinnington.github.io/posts/my-binder-jupyter-csharphttp://ewinnington.github.io/posts/jupyter-lp-10http://ewinnington.github.io/posts/jupyter-docker-csharp-postgreshttp://ewinnington.github.io/posts/jupyter-sqlite-csharphttp://ewinnington.github.io/posts/jupyter-notebook-csharp-rhttp://ewinnington.github.io/posts/bulk-insertshttp://ewinnington.github.io/posts/webassembly-thoughtshttp://ewinnington.github.io/posts/wyam-github-actionshttp://ewinnington.github.io/posts/R-read-binary-filehttp://ewinnington.github.io/posts/R-Redis-Jsonhttp://ewinnington.github.io/posts/Switching-to-wyamhttp://ewinnington.github.io/posts/60-year-bethttp://ewinnington.github.io/posts/append-files-together-using-windows-command-linehttp://ewinnington.github.io/posts/tail-command-with-powershellhttp://ewinnington.github.io/posts/oracle-getting-a-list-of-all-columns-data-types-lengths-of-column-for-every-table-in-your-schemahttp://ewinnington.github.io/posts/getting-autoincremented-version-numbers-in-visual-studiohttp://ewinnington.github.io/posts/using-svg-images-on-azure-websiteshttp://ewinnington.github.io/posts/diff-compare-two-files-in-visual-studiohttp://ewinnington.github.io/posts/listing-the-channels-of-the-wifi-networks-around-you-in-windowshttp://ewinnington.github.io/posts/oracle-reclaiming-lob-space-after-deletion-clob-blobhttp://ewinnington.github.io/posts/oracle-sql-developer-set-nls-to-give-you-full-date-and-timehttp://ewinnington.github.io/posts/sqlfiddle-a-way-to-share-sql-snippets-so-that-they-can-be-tested-in-the-browserhttp://ewinnington.github.io/posts/debugging-tipshttp://ewinnington.github.io/posts/raspberry-pi-update-arkoshttp://ewinnington.github.io/posts/commenting-and-uncommenting-in-vihttp://ewinnington.github.io/posts/updating-my-raspberry-pis-ip-address-on-a-distant-server-via-sftphttp://ewinnington.github.io/posts/raspberry-pihttp://ewinnington.github.io/posts/making-fortran-dlls-to-interface-with-vba-in-excelhttp://ewinnington.github.io/posts/styling-a-listview-with-a-horizontal-itemspanel-and-a-headerhttp://ewinnington.github.io/posts/styling-a-checkbox-as-an-ellipsehttp://ewinnington.github.io/posts/javascript-google-maps-basicshttp://ewinnington.github.io/posts/python-neat-little-file-http-download-routinehttp://ewinnington.github.io/posts/kml-file-structurehttp://ewinnington.github.io/posts/python-csv-handlinghttp://ewinnington.github.io/posts/accessing-the-power-control-panel-in-windows-xphttp://ewinnington.github.io/posts/adding-windows-printers-with-a-vbscripthttp://ewinnington.github.io/posts/emotes-on-iphones-ios5http://ewinnington.github.io/posts/google-doesnt-need-to-worryhttp://ewinnington.github.io/posts/getting-my-ip-on-my-raspberrypi-for-a-scripthttp://ewinnington.github.io/posts/wpf-dynamicdatadisplay-a-chart-component-that-workshttp://ewinnington.github.io/posts/wpf-avalondock-a-docking-componenthttp://ewinnington.github.io/posts/Oracle10g-Pivoting-datahttp://ewinnington.github.io/posts/apple-apps-remotehttp://ewinnington.github.io/posts/migrating-my-mum-to-osx-adressbook-and-applescripthttp://ewinnington.github.io/posts/migrating-my-mum-to-os-x-experienceshttp://ewinnington.github.io/posts/Awesomenote-and-Evernotehttp://ewinnington.github.io/posts/one-app-that-changes-the-iphonehttp://ewinnington.github.io/posts/screen-and-paper-convergencehttp://ewinnington.github.io/posts/setting-up-wordpress-publishing-from-iphonehttp://ewinnington.github.io/posts/the-livescribe-echo-penhttp://ewinnington.github.io/posts/migrating-my-mum-os-xhttp://ewinnington.github.io/tags/DevContainershttp://ewinnington.github.io/tags/Wordpresshttp://ewinnington.github.io/tags/Evernotehttp://ewinnington.github.io/tags/OSXhttp://ewinnington.github.io/tags/Charthttp://ewinnington.github.io/tags/iOS5http://ewinnington.github.io/tags/Win10http://ewinnington.github.io/tags/KMLhttp://ewinnington.github.io/tags/MapsAPIhttp://ewinnington.github.io/tags/Googlehttp://ewinnington.github.io/tags/VBAhttp://ewinnington.github.io/tags/Vihttp://ewinnington.github.io/tags/Debugginghttp://ewinnington.github.io/tags/Wifihttp://ewinnington.github.io/tags/Websiteshttp://ewinnington.github.io/tags/SVGhttp://ewinnington.github.io/tags/Powershellhttp://ewinnington.github.io/tags/CommandLinehttp://ewinnington.github.io/tags/JSONhttp://ewinnington.github.io/tags/GithubActionshttp://ewinnington.github.io/tags/Wyamhttp://ewinnington.github.io/tags/BulkInsertshttp://ewinnington.github.io/tags/Google-OR-Toolshttp://ewinnington.github.io/tags/Jupyter-notebookhttp://ewinnington.github.io/tags/CSharphttp://ewinnington.github.io/tags/MySqlhttp://ewinnington.github.io/tags/MsSqlhttp://ewinnington.github.io/tags/Virushttp://ewinnington.github.io/tags/SpaceXhttp://ewinnington.github.io/tags/SQLhttp://ewinnington.github.io/tags/Energyhttp://ewinnington.github.io/tags/DataLineagehttp://ewinnington.github.io/tags/Cachinghttp://ewinnington.github.io/tags/chatGPThttp://ewinnington.github.io/tags/Kuberneteshttp://ewinnington.github.io/tags/Networkhttp://ewinnington.github.io/tags/Proxmoxhttp://ewinnington.github.io/tags/Architecturehttp://ewinnington.github.io/tags/Codespaceshttp://ewinnington.github.io/tags/VSCodehttp://ewinnington.github.io/tags/Livescribehttp://ewinnington.github.io/tags/Awesomenotehttp://ewinnington.github.io/tags/iOShttp://ewinnington.github.io/tags/DynamicDataDisplayhttp://ewinnington.github.io/tags/VBScripthttp://ewinnington.github.io/tags/WinXPhttp://ewinnington.github.io/tags/Pythonhttp://ewinnington.github.io/tags/Javascripthttp://ewinnington.github.io/tags/WPFhttp://ewinnington.github.io/tags/Fortranhttp://ewinnington.github.io/tags/Rpihttp://ewinnington.github.io/tags/Windowshttp://ewinnington.github.io/tags/Diffhttp://ewinnington.github.io/tags/Azurehttp://ewinnington.github.io/tags/VisualStudiohttp://ewinnington.github.io/tags/FileProcessinghttp://ewinnington.github.io/tags/Migratedhttp://ewinnington.github.io/tags/Binaryhttp://ewinnington.github.io/tags/GithubPageshttp://ewinnington.github.io/tags/Webassemblyhttp://ewinnington.github.io/tags/Rhttp://ewinnington.github.io/tags/Mixed-Integer-linear-programminghttp://ewinnington.github.io/tags/LinearProgramminghttp://ewinnington.github.io/tags/Dotnet-tryhttp://ewinnington.github.io/tags/MariaDbhttp://ewinnington.github.io/tags/Postgresqlhttp://ewinnington.github.io/tags/Oraclehttp://ewinnington.github.io/tags/Spacehttp://ewinnington.github.io/tags/Databasehttp://ewinnington.github.io/tags/SQLitehttp://ewinnington.github.io/tags/Batteryhttp://ewinnington.github.io/tags/Redishttp://ewinnington.github.io/tags/Thoughtshttp://ewinnington.github.io/tags/Metalhttp://ewinnington.github.io/tags/VPNhttp://ewinnington.github.io/tags/Tailscalehttp://ewinnington.github.io/tags/Devhttp://ewinnington.github.io/tags/Githubhttp://ewinnington.github.io/tags/Dockerhttp://ewinnington.github.io/tagshttp://ewinnington.github.io/postshttp://ewinnington.github.io/http://ewinnington.github.io/feed.atomhttp://ewinnington.github.io/feed.rsshttp://ewinnington.github.io/posts/devcontainershttp://ewinnington.github.io/posts/Proxmoxhttp://ewinnington.github.io/posts/network-vpnhttp://ewinnington.github.io/posts/mini-pchttp://ewinnington.github.io/posts/learn-from-chatgpt-Crdt-OThttp://ewinnington.github.io/posts/7Reasons-no-cachehttp://ewinnington.github.io/posts/Software-Architecture-Illustrationhttp://ewinnington.github.io/posts/Data-Lineagehttp://ewinnington.github.io/posts/tesla-megapackhttp://ewinnington.github.io/posts/sqlite-microstoreshttp://ewinnington.github.io/posts/Starship-laser-ablationhttp://ewinnington.github.io/posts/Viruses-left-behindhttp://ewinnington.github.io/posts/db-healthhttp://ewinnington.github.io/posts/Point-of-exporing-spacehttp://ewinnington.github.io/posts/jupyter-tips-csharphttp://ewinnington.github.io/posts/jupyter-lp-20http://ewinnington.github.io/posts/my-binder-jupyter-csharphttp://ewinnington.github.io/posts/jupyter-lp-10http://ewinnington.github.io/posts/jupyter-docker-csharp-postgreshttp://ewinnington.github.io/posts/jupyter-sqlite-csharphttp://ewinnington.github.io/posts/jupyter-notebook-csharp-rhttp://ewinnington.github.io/posts/bulk-insertshttp://ewinnington.github.io/posts/webassembly-thoughtshttp://ewinnington.github.io/posts/R-Redis-Jsonhttp://ewinnington.github.io/posts/wyam-github-actionshttp://ewinnington.github.io/posts/R-read-binary-filehttp://ewinnington.github.io/posts/Switching-to-wyamhttp://ewinnington.github.io/posts/60-year-bethttp://ewinnington.github.io/posts/append-files-together-using-windows-command-linehttp://ewinnington.github.io/posts/tail-command-with-powershellhttp://ewinnington.github.io/posts/oracle-getting-a-list-of-all-columns-data-types-lengths-of-column-for-every-table-in-your-schemahttp://ewinnington.github.io/posts/getting-autoincremented-version-numbers-in-visual-studiohttp://ewinnington.github.io/posts/using-svg-images-on-azure-websiteshttp://ewinnington.github.io/posts/diff-compare-two-files-in-visual-studiohttp://ewinnington.github.io/posts/listing-the-channels-of-the-wifi-networks-around-you-in-windowshttp://ewinnington.github.io/posts/oracle-reclaiming-lob-space-after-deletion-clob-blobhttp://ewinnington.github.io/posts/oracle-sql-developer-set-nls-to-give-you-full-date-and-timehttp://ewinnington.github.io/posts/sqlfiddle-a-way-to-share-sql-snippets-so-that-they-can-be-tested-in-the-browserhttp://ewinnington.github.io/posts/raspberry-pi-update-arkoshttp://ewinnington.github.io/posts/debugging-tipshttp://ewinnington.github.io/posts/commenting-and-uncommenting-in-vihttp://ewinnington.github.io/posts/updating-my-raspberry-pis-ip-address-on-a-distant-server-via-sftphttp://ewinnington.github.io/posts/raspberry-pihttp://ewinnington.github.io/posts/making-fortran-dlls-to-interface-with-vba-in-excelhttp://ewinnington.github.io/posts/styling-a-checkbox-as-an-ellipsehttp://ewinnington.github.io/posts/styling-a-listview-with-a-horizontal-itemspanel-and-a-headerhttp://ewinnington.github.io/posts/python-neat-little-file-http-download-routinehttp://ewinnington.github.io/posts/python-csv-handlinghttp://ewinnington.github.io/posts/kml-file-structurehttp://ewinnington.github.io/posts/javascript-google-maps-basicshttp://ewinnington.github.io/posts/accessing-the-power-control-panel-in-windows-xphttp://ewinnington.github.io/posts/adding-windows-printers-with-a-vbscripthttp://ewinnington.github.io/posts/emotes-on-iphones-ios5http://ewinnington.github.io/posts/wpf-avalondock-a-docking-componenthttp://ewinnington.github.io/posts/getting-my-ip-on-my-raspberrypi-for-a-scripthttp://ewinnington.github.io/posts/wpf-dynamicdatadisplay-a-chart-component-that-workshttp://ewinnington.github.io/posts/google-doesnt-need-to-worryhttp://ewinnington.github.io/posts/Oracle10g-Pivoting-datahttp://ewinnington.github.io/posts/apple-apps-remotehttp://ewinnington.github.io/posts/migrating-my-mum-to-osx-adressbook-and-applescripthttp://ewinnington.github.io/posts/migrating-my-mum-to-os-x-experienceshttp://ewinnington.github.io/posts/Awesomenote-and-Evernotehttp://ewinnington.github.io/posts/one-app-that-changes-the-iphonehttp://ewinnington.github.io/posts/screen-and-paper-convergencehttp://ewinnington.github.io/posts/setting-up-wordpress-publishing-from-iphonehttp://ewinnington.github.io/posts/the-livescribe-echo-penhttp://ewinnington.github.io/posts/migrating-my-mum-os-xhttp://ewinnington.github.io/abouthttp://ewinnington.github.io/videos \ No newline at end of file diff --git a/tags/Architecture.html b/tags/Architecture.html index a822a4c..b9b7c0e 100644 --- a/tags/Architecture.html +++ b/tags/Architecture.html @@ -90,6 +90,12 @@

Architecture

+
+ +

DevContainers - The future of developer environments

+
+

Posted on Monday, 24 July 2023

+

Proxmox 8 on sub $200 mini PCs

@@ -144,77 +150,81 @@

Data Lineage for dataflow and workflow processes

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Awesomenote.html b/tags/Awesomenote.html index 92cd8d9..486e7b0 100644 --- a/tags/Awesomenote.html +++ b/tags/Awesomenote.html @@ -114,77 +114,81 @@

    Awesomenote and Evernote

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Azure.html b/tags/Azure.html index 4aa9732..ff12f00 100644 --- a/tags/Azure.html +++ b/tags/Azure.html @@ -114,77 +114,81 @@

    Using SVG images on Azure Websites

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Battery.html b/tags/Battery.html index abd5131..ccd406d 100644 --- a/tags/Battery.html +++ b/tags/Battery.html @@ -114,77 +114,81 @@

    Tesla Megapacks put into context

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Binary.html b/tags/Binary.html index 86537fd..ea728e6 100644 --- a/tags/Binary.html +++ b/tags/Binary.html @@ -114,77 +114,81 @@

    R - Reading binary files

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/BulkInserts.html b/tags/BulkInserts.html index ebbf4bf..c82aad0 100644 --- a/tags/BulkInserts.html +++ b/tags/BulkInserts.html @@ -114,77 +114,81 @@

    Using bulk inserts on databases

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/CSharp.html b/tags/CSharp.html index 10c2e46..484ea8f 100644 --- a/tags/CSharp.html +++ b/tags/CSharp.html @@ -156,77 +156,81 @@

    Using bulk inserts on databases

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Caching.html b/tags/Caching.html index fbade9b..d89d57e 100644 --- a/tags/Caching.html +++ b/tags/Caching.html @@ -114,77 +114,81 @@

    7 reasons to not use caching

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Chart.html b/tags/Chart.html index 5f7faaf..9821e68 100644 --- a/tags/Chart.html +++ b/tags/Chart.html @@ -114,77 +114,81 @@

    WPF - DynamicDataDisplay - A Chart component that works

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Codespaces.html b/tags/Codespaces.html new file mode 100644 index 0000000..af04f16 --- /dev/null +++ b/tags/Codespaces.html @@ -0,0 +1,234 @@ + + + + + + + Eric Winnington - Codespaces + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + +
    + +
    + + + + +
    + + + + + + + + + + + + + + diff --git a/tags/CommandLine.html b/tags/CommandLine.html index df579a9..ca07bf0 100644 --- a/tags/CommandLine.html +++ b/tags/CommandLine.html @@ -132,77 +132,81 @@

    Adding windows printers with a VBScript

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/DataLineage.html b/tags/DataLineage.html index 7ad8167..5a2bed8 100644 --- a/tags/DataLineage.html +++ b/tags/DataLineage.html @@ -114,77 +114,81 @@

    Data Lineage for dataflow and workflow processes

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Database.html b/tags/Database.html index b853507..785a6d4 100644 --- a/tags/Database.html +++ b/tags/Database.html @@ -168,77 +168,81 @@

    Oracle 10g - Pivoting data

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Debugging.html b/tags/Debugging.html index 9c8f120..0bf15cb 100644 --- a/tags/Debugging.html +++ b/tags/Debugging.html @@ -114,77 +114,81 @@

    Debugging tips

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Dev.html b/tags/Dev.html new file mode 100644 index 0000000..eaa7a60 --- /dev/null +++ b/tags/Dev.html @@ -0,0 +1,234 @@ + + + + + + + Eric Winnington - Dev + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + +
    + +
    + + + + +
    + + + + + + + + + + + + + + diff --git a/tags/DevContainers.html b/tags/DevContainers.html new file mode 100644 index 0000000..57c2c57 --- /dev/null +++ b/tags/DevContainers.html @@ -0,0 +1,234 @@ + + + + + + + Eric Winnington - DevContainers + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + +
    + +
    + + + + +
    + + + + + + + + + + + + + + diff --git a/tags/Diff.html b/tags/Diff.html index e808a97..3a82df1 100644 --- a/tags/Diff.html +++ b/tags/Diff.html @@ -114,77 +114,81 @@

    Diff / Compare two files in Visual Studio

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Docker.html b/tags/Docker.html index fae9d53..5cf5c29 100644 --- a/tags/Docker.html +++ b/tags/Docker.html @@ -90,6 +90,12 @@

    Docker

    +
    + +

    DevContainers - The future of developer environments

    +
    +

    Posted on Monday, 24 July 2023

    +

    Hosting your C# Jupyter notebook online by adding one file to your repo

    @@ -120,77 +126,81 @@

    Docker controlled from Jupyter Notebook C# with PostgresDB

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Dotnet-try.html b/tags/Dotnet-try.html index 2414b14..dc3b2ca 100644 --- a/tags/Dotnet-try.html +++ b/tags/Dotnet-try.html @@ -150,77 +150,81 @@

    Jupyter notebook with C# and R

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/DynamicDataDisplay.html b/tags/DynamicDataDisplay.html index 33c678f..4cc5222 100644 --- a/tags/DynamicDataDisplay.html +++ b/tags/DynamicDataDisplay.html @@ -114,77 +114,81 @@

    WPF - DynamicDataDisplay - A Chart component that works

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Energy.html b/tags/Energy.html index 199c085..863a97a 100644 --- a/tags/Energy.html +++ b/tags/Energy.html @@ -114,77 +114,81 @@

    Tesla Megapacks put into context

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Evernote.html b/tags/Evernote.html index 2f63989..077d37d 100644 --- a/tags/Evernote.html +++ b/tags/Evernote.html @@ -114,77 +114,81 @@

    Awesomenote and Evernote

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/FileProcessing.html b/tags/FileProcessing.html index 4c40f43..cc263e2 100644 --- a/tags/FileProcessing.html +++ b/tags/FileProcessing.html @@ -114,77 +114,81 @@

    Append files together using windows command line

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Fortran.html b/tags/Fortran.html index 2bac0b9..ec7e48d 100644 --- a/tags/Fortran.html +++ b/tags/Fortran.html @@ -114,77 +114,81 @@

    Making Fortran DLLs to interface with VBA in Excel

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Github.html b/tags/Github.html index 0d9faed..70aaa09 100644 --- a/tags/Github.html +++ b/tags/Github.html @@ -90,6 +90,12 @@

    Github

    +
    + +

    DevContainers - The future of developer environments

    +
    +

    Posted on Monday, 24 July 2023

    +

    Using Github actions to build Wyam and publish to github pages

    @@ -114,77 +120,81 @@

    Using Github actions to build Wyam and publish to github pages

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/GithubActions.html b/tags/GithubActions.html index a041f26..65874ac 100644 --- a/tags/GithubActions.html +++ b/tags/GithubActions.html @@ -114,77 +114,81 @@

    Using Github actions to build Wyam and publish to github pages

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/GithubPages.html b/tags/GithubPages.html index 4acdb1b..7e65854 100644 --- a/tags/GithubPages.html +++ b/tags/GithubPages.html @@ -114,77 +114,81 @@

    Using Github actions to build Wyam and publish to github pages

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Google-OR-Tools.html b/tags/Google-OR-Tools.html index 1da7a77..32688fa 100644 --- a/tags/Google-OR-Tools.html +++ b/tags/Google-OR-Tools.html @@ -120,77 +120,81 @@

    Introduction to linear programming with C# and OR-Tools inside Jupyter

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Google.html b/tags/Google.html index 6dc1fba..b0912e5 100644 --- a/tags/Google.html +++ b/tags/Google.html @@ -120,77 +120,81 @@

    Google doesn't need to worry

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/JSON.html b/tags/JSON.html index f0bd639..72821b0 100644 --- a/tags/JSON.html +++ b/tags/JSON.html @@ -114,77 +114,81 @@

    R - Reading JSON from redis

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Javascript.html b/tags/Javascript.html index c6d68e0..4e00d02 100644 --- a/tags/Javascript.html +++ b/tags/Javascript.html @@ -114,77 +114,81 @@

    Javascript google maps basics

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Jupyter-notebook.html b/tags/Jupyter-notebook.html index 3fead42..ef91f3e 100644 --- a/tags/Jupyter-notebook.html +++ b/tags/Jupyter-notebook.html @@ -150,77 +150,81 @@

    Jupyter notebook with C# and R

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/KML.html b/tags/KML.html index 39c9535..ebd3982 100644 --- a/tags/KML.html +++ b/tags/KML.html @@ -114,77 +114,81 @@

    KML File structure

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Kubernetes.html b/tags/Kubernetes.html index 2c8c7c9..0e32775 100644 --- a/tags/Kubernetes.html +++ b/tags/Kubernetes.html @@ -114,77 +114,81 @@

    The era of the sub $200 PC

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/LinearProgramming.html b/tags/LinearProgramming.html index 9c6954e..9f1f4d3 100644 --- a/tags/LinearProgramming.html +++ b/tags/LinearProgramming.html @@ -120,77 +120,81 @@

    Introduction to linear programming with C# and OR-Tools inside Jupyter

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Livescribe.html b/tags/Livescribe.html index 7b2af62..5b14f53 100644 --- a/tags/Livescribe.html +++ b/tags/Livescribe.html @@ -120,77 +120,81 @@

    The Livescribe Echo pen

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/MapsAPI.html b/tags/MapsAPI.html index 5eae054..59dd769 100644 --- a/tags/MapsAPI.html +++ b/tags/MapsAPI.html @@ -114,77 +114,81 @@

    Javascript google maps basics

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/MariaDb.html b/tags/MariaDb.html index 5cdffbb..55c0fb8 100644 --- a/tags/MariaDb.html +++ b/tags/MariaDb.html @@ -114,77 +114,81 @@

    Checking for liveness on databases for health checks

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Metal.html b/tags/Metal.html index e25a908..8729e1e 100644 --- a/tags/Metal.html +++ b/tags/Metal.html @@ -114,77 +114,81 @@

    The era of the sub $200 PC

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Migrated.html b/tags/Migrated.html index 8be6f60..9b45082 100644 --- a/tags/Migrated.html +++ b/tags/Migrated.html @@ -151,14 +151,14 @@

    SqlFiddle - A way to share SQL snippets so that they can be tested in the br

    Posted on Tuesday, 5 November 2013

    - -

    Raspberry Pi update Arkos

    +
    +

    Debugging tips

    Posted on Thursday, 31 October 2013

    - -

    Debugging tips

    +
    +

    Raspberry Pi update Arkos

    Posted on Thursday, 31 October 2013

    @@ -199,14 +199,14 @@

    Styling a Checkbox as an Ellipse

    Posted on Wednesday, 23 May 2012

    - -

    Python - Neat little file http download routine

    +
    +

    Javascript google maps basics

    Posted on Tuesday, 24 April 2012

    - -

    Python - CSV handling

    +
    +

    Python - Neat little file http download routine

    Posted on Tuesday, 24 April 2012

    @@ -217,8 +217,8 @@

    KML File structure

    Posted on Tuesday, 24 April 2012

    - -

    Javascript google maps basics

    +
    +

    Python - CSV handling

    Posted on Tuesday, 24 April 2012

    @@ -241,26 +241,26 @@

    Emotes on iPhones iOS5

    Posted on Wednesday, 28 March 2012

    - -

    WPF - DynamicDataDisplay - A Chart component that works

    +
    +

    Google doesn't need to worry

    Posted on Saturday, 11 February 2012

    - -

    Google doesn't need to worry

    +
    +

    Getting my ip on my Raspberry pi for a script

    Posted on Saturday, 11 February 2012

    - -

    WPF - AvalonDock - A Docking component

    +
    +

    WPF - DynamicDataDisplay - A Chart component that works

    Posted on Saturday, 11 February 2012

    - -

    Getting my ip on my Raspberry pi for a script

    +
    +

    WPF - AvalonDock - A Docking component

    Posted on Saturday, 11 February 2012

    @@ -336,77 +336,81 @@

    Migrating my Mum (OS X)

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Mixed-Integer-linear-programming.html b/tags/Mixed-Integer-linear-programming.html index 7bcec89..068ce02 100644 --- a/tags/Mixed-Integer-linear-programming.html +++ b/tags/Mixed-Integer-linear-programming.html @@ -114,77 +114,81 @@

    Applications in LP and MILP with C# and OR-Tools inside Jupyter

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/MsSql.html b/tags/MsSql.html index 5fc2509..c0d0aae 100644 --- a/tags/MsSql.html +++ b/tags/MsSql.html @@ -120,77 +120,81 @@

    Using bulk inserts on databases

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/MySql.html b/tags/MySql.html index 9e82c30..db6d9f4 100644 --- a/tags/MySql.html +++ b/tags/MySql.html @@ -114,77 +114,81 @@

    Checking for liveness on databases for health checks

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Network.html b/tags/Network.html index 4366a43..f0fbea1 100644 --- a/tags/Network.html +++ b/tags/Network.html @@ -114,77 +114,81 @@

    Network planning and VPN

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/OSX.html b/tags/OSX.html index 2b9c7a1..803cb08 100644 --- a/tags/OSX.html +++ b/tags/OSX.html @@ -126,77 +126,81 @@

    Migrating my Mum (OS X)

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Oracle.html b/tags/Oracle.html index 65a0a71..8856445 100644 --- a/tags/Oracle.html +++ b/tags/Oracle.html @@ -144,77 +144,81 @@

    Oracle 10g - Pivoting data

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Postgresql.html b/tags/Postgresql.html index 1f3339c..46faa90 100644 --- a/tags/Postgresql.html +++ b/tags/Postgresql.html @@ -126,77 +126,81 @@

    Using bulk inserts on databases

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Powershell.html b/tags/Powershell.html index ca5067b..db52719 100644 --- a/tags/Powershell.html +++ b/tags/Powershell.html @@ -114,77 +114,81 @@

    Tail command with powershell

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Proxmox.html b/tags/Proxmox.html index a8cacb8..91c4f23 100644 --- a/tags/Proxmox.html +++ b/tags/Proxmox.html @@ -114,77 +114,81 @@

    Proxmox 8 on sub $200 mini PCs

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Python.html b/tags/Python.html index f60fd50..7a33679 100644 --- a/tags/Python.html +++ b/tags/Python.html @@ -120,77 +120,81 @@

    Python - CSV handling

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/R.html b/tags/R.html index f99f05d..7e9b0d4 100644 --- a/tags/R.html +++ b/tags/R.html @@ -97,14 +97,14 @@

    Jupyter notebook with C# and R

    Posted on Tuesday, 12 November 2019

    - -

    R - Reading JSON from redis

    +
    +

    R - Reading binary files

    Posted on Sunday, 3 November 2019

    - -

    R - Reading binary files

    +
    +

    R - Reading JSON from redis

    Posted on Sunday, 3 November 2019

    @@ -126,77 +126,81 @@

    R - Reading binary files

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Redis.html b/tags/Redis.html index f2a7f97..a62ae91 100644 --- a/tags/Redis.html +++ b/tags/Redis.html @@ -120,77 +120,81 @@

    R - Reading JSON from redis

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Rpi.html b/tags/Rpi.html index 5e8233a..d3c4c7b 100644 --- a/tags/Rpi.html +++ b/tags/Rpi.html @@ -132,77 +132,81 @@

    Getting my ip on my Raspberry pi for a script

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/SQL.html b/tags/SQL.html index 5d357c0..3bcc916 100644 --- a/tags/SQL.html +++ b/tags/SQL.html @@ -126,77 +126,81 @@

    Oracle 10g - Pivoting data

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/SQLite.html b/tags/SQLite.html index dcc45b2..24713da 100644 --- a/tags/SQLite.html +++ b/tags/SQLite.html @@ -126,77 +126,81 @@

    Testing SQLite in C# Jupyter notebook

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/SVG.html b/tags/SVG.html index d980c00..854953e 100644 --- a/tags/SVG.html +++ b/tags/SVG.html @@ -114,77 +114,81 @@

    Using SVG images on Azure Websites

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Space.html b/tags/Space.html index 66c7f8f..f89dd2f 100644 --- a/tags/Space.html +++ b/tags/Space.html @@ -132,77 +132,81 @@

    60 year bet on the state of Humanity in Space

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/SpaceX.html b/tags/SpaceX.html index c9f4faf..355e47c 100644 --- a/tags/SpaceX.html +++ b/tags/SpaceX.html @@ -114,77 +114,81 @@

    The case for a SpaceX Starship laser ablation platform for orbital debris ma
  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Tailscale.html b/tags/Tailscale.html index 1f3546c..2c91d02 100644 --- a/tags/Tailscale.html +++ b/tags/Tailscale.html @@ -114,77 +114,81 @@

    Proxmox 8 on sub $200 mini PCs

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Thoughts.html b/tags/Thoughts.html index 3b15b81..27f46a2 100644 --- a/tags/Thoughts.html +++ b/tags/Thoughts.html @@ -168,77 +168,81 @@

    60 year bet on the state of Humanity in Space

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/VBA.html b/tags/VBA.html index a6e810b..f351a85 100644 --- a/tags/VBA.html +++ b/tags/VBA.html @@ -114,77 +114,81 @@

    Making Fortran DLLs to interface with VBA in Excel

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/VBScript.html b/tags/VBScript.html index bc5662a..4abb1b3 100644 --- a/tags/VBScript.html +++ b/tags/VBScript.html @@ -114,77 +114,81 @@

    Adding windows printers with a VBScript

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/VPN.html b/tags/VPN.html index af3ddbf..c035f80 100644 --- a/tags/VPN.html +++ b/tags/VPN.html @@ -114,77 +114,81 @@

    Network planning and VPN

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/VSCode.html b/tags/VSCode.html new file mode 100644 index 0000000..804ae46 --- /dev/null +++ b/tags/VSCode.html @@ -0,0 +1,234 @@ + + + + + + + Eric Winnington - VSCode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + +
    + +
    + + + + +
    + + + + + + + + + + + + + + diff --git a/tags/Vi.html b/tags/Vi.html index 8c04eb6..28d2d94 100644 --- a/tags/Vi.html +++ b/tags/Vi.html @@ -114,77 +114,81 @@

    Commenting and Uncommenting in vi

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Virus.html b/tags/Virus.html index 88536ad..4e35646 100644 --- a/tags/Virus.html +++ b/tags/Virus.html @@ -114,77 +114,81 @@

    We can leave viruses behind on Earth as we leave the gravity well

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/VisualStudio.html b/tags/VisualStudio.html index 14d03f9..0300231 100644 --- a/tags/VisualStudio.html +++ b/tags/VisualStudio.html @@ -120,77 +120,81 @@

    Diff / Compare two files in Visual Studio

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/WPF.html b/tags/WPF.html index 25e628e..dd52e9c 100644 --- a/tags/WPF.html +++ b/tags/WPF.html @@ -132,77 +132,81 @@

    WPF - AvalonDock - A Docking component

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Webassembly.html b/tags/Webassembly.html index a8b1289..5e66219 100644 --- a/tags/Webassembly.html +++ b/tags/Webassembly.html @@ -114,77 +114,81 @@

    Reflections on Webassembly - May/Nov 19

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Websites.html b/tags/Websites.html index 48017c5..464e81d 100644 --- a/tags/Websites.html +++ b/tags/Websites.html @@ -114,77 +114,81 @@

    Using SVG images on Azure Websites

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Wifi.html b/tags/Wifi.html index 721d5b2..7877a47 100644 --- a/tags/Wifi.html +++ b/tags/Wifi.html @@ -114,77 +114,81 @@

    Listing the channels of the WIFI networks around you in Windows

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Win10.html b/tags/Win10.html index f7d73e0..56adc5f 100644 --- a/tags/Win10.html +++ b/tags/Win10.html @@ -114,77 +114,81 @@

    Accessing the power control panel in windows XP

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/WinXP.html b/tags/WinXP.html index ccca7e4..68e85e7 100644 --- a/tags/WinXP.html +++ b/tags/WinXP.html @@ -120,77 +120,81 @@

    Adding windows printers with a VBScript

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Windows.html b/tags/Windows.html index 6451816..6fd8aef 100644 --- a/tags/Windows.html +++ b/tags/Windows.html @@ -114,77 +114,81 @@

    Listing the channels of the WIFI networks around you in Windows

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Wordpress.html b/tags/Wordpress.html index d857959..4f59e02 100644 --- a/tags/Wordpress.html +++ b/tags/Wordpress.html @@ -114,77 +114,81 @@

    Setting up Wordpress publishing from iPhone

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/Wyam.html b/tags/Wyam.html index 6cf24a5..1736d66 100644 --- a/tags/Wyam.html +++ b/tags/Wyam.html @@ -120,77 +120,81 @@

    Switching to Wyam

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/chatGPT.html b/tags/chatGPT.html index 7d65088..ebce6f8 100644 --- a/tags/chatGPT.html +++ b/tags/chatGPT.html @@ -114,77 +114,81 @@

    Learning concepts from chatGPT - Operational Transform and Conflict-free Rep
  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/iOS.html b/tags/iOS.html index 9207b06..8e64f49 100644 --- a/tags/iOS.html +++ b/tags/iOS.html @@ -126,77 +126,81 @@

    Setting up Wordpress publishing from iPhone

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/iOS5.html b/tags/iOS5.html index 26be67c..ca5f439 100644 --- a/tags/iOS5.html +++ b/tags/iOS5.html @@ -114,77 +114,81 @@

    Emotes on iPhones iOS5

  • Thoughts (10)
  • Database (10)
  • CSharp (8)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Jupyter notebook (7)
  • -
  • Architecture (6)
  • Oracle (6)
  • +
  • Space (4)
  • CommandLine (4)
  • Rpi (4)
  • -
  • Space (4)
  • WPF (4)
  • +
  • Docker (3)
  • SQLite (3)
  • SQL (3)
  • Postgresql (3)
  • -
  • iOS (3)
  • R (3)
  • +
  • iOS (3)
  • OSX (3)
  • -
  • VisualStudio (2)
  • +
  • Github (2)
  • Redis (2)
  • -
  • Python (2)
  • MsSql (2)
  • -
  • Google (2)
  • -
  • WinXP (2)
  • LinearProgramming (2)
  • Google OR-Tools (2)
  • -
  • Docker (2)
  • -
  • Livescribe (2)
  • Wyam (2)
  • -
  • GithubActions (1)
  • +
  • VisualStudio (2)
  • +
  • Google (2)
  • +
  • Python (2)
  • +
  • WinXP (2)
  • +
  • Livescribe (2)
  • +
  • DevContainers (1)
  • +
  • VSCode (1)
  • +
  • Codespaces (1)
  • +
  • Dev (1)
  • Proxmox (1)
  • -
  • JSON (1)
  • Tailscale (1)
  • -
  • Binary (1)
  • Network (1)
  • VPN (1)
  • Kubernetes (1)
  • -
  • FileProcessing (1)
  • Metal (1)
  • -
  • Powershell (1)
  • chatGPT (1)
  • -
  • SVG (1)
  • Caching (1)
  • +
  • DataLineage (1)
  • +
  • Battery (1)
  • +
  • Energy (1)
  • +
  • SpaceX (1)
  • +
  • Virus (1)
  • +
  • MySql (1)
  • +
  • MariaDb (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • BulkInserts (1)
  • +
  • Webassembly (1)
  • +
  • GithubPages (1)
  • +
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • JSON (1)
  • +
  • FileProcessing (1)
  • +
  • Powershell (1)
  • +
  • SVG (1)
  • Azure (1)
  • Websites (1)
  • -
  • DataLineage (1)
  • Diff (1)
  • -
  • Battery (1)
  • Wifi (1)
  • -
  • Energy (1)
  • Windows (1)
  • Debugging (1)
  • Vi (1)
  • -
  • SpaceX (1)
  • Fortran (1)
  • VBA (1)
  • -
  • Virus (1)
  • -
  • KML (1)
  • -
  • MySql (1)
  • Javascript (1)
  • -
  • MariaDb (1)
  • MapsAPI (1)
  • +
  • KML (1)
  • Win10 (1)
  • VBScript (1)
  • iOS5 (1)
  • -
  • Mixed Integer linear programming (1)
  • DynamicDataDisplay (1)
  • Chart (1)
  • -
  • BulkInserts (1)
  • Awesomenote (1)
  • -
  • Webassembly (1)
  • Evernote (1)
  • -
  • Github (1)
  • Wordpress (1)
  • -
  • GithubPages (1)
  • diff --git a/tags/index.html b/tags/index.html index 033bbd8..7f6a6a5 100644 --- a/tags/index.html +++ b/tags/index.html @@ -93,76 +93,80 @@

    All Tags

  • Thoughts (10)
  • CSharp (8)
  • Jupyter notebook (7)
  • +
  • Architecture (7)
  • Dotnet try (7)
  • Oracle (6)
  • -
  • Architecture (6)
  • -
  • Space (4)
  • +
  • CommandLine (4)
  • WPF (4)
  • Rpi (4)
  • -
  • CommandLine (4)
  • +
  • Space (4)
  • +
  • OSX (3)
  • +
  • SQL (3)
  • +
  • iOS (3)
  • R (3)
  • Postgresql (3)
  • -
  • SQL (3)
  • SQLite (3)
  • -
  • OSX (3)
  • -
  • iOS (3)
  • +
  • Docker (3)
  • +
  • Google (2)
  • Wyam (2)
  • -
  • Docker (2)
  • Google OR-Tools (2)
  • -
  • LinearProgramming (2)
  • MsSql (2)
  • -
  • Redis (2)
  • Livescribe (2)
  • WinXP (2)
  • -
  • Google (2)
  • Python (2)
  • VisualStudio (2)
  • -
  • Binary (1)
  • -
  • Tailscale (1)
  • +
  • LinearProgramming (2)
  • +
  • Redis (2)
  • +
  • Github (2)
  • +
  • DevContainers (1)
  • +
  • Wordpress (1)
  • +
  • Evernote (1)
  • +
  • Chart (1)
  • +
  • iOS5 (1)
  • +
  • Win10 (1)
  • +
  • KML (1)
  • +
  • MapsAPI (1)
  • +
  • VBA (1)
  • +
  • Vi (1)
  • +
  • Debugging (1)
  • +
  • Wifi (1)
  • +
  • Websites (1)
  • +
  • SVG (1)
  • +
  • Powershell (1)
  • JSON (1)
  • -
  • GithubPages (1)
  • -
  • Github (1)
  • -
  • Webassembly (1)
  • +
  • GithubActions (1)
  • BulkInserts (1)
  • -
  • Mixed Integer linear programming (1)
  • -
  • MariaDb (1)
  • MySql (1)
  • Virus (1)
  • SpaceX (1)
  • Energy (1)
  • -
  • Battery (1)
  • DataLineage (1)
  • Caching (1)
  • chatGPT (1)
  • -
  • Metal (1)
  • Kubernetes (1)
  • -
  • VPN (1)
  • +
  • Network (1)
  • Proxmox (1)
  • -
  • Wordpress (1)
  • -
  • Evernote (1)
  • +
  • Codespaces (1)
  • +
  • VSCode (1)
  • Awesomenote (1)
  • -
  • Chart (1)
  • DynamicDataDisplay (1)
  • -
  • iOS5 (1)
  • VBScript (1)
  • -
  • Win10 (1)
  • -
  • MapsAPI (1)
  • Javascript (1)
  • -
  • KML (1)
  • -
  • VBA (1)
  • Fortran (1)
  • -
  • Vi (1)
  • -
  • Debugging (1)
  • Windows (1)
  • -
  • Wifi (1)
  • Diff (1)
  • -
  • Websites (1)
  • Azure (1)
  • -
  • SVG (1)
  • -
  • Powershell (1)
  • FileProcessing (1)
  • -
  • Network (1)
  • -
  • GithubActions (1)
  • +
  • Binary (1)
  • +
  • GithubPages (1)
  • +
  • Webassembly (1)
  • +
  • Mixed Integer linear programming (1)
  • +
  • MariaDb (1)
  • +
  • Battery (1)
  • +
  • Metal (1)
  • +
  • VPN (1)
  • +
  • Tailscale (1)
  • +
  • Dev (1)