I hereby claim:
- I am rocboronat on github.
- I am rocboronat (https://keybase.io/rocboronat) on keybase.
- I have a public key whose fingerprint is 1A64 309B 1862 E805 44FB 0937 253E BB04 F6E8 C6AC
To claim this, I am signing this object:
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
const MyApp({super.key}); | |
@override |
void main() async { | |
Stopwatch stopwatch = new Stopwatch()..start(); | |
var p1 = delay(Duration(seconds: 2)); | |
var p2 = fetchData(); | |
await p1; | |
final data = await p2; | |
print('Executed in ${stopwatch.elapsed} with data: $data'); |
phrase: | |
access_token: <your access token here> | |
project_id: <your project ID here> | |
push: | |
sources: | |
- file: ./lib/l10n/intl_<locale_name>.arb | |
params: | |
file_format: arb | |
pull: | |
targets: |
string.achievement_unlocked + " " + *titulo del logro* + " - " + *cuerpo del logro* |
I hereby claim:
To claim this, I am signing this object:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:orientation="vertical"> | |
<EditText |
package com.fewlaps.quitnow; | |
import android.content.ActivityNotFoundException; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.net.Uri; | |
import java.util.ArrayList; | |
import java.util.List; |
package com.fewlaps.android.permissiongranter; | |
import android.app.Activity; | |
import android.content.pm.PackageManager; | |
import android.os.Build; | |
import android.support.test.uiautomator.UiDevice; | |
import android.support.test.uiautomator.UiObject; | |
import android.support.test.uiautomator.UiObjectNotFoundException; | |
import android.support.test.uiautomator.UiSelector; | |
import android.support.v4.content.ContextCompat; |
package com.fewlaps; | |
public class ConcatStringComparison { | |
static long timeAdding; | |
static long timeConcat; | |
static long timeStringBuffer; | |
static long timeStringBuilder; | |
public static final int ITERATIONS = 1000000; |
public class DebugClient extends DefaultHttpClient { | |
@Override | |
protected ClientConnectionManager createClientConnectionManager() { | |
KeyStore trustStore = null; | |
try { | |
trustStore = KeyStore.getInstance(KeyStore.getDefaultType()); | |
trustStore.load(null, null); |