This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Make external links open in new tabs without target property in html | |
$('a').each( function( index , element ) { | |
if( !element.href.contains(document.location.host) ) { | |
element.target = '_blank'; | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Autor: Eliezer Emanuel Bernart | |
// Data: 23/08/2014 | |
#include <opencv2/highgui/highgui.hpp> | |
#include <iostream> | |
#include <vector> | |
// Variáveis de controle | |
int escala = 15, | |
qualidade = 75; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*jslint vars: true, plusplus: true, devel: true, nomen: true, regexp: true, indent: 4, maxerr: 50 */ | |
/*global define, $, brackets */ | |
define(function (require, exports, module) { | |
"use strict"; | |
var CommandManager = brackets.getModule("command/CommandManager"), | |
WorkspaceManager = brackets.getModule("view/WorkspaceManager"), | |
Menus = brackets.getModule("command/Menus"), | |
myPanelTemplate = require("text!myPanel.html"), |