#sqlserver #csharp

Using SQL Server to Create JSON

I am currently creating a JavaScript based website to display a version of my RecordDB database. The data will need to be consumed from a JSON file that will be stored in a web browser using local storage. The advantage of using local storage is that it is persistent and will still be available once you close and reopen your web browser. The first part of this process will be to export my data from a SQL Server database to a JSON formatted file. ...

#linux

How to Mount ExFAT Drive on Ubuntu Linux

To be able to mount exFAT filesystem on Ubuntu you’ll need to install the free FUSE exFAT module and tools which provide a full-featured exFAT file system implementation for Unix-like systems. Before installing the packages make sure the Universe repository is enabled on your system. Open your terminal either by using the Ctrl+Alt+T keyboard shortcut or by clicking on the terminal icon and type: sudo add-apt-repository universe Once the repository is enabled update the packages index and install the exfat-fuse and exfat-utils packages using the following commands: ...

#csharp

Changing Link Program to Web Request

Changing the Link program to download a Web Request My Link, Packt and Plural programs have been set up to manually get a webpage and this is a slow process. I have updated the Link program to pass in a URL as an argument and then download and create the page automatically. This saves me a boring task. The program update was more complex than I originally thought because the pages I was trying to download used a network security protocol so I was getting TLS security failure exceptions. ...