Skip to content

Instantly share code, notes, and snippets.

View RaulitoGC's full-sized avatar
🏠
Working from home

Raul Guzman RaulitoGC

🏠
Working from home
View GitHub Profile
@RaulitoGC
RaulitoGC / basic_enviroment.yml
Last active May 7, 2018 19:13
Basic environment
name: basic_enviroment
dependencies:
- numpy
- scipy
- matplotlib
- ipython
- pandas
- ipython
@RaulitoGC
RaulitoGC / ImageSaveTask.java
Created June 6, 2018 18:00 — forked from yushaojian13/ImageSaveTask.java
A task to download and save image to SD card with Glide
public class ImageSaveTask extends AsyncTask<String, Void, Void> {
private Context context;
public ImageSaveTask(Context context) {
this.context = context;
}
@Override
protected Void doInBackground(String... params) {
if (params == null || params.length < 2) {
@RaulitoGC
RaulitoGC / To
Created April 10, 2019 20:16
Technology use in schools is increasing every year, dominated by the introduction of tablets and netbooks to the classroom. It is not intended to replace teacher in the classroom; instead, most educational tech is designed to increase efficiency and improve the effectiveness of traditional teaching methods. In order to get these technology for y…
Technology use in schools is increasing every year, dominated by the introduction of tablets and netbooks to the classroom. It is not intended to replace teacher in the classroom; instead, most educational tech is designed to increase efficiency and improve the effectiveness of traditional teaching methods. In order to get these technology for you. Always wanted to shop everything related with technology in one place, at one time and free shipping as well? Well. We have got just the right app for you.
@RaulitoGC
RaulitoGC / gist:abbaf4d019408dbc2c4d1c218ccf3319
Last active September 11, 2020 22:00
Android template Names

Naming Convention

In order to make the code look consistent cross modules, we have decided to come up with naming conventions.

Item Naming Convention Example
Modules Bank-<name> Bank -login
Packages <main_package>.<name> com.bank.login
Android/Architecture Components <name><component> LoginViewModel
Arguments ARG_`` ARG_EMAIL = "email"
@RaulitoGC
RaulitoGC / android-color-configuration.xml
Last active February 14, 2022 19:14
Android Remote Color Resources
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#5174A1</color>
<color name="colorPrimaryDark">#FFA158</color>
<color name="colorAccent">#FFC107</color>
</resources>
@RaulitoGC
RaulitoGC / android-color-configuration.json
Last active August 26, 2022 18:19
Android Configuration JSON
{
"colorAccent": "#FFC107",
"colorPrimary": "#FF6688",
"colorPrimaryDark": "#AA79BB",
"imageColor": "#00FF00"
}