Skip to content
View GregJacobs82's full-sized avatar

Block or report GregJacobs82

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
GregJacobs82/README.md

Software Development Engineer in Test (SCDET)

I write automation tests in Cypress for quality assurance... and I love it 🙂

I specialize in writing automation tests using Cypress to ensure the highest quality in software products. As a dedicated QA Automation Engineer and SDET, my focus is on building robust, scalable test automation frameworks that enhance product reliability and accelerate the development cycle.

With a strong foundation in both software development and quality assurance, I bring a unique blend of skills that spans test automation, front-end development, and UI/UX design. My experience in UI/UX allows me to approach testing with an eye for user-centered design, ensuring that automated tests not only validate functionality but also uphold the user experience.

Over the years, I have transitioned from crafting intuitive digital interfaces to engineering automated testing solutions, continuously evolving my approach to meet the needs of modern software development. I am passionate about creating efficient, maintainable tests that support development teams in delivering exceptional products.

Whether it's automating end-to-end tests with Cypress or leveraging my background in front-end development, I am committed to quality and innovation in every line of code I write. Let's connect and explore how we can build better software, together.

 


My Online Presence:

gregjacobs gregjacobs gregjacobs82 gregjacobs gregjacobs gregoryjacobsdesigns officialgregjacobs

GregJacobs82

Pinned Loading

  1. All CSS Cursors All CSS Cursors
    1
    //********************/
    2
    //*** ALL CURSORS  ***/
    3
    //********************/
    4
    $cursorsArray: (
    5
        alias , // {cursor: alias;}
  2. Cross Browser Prefixes (use with Att... Cross Browser Prefixes (use with Attribute or Value)
    1
    //****************************************************/
    2
    //****************************************************/
    3
    //***                                              ***/
    4
    //***    CROSS BROWSER PREFIXES (cross-browser)    ***/
    5
    //***                                              ***/
  3. SCSS: OPACITY (1 - 100) SCSS: OPACITY (1 - 100)
    1
    //*** OPACITY ***/
    2
    // EXAMPLE OUTPUT: .opacity-50 { opacity: .5; }
    3
    @for $i from 1 through 100 {
    4
        .opacity-#{$i} {
    5
            opacity: #{$i * .01};
  4. SCSS: Get index of a key value SCSS: Get index of a key value
    1
    $colors: (
    2
        a: red,
    3
        b: green,
    4
        c: blue
    5
    );
  5. SCSS: Responsive iFrame SCSS: Responsive iFrame
    1
    /* Then style the iframe to fit in the container div with full height and width */
    2
    .responsive-iframe {
    3
        position: relative;
    4
        overflow: hidden;
    5
        width: 100%;
  6. Create Multiple Box Shadow classname... Create Multiple Box Shadow classnames to use throughout your project by simply creating a new variable and adding it to the GlobalShadowsArray
    1
    // Create Multiple Box Shadow classnames to use throughout your project by simply creating a new variable and adding it to the GlobalShadowsArray
    2
    // 1. Create a new shadow variable in [BOX SHADOW VARIABLES]. (ie. $shadow-5)
    3
    // 2. Add the shadow name and shadow variable to the $GlobalShadowsArray. (ie. shadow-5 $shadow-5)
    4
    // 3. Run scss compiler :)
    5
    //