Skip to content

Instantly share code, notes, and snippets.

@mkonicek
mkonicek / most-active-contributors.json
Created March 14, 2016 00:04
Each comment on a React Native issue or pull request counts as 1 point.
Top 50 for most recent 500 issues, PRs:
{
"facebook-github-bot": 820,
"bestander": 209,
"mkonicek": 208,
"satya164": 186,
"janicduplessis": 93,
"grabbou": 83,
"brentvatne": 79,
"Kureev": 61,
@mkonicek
mkonicek / most-active-contributors.json
Created March 13, 2016 23:47
Each comment on a React Native issue or pull request counts as 1 point.
Top 50 for most recent 500 issues, PRs:
{
"facebook-github-bot": 820,
"bestander": 209,
"mkonicek": 208,
"satya164": 186,
"janicduplessis": 93,
"grabbou": 83,
"brentvatne": 79,
"Kureev": 61,
Top 10 for recent 1000 issues, PRs: Top 10 for all issues, PRs:
{ {
"facebook-github-bot": 1844, "facebook-github-bot": 5260,
"mkonicek": 381, "ide": 2796,
"satya164": 358, "brentvatne": 2310,
"bestander": 318, "satya164": 1525,
"janicduplessis": 189, "mkonicek": 1436,
"vjeux": 135, "vjeux": 1253,
"skevy": 132, "nicklockwood": 1046,
@mkonicek
mkonicek / top-active.json
Created March 13, 2016 23:41
Each comment on a React Native issue or pull request counts as 1 point.
Top 50 for most recent 500 issues:
{
"facebook-github-bot": 820,
"bestander": 209,
"mkonicek": 208,
"satya164": 186,
"janicduplessis": 93,
"grabbou": 83,
"brentvatne": 79,
"Kureev": 61,
@mkonicek
mkonicek / top-react-native-contributors.json
Last active March 13, 2016 23:40
Each comment on a React Native issue or pull request counts as 1 point.
Top 50 for most recent 500 issues:
{
"facebook-github-bot": 820,
"bestander": 209,
"mkonicek": 208,
"satya164": 186,
"janicduplessis": 93,
"grabbou": 83,
"brentvatne": 79,
"Kureev": 61,
Each comment on an issue on a PR counts as 1 point.
Top 50 for most recent 500 issues:
{
"facebook-github-bot": 820,
"bestander": 209,
"mkonicek": 208,
"satya164": 186,
"janicduplessis": 93,
"grabbou": 83,
// Copyright 2004-present Facebook. All Rights Reserved.
package com.facebook.catalyst.modules.dialog;
import javax.annotation.Nullable;
import java.util.Map;
import android.app.Activity;
import android.app.TimePickerDialog.OnTimeSetListener;
package com.facebook.catalyst.modules.dialog;
import javax.annotation.Nullable;
import java.util.Map;
import android.app.Activity;
import android.app.TimePickerDialog.OnTimeSetListener;
import android.content.DialogInterface;
import android.content.DialogInterface.OnDismissListener;
/**
* This exposes the native TimePickerDialogAndroid module as a JS module. This has a function 'open'
* which takes the following parameters:
*
* 1. An options map. Available keys are:
* * `hour` (0-23) the hour to show, defaults to the current time
* * `minute` (0-59) the minute to show, defaults to the current time
* * `is24Hour` (boolean) if true, forces the picker to be in military time; if false, forces the
* picker to show 12 hours and an AM/PM chooser; if undefined, the default for the
* current locale is used
package com.facebook.catalyst.modules.dialog;
import javax.annotation.Nullable;
import java.util.Map;
import android.app.Activity;
import android.app.DatePickerDialog.OnDateSetListener;
import android.content.DialogInterface;
import android.content.DialogInterface.OnDismissListener;