Skip to content

Instantly share code, notes, and snippets.

View JMSantos94's full-sized avatar
🇻🇪

Jose Santos JMSantos94

🇻🇪
View GitHub Profile
@JMSantos94
JMSantos94 / clone-project.sh
Last active July 29, 2019 23:00
PDF - Report Generation
git clone [email protected]:JMSantos94/pug-a-tron.git
@JMSantos94
JMSantos94 / App.js
Created March 3, 2018 07:23
webpack-serve issues with __webpack_require__
import React from 'react';
import { hot } from 'react-hot-loader';
import './main.css';
const App = () => (
<h1>Hello Webpack-serve</h1>
);
export default hot(module)(App);
@JMSantos94
JMSantos94 / .tern-project
Created October 15, 2017 06:23
Tern config for node
{
"plugins": {
"es_modules": {},
"node": {}
},
"libs": [
"ecma5",
"ecma6",
"ecma7"
],
@JMSantos94
JMSantos94 / index.html
Last active March 18, 2017 07:24
JS Bin// source http://jsbin.com/febowu <= Click here Serge
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<script src="https://cdn.jsdelivr.net/momentjs/2.14.1/moment-with-locales.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.2.0/fullcalendar.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
@JMSantos94
JMSantos94 / renameTab.js
Last active October 25, 2016 22:11
This bookmarklet prompts the user for a new name on the current browser tab.
javascript:(function()%7Bdocument.title %3D prompt('New name for the current tab%3A'%2C 'Tab Name')%7D)()