With the widespread popularity of Nuget, there is a package for everything in C#. Parsing CSVs are no exception, but this feels like overkill. Parsing a csv, tsv or any…
Latest Posts - Page 2
Wix is a popular website building framework that will allow you to build a website without needing to worry about writing code. Focus on making it look good and they…
If you are looking to get an online store setup, but don’t know much about writing code and web development, Weebly can be a really useful place for you to…
If you are having trouble ranking in search engines for a particular keyword, this tool will help you pinpoint any problems you might have in the page content. This free…
This tool will help you figure out whether a resource, be it HTML, CSS or javascript, is being cached by Cloudflare. Enter the URL you want to check into the…
This tool will allow you to perform content analysis on a piece of writing in real time. Enter your target keyword and begin typing into the editor below. As you…
When you are setting up a website, you will need to decide whether to use the www. subdomain at the start of the URL. It was once the standard but…
CORS stands for Cross-Origin Resource Sharing. For most scenarios, what it does is let you use Javascript to make HTTP requests to a different domain. It is a very important…
reCaptcha is a smart captcha system that will help prevent spammers from submitting junk data using forms on your website. The system works very well and is relatively simple to…
This should be a relatively simple task to achieve in most scenarios, there are circumstances where it is not. This guide will show you what you need to do to…
This tool will allow you to fetch the HTTP status code for a web page. All you need to do is provide the URL in the box below and click…
By default, the page post type in wordpress will not have comments enabled. Chances are your theme already has support for them, so it should be a simple case of…
Performing analysis on content that a user is typing is a common requirement for interfaces. A simple word counter, for example, will need to bind to an event so that…
Reading a File over FTP is a common scenario. Best case scenario, the file is JSON and you can very easily convert it to a C# object using the serializer.…
FTP (File transfer protocol) is a common method of storing and transferring files over the internet. Consuming a file from an FTP in C# is a very easy process and…