Skip to content

Instantly share code, notes, and snippets.

@flynnbops
flynnbops / notes.md
Last active December 1, 2020 11:55
Visual Studio Code notes for a nice Ruby-Cucumber setup

Install extensions through visual studio marketplace

  • Ruby
  • VSCode Ruby
  • Cucumber(Gherkin) Full support
  • Snippets and Syntax Highlight for Gherkin (Cucumber)
  • vscode-icons
  • Ruby Solargraph (will also need to install the gem locally gem install solargraph)

Quick configuration

Create a .vscode folder in the root folder of your VScode window. i.e Not inside the common-dev-env folder.

@flynnbops
flynnbops / computerDatabaseSimulations.scala
Created August 23, 2021 11:11
Gatling basic simualtion
// Simulation I've ended up with at the end of the Gatling academy introduction course
//https://academy.gatling.io/courses/take/Run-your-first-tests-with-Gatling/lessons/16252154-gatling-introduction-course-overview
import scala.concurrent.duration._
import io.gatling.core.Predef._
import io.gatling.http.Predef._
import io.gatling.jdbc.Predef._
class computerDatabaseSimulation extends Simulation {
@flynnbops
flynnbops / row.html
Last active January 4, 2022 09:10
Capybara attributes
# HTML Code Snippet of the icon
<td id="toggleAppDetails0" class="tableSpacing" headers="viewDetails">
<a href="#" data-ref="123ABC" data-expand="appDetails0" title="Show / hide details"> + </a>
</td>