This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// node_modules/react-native-fbsdk-next/android/src/main/java/com/facebook/reactnative/androidsdk/FBProfileModule.java | |
package com.facebook.reactnative.androidsdk; | |
import com.facebook.Profile; | |
import com.facebook.react.bridge.Callback; | |
import com.facebook.react.bridge.NativeModule; | |
import com.facebook.react.bridge.ReactContextBaseJavaModule; | |
import com.facebook.react.bridge.ReactMethod; | |
import com.facebook.react.bridge.ReactApplicationContext; | |
import com.facebook.react.module.annotations.ReactModule; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion || { | |
# if not found in /usr/local/etc, try the brew --prefix location | |
[ -f "$(brew --prefix)/etc/bash_completion.d/git-completion.bash" ] && \ | |
. $(brew --prefix)/etc/bash_completion.d/git-completion.bash | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
var color_1 = require("tns-core-modules/color"); | |
var view_1 = require("tns-core-modules/ui/core/view"); | |
var gestures_1 = require("tns-core-modules/ui/gestures"); | |
var common = require("./ripple-common"); | |
var Ripple = (function (_super) { | |
__extends(Ripple, _super); | |
function Ripple() { | |
return _super.call(this) || this; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 1, | |
"name": "Acrelândia", | |
"uf": "AC" | |
}, | |
{ | |
"id": 2, | |
"name": "Assis Brasil", | |
"uf": "AC" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import platform = require('platform'); | |
import color = require('color'); | |
import app = require('application'); | |
declare var android: any; | |
export function onPageLoaded () { | |
const View = android.view.View; | |
if (app.android && platform.device.sdkVersion >= '21') { | |
let LayoutParams = <any>android.view.WindowManager.LayoutParams; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Composer: "fzaninotto/faker": "v1.3.0" | |
use Faker\Factory as Faker; | |
class StatesTableSeeder extends Seeder { | |
public function run () { | |
DB::table('states')->insert([ | |
['id' => 1, 'name' => 'Acre', 'uf' => 'AC'], | |
['id' => 2, 'name' => 'Alagoas', 'uf' => 'AL'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class CitiesTableSeeder extends Seeder { | |
public function run() { | |
DB::table('cities')->insert([ | |
['id' => 1, 'name' => 'Afonso Cláudio', 'state_id' => 8], | |
['id' => 2, 'name' => 'Água Doce do Norte', 'state_id' => 8], | |
['id' => 3, 'name' => 'Águia Branca', 'state_id' => 8], | |
['id' => 4, 'name' => 'Alegre', 'state_id' => 8], | |
['id' => 5, 'name' => 'Alfredo Chaves', 'state_id' => 8], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$grid-columns: 12; | |
$glutter: 15px; | |
$max-container-width: 1170px; | |
$breakpoints: ( | |
(name: xs, min: 0, max: 768px), | |
(name: sm, min: 769px, max: 1024px), | |
(name: md, min: 1024px, max: 1170px), | |
(name: lg, min: 1170px, max: 0) | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[YES] | |
function () { | |
//.. | |
} | |
function (foo, bar) { | |
//.. | |
} |
NewerOlder