View api_key_line_on_pagespeed_script.js
var key = "YOUR_API_KEY"; |
View run_exe_file_in_wine
#open gemius explorer | |
tell application "Terminal" | |
do script "/usr/local/bin/wine ~/.wine/drive_c/Program\\ Files/Gemius/gemiusExplorer/gemiusExplorer.exe" | |
end tell |
View Hello Analytics.py
"""A simple example of how to access the Google Analytics API.""" | |
import argparse | |
from apiclient.discovery import build | |
from oauth2client.client import SignedJwtAssertionCredentials | |
import httplib2 | |
from oauth2client import client | |
from oauth2client import file |
View karatsuba.py
from random import randint | |
def karatsuba(x, y): | |
if (x<10) or (y<10): | |
return x*y | |
x_str = str(x) | |
x_n = len(x_str) | |
y_str = str(y) | |
y_n = len(y_str) |
View recursive_multiplication.py
from random import randint | |
def recursive_mult(x, y): | |
if (x<10) or (y<10): | |
return x*y | |
x_str = str(x) | |
x_n = len(x_str) | |
y_str = str(y) | |
y_n = len(y_str) |
View mobile-desktop_speed-optimization.gs
/** | |
* Returns Mobile Speed & Optimization and Desktop Speed & Optimization values in six adjacent columns | |
* by Cagri Sarigoz | |
*/ | |
function checkAll(Url) { | |
//CHANGE YOUR API KEY WITH YOUR_API_KEY BELOW | |
var key = "YOUR_API_KEY"; | |
var serviceUrlMobile = "https://www.googleapis.com/pagespeedonline/v4/runPagespeed?url=" + Url + "&strategy=mobile&key=" + key; | |
var serviceUrlDesktop = "https://www.googleapis.com/pagespeedonline/v4/runPagespeed?url=" + Url + "&strategy=desktop&key=" + key; |