Skip to content

Instantly share code, notes, and snippets.

View JhonatanMedeiros's full-sized avatar
💻
Code <3

Jhonatan Hardt de Medeiros JhonatanMedeiros

💻
Code <3
View GitHub Profile
@JhonatanMedeiros
JhonatanMedeiros / arithsyntaxtree.js
Created June 4, 2020 18:47 — forked from rfink/arithsyntaxtree.js
Create a basic arithmetic syntax tree using javascript
function AstNode(operator, left, right) {
this.operator = operator;
this.left = left;
this.right = right;
}
AstNode.prototype.evaluate = function() {
return this.operator(this.left.evaluate(), this.right.evaluate());
};
@JhonatanMedeiros
JhonatanMedeiros / embedded-file-viewer.md
Created May 26, 2020 15:48 — forked from tzmartin/embedded-file-viewer.md
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@JhonatanMedeiros
JhonatanMedeiros / release.js
Created May 26, 2020 15:45
Script Release
// External Libs
const { promisify } = require('util');
const inquirer = require('inquirer');
const args = require('minimist')(process.argv);
const exec = promisify(require('child_process').exec);
const { inc, valid } = require('semver');
// Project Imports
const { read, write } = require('./util');
const pkg = require('../package.json');
1-In the github repo on Settings > Integration & Services, enable
2-Go to travisCI page and enable the repo
3-Configure the env variables on TravisCI so that it is not necessary to save credentials on github
-in the project Settings on TravisCI, add the entry for netlify site id: NETLIFY_SITE_ID - <site_id from .netlify file generated on netlify create>
-create a netlify access token for TravisCI
-On Netlify Dashboard, Go to Account Settings > OAuth Applications (https://app.netlify.com/account/applications) > Personal access tokens and press New Access Token
-Name it anything, but to make it easier the suggestion is name TravisCI.
-Generate it and COPY it - you won’t see it again!
-in the project Settings on TravisCI, add the entry for netlify personal access token generated for TravisCI: NETLIFY_ACCESS_TOKEN
4-Generate a .travis.yml file in the local repo