This file contains 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
// you can write to stdout for debugging purposes, e.g. | |
// console.log('this is a debug message'); | |
function isLeapYear(year) { | |
return year % 4 === 0 | |
} | |
const months = [ | |
'January', | |
'February', | |
'March', |
This file contains 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
while read pr; do | |
echo "Reviewing $pr" | |
gh pr review "$pr" --approve" | |
done <list-prs.txt |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width"> | |
<meta charset="UTF-8"> | |
<title>DFP</title> | |
</head> | |
<body> | |
<script async="async" src="https://www.googletagservices.com/tag/js/gpt.js"></script> | |
<script> |