Repo | Number of Open Issues |
---|---|
rest-api-sdk-php | 18 |
PayPal-Android-SDK | 15 |
PayPal-iOS-SDK | 12 |
Windows8SDK | 10 |
def merge_interval(low_priority_lst,high_priority_lst): | |
''' | |
Given two lists with date ranges, return merged list with high_priority_lst ranges preferred over | |
preferred over low_priority_lst ranges in case of intersection. Partial intervals are allowed. | |
''' | |
if low_priority_lst == [] or low_priority_lst == None: return high_priority_lst | |
if high_priority_lst == [] or high_priority_lst == None: return low_priority_lst | |
# k way merge interval, also may need to mark which array it belongs to | |
# case : |-------| |
String file |
ANDROID BOOTCAMP CLASS NOTES JUNE 09-13 | |
========= | |
##DAY 1 (Ecosystem, Android Architecture, Security) | |
- developer.android.com is home for android tutorial, documentation and news. source.android.com is the url to get source for Android | |
- android not good for moving huge chunks of data | |
- |
With the release of the subscription (recurring payment) APIs from PayPal, it is possible to create your anything-as-a-service buisness faster than ever. SDK integrations provide a native way to integrate with the PayPal APIs in the language of your choice. In this tutorial, we will walk through a sample application built using the PayPal Python sdk, the microframework Flask, Bootstrap for UI and Heroku for deployment.
If you have not already, get your credentials from PayPal Developer Portal and see the Subscription api docs. Afterwards, set up the Python sdk. It may also be worth checking out Flask to see how to set up a simple web application (hello world is only 7 lines long!).
Being able to target users and send targeted notifications can be key to turn visitors into conversions and tighten your funnel. Offerings such as mailchimp and mixpanel offer ways to reach out to users but in most of those cases you only get to do them in post processing. However, there are situations when it would be really powerful is to be able to track users as they are navigating your website and send targeted notifications to them.
###Use Cases Imagine that a buyer is looking for cars to buy and is interested in vehicles of a particular model and brand. It is very likely that he/she will visit several sites to compare prices. If there are a few results the buyer has looked at already, there may be an item which would fit the profile of this user. If you are able to prompt and reach out as the user is browsing through several results, it could make the difference between a sale and user buying from a different
###Isomorphic JS
- challenges/tradeoffs in writing identical code client/server side
- write once, render anywhere
- State does not live in the template
- existing problem in server side rendering - how to present local timezone that represents client without passing client's timezone
- Serving side is first class citizen in React
- ways people have been getting around polyfills on polyfills, leveldb-browserify, leveljs
##Takeaways
- Early trends: PhotoAlbum, On Demand TV, Games, Photo heavy apps e.g. Airbnb, Education for children
- Apple puts a significant amount of preparation into their presentation. They follow a prompt and all talks follow exact same format.
- It is early for tvOS but the constraints are interesting. Always connected device, need to access much bigger volume of resources.
- Emphasize making an app designed for living room
- tvOS app store has about 40% paid apps as opposed to 10% on iOS, but early to draw conclusion.
- The framework provides utilites tailored specific to tv experiences, subtitles, playback, ratings, product catalogue information etc.
##INTRO
'use strict'; | |
/** | |
* Module dependencies. | |
*/ | |
var mongoose = require('mongoose'), | |
AWS = require('aws-sdk'), | |
exec = require('child_process').exec, | |
fs = require('fs'), | |
name = new Date().toISOString(); |