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
| FROM php:7.4-fpm-alpine | |
| LABEL mantainer="[email protected]" | |
| LABEL description="PHP alpine - docker container with dependencies and gRPC extension " | |
| # # # | |
| # Install build dependencies | |
| # # # | |
| ENV build_deps \ | |
| autoconf \ |
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
| #!/bin/sh | |
| # Git proxy settings | |
| echo "Configuring Git for compatibility with ZScaler..." | |
| git config --global http.proxy http://gateway.zscaler.net:80/ | |
| git config --system http.proxy http://gateway.zscaler.net:80/ |
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
| // source: https://ctrlq.org/code/19702-twitter-image-upload | |
| function autoTweet() { | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
| var sheet = ss.getSheetByName("schedule"); // This must match the sheet name! | |
| var rows = sheet.getRange("A:D").getValues(); | |
| var titleList = [], newValues = [], | |
| response, doc, title; | |
| var twitterCallback = function(rowIndex, err, result) { |
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
| -- Remove the history from | |
| rm -rf .git | |
| -- recreate the repos from the current content only | |
| git init | |
| git add . | |
| git commit -m "Initial commit" | |
| -- push to the github remote repos ensuring you overwrite history | |
| git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |