Step 1: Get Token
Generate the firebase token from your terminal using the command $ firebase login:ci
Waiting for authentication...
✔ Success! Use this token to login on a CI server:
1/VXXXXXXX--YOUR-FIREBASE-CI-TOKEN--XXXXXh92o
#!/bin/bash | |
D=/home/www-sftp | |
U=$1 | |
if [ "$EUID" -ne 0 ]; then | |
echo "Requires root permission .." | |
echo "Usage: 'sudo $0 newusername'" | |
exit 1 | |
fi |
# Streaming Client | |
import socket | |
HOST = 'localhost' | |
PORT = 50007 | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
s.connect((HOST, PORT)) | |
while True: |
<RoutingRules> | |
<RoutingRule> | |
<Condition> | |
<KeyPrefixEquals/> | |
<HttpErrorCodeReturnedEquals>404</HttpErrorCodeReturnedEquals> | |
</Condition> | |
<Redirect> | |
<Protocol>https</Protocol> | |
<HostName>xxx1x11xxx.execute-api.us-east-1.amazonaws.com</HostName> | |
<ReplaceKeyPrefixWith>prod/convert?key=</ReplaceKeyPrefixWith> |
function isClassComponent(component) { | |
return typeof component === 'function' | |
&& !!component.prototype.isReactComponent | |
} | |
function isFunctionComponent(component) { | |
return typeof component === 'function' | |
// && !!String(component).includes('return React.createElement') // may fails | |
&& React.isValidElement(Component()) | |
} |
The various approach followed for upload service
# Schema Spy | |
java -jar /usr/local/bin/schemaSpy_5.0.0.jar -dp /home/androbabu/softwares/jar/mysql-connector-java-5.1.28.jar -t mysql -host localhost -db $1 -u root -p password -o .schema | |
# Git Tree Log | |
git log --graph --all --pretty=format:"%C(auto)%h%d %s %C(dim)(%an) %aD" | |
git config --global alias.tree 'log --graph --all --pretty=format:"%C(auto)%h%d %s %C(dim)(%an) %aD"' | |
git tree |
const validate = require('jsonschema').validate; | |
let schema = { | |
"type": "object", | |
"properties": { | |
"x": { | |
"display": "X Coordinate", // This is some extra field that we give for our purpose | |
"type": "number", | |
"required": true // error says like 'is required' | |
}, |
// source: https://gist.github.com/chinchang/8106a82c56ad007e27b1#file-xmltojson-js | |
function xmlToJson(xml) { | |
if (typeof xml === 'string') { | |
parser = new DOMParser(); | |
xml = parser.parseFromString(xml, 'text/xml'); | |
} | |
// Create the return object | |
var obj = {}; |
resources: | |
Resources: | |
TestOneBucket: | |
Type: AWS::S3::Bucket | |
Properties: | |
BucketName: ${self:service}-${self:provider.region}-test-one | |
CorsConfiguration: | |
CorsRules: | |
- AllowedOrigins: ['*'] | |
AllowedHeaders: ['*'] |