This file contains 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 shelve | |
repos = shelve.open("github_repos") | |
repos['SimpleBuy'] = ('hgodinez89', 'Online store', '1.0') | |
repos['login-app'] = ('hgodinez89', 'Login', '1.0') | |
print(repos['login-app']) | |
repos['login-app'] = ('hgodinez89', 'Login with Firebase', '1.0') |
This file contains 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
x | [ | 1 | 3 | 4 | ] | |
---|---|---|---|---|---|---|
Positive Index | 0 | 1 | 2 | |||
Negative Index | -3 | -2 | -1 |
This file contains 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
x | [ | 1 | 3 | 4 | ] | |
---|---|---|---|---|---|---|
Indice Positivo | 0 | 1 | 2 | |||
Indice Negativo | -3 | -2 | -1 |
This file contains 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
afterEvaluate { | |
mergeReleaseJniLibFolders.doLast { | |
def archTypes = ["arm-release", "arm64-release"] | |
archTypes.forEach { item -> | |
copy { | |
from zipTree("$flutterRoot/bin/cache/artifacts/engine/android-$item/flutter.jar") | |
include 'lib/*/libflutter.so' | |
into "$buildDir/intermediates/jniLibs/release/" | |
eachFile { | |
it.path = it.path.replaceFirst("lib/", "") |
This file contains 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 'package:shared_preferences/shared_preferences.dart'; | |
/* | |
Recordar instalar el paquete de: | |
shared_preferences: | |
Inicializar en el main | |
final prefs = new PreferenciasUsuario(); | |
await prefs.initPrefs(); | |
Recuerden que el main() debe de ser async {... |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Mi pagina web</title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous"> | |
<link rel="stylesheet" href="estilos.css"> | |
</head> | |
<body> |