I hereby claim:
- I am oldmetalmind on github.
- I am filipebarroso (https://keybase.io/filipebarroso) on keybase.
- I have a public key whose fingerprint is E43F 80EF 8A99 6F2F DB2F 427F BD21 94A1 2CC7 D1FD
To claim this, I am signing this object:
if(_exitApp) | |
{ | |
finish(); | |
} | |
else | |
{ | |
_exitApp = true; | |
showMessage( FPFContext.getInstance().getResourceManager().getString( R.string.click_to_exit ) ); |
Tech Talk: Linus Torvalds on git | |
https://www.youtube.com/watch?v=4XpnKHJAok8 | |
Download GIT | |
https://git-scm.com/downloads | |
Software | |
https://www.gitkraken.com/ | |
https://www.sourcetreeapp.com/ |
I hereby claim:
To claim this, I am signing this object:
To easily find your Transaction ID for you Google Play Android Account, follow these steps:
Go to your Google Payments page to the Subscriptions and services > Other purchase activity, you can click here: https://payments.google.com/payments/u/0/home#oneTimePurchase
Find the transaction, normally the oldest, with the description "Android"
# Core | |
import time | |
import json | |
# Third-party | |
import requests | |
from bs4 import BeautifulSoup | |
SOURCE = requests.get("<ENDPOINT>") | |
soup = BeautifulSoup(SOURCE.text, "html.parser") |
{ | |
"AuxAudioDevice1": { | |
"balance": 0.5, | |
"deinterlace_field_order": 0, | |
"deinterlace_mode": 0, | |
"enabled": true, | |
"flags": 0, | |
"hotkeys": { | |
"libobs.mute": [], | |
"libobs.push-to-mute": [], |
Regista já na tua agenda. Temos data para o próximo meet DevPT em Lisboa!
Neste Meet DevPT #7 irá acontecer em Lisboa, à semelhança do anterior vamos ter apresentações de temas variados. Poderás desta forma ter em primeira mão contacto com um tópico novo ou aprofundar conhecimento.
De seguida, convidamos-te a juntar-te a nós para jantar.
dynamic applyA(dynamic x) { | |
if (x is Function) { | |
return (dynamic f) { | |
return (dynamic y) { | |
return f(x(y)); | |
}; | |
}; | |
} else { | |
return (dynamic f) { |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MainApp()); | |
} | |
final invoices = [ | |
Invoice( | |
invoiceId: 'INV-001', | |
invoiceDate: '2021-10-01', |