Skip to content

Instantly share code, notes, and snippets.

View caiogondim's full-sized avatar

Caio Gondim caiogondim

View GitHub Profile
@max-mapper
max-mapper / bibtex.png
Last active March 10, 2024 21:53
How to make a scientific looking PDF from markdown (with bibliography)
bibtex.png
@okdistribute
okdistribute / index.js
Last active January 28, 2019 08:29
dat with webrtc
var webrtc = require('webrtc-swarm')
var signalhub = require('signalhub')
var hyperdrive = require('hyperdrive')
var memdb = require('memdb')
var pump = require('pump')
var DEFAULT_SIGNALHUBS = 'https://signalhub.mafintosh.com'
var drive = hyperdrive(memdb())
@ankurk91
ankurk91 / github_gpg_key.md
Last active April 9, 2024 16:34
Signing git commits using GPG (Ubuntu/Mac)

Github : Signing commits using GPG (Ubuntu/Mac) 🔐

  • Do you have an Github account ? If not create one.
  • Install required tools
  • Latest Git Client
  • gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
@lethee
lethee / env.py
Created March 21, 2016 07:53
Sublime Text 3: Apply NVM environment
# Save this file
# mac - "~/Library/Application Support/Sublime Text 3/Packages/"
# linux - "~/.config/sublime-text-3/Packages/"
# NOTE!
# ~/.nvm/alias/default must contain full version name.
# $ nvm alias default v4.3.5
import os
@addyosmani
addyosmani / package.json
Last active January 18, 2024 21:31
npm run-scripts boilerplate
{
"name": "my-app",
"version": "1.0.0",
"description": "My test app",
"main": "src/js/index.js",
"scripts": {
"jshint:dist": "jshint src/js/*.js",
"jshint": "npm run jshint:dist",
"jscs": "jscs src/*.js",
"browserify": "browserify -s Validating -o ./dist/js/build.js ./lib/index.js",
@kevincennis
kevincennis / v8.md
Last active May 6, 2024 05:25
V8 Installation and d8 shell usage

Installing V8 on a Mac

Prerequisites

  • Install Xcode (Avaliable on the Mac App Store)
  • Install Xcode Command Line Tools (Preferences > Downloads)
  • Install depot_tools
    • $ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
    • $ nano ~/.zshrc
    • Add path=('/path/to/depot_tools' $path)

Almir

  • 17/02/2013 Post Web Audio Hero: 19 heinekens / 0 pagas
  • 10/03/2013 Post Propagação de eventos em JS: 3 heinekens / 0 pagas

Caio

  • 10/02/2013 Post Eventos online e offline: 5 heinekens / 5 pagas
  • 03/03/2013 Post Console e command line API: 3 heinekens / 0 pagas
@almirfilho
almirfilho / wednerday.md
Last active October 6, 2015 08:08
Wednerday do Loop Infinito

Wednerday

  1. 10/05/2012 - Foundation #16: Kevin Systrom (Instagram) @almirfilho@caiogondim
  2. 17/05/2012 - Foundation #01: Jack Dorsey (Twitter) @almirfilho@caiogondim@yurigoytacaz
  3. 24/05/2012 - Foundation #10: Dennis Crowley (Foursquare) @almirfilho@caiogondim@yurigoytacaz
  4. 13/06/2012 - WWDC 2012 @almirfilho@caiogondim
  5. 20/06/2012 - The True Story of Internet Ep. 1: Browser Wars @almirfilho@caiogondim@joseriosneto
  6. 28/06/2012 - The True Story of Internet Ep. 2: The Search @almirfilho@caiogondim[@yurigoytacaz](http://twitter.com/yur

FrontCalendar

Na falta de um site decente e realmente atualizado com os eventos de front-end que vão rolar, dê um pulo aqui ;)

Finalmente temos um site decente para listar os eventos, por isso a partir de agora essa lista não será mais atualizada e todos os esforços estarão concentrados na página de Eventos do BrazilJS.

@jlong
jlong / uri.js
Created April 20, 2012 13:29
URI Parsing with Javascript
var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"