This file contains hidden or 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
https://github.com/EsotericSoftware/tablelayout#cell-properties |
This file contains hidden or 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
https://www.cs.uic.edu/~liub/FBS/fake-reviews.html |
This file contains hidden or 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
@article{sentiment-analysis, | |
doi = {10.1007/s10489-013-0463-3}, | |
title = {Sentiment analysis based on clustering: a framework in improving accuracy and recognizing neutral opinions}, | |
author = {Li, Gang; Liu, Fei}, | |
publisher = {Springer US}, | |
journal = {Applied Intelligence}, | |
issnp = {0924-669X}, | |
issne = {1573-7497}, |
This file contains hidden or 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
.map{ |k,v| puts k if k.to_date.year == year }.first |
This file contains hidden or 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
@book{book:787778, | |
title = {Advances in Applied Economics, Business and Development: International Symposium, ISAEBD 2011, Dalian, China, August 6-7, 2011, Proceedings, Part II}, | |
author = {Chu Huang (auth.), Qingyuan Zhou (eds.)}, | |
publisher = {Springer-Verlag Berlin Heidelberg}, | |
isbn = {3642230199,9783642230196}, | |
year = {2011}, | |
series = {Communications in Computer and Information Science 209}, | |
edition = {1}, | |
volume = {}, | |
} |
This file contains hidden or 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
filho(Y,X) :- progenitor(X,Y). | |
mae(X,Y) :- progenitor(X,Y),feminino(X). | |
irma(X,Y) :- progenitor(Z,X),progenitor(Z,Y),feminino(X). | |
avó(X,Y) :- progenitor(X,_Z), progenitor(_Z,Y),feminino(X). | |
avô(X,Y) :- progenitor(X,_Z), progenitor(_Z,Y),masculino(X). | |
joao maria jose julia jorge ana iris |
This file contains hidden or 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
youtube-dl -o $2 -f m4a $1 | |
soundconverter -b $2 | |
new="$2.ogg" | |
mp3splt -s $new | |
rm -Rf $2 $new -v |
This file contains hidden or 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
'use strict'; | |
const _ = require('lodash'); | |
const Promise = require('bluebird'); | |
const fs = require('fs'); | |
const mysql = require('mysql'); | |
const Sequelize = require('sequelize'); | |
const config = require('config'); | |
const database = config.get('database'); |
This file contains hidden or 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
Download omnetpp for Linux on https://omnetpp.org/omnetpp | |
Install some of relevant libs sudo apt-get update; sudo apt-get install bison flex qt4-dev-tools tk8.6-dev | |
Check if you have tk library installed (install with apt if you have not it, I guess it is ), probably it is located in /usr/share... sudo ln -s /usr/bin /usr/share/tcltk/tk8.6/ | |
cd omnetpp-5.0/ -./configure | |
make | |
Test it with: cd samples/dyna && ./dyna If the eclipse-like IDE opens, its all okay. Otherwise, a error message comes from terminal. |
This file contains hidden or 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
{ | |
"connection1": { | |
"host": "10.0.0.208", | |
"user": "", | |
"password": "", | |
"database": "bd_grafite_demonstracao_20170809" | |
}, | |
"connection2": { | |
"host": "10.0.0.208", | |
"user": "", |
OlderNewer