Skip to content

Instantly share code, notes, and snippets.

View victorsenam's full-sized avatar

Victor Sena Molero victorsenam

  • IME-USP
  • São Paulo, Brazil
View GitHub Profile
@runemadsen
runemadsen / plugin.rb
Created August 18, 2013 20:56
Generating pagination pages for multiple categories in Jekyll
module Jekyll
class Pagination < Generator
def generate(site)
end
end
class CategoryPages < Generator
safe true
@fidelisrafael
fidelisrafael / app.js
Last active August 26, 2021 02:15
Easy way to export data to XLS format using Node.js
// clone this gist to a empty folder, the run:
// npm init (and follow steps)
// npm install express --save
// npm install swig --save
// node app.js and open http://localhost:3000
function App() {
var express = require('express');