This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.
⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.
| // this is our imaginary package "react-lazy" | |
| import React, { Component, createElement } from 'react'; | |
| import { Redirect } from 'react-router-dom'; | |
| import { observer } from 'mobx-react'; | |
| import { observable } from 'mobx'; | |
| /** | |
| * This is generic module interface. We assume that we can access React components. | |
| */ | |
| export interface FetchedModule { |
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
In this tutorial we are going to show how easy it is to build a notification feed using GetStream.io. First of all, let's quickly introduce you to our fictional example app. It's called bug-your-friends.com and allows you interact with your friends, ping them, follow them or poke them. Here's a quick list of example interactions:
Whenever a user is part of one of these interactions, we want to update his notification feed, update the number of unseen and unread
Host system: Ubuntu 12.04 LTS with DHCP server: (root)
Interfaces:
eth0 => Raspberry Pi
wlan0 => Internet (WLAN access point)
Installation:
apt-get install isc-dhcp-server
| // Based on Glacier's example: http://docs.aws.amazon.com/AWSJavaScriptSDK/guide/examples.html#Amazon_Glacier__Multi-part_Upload | |
| var fs = require('fs'); | |
| var AWS = require('aws-sdk'); | |
| AWS.config.loadFromPath('./aws-config.json'); | |
| var s3 = new AWS.S3(); | |
| // File | |
| var fileName = '5.pdf'; | |
| var filePath = './' + fileName; | |
| var fileKey = fileName; |