Blog on Bravo LT | Learning & Technology
@@ -26,7 +26,7 @@
Fri, 12 Jul 2019 12:11:29 +0600
//www.bravolt.com/blog/bravos-ribbon-cutting-open-house/
- Save the Date##### You’re invited to Bravo LT’s Ribbon Cutting & Open House Thursday, August 15th, 3pm - 5pm
+ Save the Date You’re invited to Bravo LT’s Ribbon Cutting & Open House Thursday, August 15th, 3pm - 5pm
Join us as we celebrate our recent move downtown. Ribbon Cutting at 4pm.
We can’t wait to meet our neighbors and catch up with clients and friends!
Snacks and drinks provided.
@@ -49,7 +49,7 @@ The free event will be held on August 12 & 13, 2019 at the Bravo office
Wed, 29 May 2019 12:11:29 +0600
//www.bravolt.com/blog/we-moved-downtown-grand-rapids/
- Our New Location##### Bravo has officially moved downtown Grand Rapids! Last month we said goodbye to our Cascade Parkway location and (after a few construction projects and a bit of cosmetic work in the new space) hello to Monroe Center. Our official signage is in the works, but in the meantime, we are the dark gray building located at the corner of Division and Monroe Center. More specifically:
+ Our New Location Bravo has officially moved downtown Grand Rapids! Last month we said goodbye to our Cascade Parkway location and (after a few construction projects and a bit of cosmetic work in the new space) hello to Monroe Center. Our official signage is in the works, but in the meantime, we are the dark gray building located at the corner of Division and Monroe Center. More specifically:
Bravo LT, 40 Monroe Center NW, Suite 11, Grand Rapids, MI 49503
@@ -121,8 +121,7 @@ The free event will be held on September 11 & 12, 2018 at Calvin College
//www.bravolt.com/blog/agile-in-grand-rapids/
Equip Your Teams with Agile We’re passionate about equipping your teams with the cutting-edge Lean Agile Certification training they need!
-This summer we hosted an Agile Advanced Scrum Master Certification course in down-town Grand Rapids. We had a blast hosting and teaching participants from Gordon Food Service, Meijer, Spectrum Health, and more. Most beneficially, great discussions formed across the varying industries which created a learning environment filled with collaboration.
-During the two day certification course we covered such things as:
+This summer we hosted an Agile Advanced Scrum Master Certification course in down-town Grand Rapids. We had a blast hosting and teaching participants from Gordon Food Service, Meijer, Spectrum Health, and more. Most beneficially, great discussions formed across the varying industries which created a learning environment filled with collaboration.
-
@@ -141,8 +140,7 @@ Google brought a lot to the table through their livestream event. Many were amaz
Fri, 22 Sep 2017 12:11:29 +0600
//www.bravolt.com/blog/2017-raspberry-pi-youth-camp-recap/
- At Bravo LT, we believe STEM (Science, Technology, Engineering, Math) education is key to strengthening the future for the next generation. As a technology and e-Learning company in West Michigan, we love introducing the next generation of children to technology. Last month we hosted our third-annual Raspberry Pi Youth Camp which gave local students (ages 10-14) an opportunity to explore computer programming in a fun and engaging way.
- We hosted this free event at Davenport University in Grand Rapids.
+ At Bravo LT, we believe STEM (Science, Technology, Engineering, Math) education is key to strengthening the future for the next generation. As a technology and e-Learning company in West Michigan, we love introducing the next generation of children to technology. Last month we hosted our third-annual Raspberry Pi Youth Camp which gave local students (ages 10-14) an opportunity to explore computer programming in a fun and engaging way.
-
@@ -239,7 +237,8 @@ The free event, held August 9 and 11, 2016 at Davenport University in Grand Rapi
//www.bravolt.com/blog/bravo-open-source-symposium/
Bravo Open Source Symposium October 26, November 2, 9, and 16 5:00 - 7:00 PM
Event Description: BOSS 2015 explores specific open source topics, to include:
- Data Grids: To Infinispan and Beyond (Day 1) Introduction to Docker (Day 2) Maven for Power Users (Day 3) Introduction to Clojure (Day 4) This free four-day symposium, held on alternating Mondays in September and October, features highly interactive training sessions to include the following delivery methods: traditional lecture and demonstration, video, case studies, hands-on activities and group discussion.
+ Data Grids: To Infinispan and Beyond (Day 1) Introduction to Docker (Day 2) Maven for Power Users (Day 3) Introduction to Clojure (Day 4)
+This free four-day symposium, held on alternating Mondays in September and October, features highly interactive training sessions to include the following delivery methods: traditional lecture and demonstration, video, case studies, hands-on activities and group discussion.
diff --git a/public/blog/nullable-reference-types/index.html b/public/blog/nullable-reference-types/index.html
index 8c57384..9775163 100644
--- a/public/blog/nullable-reference-types/index.html
+++ b/public/blog/nullable-reference-types/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -149,285 +149,445 @@ Getting Started with Nullable Reference Types in C# 8
- The next version of the C# language, C# 8, is scheduled to ship in September 2019 along with .NET Core 3.
+
+
+
The next version of the C# language, C# 8, is scheduled to ship in September 2019 along with .NET Core 3.
C# 8 brings some pretty cool features to the language.
One of the features I’m most excited about is Nullable Reference Types, which enables developers to prevent many of the problems that often come along with null values.
+
C# 8 and .NET Core 3 are already in public preview, so you can give them a whirl right now.
In this post, I’m going to walk you through a simple example to demonstrate how to take advantage of Nullable Reference Types.
+
But first, a bit of background.
+
Value types and reference types
+
Data types in C# fall into two broad categories: value types and reference types.
+
Value types are the simpler kind: integers, Booleans, characters, and so forth.
When you create a variable of a value type, you can think of the variable as “holding” the value (disclaimer: this is a mental model, not a robust description of your computer’s memory).
+
For instance, the statement
-creates the variable x
of type int
and gives it the value 4
.
+
+
int x = 4;
+
+
+creates the variable x
of type int
and gives it the value 4
.
If you were to do something to x
, say,
-then x
would hold the value 5
and the value 4
would be gone.
+
+x++;
+
+
+then x
would hold the value 5
and the value 4
would be gone.
+
Reference types are the more complicated kind: objects, strings, etc.
When you create a variable of a reference type, the variable doesn’t so much “hold” the value as “point to” (or “reference”) the value.
+
For instance, the statement
-Person p = new Person { FirstName = "Bowser", LastName = "Castle" };
-
creates the variable p
of type Person
, places the object data somewhere in memory, and gives p
the location of that data.
+
+Person p = new Person { FirstName = "Bowser", LastName = "Castle" };
+
+
+creates the variable p
of type Person
, places the object data somewhere in memory, and gives p
the location of that data.
+
If you were to do something to a property of p
, say,
-p
would still hold the same value: a reference to the object.
+
+
p.Age = 62;
+
+
+p
would still hold the same value: a reference to the object.
Only the object data would change.
+
On the other hand, if you were to do something to p
itself, say,
-p = new Person { FirstName = "Ganon", LastName = "Tower" };
-
a new object would be created in memory (Ganon Tower) and p
would be updated with the location of the new object.
+
+
p = new Person { FirstName = "Ganon", LastName = "Tower" };
+
+
+a new object would be created in memory (Ganon Tower) and p
would be updated with the location of the new object.
The old object (Bowser Castle) would be left hanging around in memory with no variable pointing to it - at least until the plumber garbage collector got around to cleaning it up.
+
The way that reference types work - pointing to the data rather than holding the data - has a strange consequence: a reference type variable can point to nothing.
+
Null values
+
In C#, value types cannot be null unless you explicitly declare a variable as nullable.
A statement like
-will not compile.
+
+
bool b = null;
+
+
+will not compile.
There is no such thing as a bool
with no value - it has to be either true or false.
In fact, if you fail to provide a value, you’ll get a sensible default.
A declaration like
-will give b
the value false
, which is the default for Booleans.
+
+bool b;
+
+
+will give b
the value false
, which is the default for Booleans.
+
Usually, this is a good thing.
In the off chance that you want a nullable value type, you can declare it with a question mark:
-Reference types, on the other hand, are nullable right from the start.
+
+
bool? b = null;
+
+
+Reference types, on the other hand, are nullable right from the start.
Let’s make that same traditional declaration with a reference type:
-We now have a string
type variable called s
, but we haven’t yet created a real string
object in memory, so s
points to nothing.
+
+
string s;
+
+
+We now have a string
type variable called s
, but we haven’t yet created a real string
object in memory, so s
points to nothing.
This is represented by s
getting the value null
.
+
Oddly, even though s
does not point to an actual string, the compiler allows you to write expressions like s.Length
.
This throws a NullReferenceException
because you are attempting to dereference a null reference.
In other words, you are trying to access a member of an object that doesn’t exist, so your program blows up.
+
All the compiler knows is that s
is of type string
, and objects of type string
have a Length
property.
Unfortunately, in this case, we have no object, and thus no Length
property.
+
I won’t go into why languages like C# allow null references in the first place, partly because it’s beyond the scope of this post, but also because the lead designer of C# wrote an excellent article that covers that very topic.
I would recommend it if you’re interested in the design rationale behind Nullable Reference Types (which we really will be getting to in just a moment).
+
For now, all I hope to demonstrate is that we have a conundrum: reference type variables can be null, but the compiler doesn’t have a good way to help us to deal with those nulls responsibly.
We are human beings and sometimes we are irresponsible, so we end up with a NullReferenceException
at runtime.
+
Nullable Reference Types
+
To solve this problem, C# 8 introduces a feature called “Nullable Reference Types”.
The feature has two main parts that work together: some familiar syntax you can use to declare which reference types should be nullable and some compiler warnings to help you to follow through on that intent.
+
Let’s see it in action.
If you’d like to paint along with us at home, here are the tools we’ll be using (all of which are cross-platform):
+
+
To begin, we’ll open a terminal, create an empty directory, and scaffold a new .NET Core console app:
-mkdir nullable-sample
+
+mkdir nullable-sample
cd nullable-sample
dotnet new console
-
There are two new files in our directory.
+
+
+
There are two new files in our directory.
We’ll run code .
to inspect them in VS Code.
+
The project file is nullable-sample.csproj
:
-<Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>netcoreapp3.0</TargetFramework>
- <RootNamespace>nullable_sample</RootNamespace>
- </PropertyGroup>
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>netcoreapp3.0</TargetFramework>
+ <RootNamespace>nullable_sample</RootNamespace>
+ </PropertyGroup>
+
+</Project>
+
-</Project>
-
The main program is Program.cs
:
-using System;
+The main program is Program.cs
:
-namespace nullable_sample
+using System;
+
+namespace nullable_sample
{
- class Program
+ class Program
{
- static void Main(string[] args)
+ static void Main(string[] args)
{
- Console.WriteLine("Hello World!");
+ Console.WriteLine("Hello World!");
}
}
}
-
As you can see, dotnet new console
created a simple “hello world” app.
+
+
+
As you can see, dotnet new console
created a simple “hello world” app.
Let’s build it and run it, just to get a baseline of the output we expect.
+
dotnet build
compiles the code and shows us if it found any problems:
-Build succeeded.
+
+Build succeeded.
0 Warning(s)
0 Error(s)
-
dotnet run
both compiles and runs the code, displaying the program’s console output:
-Now that we have a running sample, let’s add some code.
+
+
+dotnet run
both compiles and runs the code, displaying the program’s console output:
+
+Hello World!
+
+
+Now that we have a running sample, let’s add some code.
+
To demonstrate handling null references, we’ll start by defining a Person
class to represent someone’s full name.
-public class Person
+
+public class Person
{
- public string FirstName { get; set; }
- public string MiddleName { get; set; }
- public string LastName { get; set; }
+ public string FirstName { get; set; }
+ public string MiddleName { get; set; }
+ public string LastName { get; set; }
}
-
Many people have at least a given name and a surname, but middle names are not common in all cultures, and even where they are common, people do not always provide their middle name.
+
+
+
Many people have at least a given name and a surname, but middle names are not common in all cultures, and even where they are common, people do not always provide their middle name.
If we have a database of people, it might have a lot of nulls in the middle name column.
Let’s create a mock data access class to pretend like we’re retrieving the first record we find in a database full of people.
-public class PersonStore
+
+public class PersonStore
{
- public static Person GetFirstPerson()
- => new Person { FirstName = "Pat", LastName = "McTest" };
+ public static Person GetFirstPerson()
+ => new Person { FirstName = "Pat", LastName = "McTest" };
}
-
Now we can use this data access code in our main program to do something interesting with a Person
object, like counting the number of characters in the person’s full name and displaying it to the console.
-static void Main(string[] args)
+
+
+
Now we can use this data access code in our main program to do something interesting with a Person
object, like counting the number of characters in the person’s full name and displaying it to the console.
+
+
static void Main(string[] args)
{
Person p = PersonStore.GetFirstPerson();
- int letterCount =
+ int letterCount =
p.FirstName.Length +
p.MiddleName.Length +
p.LastName.Length;
- Console.WriteLine($"Hello, {p.FirstName}");
- Console.WriteLine($"You have {letterCount} letters in your full name");
+ Console.WriteLine($"Hello, {p.FirstName}");
+ Console.WriteLine($"You have {letterCount} letters in your full name");
}
-
That seems easy enough.
+
+
+
That seems easy enough.
However, there is a sneaky bug lurking in this code.
Before we address it, let’s see how our program behaves.
+
The code compiles without issue.
The output of dotnet build
is no different than before:
-Build succeeded.
+
+Build succeeded.
0 Warning(s)
0 Error(s)
-
When we run the code, however, we encounter a problem.
+
+
+
When we run the code, however, we encounter a problem.
Here is the output of dotnet run
:
-Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object.
-
The problem here is that we neglected to check for null before accessing the Length
property of p.MiddleName
.
+
+
Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object.
+
+
+The problem here is that we neglected to check for null before accessing the Length
property of p.MiddleName
.
Our mock person record lacks a middle name, so at runtime, p.MiddlName
was null.
Let’s sweep this bug under the rug by giving Pat a middle initial.
I’m feeling lazy today and I need to ship this code.
-public static Person GetFirstPerson()
- => new Person { FirstName = "Pat", MiddleName = "Q", LastName = "McTest" };
-
If we run the code, it works! Hooray!
-Hello, Pat
+
+public static Person GetFirstPerson()
+ => new Person { FirstName = "Pat", MiddleName = "Q", LastName = "McTest" };
+
+
+If we run the code, it works! Hooray!
+
+Hello, Pat
You have 10 letters in your full name
-
Unfortunately, we now have a more insidious problem.
+
+
+
Unfortunately, we now have a more insidious problem.
Our code works fine with our test data, but what will happen when we load a record from a real database and the middle name is missing?
+
We could uncover the bug by adding more tests - and indeed, we absolutely should - but wouldn’t it be great if the compiler could help us fix it right now?
+
Let’s enable the Nullable Reference Types feature.
To do this, we have to add two lines to our project file: one to specify that we’re using C# 8 and one to turn on the feature.
-<LangVersion>8.0</LangVersion>
-<NullableContextOptions>enable</NullableContextOptions>
-
Just to see that in context, here is our modified nullable-sample.csproj
file:
-<Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>netcoreapp3.0</TargetFramework>
- <RootNamespace>nullable_sample</RootNamespace>
- <LangVersion>8.0</LangVersion>
- <NullableContextOptions>enable</NullableContextOptions>
- </PropertyGroup>
-
-</Project>
-
With the feature enabled, let’s try to compile our code again. Here is the output of dotnet build
:
-Build succeeded.
-
-Program.cs(23,23): warning CS8618: Non-nullable property 'FirstName' is uninitialized. [/home/ed/source/nullable-sample/nullable-sample.csproj]
-Program.cs(24,23): warning CS8618: Non-nullable property 'MiddleName' is uninitialized. [/home/ed/source/nullable-sample/nullable-sample.csproj]
-Program.cs(25,23): warning CS8618: Non-nullable property 'LastName' is uninitialized. [/home/ed/source/nullable-sample/nullable-sample.csproj]
+
+<LangVersion>8.0</LangVersion>
+<NullableContextOptions>enable</NullableContextOptions>
+
+
+Just to see that in context, here is our modified nullable-sample.csproj
file:
+
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>netcoreapp3.0</TargetFramework>
+ <RootNamespace>nullable_sample</RootNamespace>
+ <LangVersion>8.0</LangVersion>
+ <NullableContextOptions>enable</NullableContextOptions>
+ </PropertyGroup>
+
+</Project>
+
+
+With the feature enabled, let’s try to compile our code again. Here is the output of dotnet build
:
+
+Build succeeded.
+
+Program.cs(23,23): warning CS8618: Non-nullable property 'FirstName' is uninitialized. [/home/ed/source/nullable-sample/nullable-sample.csproj]
+Program.cs(24,23): warning CS8618: Non-nullable property 'MiddleName' is uninitialized. [/home/ed/source/nullable-sample/nullable-sample.csproj]
+Program.cs(25,23): warning CS8618: Non-nullable property 'LastName' is uninitialized. [/home/ed/source/nullable-sample/nullable-sample.csproj]
3 Warning(s)
0 Error(s)
-
The build succeeded, just as before, but now we have some warnings. Progress!
+
+
+The build succeeded, just as before, but now we have some warnings. Progress!
+
The compiler is telling us two things:
+
- The properties of our
Person
class are all considered “non-nullable”
- Given that they’re non-nullable, they should be initialized
+
Wait a minute.
All three properties of Person
are strings.
Strings are nullable, right?
+
Yes, it is just as possible as ever to assign null
to a string.
The warnings we received are speaking about our intent.
When the Nullable Reference Types feature is enabled, the compiler considers reference types to be non-nullable by default, just like value types.
If you want a property to be nullable, you have to declare it that way.
+
Let’s say that our application requires each person to have a first and last name but makes the middle name optional.
This means that FirstName
and LastName
should be initialized to ensure they always have a value.
The empty string would be a sensible default.
-public class Person
+
+public class Person
{
- public string FirstName { get; set; } = string.Empty;
- public string MiddleName { get; set; }
- public string LastName { get; set; } = string.Empty;
+ public string FirstName { get; set; } = string.Empty;
+ public string MiddleName { get; set; }
+ public string LastName { get; set; } = string.Empty;
}
-
dotnet build
now generates only one warning:
-Build succeeded.
+
+
+
dotnet build
now generates only one warning:
-Program.cs(24,23): warning CS8618: Non-nullable property 'MiddleName' is uninitialized. [/home/ed/source/nullable-sample/nullable-sample.csproj]
+
Build succeeded.
+
+Program.cs(24,23): warning CS8618: Non-nullable property 'MiddleName' is uninitialized. [/home/ed/source/nullable-sample/nullable-sample.csproj]
1 Warning(s)
0 Error(s)
-
Because MiddleName
is optional in our application, instead of initializing it, we’ll mark it as nullable.
+
+
+
Because MiddleName
is optional in our application, instead of initializing it, we’ll mark it as nullable.
We do this by appending a question mark to the type, which is the same syntax we used earlier to make a value type nullable.
-public string? MiddleName { get; set; }
-
Now we have a more expressive domain model.
+
+
public string? MiddleName { get; set; }
+
+
+Now we have a more expressive domain model.
FirstName
and LastName
are required, so we initialize them.
MiddleName
is optional, so we mark it as nullable.
The code looks better already.
+
Let’s see how it compiles.
-Build succeeded.
+
+Build succeeded.
Program.cs(13,17): warning CS8602: Dereference of a possibly null reference. [/home/ed/source/nullable-sample/nullable-sample.csproj]
1 Warning(s)
0 Error(s)
-
Now we have a new warning.
+
+
+
Now we have a new warning.
“Dereference of a possibly null reference” means that we are accessing a member of an object that might be null, and we haven’t responsibly checked to make sure it isn’t null.
Evidently, the culprit is on line 13.
-Person p = PersonStore.GetFirstPerson();
-int letterCount =
+Person p = PersonStore.GetFirstPerson();
+
+int letterCount =
p.FirstName.Length +
p.MiddleName.Length +
p.LastName.Length;
-
Line 13 contains p.MiddleName.Length
.
+
+
+
Line 13 contains p.MiddleName.Length
.
This was the line that generated the NullReferenceException
earlier, but now we’re getting a helpful warning about it.
Because we marked MiddleName
as nullable, we have to check to make sure it isn’t null before accessing any of its members, in this case its Length
property.
+
Let’s add a null check (which we really should have done from the very beginning, had we not been in such a hurry).
-int letterCount =
+
+int letterCount =
p.FirstName.Length +
- (p.MiddleName?.Length ?? 0) +
+ (p.MiddleName?.Length ?? 0) +
p.LastName.Length;
-
Now our code builds without warnings:
-Build succeeded.
+
+
+
Now our code builds without warnings:
+
+
Build succeeded.
0 Warning(s)
0 Error(s)
-
The warning went away because the compiler is capable of analyzing the control flow of a program and determining where null values may occur.
+
+
+
The warning went away because the compiler is capable of analyzing the control flow of a program and determining where null values may occur.
By checking to make sure that p.MiddleName
was non-null before accessing its Length
property, we soothed the compiler’s fears.
+
Our program runs successfully:
-Hello, Pat
+
+Hello, Pat
You have 10 letters in your full name
-
But is the bug really fixed?
+
+
+
But is the bug really fixed?
Recall that earlier, we added a middle name to our test person in order to prevent a NullReferenceException
.
Let’s remove that test middle name and find out if our code has actually improved.
-public static Person GetFirstPerson()
- => new Person { FirstName = "Pat", LastName = "McTest" };
-
The moment of truth. dotnet run
:
-Hello, Pat
+
+public static Person GetFirstPerson()
+ => new Person { FirstName = "Pat", LastName = "McTest" };
+
+
+The moment of truth. dotnet run
:
+
+Hello, Pat
You have 9 letters in your full name
-
Success!
+
+
+
Success!
Even with a null value in our test data, our program ran safely.
+
Note that we converted our buggy code to null-safe code simply by following the indications provided to us by the compiler.
This is the real value of the Nullable Reference Types feature: it helps you write safer and more expressive code.
+
Recap
+
You can try out C# 8 with Nullable Reference Types right now.
However, keep in mind that .NET Core 3 still in preview as of the time of writing, so you might not want to use it for production code until the first stable release.
+
First, download the latest preview release of .NET Core 3.
+
Second, specify .NET Core 3, C# 8, and the “nullable context options” properties in your .csproj
file:
-<TargetFramework>netcoreapp3.0</TargetFramework>
-<LangVersion>8.0</LangVersion>
-<NullableContextOptions>enable</NullableContextOptions>
-
Third, explicitly indicate that a reference type should be allowed to carry null values by appending a question mark to the type:
-public string? MiddleName { get; set; }
-
And finally, pay attention to the warnings you get from dotnet build
and use them as a guide to improving your code.
+
+<TargetFramework>netcoreapp3.0</TargetFramework>
+<LangVersion>8.0</LangVersion>
+<NullableContextOptions>enable</NullableContextOptions>
+
+
+Third, explicitly indicate that a reference type should be allowed to carry null values by appending a question mark to the type:
+
+public string? MiddleName { get; set; }
+
+
+And finally, pay attention to the warnings you get from dotnet build
and use them as a guide to improving your code.
+
If you’d like to see the full example app we walked through in this post, it’s available on GitHub.
+
Going further
+
By design, the Nullable Reference Types feature generates warnings, not errors.
This is so that you can start fixing problems in existing code without spilling noisy red ink all over the place.
+
If you do want actual errors that fail the build, you can choose to treat all warnings as errors.
This is an existing feature in current versions of .NET (not just in .NET Core 3), and it can be enabled by adding one more property to a PropertyGroup
in your .csproj
file:
-<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
-
We covered the basics of Nullable Reference Types in this post, but there is even more to the feature.
+
+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
+
+
+We covered the basics of Nullable Reference Types in this post, but there is even more to the feature.
If you’d like to dig deeper, check out these articles:
+
- Introducing Nullable Reference Types in C# by Mads Torgerson
- Microsoft’s official guide to Nullable Reference Types
diff --git a/public/blog/page/2/index.html b/public/blog/page/2/index.html
index 01e1bce..bc5e623 100644
--- a/public/blog/page/2/index.html
+++ b/public/blog/page/2/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -310,8 +310,7 @@
Equip Your Teams with Agile We’re passionate about equipping your teams with the cutting-edge Lean Agile Certification training they need!
-This summer we hosted an Agile Advanced Scrum Master Certification course in down-town Grand Rapids. We had a blast hosting and teaching participants from Gordon Food Service, Meijer, Spectrum Health, and more. Most beneficially, great discussions formed across the varying industries which created a learning environment filled with collaboration.
-During the two day certification course we covered such things as:
+This summer we hosted an Agile Advanced Scrum Master Certification course in down-town Grand Rapids. We had a blast hosting and teaching participants from Gordon Food Service, Meijer, Spectrum Health, and more. Most beneficially, great discussions formed across the varying industries which created a learning environment filled with collaboration.
Read more
diff --git a/public/blog/page/3/index.html b/public/blog/page/3/index.html
index 2d7cec2..d0a52fd 100644
--- a/public/blog/page/3/index.html
+++ b/public/blog/page/3/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -180,8 +180,7 @@
-
At Bravo LT, we believe STEM (Science, Technology, Engineering, Math) education is key to strengthening the future for the next generation. As a technology and e-Learning company in West Michigan, we love introducing the next generation of children to technology. Last month we hosted our third-annual Raspberry Pi Youth Camp which gave local students (ages 10-14) an opportunity to explore computer programming in a fun and engaging way.
- We hosted this free event at Davenport University in Grand Rapids.
+
At Bravo LT, we believe STEM (Science, Technology, Engineering, Math) education is key to strengthening the future for the next generation. As a technology and e-Learning company in West Michigan, we love introducing the next generation of children to technology. Last month we hosted our third-annual Raspberry Pi Youth Camp which gave local students (ages 10-14) an opportunity to explore computer programming in a fun and engaging way.
Read more
diff --git a/public/blog/page/4/index.html b/public/blog/page/4/index.html
index 1df66f6..0a15df7 100644
--- a/public/blog/page/4/index.html
+++ b/public/blog/page/4/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -308,7 +308,8 @@
Bravo Open Source Symposium October 26, November 2, 9, and 16 5:00 - 7:00 PM
Event Description: BOSS 2015 explores specific open source topics, to include:
- Data Grids: To Infinispan and Beyond (Day 1) Introduction to Docker (Day 2) Maven for Power Users (Day 3) Introduction to Clojure (Day 4) This free four-day symposium, held on alternating Mondays in September and October, features highly interactive training sessions to include the following delivery methods: traditional lecture and demonstration, video, case studies, hands-on activities and group discussion.
+ Data Grids: To Infinispan and Beyond (Day 1) Introduction to Docker (Day 2) Maven for Power Users (Day 3) Introduction to Clojure (Day 4)
+This free four-day symposium, held on alternating Mondays in September and October, features highly interactive training sessions to include the following delivery methods: traditional lecture and demonstration, video, case studies, hands-on activities and group discussion.
Read more
diff --git a/public/blog/pistons-vs-cavs/index.html b/public/blog/pistons-vs-cavs/index.html
index 75862ac..36166fd 100644
--- a/public/blog/pistons-vs-cavs/index.html
+++ b/public/blog/pistons-vs-cavs/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -149,8 +149,12 @@ Pistons vs Cavs
- Friday Night Road Trip!
+
+
+Friday Night Road Trip!
+
A few of us from #TeamBravo headed south on Friday night, to the Breslin Center at MSU, to see the Pistons and Cavs face off! Since they’ve both lived in Ohio, Ben and Matthew are die-hard Cleveland fans. Ed and Tom cheered for the Pistons which made for a night of light-hearted rivalry between our cheering section of four.
+
Not only do all of us enjoy working together as a collaborative and united team – we have a heck of a lot of fun outside the office. We make a point to plan lively activities for the team on the regular. This summer about 20 of us from #TeamBravo took in a White Caps game with our spouses and friends. This fall and winter we’re looking forward to 80’s Night, our office Christmas party, and any impromptu fun that pops up between now and then.
diff --git a/public/blog/raspberry-pi-computer-programming-camp-is-back-2018/index.html b/public/blog/raspberry-pi-computer-programming-camp-is-back-2018/index.html
index 7c55826..295a346 100644
--- a/public/blog/raspberry-pi-computer-programming-camp-is-back-2018/index.html
+++ b/public/blog/raspberry-pi-computer-programming-camp-is-back-2018/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -150,9 +150,13 @@ Raspberry Pi Youth Computer Programming Camp is Back!
At Bravo LT, we believe STEM education is key to strengthening West Michigan from the inside out. We’re excited to host another session of Raspberry Pi Youth Camp, this fall, which will give local students (ages 12-15) an opportunity to explore computer programming in a fun and engaging way.
+
The free event will be held on September 11 & 12, 2018 at Calvin College in Grand Rapids from 5pm – 8pm. The event is powered by our developers, who generously volunteer their time to lead camp. This session of camp will focus in on the Python programming language. Youth participants will explore exciting, hands-on projects and Raspberry Pi devices — inexpensive credit card-sized computers that plug into TVs or monitors and use keyboards and mice — to learn programming.
+
Registration filled up quickly for camp. Reach out to us if you’d like your son or daughter put on the wait-list.
-If you’re a company, family, or individual who believes in inspiring students within STEM fields and bridging the gender and diversity gap in the tech sector — we invite you to support Pi Camp by becoming a Champion of Technology for Children, today! Email info@bravolt.com to learn about how you can support students with your donation to camp.
+
+If you’re a company, family, or individual who believes in inspiring students within STEM fields and bridging the gender and diversity gap in the tech sector — we invite you to support Pi Camp by becoming a Champion of Technology for Children, today! Email info@bravolt.com to learn about how you can support students with your donation to camp.
+
Be sure to check out all the fun we had at our summer session of camp:
![Raspberry Pi Youth Computer Camp, Youth Computer Programming Camp Grand Rapids]
diff --git a/public/blog/raspberry-pi-computer-programming-this-august-2019/index.html b/public/blog/raspberry-pi-computer-programming-this-august-2019/index.html
index 656c5f8..4320483 100644
--- a/public/blog/raspberry-pi-computer-programming-this-august-2019/index.html
+++ b/public/blog/raspberry-pi-computer-programming-this-august-2019/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -150,9 +150,13 @@ Youth Pi Camp this August
At Bravo LT, we believe STEM education is key to strengthening West Michigan from the inside out. We’re excited to host another session of Raspberry Pi Youth Camp, this summer, which will give local students (ages 12-15) an opportunity to explore computer programming in a fun and engaging way.
+
The free event will be held on August 12 & 13, 2019 at the Bravo office in Grand Rapids from 5:30pm – 8pm. The event is powered by our developers, who generously volunteer their time to lead camp. This session of camp will focus on the Python programming language. Youth participants will explore exciting, hands-on projects and Raspberry Pi devices — inexpensive credit card-sized computers that plug into TVs or monitors and use keyboards and mice — to learn programming.
+
Registration filled up quickly for camp but we have a few spots left: Register Here
-If you’re a company, family, or individual who believes in inspiring students within STEM fields and bridging the gender and diversity gap in the tech sector — we invite you to support Pi Camp by becoming a Champion of Technology for Children, today! Email info@bravolt.com to learn about how you can support students with your donation to camp.
+
+If you’re a company, family, or individual who believes in inspiring students within STEM fields and bridging the gender and diversity gap in the tech sector — we invite you to support Pi Camp by becoming a Champion of Technology for Children, today! Email info@bravolt.com to learn about how you can support students with your donation to camp.
+
Be sure to check out all the fun we have at camp:
Raspberry Pi Youth Computer Camp
diff --git a/public/blog/responsive-e-learning-one-size-does-not-fit-all/index.html b/public/blog/responsive-e-learning-one-size-does-not-fit-all/index.html
index 5b51fcf..f27236c 100644
--- a/public/blog/responsive-e-learning-one-size-does-not-fit-all/index.html
+++ b/public/blog/responsive-e-learning-one-size-does-not-fit-all/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -150,11 +150,16 @@ Responsive e-Learning - One Size Does Not Fit All
e-Learning modules have traditionally been static—stiff, heavy courses that are not quite optimized for modern-day mobile devices. Designed in a constrained aspect ratio, these modules can technically fit on any size screen, but they are certainly not optimized to fit well—and that’s hardly the best option when you need to train employees on the go, or simply need to train them on a device other than a desktop computer or laptop.
+
Today, mobile is king. People across the globe heavily rely on their smartphones and tablets for everything—communicating with friends and family, reading the news, playing games, and, of course, learning! That’s where responsive training comes in.
+
Inspired by responsive web design, which targets design and development to a user’s behavior and device, responsive mobile learning (m-learning) consists of modules that are designed to “respond” to the individual devices they are being viewed on. So, how does that work? By using mobile-friendly e-learning authoring tools (we love Adapt!), our instructional designers here at Bravo LT can create modules that detect the kind of device they’re being viewed on and automatically reorganize themselves to perfectly fit on the screens of mobile devices. Plus, these courses use HTML5 instead of Flash, allowing for greater accessibility across devices—without sacrificing interactivity.
+
If that’s not impressive enough, these responsive modules also have cleaner navigation, larger font sizes, smaller file sizes, and more intuitive layouts, making on-the-go training easier than ever!
+
And like all of the training materials we create, our responsive modules, designed by our professional instructional designers and e-learning developers, are meticulously crafted to be engaging, memorable learning events catered to specific employee demographics. We always collaborate with subject matter experts (SMEs), managers, and other stakeholders to ensure training meets organizational goals and effectively transforms employees from the inside out.
-Want to find out how responsive m-learning can improve your training program? Send us a message at info@bravolt.com. We’re ready to partner with you!
+
+Want to find out how responsive m-learning can improve your training program? Send us a message at info@bravolt.com. We’re ready to partner with you!
diff --git a/public/blog/songs-of-the-product-owner/index.html b/public/blog/songs-of-the-product-owner/index.html
index 56240df..f08c4cc 100644
--- a/public/blog/songs-of-the-product-owner/index.html
+++ b/public/blog/songs-of-the-product-owner/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -149,17 +149,27 @@ Songs of the Product Owner
- Congrats! You just became a Product Owner. Your knowledge of the industry and the product in development caused the powers that be to put you in charge. Crafting this valuable product is similar to producing a hit song. You want to put out something that is loved by the audience and profitable for the company. You have control over the lyrics, the accompanying music, all the way down to the cover art. As a new Product Owner, you must be wondering, how do I start building the hook, avoid misunderstood lyrics, and deliver a platinum product?
+
+
+Congrats! You just became a Product Owner. Your knowledge of the industry and the product in development caused the powers that be to put you in charge. Crafting this valuable product is similar to producing a hit song. You want to put out something that is loved by the audience and profitable for the company. You have control over the lyrics, the accompanying music, all the way down to the cover art. As a new Product Owner, you must be wondering, how do I start building the hook, avoid misunderstood lyrics, and deliver a platinum product?
+
I Left my Brains Down in Africa
+
Without research into your market, what other competitors are doing, or thinking about the makeup of your key customers, even the best product will fail. Your hit song will fall on deaf ears. Through thoughtful research you can identify opportunities and insights that can help the team compose a hit feature. This goes beyond just asking a customer what they want and might involve prototyping or testing new features against a sample group. Continually researching throughout the life of the product helps prioritize your features and ideas and aids your team’s continuous improvement of the product. Combining your brains and research will ensure your product starts off on the right foot and continues to deliver value.
+
Hold me Closer, Tony Danza
+
All of the research and interactions with the product will lead to a backlog of work that your team will tackle. Composing a song might take a guitar riff and a small lyric written on a napkin, and by collaborating with your bandmates, that input is transformed into a fully formed song. A valuable product takes the same teamwork. You give your team the vision of what they are building and why they are building it. You give them the key elements of the song and help them understand why they are important. You work closely with them to provide clarification about questions the team might have about an element of the product. If a member of your band needs to know what something is supposed to sound like, it is up to you to clarify it. Clarifying saves time and energy and keeps the product moving forward.
-Don’t go, Jason Waterfalls
+
+Don’t go, Jason Waterfalls
+
A song or product develops and changes over time. Releasing a sample of the song or a small feature update to your product keeps the customer engaged and providing feedback. Reacting to this feedback in a timely manner means you need to construct stories for your team to work on that still produce value for the product but are small enough to be delivered in your defined iterations. If you create stories that are too large or all have the same importance, it will be hard for your team to deliver and you will slip into the waterfall versus your desired agile delivery method. Stories will move from iteration to iteration and product delivery and the feedback loop will suffer. Of course there are examples of songs and products that are a hit from the day of release, but a more surefire way to create is through incremental release and feedback. Instead of going over the waterfall, stick to the calmer rivers and lakes of agile.
Good Product Owners have a lot of things to manage and consider to ensure their lyrics are both heard and understood. Make sure that you are not only considering product improvements but how you can improve your own skill set. Take classes, read, and converse with other Product Owners. Good luck in your new role, and now if you will excuse me, I’ve got two chickens to paralyze.
+
Interested in becoming a product owner?
+
Bravo LT is hosting a Certified Srum Product Owner Training on November 21 - 22, 2019.
- Find more information here.
+ Find more information here.
diff --git a/public/blog/we-moved-downtown-grand-rapids/index.html b/public/blog/we-moved-downtown-grand-rapids/index.html
index 4ce6bec..0af6d47 100644
--- a/public/blog/we-moved-downtown-grand-rapids/index.html
+++ b/public/blog/we-moved-downtown-grand-rapids/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -149,13 +149,22 @@ We Moved Downtown Grand Rapids
- Our New Location#####
+
+
+Our New Location
+
Bravo has officially moved downtown Grand Rapids! Last month we said goodbye to our Cascade Parkway location and (after a few construction projects and a bit of cosmetic work in the new space) hello to Monroe Center. Our official signage is in the works, but in the meantime, we are the dark gray building located at the corner of Division and Monroe Center. More specifically:
+
Bravo LT, 40 Monroe Center NW, Suite 11, Grand Rapids, MI 49503
+
We are thrilled to be downtown, closer to clients and Bravo LT teammates. We love when our team stops by to grab coffee or stays on site to collaborate on projects. It’s also been a bonus to have such great restaurants and coffee shops nearby. If you see anyone with Bravo LT swag out and about at Littlebird, Brick and Porter, Madcap, or The Paper Studio please say hello! We’re pumped our frequent visits support local businesses.
+
The biggest reason for moving downtown was to be immersed within the community. As a software development company, we’re always looking for ways to inspire and give back to the next generation of developers. Just last week we had the opportunity to tour Innovation Central and begin brainstorming ways our developers may be able to offer exploratory Raspberry Pi workshops to Innovation students.
+
If you find yourself walking down Monroe Center, please stop in for coffee or La Croix, to grab some Bravo LT swag, or to simply say hello. We’re thankful to our West Michigan clients, and beyond, for supporting Bravo LT throughout the years; we look forward to continued growth and serving you and your businesses in the future.
+
/////
+
What are some ways you support your local community? Take our #GoLocalMI challenge and show us your favorite West Michigan people, places, and businesses on Twitter or Instagram!
diff --git a/public/blog/what-is-rest/index.html b/public/blog/what-is-rest/index.html
index 710cfcb..2367a11 100644
--- a/public/blog/what-is-rest/index.html
+++ b/public/blog/what-is-rest/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -149,41 +149,70 @@ What is REST?
- What is REST?
+
+
+What is REST?
+
Representational State Transfer (REST) is a very popular term in web development today. REST is used to describe many things, kind of like “API”, and because of that I was very confused by the acronym. The goal of this post is to provide a high-level description of REST in hopes that you will navigate away with a better understanding of the architectural style.
-What is RESTful?
-If you have worked on web software, chances are you have been a part of a design discussion where somebody declared, “______ would be more RESTful”. *What does that mean?*
+
+What is RESTful?
+
+If you have worked on web software, chances are you have been a part of a design discussion where somebody declared, “______ would be more RESTful”. What does that mean?
+
It is important to note that REST is a specification not an implementation. In other words, REST defines the requirements for a system but does not define how you should write your code in order to meet those requirements. For example, to say that plural paths (/users
) are more RESTful than singular paths (/user
) is not necessarily true. Instead, it is more correct to say: it is RESTful to choose either plural or singular paths to use across the whole system in order to provide a consistent API. REST does not care what naming convention is used as long as the convention is consistent across all interfaces. This is defined by the Uniform Interface constraint.
+
Constraints are what define the requirements for REST. Once you understand the constraints you can confidently declare what is and is not RESTful.
-Constraints
+
+Constraints
+
There are six architectural constraints that define REST. Their original definition can be found in Roy Fielding’s dissertation, section 5.1 Deriving REST, and I will summarize them here.
-Client-Server
+
+Client-Server
+
The client-server constraint involves separating client concerns from server concerns. Let us simplify an application into two parts: user interface and business logic. Business logic stays the same whether a consumer is using an Apple or an Android phone, but the user interface code can be different. A client-server system separates business logic from the user interface so that server code can be written once and service a variety of clients.
-
-Stateless
+
+
+
+Stateless
+
The stateless constraint can be described as, “stateful client, stateless server” where statelessness is preserved on the server. An example of state is a user’s session. A common way to implement authentication in a web application is to utilize a session, which can look something like this:
+
- User logs in with a username and password. This sends a request from the client to the server with the credentials.
- If successful, the server creates a session and responds to the client with a session ID. The session is managed by the server.
- While the user is logged in, every request must include the session ID. With each request, the server checks the session ID to authenticate the request.
+
This approach is not RESTful because it requires the server to keep track of sessions for each client. It also violates the stateless constraint because each request does not include all of the information needed in order to determine the full nature of the request. A more RESTful approach would look like:
+
- User logs in with a username and password. This sends a request from the client to the server with the credentials.
- If successful, the client saves the username and password. Every request going forward includes the username and password.
- For each request, the server verifies the username and password. No session is managed by the server.
+
There are trade-offs to each approach. A stateful server can be more efficient, a stateless server can be more scalable. Do what makes the most sense for your business case, but know that REST specifically calls for stateless server.
-
-Cache
+
+
+
+Cache
+
Web applications are bound to networks by nature. A consequence of network communication is that it takes time to transfer information through a wire. In order to provide an efficient system, it is important to utilize mechanisms that optimize the amount of information that must be transferred. One optimization strategy is caching, the third constraint of REST.
+
Caching involves storing server data on the client. This enables a client to avoid repetitive requests to the server to retrieve the same data. When implementing a cache, it is important to understand when cached data should expire. Caching is great for increasing performance, but has the consequence of providing out-of-date information if not managed correctly. Seek to implement caches where data rarely changes or where there is a reliable way to refresh the cache when data does change.
+
According to REST, caching should always be done client-side. Note: a server can be both a server and a client!
-
-
+
+
+
+
+
The uniform interface constraint focuses on the manner in which a system communicates itself to other systems or clients. This focuses on the API layer and is described through four sub-constraints.
-Identification of Resources
+
+Identification of Resources
+
Identification of resources deals with how the functionality of an API is described. For an example, let us look at an application that allows creating and managing users. The following functions are available:
+
- Get all users
- Add a new user
@@ -192,28 +221,50 @@ Identification of Resources
- Update a user’s birthday
- Delete a user
-
-
+
+
+Let us examine two potential HTTP API designs:
+
+
+
+
Design A represents what is commonly found in SOAP or other non-REST architectures. Design B is typically preferred in a RESTful design because it identifies operations in a more uniform and predictable manner.
-Manipulation of Resources Through Representations
+
+Manipulation of Resources Through Representations
+
A “representation” can be thought of as a JSON structure. To continue the user example from above, the request to GET /users/{id}
might return a response of:
+
{
“id”: 1,
“name”: “Joseph”
“bday”: “1992/09/25”
}
-
This is the user representation. The manipulation of resources through representations constraint defines that an interface should use consistent structures when referring to the same entity. So when a user is being created, updated, retrieved, or referenced; its structure remains the same.
-Self-Descriptive Messages
+
+
+This is the user representation. The manipulation of resources through representations constraint defines that an interface should use consistent structures when referring to the same entity. So when a user is being created, updated, retrieved, or referenced; its structure remains the same.
+
+Self-Descriptive Messages
+
The self-descriptive messages constraint requires requests and responses to define all of the information needed to understand the purpose of the request/response. In HTTP, this includes the use of headers, status codes, and HTTP methods (GET, PUT, POST, etc).
+
A redirect response is a good example of this constraint. Let us pretend that a client is requesting a user’s profile picture, but the location of the picture has moved. The proper service response would include a 302 HTTP status code (Object Moved) with a Location
header that points to the new location of the picture. Browsers are programmed to automatically handle this interaction so that a user sees no difference. If a server is improperly programmed and the Location
header is missing, the response will not include all of the required information and the user will be left with an incomplete view.
-
+
+
+
HATEOAS sounds complicated, but really what it means is that links (URLs) should be provided by a server to direct clients through available functionality. A way to illustrate this is to think of a homepage. Let us use StackOverflow.com as an example. When a client requests the StackOverflow homepage, there are many routes the user can navigate from there: top posts, profile page, hot questions, etc. It is the server’s job to provide URLs to navigate to each of those available functions. The idea being, the only URL a client should need to know is the root/home page. From there, the client can navigate through the links provided in the server’s response. Another example to think about is a website that mimics a book. If the browser requests page 50 from the server, the server should respond with page 50 and also include links to the previous and next page. This allows the client to navigate throughout the book.
-Layered System
+
+Layered System
+
A layered system architecture is a common best practice found across most software systems. This style is found internal to code bases as well as external across an entire system. Internally this is observed as separating code into controller, service, and database files. Externally this is observed as maintaining business logic on proprietary systems and delegating to 3rd parties for responsibilities like payment processing, for example. Service-oriented architectures fit nicely into this constraint as they require system components to be isolated by responsibility, creating layers between services.
-
-Code-On-Demand
+
+
+
+Code-On-Demand
+
The code-on-demand constraint opens the door for servers to provide packaged code to clients for client convenience. This is useful when a system expects all clients to require similar behavior. If a reservation system is used as an example, it could be expected that many clients will require a date picker in order to select a time period for reservations. Code-on-demand defines that it would be RESTful for that reservation system to provide a pre-built JavaScript widget for selecting dates.
-Summary
+
+Summary
+
Client-server, stateless, cache, uniform interface, layered system, and code-on-demand are the core principles that define REST. Hopefully this article provides some insight into the meaning of this popular acronym. If you are interested in diving deeper into the source of the REST architectural style, its origin can be found in Architectural Styles and the Design of Network-based Software Architectures by Roy Fielding.
diff --git a/public/blog/why-bravo-cares/index.html b/public/blog/why-bravo-cares/index.html
index a7a85cf..17f3bdb 100644
--- a/public/blog/why-bravo-cares/index.html
+++ b/public/blog/why-bravo-cares/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -150,13 +150,20 @@ Giving Back - Why Bravo Cares
When I first interviewed for my position at Bravo LT a little more than a year ago, my interviewer—Bravo LT president Ed—asked me what some of my hobbies were. “Well, I really like listening to music…I like drawing…oh, and I volunteer at the local animal shelter,” I responded. Ed briefly commended me on my volunteering efforts—a nicety, I assumed—and the conversation moved right along.
+
Fast forward to a few days later when I received an email from Ed telling me I was a good fit for the gig—cool! And part of the reason I was a great fit, he said, was because of my devotion to animal rescue—wow, really? I guess I hadn’t realized during my interview how important that effort was to Bravo LT. Learning this, I knew right then that Bravo was exactly the kind of company I wanted to be a part of.
+
Since my hiring, I’ve learned that Bravo LT has a long history of being deeply involved in the West Michigan community, from offering free educational talks to the public to hosting STEM summer camps for kids, these functions have long been a part of our commitment to donating our time and resources to causes we believe in.
+
However, I noticed there wasn’t a formal name for all of this philanthropic work that we did. That was when my colleague, Ben, and I had an a-ha moment: What if we created an actual program for our charitable endeavors? And why couldn’t we kick it up a notch? So that’s exactly what we did!
+
We launched our Care initiative in the summer of 2016, and since then, I’m pretty proud to say we’ve done a whole lot of good—from sponsoring the Spectrum Health Foundation’s Gala 2016 to holding a supplies drive for the local animal shelter to supporting God’s Kitchen and volunteering at Kids’ Food Basket. We’ve also hosted several educational talks and held another summer camp for kids. How’s that for kicking it up a notch?
+
Thinking back to the day I accepted this job, I remember how excited I was to find out that Bravo LT’s community commitment aligned so closely with my own passion for volunteering. And now that we’ve launched our Care initiative, I’m even more excited—excited to see the program grow, and excited to find new ways we can give back to our amazing community!
-
-Do you know of a great non-profit that could use a little help? Send your ideas to info@bravolt.com —we’d love to hear them!
+
+
+
+Do you know of a great non-profit that could use a little help? Send your ideas to info@bravolt.com —we’d love to hear them!
diff --git a/public/care/index.html b/public/care/index.html
index 86e6233..e6352bb 100644
--- a/public/care/index.html
+++ b/public/care/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
diff --git a/public/care/index.xml b/public/care/index.xml
index 1f2a3bd..048b18b 100644
--- a/public/care/index.xml
+++ b/public/care/index.xml
@@ -1,4 +1,4 @@
-
+
We Care on Bravo LT | Learning & Technology
diff --git a/public/careers/index.html b/public/careers/index.html
index 0097279..f4cdc4b 100644
--- a/public/careers/index.html
+++ b/public/careers/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
diff --git a/public/careers/index.xml b/public/careers/index.xml
index f3fe835..97f239a 100644
--- a/public/careers/index.xml
+++ b/public/careers/index.xml
@@ -1,4 +1,4 @@
-
+
Careers on Bravo LT | Learning & Technology
diff --git a/public/categories/index.html b/public/categories/index.html
index 334a6c6..9167fdd 100644
--- a/public/categories/index.html
+++ b/public/categories/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
diff --git a/public/categories/index.xml b/public/categories/index.xml
index e067930..84e5be1 100644
--- a/public/categories/index.xml
+++ b/public/categories/index.xml
@@ -1,4 +1,4 @@
-
+
Categories on Bravo LT | Learning & Technology
diff --git a/public/contact/index.html b/public/contact/index.html
index 2daa594..577ef0b 100644
--- a/public/contact/index.html
+++ b/public/contact/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
diff --git a/public/contact/index.xml b/public/contact/index.xml
index faed22d..a13e9b5 100644
--- a/public/contact/index.xml
+++ b/public/contact/index.xml
@@ -1,4 +1,4 @@
-
+
Contact Us on Bravo LT | Learning & Technology
diff --git a/public/csm/index.html b/public/csm/index.html
index 8faab51..4bdec4e 100644
--- a/public/csm/index.html
+++ b/public/csm/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
@@ -230,11 +230,11 @@ About CSM
Important Info
Dates
-
July 8-9, 2020
+
August 20-21, 2020
Location
Virtual Instructor Led Training
Cost
-
$895.00 (Until June 12) $995.00 (June 12 - June 27) $999.00 (June 27 - July 6)
+
$799 until July 31, $850 until August 14, $895 until August 17.
NOTE: The possibility of state grant funding is available to participants. However, participant's employers must pay for the training on behalf of the participants in order to qualify. For partial course fee reimbursement options, please contact West Michigan Works! at: business@westmiworks.org.
@@ -284,7 +284,7 @@ About the Instructor
diff --git a/public/csm/index.xml b/public/csm/index.xml
index d985fd8..e60311c 100644
--- a/public/csm/index.xml
+++ b/public/csm/index.xml
@@ -1,4 +1,4 @@
-
+
Certified Scrum Master Training on Bravo LT | Learning & Technology
diff --git a/public/cspo/index.html b/public/cspo/index.html
index 1506155..abc8233 100644
--- a/public/cspo/index.html
+++ b/public/cspo/index.html
@@ -6,7 +6,7 @@
-
+
Bravo LT | Learning & Technology
diff --git a/public/cspo/index.xml b/public/cspo/index.xml
index f6382de..a3904a2 100644
--- a/public/cspo/index.xml
+++ b/public/cspo/index.xml
@@ -1,4 +1,4 @@
-
+
Certified Scrum Product Owner (CSPO®) Training on Bravo LT | Learning & Technology
diff --git a/public/images/jobdescriptions/22-senior-engineer.pdf b/public/images/jobdescriptions/22-senior-engineer.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ff186876f6a7c806e3538076ecb74357ca643a03
GIT binary patch
literal 71588
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