sudo apt-get install python3-pip
sudo pip3 install virtualenv
byte[] rawBytes = ProtoBufSerializer.ProtoSerialize<LoginRequest>(loginRequest); | |
var client = new HttpClient(); | |
client.BaseAddress = new Uri("http://localhost/"); | |
client.DefaultRequestHeaders.Accept.Add( | |
new MediaTypeWithQualityHeaderValue("application/x-protobuf")); | |
var byteArrayContent = new ByteArrayContent(rawBytes); | |
byteArrayContent.Headers.ContentType = new MediaTypeHeaderValue("application/x-protobuf"); |
if(process.argv.length < 3){ | |
console.log('target file path is required.') | |
process.exit(1) | |
} | |
var target = process.argv[2] | |
console.log('file: ' + target) | |
var fs = require('fs') | |
fs.readFile(target, function (err, data) { |
https://github.com/akshaybahadur21 | |
https://github.com/mateuszjurewicz | |
https://github.com/rinormaloku | |
https://github.com/NirantK | |
http://nirantk.com/nlp-python-deep-learning/ | |
https://github.com/r0b1n1sl4m/react-redux-firebase-todo | |
https://zety.com/ | |
https://zety.com/resume-templates#1 |
npm install -g npm
# Downgrade to a specific version
npm install -g npm@2
(from Understanding Nginx Server and Location Block Selection Algorithms - https://goo.gl/YyzshP)
server {
#just local expose | |
rpc_address = your_server_IP ( it's on localhost) | |
rpc_start = true ( he is on false) |