Hello, I'm Jason
I live with my family in the rolling hills of Northeastern Pennsylvania. I'm a web developer by trade, but have broad experience in various business areas. Want to know more about me?
TechBash Announces 3 Keynotes for TechBash 2023
TechBash just announced three amazing keynotes and a Labor Day sale which takes place now through Labor Day, September 4th.
Read MoreFull Stack Developer Openings at biBerk
biBerk is hiring several Full Stack Developers. biBerk is a direct insurance company with offices in Omaha, Nebraska and Wilkes-Barre, Pennsylvania. We also have many team members that are fully remote.
Read MoreTechBash Just 90 Days Away, Tickets Still Available
While we are still 90 days away, standard ticket pricing only exists for the next 8 weeks!
Read MoreUsing Live SASS Compiler in VS Code
There are times when I am writing code that I really want to compile SASS quickly and don’t care to setup a worker to handle the processing. I started using the VS Code extension called Live SASS Compiler.
Read MoreMarkdownSharpCore, a Markdown .NET Library, Updated
I have recently updated the MarkdownSharpCore library to support .NET 6.0. Previously the 1.1 version only supported .NET Standard 2.1 and .NET Core 2.2. The source code for the library can be found on GitHub at https://github.com/jasongaylord/markdownsharp. You can grab the NuGet package here: https://www.nuget.org/packages/MarkdownSharpCore.
Read MoreTweetdeck Forces Update and Breaks Tweeten
TweetDeck recently “choose” me to use their new preview. The problem is that I never opted in and it broke Tweeten. Until yesterday, the feature to opt-out of the new TweetDeck was broken.
Read MoreTechBash Sponsorships Available
While the early bird ticket sale process just wrapped up, we’re just getting started with TechBash. Earlier this year we posted our updated Sponsorship Prospectus for TechBash 2023.
Read MoreExecuting Concurrent NPM Scripts
All along, we’ve been able to run multiple NPM scripts in the same run command. Here’s the scenario: Imagine that we have a script that is called buildStaging
and another called buildProduction
. We could run both scripts out of the box with NPM by creating a new script, let’s call it build
and setting the value to npm run buildStaging && npm run buildProduction
. The problem with this is that buildProduction
won’t start until buildStaging
is complete.
Early Bird Ticket Ends July 4th for TechBash 2023
Time is ticking on the early bird ticket sale for TechBash 2023. The early bird prices end at 11:59pm Eastern on July 4th. You can purchase 3-day and 4-day early bird tickets on EventBrite.
Read MoreCalculating Color Contrast in Dart SASS
The TechBash Foundation is working on an updated website for TechBash. One of the requests that came in from one of our presenters for this year’s TechBash conference was to ensure that our color contrast between background-color
and text color
was within the guidelines set forth by WCAG. Since I’m building a lot of my styles using SASS, and more specifically, Dart Sass, it’s actually not hard to create a function to return the contrast ratio.