Skip to content

Instantly share code, notes, and snippets.

View Vijaysinh's full-sized avatar
🌶️
Working from home

Vijaysinh Parmar Vijaysinh

🌶️
Working from home
View GitHub Profile
@Vijaysinh
Vijaysinh / s3link-v4.php
Created August 6, 2021 07:15 — forked from kelvinmo/s3link-v4.php
PHP code to generate a pre-signed URL to access a restricted AWS S3 object
@Vijaysinh
Vijaysinh / gdn-placement-analysis
Created March 8, 2021 06:22 — forked from derekmartinla/gdn-placement-analysis
Find Underperforming Placements & Opportunities On Google Display Network
// 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>";
@Vijaysinh
Vijaysinh / CORS_App.js
Created February 16, 2021 06:16
Node JS CORS Enable
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({
@Vijaysinh
Vijaysinh / FieldMasks.php
Created January 21, 2021 08:38
Adwords FieldMasks file
<?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
@Vijaysinh
Vijaysinh / GoogleAppScript.js
Created December 19, 2020 09:40
Find File in google drive and update file url from gdrive to Google Sheet with preview.
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));
@Vijaysinh
Vijaysinh / xmlerrorparse.js
Last active December 8, 2020 13:58
VersionOne API XML Error Parsing using JS DOMParser
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>
@Vijaysinh
Vijaysinh / shapeArea.js
Last active December 3, 2020 08:58 — forked from nick3499/shapeArea.js
CodeFights: shapeArea(n) Challenge
// https://nick3499.medium.com/codefights-shape-area-challenge-3319d3e6dc62
function shapeArea(n) {
init = 1;
return init + (n * ((n - 1) * 2));
}
console.log(shapeArea(4));
@Vijaysinh
Vijaysinh / adjacentElementsProduct
Created December 3, 2020 08:54 — forked from stahnni/adjacentElementsProduct
adjacentElementsProduct from codefights
/*
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.
@Vijaysinh
Vijaysinh / theme.js
Created November 19, 2020 10:23
toggle-theme-js
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 {
@Vijaysinh
Vijaysinh / Get_ads_KPIs_HourOfDay.py
Created October 6, 2020 06:26 — forked from lylayang/Get_ads_KPIs_HourOfDay.py
Get_ads_spend_HourOfDay.py
"""
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