Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

111 total results found

Selectors

QA Selenium Automated UI Tests

You can use Chrome DevTools to test selector and see if they work before putting them into your program. To test a potential CssSelector, open the devtools console and type $$() with your css selector in the parentheses. For example, $$("[ng-if="!node.nodeL...

First Time Setup - Utopia (Work in Progress)

Development Utopia

Step 1: Postgresql download and install the latest version of postgres from https://www.enterprisedb.com/downloads/postgres-postgresql-downloads  use the password 'pass@word1' if you don't want to have to change config settings every time you work on the U...

Definition of Done

Development Agile

We consider a User Story or Defect to be complete when it has met the following criteria: Meets the Acceptance Criteria for the story Engineer has done their own testing and verified that everything is working as expected Smoke tests (ensure that it build...

eFC Enterprise Architecture

Development Utopia Architecture

Introduction eFileCabinet has 3 Legacy platforms and 1 flagship platform that all legacy platforms are migrating to. Reference: Utopia Architecture.pptx Flagship Rubex (Codename Utopia) Legacy Platforms eFileCabinet Desktop (Codename efc) Custom...

Enterprise Architecture Diagram

Development Utopia Architecture

PostgreSQL Information

Development PostgreSQL

**Note: If you don't have the Utopia solution cloned to your local machine, follow these instructions Installation and Setup In order to get a postgres db up and running on your local machine, you first need to install PostgreSQL. You can get the installe...

Coding Standards

Development Standards

Coding Rules Thou shalt not commit to the master branch, pull requests only. Thou shalt not use magic values. Thou shalt not use static classes save for utilities. Thou shalt not write recursive methods without an exit case. Thou shalt spell things corr...

Pull Request Checklist

Development Standards

General Items Code compiles Code has been developer-tested Code is tidy (indentation, line length, no commented-out code, no spelling mistakes, etc) Code adheres to the Coding Styles and Standards Guidelines (Found in the documentation folder) Exception...

Stand up

Development Agile

3 Standup Questions (per story) How far along are you? Will you complete in time? Who can help ? (How can we adjust the collaboration)

Distribute Foreign Keys

Development PostgreSQL

When it's time to distribute the foreign keys in postgres:select 'alter table '||quote_ident(ns.nspname)||'.'||quote_ident(tb.relname)||' drop constraint '||quote_ident(conname)||';'||chr(10)||'alter table '||quote_ident(ns.nspname)||'.'||quote_ident(tb.relnam...

Control Center Design

Development RPC

URL to Powerpoint: https://1drv.ms/p/s!AgkwKyXrWS3Xhg0oRDG4giTo7jw3?e=8oA7mO 

Agile Trainings

Development Agile

Agile-GettingStarted.pptxAgile Training to go over the basics of Agility, covering: Agile Manifesto Values and Principles User Story Writing Requirements Hierarchy: Epics, Features, User Stories Estimation techniques High-level overview of Scrum and Kan...

User Story Template

Development Agile

User Story Write user story text description. Note User stories should be written according to the following pattern:As a <type of user>, I want <some goal> so that <some reason>.Important: a user story should consider needs of particular type (most often r...

SonarCloud and SonarLint Setup Steps

Development Setup and Configurations

Link your ADO account to SonarCloud  Go to the SonarCloud link and click "Log In" then "With Azure Devops" button Let one of the senior devs know so they can add you to the SonarCloud project Login again and make sure you can access the Utopia project in ...

Steps to setup pg_partman

Development Setup and Configurations

Steps to setup partman ** Make sure you don't have the postgres service running on windows ** Use WSL Ubuntu : It may need some additional setup (enable virtualization, etc) Install postgresql on ubuntu: Follow these steps  make sure you update i...

How to Run WOPI Validator Tests on O365

Development Setup and Configurations

The WOPI Validator Tool allows us to make sure our endpoints conform to the WOPI protocol so we can offer an Office 365 integration. This tool is run through Windows PowerShell, but in order to make it work, we need 4 things first: The WOPI source cod...

AWS DMS Setup

Development Setup and Configurations

How to setup AWS DMS: This is assuming the PostgreSQL DB is already created SETUP SCHEMA: A. Get the sqlserver2pgsql.pl script from https://github.com/dalibo/sqlserver2pgsql/blob/master/INSTALL.md  We will not be using Kettle B. Install perl http:/...

Getting Started

Development Integromat

Setup Head to integromat.com  Login Username: development@efilecabinet.com Password: Ask Trevor

eFileCabinet App

Development Integromat

Click here  to see our app. An integromat app is composed of several components. The important ones are: Base This is the parent structure that all modules and remote procedures inherits from, if you notice that every module is using a header or requi...

Remote Procedure Calls (RPCs)

Development Integromat

What are they? Think of RPCs as sub modules that are called to help the main modules get the inputs they need They CAN NOT be called inside the module itself, instead, they are called inside of the "Mappable Parameters" tab How do I use them? List Fi...