Dysfunctional Teams

Dysfunctional Teams

by 

|

|  

in

Teams is clearly an attempt by Microsoft to eat the space created by Slack, the product we used before Teams. We, like many people, switched to Teams because it was already included in our Office 365 subscription. Effectively using Teams instead of Slack saved us money. When Teams first came out, we tried it and…

Read more…

A History of Microsoft .NET, Part 10: Core 3.0/3.1

A History of Microsoft .NET, Part 10: Core 3.0/3.1

by 

|

|  

in

If .NET Core 2 was the first real version of .NET Core, then 3.0/3.1 took something usable and made it solid. With their latest version, Microsoft went from “good enough” to something enjoyable to use. .NET 3.0/3.1 closed a lot of the gaps left between .NET Framework and .NET Core. Not all of the gaps,…

Read more…

A History of Microsoft .NET, Part 9: Core 2.0/2.1

A History of Microsoft .NET, Part 9: Core 2.0/2.1

by 

|

|  

in

The release of .NET Core 2 was the first “real” version of .NET Core. The previous version (.NET Core 1) really wasn’t ready for primetime. But .NET Core 2 was a solid product. And in many ways, it was better than .NET Framework. First off, .NET Core 2 had all that was good about .NET…

Read more…

Using Postman

Using Postman

by 

|

|  

in

Postman is a tool most web application developers are familiar with. A lot of what we use Postman for we could write ourselves or use the Unix curl command. But Postman makes interacting with APIs easier for developers. Plus, its ability to save requests and collections is really useful. But why would we want this?…

Read more…

A History of Microsoft .NET, Part 8: .NET Core

A History of Microsoft .NET, Part 8: .NET Core

by 

|

|  

in

Microsoft created the .NET Framework for many of us to write better software that ran on Windows. I’ve spent a good portion of my time developing with .NET Framework code, writing code that ran in web browsers. So ironically, the code did run on a variety of platforms. And with Mono, there was always a…

Read more…

A History of Microsoft .NET, Part 7: Framework 4.5 (Async)

A History of Microsoft .NET, Part 7: Framework 4.5 (Async)

by 

|

|  

in

Much of our programming model is based upon the simple concept of putting data into a variable. This sort of programming typically goes by the term “imperative programming”. We are issuing a series of commands; the computer executes the commands. These commands typically are run in some very predictable order. Early programming languages even had…

Read more…

CouchDB and Users

CouchDB and Users

by 

|

|  

in

In my previous posts about CouchDB, I have used the same admin user for accessing CouchDB. Bu, CouchDB supports multiple users. we don’t have to use only one user. To create a new user, we can make a simple web call. Here is an example using “postman”. This will create a user and put a…

Read more…

Saving Data With CouchDB

Saving Data With CouchDB

by 

|

|  

in

In my previous post, we queried some data in CouchDB. But the problem with that is we need to put some data into the database if we want to query it. Adding data to CouchDB isn’t difficult. You just need to insert another document. Doing so is pretty straightforward. If you want to insert a…

Read more…

CouchDB Using Nano NPM

CouchDB Using Nano NPM

by 

|

|  

in

In my previous blog post, I did a quick intro to CouchDB. In this post, we will dive into writing some code that uses CouchDB. We will use NodeJS for this application. You could just as easily write this in C# or any language, but for this post I thought I’d play around with NodeJS….

Read more…

Relax, It's CouchDB

Relax, It’s CouchDB

by 

|

|  

in

CouchDB is a NoSQL database solution, which means it supports persistence of data. But you don’t have to spend a lot of time designing the relational structure upfront. This makes starting development with a NoSQL system easier than typical SQL databases because you don’t have to spend time defining relationships. Also, many NoSQL solutions favor…

Read more…