At the end (and only there) this doc assume you are yusing systemctl and /usr/local/bin as a path for namada binaries
https://github.com/anoma/namada-shielded-expedition/blob/main/HardFork.md
but the procedure should work so-so
At the end (and only there) this doc assume you are yusing systemctl and /usr/local/bin as a path for namada binaries
https://github.com/anoma/namada-shielded-expedition/blob/main/HardFork.md
but the procedure should work so-so
import 'dart:async'; | |
import 'dart:io'; | |
import 'package:floor/floor.dart'; | |
import 'package:flutter/services.dart'; | |
import 'package:path/path.dart'; | |
import 'package:path_provider/path_provider.dart'; | |
import 'package:sqflite/sqflite.dart' as sqflite; | |
part 'persistence_controller.g.dart'; // the generated code will be there |
package com.github.example; | |
import android.content.Context; | |
import android.graphics.Bitmap; | |
import android.net.Uri; | |
import android.text.TextUtils; | |
import android.util.Log; | |
import androidx.annotation.Nullable; | |
import androidx.core.content.FileProvider; |
const functions = require('firebase-functions'); | |
// // Create and Deploy Your First Cloud Functions | |
// // https://firebase.google.com/docs/functions/write-firebase-functions | |
// | |
// exports.helloWorld = functions.https.onRequest((request, response) => { | |
// response.send("Hello from Firebase!"); | |
// }); | |
// Import the Firebase SDK for Google Cloud Functions. |
<!DOCTYPE resources [ | |
<!ENTITY foo "Foo"> | |
]> | |
<resources> | |
<string name="app_name">&foo;</string> | |
<string name="busy_warning">Sorry, &foo; is working hard, please try again in a moment.</string> | |
<string name="trademark">&foo; is a registerd trademark, all rights reserved.</string> | |
</resources> |
// Good | |
exports.sendEmail = functions.auth.user().onCreate(event => { | |
const mailgun = require('mailgun-js'); | |
// ... | |
}); | |
// Not As Awesome | |
const mailgun = require('mailgun-js'); | |
exports.sendEmail = functions.auth.user().onCreate(event => { |
// TODO add <meta-data android:value="GlideModule" android:name="....OkHttpProgressGlideModule" /> | |
// TODO add <meta-data android:value="GlideModule" tools:node="remove" android:name="com.bumptech.glide.integration.okhttp.OkHttpGlideModule" /> | |
// or not use 'okhttp@aar' in Gradle depdendencies | |
public class OkHttpProgressGlideModule implements GlideModule { | |
@Override public void applyOptions(Context context, GlideBuilder builder) { } | |
@Override public void registerComponents(Context context, Glide glide) { | |
OkHttpClient client = new OkHttpClient(); | |
client.networkInterceptors().add(createInterceptor(new DispatchingProgressListener())); | |
glide.register(GlideUrl.class, InputStream.class, new OkHttpUrlLoader.Factory(client)); | |
} |
require 'net/http' | |
require 'json' | |
require 'uri' | |
@token = '' | |
def list_files | |
ts_to = (Time.now - 30 * 24 * 60 * 60).to_i # 30 days ago | |
params = { | |
token: @token, |
<?xml version="1.0" encoding="utf-8"?> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item android:state_enabled="false" | |
android:color="@color/flat_disabled_text"/> | |
<item android:color="@color/flat_normal_text"/> | |
</selector> |