create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
apply plugin: 'com.android.application' | |
def final yourApplicationId = 'com.yourId.android' | |
android { | |
compileSdkVersion 21 | |
buildToolsVersion "21.1.2" | |
sourceSets { | |
androidTest { | |
java.srcDirs = ['test/java'] | |
} | |
} |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
A telegram bot that lets you pick and a timezone | |
@author Guy Sheffer (GuySoft) <guysoft at gmail dot com> | |
""" | |
from telegram.ext import Updater | |
from telegram.ext import CommandHandler | |
from telegram.ext import ConversationHandler, RegexHandler |
#!/bin/bash | |
#pick your IPFS version | |
VERS=0.4.13 | |
DIST="go-ipfs_v${VERS}_linux-amd64.tar.gz" | |
sudo apt-get update | |
sudo apt-get install golang-go -y | |
wget https://dist.ipfs.io/go-ipfs/v0.4.13/$DIST | |
tar xvfz $DIST |
import 'package:flutter/material.dart'; | |
class OverlayContainer extends StatefulWidget { | |
/// The child to render in the regular document flow (defaults to Container()) | |
final Widget child; | |
/// The widget to render inside the [OverlayEntry]. | |
final Widget overlay; | |
/// Offset to apply to the [CompositedTransformFollower] |
import 'package:flutter/material.dart'; | |
class InteractiveViewerOverlay extends StatefulWidget { | |
final Widget child; | |
final double maxScale; | |
const InteractiveViewerOverlay({ | |
Key key, | |
@required this.child, | |
this.maxScale, |
❗❗❗ОБНОВЛЕННАЯ ВЕРСИЯ СТАТЬИ НАХОДИТСЯ ТУТ ❗❗❗
mapEventToState
,