This file contains hidden or 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
Download Google Drive files with WGET | |
Example Google Drive download link: | |
https://docs.google.com/open?id=[ID] | |
To download the file with WGET you need to use this link: | |
https://googledrive.com/host/[ID] | |
Example WGET command: |
This file contains hidden or 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
## Originally coded by Trenton (http://www.hackyeah.com/?p=36) | |
## Amended by CirKu17 ( http://short-circuit.x10.mx ) | |
#!/usr/bin/env perl | |
use warnings; | |
use strict; | |
@ARGV || die "Missing filename argument $!\n"; |
This file contains hidden or 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 getWorkingDays = function(start,endCount,holidays){ | |
var weekdays = []; | |
var current = start; | |
var i = 0; | |
while(i < endCount){ | |
if (!isWeekEnd(current)) { | |
weekdays.push(current); | |
i++; | |
} |
This file contains hidden or 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 combineData(){ | |
var doc = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheets = doc.getSheets(); // get all the sheets | |
var outSheet = doc.getSheetByName("combined"); // set where we want to write the results | |
for (i in sheets){ // loop across all the sheets | |
if (sheets[i].getSheetName().substring(0,9) == "followers"){ // if sheetname starts with 'follower' then | |
var target = sheets[i].getSheetName().substring(12); // extract users name for target column | |
var data = getRowsData(sheets[i]); // get extisting data from current sheet | |
for (j in data){ | |
data[j]["target"] = target; // create a target column with the users name |