- Meet Magento Florida 2026 Presentation
- Cypress Overview
- Cypress Magento Test Suite Repository
Meet Magento NYC 2024 Presentation
Why Automation?
| // ==UserScript== | |
| // @name Magento DevDocs Fixer | |
| // @author Erik Hanson (erik.hanson@gmail.com) | |
| // @version 1.3.0 | |
| // @namespace https://gist.github.com/lefte/af9232932eb95bcda269db9a94c190ac | |
| // @updateURL https://gist.github.com/lefte/af9232932eb95bcda269db9a94c190ac | |
| // @grant none | |
| // @run-at document-idle | |
| // @require https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js | |
| // @description Allows one to browse the Magento DevDocs without the annoying opacity filter |
| -- Anonymize Magento company admins | |
| select CONCAT_WS('', 'UPDATE customer_entity AS cu LEFT OUTER JOIN company AS co ON (cu.entity_id = co.super_user_id) SET cu.firstname = ''WS', co.erp_customer_id, ''', cu.lastname = ''', LEFT(REPLACE(REPLACE(REPLACE(co.company_name, ' ', ''), '&', ''), '''', ''), 14), ''', cu.email = ''Customer', co.erp_customer_id, '@qa.curtgroup.com'', cu.password_hash = ''generatedpasswordhash:salty1:1'', co.company_email = cu.email WHERE cu.entity_id = ', cu.entity_id, ';') AS newEmail | |
| -- , '--cu--' as labelcu, cu.*, '--co--' as labelco, co.* | |
| from company AS co | |
| left outer join customer_entity AS cu ON (cu.entity_id = co.super_user_id) where cu.email not like '%@curtgroup.com'; | |
| -- Anonymize Magento company sub-users | |
| select CONCAT_WS('', 'UPDATE customer_entity SET firstname = ''WS', co.erp_customer_id, ''', lastname = ''', LEFT(REPLACE(REPLACE(REPLACE(co.company_name, ' ', ''), '&', ''), '''', ''), 14), ''', email = ''SubUser', co.erp_customer_id, '-', cu.entity_id, '@qa.curtgroup.com' |
| You have vnc-viewer v6.18.907 installed. Version 6.19.107 is available based on your source(s). | |
| 2019-01-23 06:55:24,973 7536 [DEBUG] - Backing up existing vnc-viewer prior to operation. | |
| 2019-01-23 06:55:24,974 7536 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\vnc-viewer' | |
| to 'C:\ProgramData\chocolatey\lib-bkp\vnc-viewer' | |
| 2019-01-23 06:55:26,980 7536 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib\vnc-viewer". | |
| 2019-01-23 06:55:26,982 7536 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\vnc-viewer\vnc-viewer.nupkg" | |
| to "C:\ProgramData\chocolatey\lib\vnc-viewer\vnc-viewer.nupkg". | |
| 2019-01-23 06:55:26,985 7536 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\vnc-viewer\vnc-viewer.nuspec" | |
| to "C:\ProgramData\chocolatey\lib\vnc-viewer\vnc-viewer.nuspec". | |
| 2019-01-23 06:55:26,989 7536 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib\vnc-viewer\tools". |
| // ==UserScript== | |
| // @name BlueJeans Future Meeting Canceler | |
| // @author Erik Hanson (erik.hanson@gmail.com) | |
| // @version 1.0 | |
| // @namespace https://gists.github.com/lefte/978f3be2dc0297f34153fa9cca685876 | |
| // @grant none | |
| // @run-at document-idle | |
| // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js | |
| // @description Adds a "cancel meeting" link to every meeting, otherwise BlueJeans only allows you to cancel today's meetings, so you can't cancel future events | |
| // @match https://*.bluejeans.com/scheduling/* |