create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
# use UTF8 | |
#set -g utf8 | |
#set-window-option -g utf8 on | |
# --------------------- | |
# General config | |
# --------------------- | |
# Reduce the escape time for ESC key to avoid delays inside neovim |
curl --request POST --data '{"name": "bahia", "formula": "1", "id": "1"} | |
' http://localhost:8000/conversion -H 'content-type: application/json' |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
var expect = chai.expect; | |
function test() { | |
return arguments[0]; | |
} | |
var testJSON = __html__['test/fixtures/test.json']; | |
var CID = 1; | |
function fn() { | |
CID++; | |
} | |
var obj = { |
:g!/pattern/-2d |
args **/**.js.erb | argdo execute '%s/<%= I18n.t \(.*\) %>/I18n.t(\1)/g' | update |
:%s/\"\/assets\/\(.*\)" /"<%= asset_path "\1\" %>" /g |
{ | |
"connection1": { | |
"host": "10.0.0.208", | |
"user": "", | |
"password": "", | |
"database": "bd_grafite_demonstracao_20170809" | |
}, | |
"connection2": { | |
"host": "10.0.0.208", | |
"user": "", |
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. |
'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'); |