Skip to content

Instantly share code, notes, and snippets.

View julianduque's full-sized avatar
😈
Heroku DevRel

Julián Duque julianduque

😈
Heroku DevRel
View GitHub Profile
Verifying that +julianduque is my blockchain ID. https://onename.com/julianduque
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Streaming</title>
</head>
<body>
<img id="video" />
<script src="/socket.io/socket.io.js"></script>
<script>
import React, { Component } from 'react'
export default class Profile extends Component {
constructor() {
super()
this.handleClick = (e) => {
console.log(this.props)
}
}
root@leviathan:~# cat /etc/nginx/sites-enabled/medellinjs 
server {
  server_name medellinjs.org www.medellinjs.org;

  location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
 proxy_set_header X-NginX-Proxy true;
@julianduque
julianduque / latamconfs.md
Last active August 29, 2015 14:14
JS Latam Conferences

Keybase proof

I hereby claim:

  • I am julianduque on github.
  • I am julianduque (https://keybase.io/julianduque) on keybase.
  • I have a public key whose fingerprint is 5482 7343 0CCC C348 8925 2769 FC92 F450 09DA B688

To claim this, I am signing this object:

@julianduque
julianduque / levelup.md
Last active August 29, 2015 14:10 — forked from dshaw/levelup.md
Leveling up in Node.js

Core Concepts

Required

  • Understand JavaScript / Node.js Asynchronous nature
  • Understand callbacks, EventEmitter and error handling
  • Understand both async and sync Filesystem API
  • Feel comfortable writing Node.js modules
  • Write http server and clients
@julianduque
julianduque / index.html
Created October 19, 2014 22:45
Realtime Webcam with Primus and OpenCV
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HAN-Bot Realtime</title>
<script src="/primus/primus.js"></script>
</head>
<body>
<img id="camera" />
<script>
@julianduque
julianduque / bbb.sh
Last active August 16, 2022 14:14
Share internet with BeagleBone Black
#!/bin/bash
# bbb.sh -- Share Internet with the BeagleBone Black
# using my Linux HOST as a router
bbbAddr="192.168.7.2"
hostAddr="192.168.7.1"
# Configure IP forwarding on HOST
echo "Setting up Routing"
sudo iptables -A POSTROUTING -t nat -j MASQUERADE
@julianduque
julianduque / rc.lua
Created July 9, 2014 18:55
Awesome Setup
-- Standard awesome library
local gears = require("gears")
local awful = require("awful")
awful.rules = require("awful.rules")
require("awful.autofocus")
-- Widget and layout library
local wibox = require("wibox")
local vicious = require("vicious")
-- Theme handling library
local beautiful = require("beautiful")