DevOps

DevOps Related topics

Enable SSH on a new AWS Ubuntu Instance 2022

Connecting to an Ubuntu box on AWS (Amazon Web Services) used to be easier if I remember correctly…  But what do I know I’m a developer who primarily works on Windows PCs.  I have spun up my fair share of Linux machines to run Eclipse, Apache, Jenkins, Ansible, Puppet and others, but I would not …

Enable SSH on a new AWS Ubuntu Instance 2022 Read More »

Sign in to GitHub

Error when I attempt to push my local repo to GitHub

$ git push -u origin masterfatal: HttpRequestException encountered.An error occurred while sending the request.Username for ‘https://github.com’: email@prodataman.comremote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.fatal: Authentication failed for ‘https://github.com/ProDataMan/Git-Demo.git/’ If you have seen this error message when trying to push from a local …

Error when I attempt to push my local repo to GitHub Read More »

Eclipse and Git on ubuntu

How to Stage, UnStage and Commit a Java Maven Project to a Git Repo in Eclipse on Ubuntu

In this post we will revisit the basic concepts discussed in the previous post while introducing the implementation of those same features in an Integrated Development Environment (IDE). In the last post which can be found here Git Fundamentals in Ubuntu and we discussed initializing a new repository with git init, adding project artifacts to …

How to Stage, UnStage and Commit a Java Maven Project to a Git Repo in Eclipse on Ubuntu Read More »

5 Agile Rules

Sprint Planning: The 60/40 Split2-4 hours of Sprint planning for each week of a Sprint should yield 60% of delivery team tasks necessary to complete a user story defined and documented prior to the SprintThe 80/20 CommitmentThe average agile team incurs 10-30% technical debt in each Sprint. Mature teams closer to 10% newer Agile teams …

5 Agile Rules Read More »

Simple Echo App in Eclipse with TDD

In this tutorial, we will walk through creating a basic JUnit test class in Eclipse just to make sure that our environment is set up properly. We will use Test Driven Development (AKA Test First Development) to ensure that we are writing just enough code to pass our test, and not writing our test to …

Simple Echo App in Eclipse with TDD Read More »

SpecFlow

Acceptance Test Automation with Cucumber / SpecFlow in Visual Studio

Acceptance Criteria, Test Automation and Gherkin What do Acceptance Criteria, Test Automation and a Cucumber have in common? Well for the uninitiated in may seem that these 3 things have nothing in common however if you are an “Agilist” or Test Automation specialist than you are probably very familiar with the similarities. Let’s start with …

Acceptance Test Automation with Cucumber / SpecFlow in Visual Studio Read More »

Add Cucumber Acceptance Tests to a Maven Project

In order to automate acceptance tests with Cucumber in Eclipse we must first load the Cucumber Plugin in Eclipse using the Eclipse Marketplace.  Once the Cucumber Plugin is installed in Eclipse, we can create a Maven Project and add Feature, Step Definition and CucumberRunner classes to integrate our Gherkin Acceptance Criteria statements with our Junit …

Add Cucumber Acceptance Tests to a Maven Project Read More »

Shopping Cart