Filters for turning Gmail into a productive workspace.
All the unread emails
is:unread
| "use strict"; | |
| const PR_NUMBER = "2454"; // pr number for master to production merge | |
| const execSync = require("child_process").execSync; | |
| const getCommitsUnderPrQuery = `gh pr view ${PR_NUMBER} --json "commits"`; | |
| const commitsUnderPrQueryResponse = JSON.parse( | |
| execSync(getCommitsUnderPrQuery, (error, stdout, stderr) => stdout).toString() |
| "use strict"; | |
| const AFTER_DATE = "2024-12-02"; | |
| const MY_GITHUB_ID = "ravgeetdhillon"; | |
| const REPOS = ["cloudanswers/designeradvantage-2"]; | |
| const beautifyCommitObject = ({ | |
| messageBody, | |
| messageHeadline, | |
| prNumber, |
| import requests | |
| import os | |
| def get_urls(content): | |
| ''' | |
| Parses the css file and retrieves the font urls. | |
| Parameters: | |
| content (string): The data which needs to be parsed for the font urls. |
| var ajax = new XMLHttpRequest(); | |
| ajax.onreadystatechange = function() { | |
| if (ajax.status == 200 && ajax.readyState == 4) { | |
| var answer = document.createElement( 'html' ); | |
| answer.innerHTML = ajax.responseText; | |
| console.log(answer.querySelector('.language-python').innerHTML); | |
| } | |
| } |
| export const state = () => ({ | |
| categories: [] | |
| }); | |
| export const mutations = { | |
| setCategories(state) { | |
| state.categories = [ | |
| "Pablo", | |
| "Automotor", | |
| "Compras", |
**/node_modulesprettier --write "**/*.js" *Don't forget the quotes.