updated 2021-06-23
Version 2105 (Build 14026.20302)
==========================================
https://github.com/alsyundawy/Microsoft-Office-For-MacOS?tab=readme-ov-file | |
https://officecdnmac.microsoft.com/pr/C1297A47-86C4-4C1F-97FA-950631F94777/MacAutoupdate/Microsoft_Excel_16.77.23091703_Updater.pkg |
Office 2013 Home and Student Russian https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=HomeStudentRetail | |
Office 2013 Home and Business https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=HomeBusinessRetail | |
Office 2013 Professional https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=ProfessionalRetail | |
Office 2013 Professional Plus https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=ProPlusRetail | |
Word 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=WordRetail | |
Excel 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=ExcelRetail | |
PowerPoint 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=PowerPointRetail | |
Outlook 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=OutlookRetail | |
Publisher 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=PublisherRe |
import fs from "fs"; | |
import path from "path"; | |
import crypto from "crypto"; | |
import GoogleLibPhone from "google-libphonenumber"; | |
import moment from "moment"; | |
/** | |
* get date instance by timezone | |
* @param date | |
* @param timeZone |
package main | |
import ( | |
"fmt" | |
"os" | |
"path/filepath" | |
) | |
// crate a map of file extensions to folders | |
// folderMap := make(map[string]string) |
{ "keys":[{"e":"AQAB","kty":"RSA","n":"pL9d9fK4sCpxE8M61TlExZpjkZLJ_POXGk5SgS3LtXxI64OvvaBGmwPHUYpfPUNa4BuwWloT4CD3vT218daInwbqTB2hMRKa2eUo_7O694RXTLx2f_doRbiuiJO7c8a3Sg5H6L4MuYAtUU8HgUCCVkUcrbW85bIuYw8_3UsJLIDkl4ZdWrMoYTPogatNyl9A5dRGTahuC0nSZxVSPn6g95gZP_ybkGooKVQb24aFUa2aEBOJwiqdJgvxPpyqLaktcfJcGpLJHHLcip34GAME9Y62RTrs9VEvo40xKSe6lALMSX9NgteImsxRIg_PYnSLOEit0lQDJZ6kqCqrAycIpQ"}]} |
const fetchKeys = (obj, keys) => { | |
const filteredObject = {}; | |
if (Array.isArray(keys)) { | |
keys.forEach((key) => { | |
// eslint-disable-next-line no-prototype-builtins | |
if (obj.hasOwnProperty(key)) { | |
filteredObject[key] = obj[key]; | |
} | |
}); | |
} else if (typeof keys === "string") { |
heroku config -s -a [app-name-on-heroku] > .env |
"aggs": { | |
"bank_card_metrics": { | |
"terms": { | |
"field": "cardBank.keyword" | |
}, | |
"aggs": { | |
"cards": { | |
"terms": { | |
"field": "cardType.keyword" | |
}, |
function request(bearerToken) { | |
return function () { | |
const client = restify.createJSONClient({ | |
url: process.env.GRUPP_API_URL, | |
version: "*", | |
}); | |
client.headers.authorization = `Bearer ${bearerToken}`; | |
return client; | |
}; |