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
<?php | |
/** | |
* Returns a pre-signed URL to access a restricted AWS S3 object. | |
* | |
* @param string $access_key the AWS access key | |
* @param string $secret_key the AWS secret key associated with the access key | |
* @param string $bucket the S3 bucket | |
* @param string $canonical_uri the object in the S3 bucket expressed as a canonical URI. | |
* This should begin with the / character, and should not be URL-encoded | |
* @param int $expires the time that the pre-signed URL will expire, in seconds |
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
// This script reviews your GDN placements for the following conditions: | |
// 1) Placements that are converting at less than $40 | |
// 2) Placements that have cost more than $50 but haven't converted | |
// 3) Placements that have more than 5K impressions and less than .10 CTR | |
function main() { | |
var body = "<h2>Google Display Network Alert</h2>"; | |
body += "<h3>Placements that are converting at less than $40:</h3> " ; | |
body += "<ul>"; |
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
var express = require('express'); | |
var app = express(); | |
var fs = require("fs"); | |
const bodyParser = require("body-parser"); | |
/** bodyParser.urlencoded(options) | |
* Parses the text as URL encoded data (which is how browsers tend to send form data from regular forms set to POST) | |
* and exposes the resulting object (containing the keys and values) on req.body | |
*/ | |
app.use(bodyParser.urlencoded({ |
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
<?php | |
/** | |
* Copyright 2018 Google LLC | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* https://www.apache.org/licenses/LICENSE-2.0 |
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
function testImageFile(){ | |
SearchFileInSpecificFolderID('o112'); | |
} | |
function readMySheet(){ | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var data = sheet.getDataRange().getValues(); | |
for (var i = 1; i < data.length; i++) { | |
Logger.log('Product name: ' + data[i][0] + "O"+(i+1)); |
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
xmlstring = | |
<Error href="/safetest/rest-1.oauth.v1/Data/Request/602092"> | |
<Message>Bad Request</Message> | |
<Exception class="VersionOne.DataException"> | |
<Message>Violation'ScopeMustBeActive</Message> | |
</Exception> | |
<Exception class="System.Data.SqlClient.SqlException"> | |
<Message>Violation'ScopeMustBeActive</Message> | |
</Exception> | |
</Error> |
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
// https://nick3499.medium.com/codefights-shape-area-challenge-3319d3e6dc62 | |
function shapeArea(n) { | |
init = 1; | |
return init + (n * ((n - 1) * 2)); | |
} | |
console.log(shapeArea(4)); |
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
/* | |
Given an array of integers, find the pair of adjacent elements that has the largest product and return that product. | |
Example | |
For inputArray = [3, 6, -2, -5, 7, 3], the output should be | |
adjacentElementsProduct(inputArray) = 21. | |
7 and 3 produce the largest product. |
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
function setTheme(themeName) { | |
localStorage.setItem('theme', themeName); | |
document.documentElement.className = themeName; | |
} | |
// function to toggle between light and dark theme | |
function toggleTheme() { | |
if (localStorage.getItem('theme') === 'theme-dark') { | |
setTheme('theme-light'); | |
} else { |
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
""" | |
Copyright (C) Lyla Yang - All Rights Reserved | |
Unauthorized copying of this file, via any medium is strictly prohibited | |
Proprietary and confidential | |
Written by Lyla Yang <https://www.linkedin.com/in/lyla-yang-aa850080/>, May 2019 | |
""" | |
""" | |
Reference of field attributes | |
https://developers.google.com/adwords/api/docs/appendix/reports#field-attributes |