I hereby claim:
- I am ziahamza on github.
- I am hzia (https://keybase.io/hzia) on keybase.
- I have a public key ASBjih4F59GEgux8dewBb-OkET5v08p_jQGuVPhq9V97Mwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #include <iostream> | |
| #include "webrtc/pc/peerconnectionfactory.h" | |
| #include "webrtc/api/mediastreaminterface.h" | |
| #include "webrtc/api/datachannelinterface.h" | |
| #include "webrtc/api/peerconnectioninterface.h" | |
| #include "webrtc/api/test/fakeconstraints.h" | |
| using namespace std; | |
| class TestConnectionObserver : public webrtc::PeerConnectionObserver | |
| { |
| FROM ruby:2.4.1 | |
| RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs cmake postgresql-client | |
| RUN mkdir /rainforest | |
| WORKDIR /rainforest | |
| ADD ../Rainforest/Gemfile /rainforest/Gemfile | |
| ADD ../Rainforest/Gemfile.lock /rainforest/Gemfile.lock | |
| RUN bundle install | |
| ADD ../Rainforest /rainforest |
| #!/usr/bin/env python | |
| # vim: ts=4:sw=4:expandtab:autoindent: | |
| import os | |
| import sys | |
| import requests | |
| import filecmp | |
| from fabric.context_managers import hide, settings, prefix | |
| from fabric.api import sudo, task, run, cd, env | |
| from fabric.contrib.console import confirm | |
| from fabric.colors import green |
| Name: Hamza Zia | |
| Date of Birth: 4 Dec, 1993 | |
| Current Location: Dietikon, Zurich, Switzerland | |
| Introduction | |
| ------------ | |
| I work, travel and study at the same time. Highly passionate computer geek. Deply in love with Unix, C, Haskell, Rust (recently), Go, Javascript (NodeJS!!), C# (sometimes) and the Linux kernel. | |
| Past Internship/Work Experience | |
| ------------------------------- |
| var http = require('http'), | |
| fs = require('fs'), | |
| path = require('path'), | |
| exec = require('child_process').exec; | |
| function pipeDoc(inputPath, finalType, stream) { | |
| var finalPath = path.dirname(inputPath) | |
| + "/" + path.basename(inputPath).split('.')[0] + ".html"; | |
| var convCommand = 'unoconv -f ' + finalType + " " + inputPath; | |
| exec(convCommand,function(err, stdout, stderr) { |