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 FETCH(url1) { | |
var response = UrlFetchApp.fetch(url1); | |
var json = JSON.parse(response.getContentText()); | |
var output = []; | |
for (var i = 0; i < json.length; i++) { | |
var company = json[i]; | |
output.push(company.name); | |
output.push(company.domain); | |
output.push(company.logo); |
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
#!/bin/bash | |
# Make sites into bedrock or normal WordPress | |
# Version 2.0 | |
# Copyright (c) Kenny Eliason | |
set -a | |
source .env | |
set +a |
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
{ | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Roboto Mono", | |
"font_size": 13, | |
"ignored_packages": | |
[ | |
], | |
"line_padding_bottom": 10, | |
"line_padding_top": 10, |
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
[ | |
{ "keys": ["command+shift+r"], "command": "reindent"}, | |
{ "keys": ["ctrl+k", "ctrl+i"], "command": "title_case" } | |
] |