I hereby claim:
- I am jpopesculian on github.
- I am jpopesculian (https://keybase.io/jpopesculian) on keybase.
- I have a public key whose fingerprint is F352 E523 51D1 77AE 862C 27C5 B66E 62C3 1A7B 7846
To claim this, I am signing this object:
| ### | |
| ! | |
| The MIT License | |
| Copyright (c) 2010-2013 Google, Inc. http://angularjs.org | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| from scrapy import Spider, Request | |
| from project.items import ETFItem | |
| class ETFSpider(Spider): | |
| name = "etf" | |
| allowed_domains = ["http://finance.yahoo.com/"] | |
| SETTINGS = { | |
| "url": "http://finance.yahoo.com/etf/lists?mod_id=mediaquotesetf&tab=tab6&scol=nasset&stype=desc&rcnt=100&page=", | |
| "num_pages": 17 | |
| } |
I hereby claim:
To claim this, I am signing this object:
| // Mongo Shell Script | |
| DB_NAME = "" | |
| // HOST = "localhost" | |
| // PORT = "27017" | |
| // db = connect(HOST + ":" + PORT + "/" + DB_NAME) | |
| conn = new Mongo() | |
| db = conn.getDB(DB_NAME) |
| import requests | |
| HOST = "http://localhost:3000" | |
| ADMIN_USERNAME = "jpopesculian" | |
| ADMIN_PASS = "password" | |
| NUM_USERS = 500 | |
| NUM_ROOMS = 2 |
| const Stripe = require('stripe') | |
| const MongoClient = require('mongodb').MongoClient | |
| const diff = require('deep-diff').diff | |
| const assert = require('assert') | |
| const STRIPE_KEY = process.env.STRIPE_KEY | |
| const MONGO_URL = process.env.MONGO_URL | |
| MongoClient.connect(MONGO_URL, (err, db) => { | |
| assert.equal(err, null) |
WebRTC is a protocol that has been standardized in recent years among major browsers like Chrome, Firefox, Opera and the Android Browsers. Plugins/Native Implementations are available on IE/Edge/Safari and iOS/Android basically providing a relatively global protocol for real time media streams. However WebRTC is a P2P protocol which means that if a user wishes to broadcast his/her video to multiple users he/she needs to individually send that broadcast to each participant. This works on a small scale, but degrades quickly on a large scale due to bandwidth deterioration.
One possible solution is to let the user stream his/her media to a server and the server in turn splits the media streams to the subscribers. There are two technical ways to do this. A Selective Forwarding Unit (SFU) which simply forwards streams, and a Multipoint Control Unit (MCU) which essentially does the same thing but lowers bandwidth usage by packaging streams together.
| # CONFIG PORTS | |
| METEOR_PRIMARY_PORT=3001 | |
| METEOR_SECONDARY_PORT=3002 | |
| MONGO_PRIMARY_PORT=28001 | |
| MONGO_SECONDARY_PORT=28002 | |
| MONGO_ARB_PORT=28003 | |
| # DOCKER CONTAINER NAMES | |
| MONGO_PRIMARY_NAME="mongo-primary" | |
| MONGO_SECONDARY_NAME="mongo-secondary" |
| <template name="example"> | |
| <button id="button">{{buttonName}}</button> | |
| </template> |
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| Version: Keybase OpenPGP v2.0.49 | |
| Comment: https://keybase.io/crypto | |
| xsFNBFZQ3yMBEACZaXMiCCpCJMxmJ43r2Gq4CwhJE2qD+UDeoDTqJgWi1o8NjrtT | |
| qLUSHLFcvONJ6ESYSDEbBQmbh9+HuwCq8uat5lbICk4wGeNIFVmn5RGeQVbmtvH0 | |
| m3ZDhzmLcL3sHvKx43YrbpPzU/sJryhnq/VzS/Rcmr7G/dZvGmXYx0MTZ6q5AoGl | |
| 69/lIrT/v+shnBcj9QHfcQar/ODRTUnLn2lJq4Ty4S11B5UIhfA/FWmMuCNof2Za | |
| ic9ZbQvT2szgwfTHN2HnYjNwzgSEQ5phpzMqesJA8p6AAcRULjEk8/N0CYYLyETH | |
| yAGGLD5gdJWQgkO/+n0DWbREruUWyFxgDMH99uA1/J7zzeJ6dBhKyM4DUTREaaLA |