This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div style="width: 500px; padding: 20px; margin: 10px; font-family: 'Trebuchet MS', Arial, sans-serif; background-color: #ffffff; text-decoration: none;" > | |
| <div style="display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid #333333; padding-bottom: 10px;"> | |
| <div> | |
| <h3 style="color: #1EA373; font-size: 20px; margin: 0;">Jay Mascarenas</h3> | |
| <p style="font-size: 14px; margin: 0 25px 0 0;"><span style="font-weight: 600;">Director: Front End Development</span>, Suited Connector</p> | |
| </div> | |
| <div> <img src="https://s3.us-west-2.amazonaws.com/suco.com/images/suco-logo-circles.png" alt="Suco Logo" style="width: 120px;" /> </div> | |
| </div> | |
| <div> | |
| <div style="display: flex; justify-content: flex-start;"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git log --format=format: --name-only --since=12.month| egrep -v '^$' | sort | uniq -c | sort -nr | head -50 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ALTER USER 'root'@'localhost' IDENTIFIED BY ''; | |
| FLUSH PRIVILEGES; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var fireImagePixel = function (pixelUrl = "") { | |
| var cip = new Image(); | |
| cip.src = pixelUrl; | |
| cip.setAttribute("width", "1"); | |
| cip.setAttribute("height", "1"); | |
| cip.setAttribute("border", "0"); | |
| document.body.appendChild(cip); | |
| }; | |
| var fireScriptPixel = function (pixelUrl = "") { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| var affId = getData('a'); | |
| scFetch( | |
| 'https://s3.us-west-1.amazonaws.com/offers.printfingertech.net/js/internalAffId.json' | |
| ) | |
| .then(function (response) { | |
| response.forEach(element => { | |
| if (affId === element) { | |
| document.getElementById('smgsmate91947').style.display = 'block'; | |
| var cip = new Image(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const simulateClick = (elem) => { | |
| // Create our event (with options) | |
| const evt = new MouseEvent("click", { | |
| bubbles: true, | |
| cancelable: true, | |
| view: window, | |
| }); | |
| // If cancelled, don't dispatch our event | |
| const canceled = !elem.dispatchEvent(evt); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rebase it if it’s off more than a few branches. If your local dev branch is up to date, you would switch to whatever branch you’re rebasing and do.. | |
| git rebase -i origin/dev | |
| to exit that you would do :qa! | |
| That would rebase it unless there are conflicts. If there are, you would resolve them, add and commit that, and run git rebase --continue. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| (function () { | |
| var popOverUrl = | |
| "https://facket-outter.icu/bbced9a2-bd20-492d-a320-7e094d8a11de"; | |
| var leaveBehindUrl = | |
| "https://mortgage.connectedrates.com/thankyouGCR.html?loan_purpose=refinance&credit_rating=excellent&zipcode=80015&ts=dingr"; | |
| function openTabUnder(url) { | |
| let windowObjectReference = null; | |
| if (windowObjectReference == null || windowObjectReference.closed) { | |
| windowObjectReference = window.open(url); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| var isVet = getData("opt_served_military"); | |
| if (isVet !== "" && isVet === "1") { | |
| document.getElementById("RATETABLEIDHERE").style.display = "block"; | |
| var cip = new Image(); | |
| cip.src = | |
| "CAKEIMPRESSIONPIXELURLHERE"; | |
| cip.setAttribute("width", "1"); | |
| cip.setAttribute("height", "1"); | |
| cip.setAttribute("border", "0"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Locate your ~/.zshrc file on mac os | |
| # Add the below line | |
| export PATH=${PATH}:/usr/local/mysql/bin/ | |
| # Save the file |
NewerOlder