Name | Link |
---|---|
Download Favoritos para importa no Google Chrome | https://gist.github.com/rodolfoizidoro/f0d5051d9109eb7dc70c2dfcf42a67aa |
MVVM with Kotlin — Android Architecture Components, Dagger 2, Retrofit and RxAndroid | https://proandroiddev.com/mvvm-with-kotlin-android-architecture-components-dagger-2-retrofit-and-rxandroid-1a4ebb38c699 |
30 summertime Android libraries and tools which you don’t want to miss in 2018 | https://medium.com/@mmbialas/30-summertime-android-libraries-and-tools-which-you-dont-want-to-miss-in-2018-fab053d69503 |
KeepSafe/TapTargetView An implementation of tap targets from the Material Design guidelines for feature discovery | https://github.com/KeepSafe/TapTargetView |
Material Intro View is a showcase android library. | https://github.com/iammert/MaterialIntroView |
Modern background execution in Android | https://android-developers.googleblog.com/2018/10/modern-background-execution-in-android.html?m=1 |
Dominando o Data Binding no Android | https://pt.slideshare. |
This file contains hidden or 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Copyright (c) 2015 Erico Vieira Porto | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
This file contains hidden or 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
var requestify = require('requestify'); | |
var ids = []; | |
requestify.get('http://notifycar-api.mybluemix.net/fabricante').then(function(response){ | |
for(var i =0; i < response.getBody().length; i++){ | |
ids[i] = response.getBody()[i]._id; | |
} | |
This file contains hidden or 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
var requestify = require('requestify'); | |
var fs = require('fs'); | |
var json = JSON.parse(fs.readFileSync('marcasjson.txt','utf-8')); | |
for(var i = 0; i < json.length; i++){ | |
var marcaVeiculo = json[i].marca; | |
var paisVeiculo = json[i].pais; | |
This file contains hidden or 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
Copyright (c) 2015 Matthias Esterl | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |