Skip to content

Instantly share code, notes, and snippets.

View RenanSMoura's full-sized avatar

Renan Silva Moura RenanSMoura

View GitHub Profile

Ticket

TLS-####

What is the purpose of this Pull Request?

Briefly describe the objective of this Pull Request.

What changes are made in this Pull Request?

Describe, if necessary, the technical changes implemented.

Check list

@RenanSMoura
RenanSMoura / favoritos.md
Created December 26, 2018 20:11 — forked from rodolfoizidoro/favoritos.md
Lista de estudos nas férias . Importar no Chrome.
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.
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
@RenanSMoura
RenanSMoura / ywcc_ptbr.py
Created September 22, 2017 01:38 — forked from ericoporto/ywcc_ptbr.py
Yahoo Weather API Condition Codes in Brazilian Portuguese (Códigos do Yahoo Weather em Português - Brasil)
#!/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:
@RenanSMoura
RenanSMoura / deleteMarcas.js
Created September 29, 2016 00:06
Script delete marcas
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;
}
@RenanSMoura
RenanSMoura / populateMarcas.js
Created September 29, 2016 00:05
Script add marcas
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;
@RenanSMoura
RenanSMoura / LICENSE
Created April 6, 2016 22:38 — forked from madc/LICENSE
Simple morse en- & decoding for Arduino (including LED Example)Build after the specs on http://en.wikipedia.org/wiki/Morse_code
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: