Skip to content

Instantly share code, notes, and snippets.

View morenodoug's full-sized avatar

Douglas Moreno morenodoug

  • Santiago de Chile
View GitHub Profile
@morenodoug
morenodoug / utilsAndroid.java
Created June 27, 2020 18:37
Adding an image to mediaStore(see in phone gallery) on Android
public static void notifyMediaStoreScanner(Context mContext, Uri cacheImageUri) throws IOException {
Uri newImageUri = createImageInMediaStore(mContext, cacheImageUri);
ContentResolver resolver = mContext
.getContentResolver();
FileInputStream input ;
FileOutputStream outputStream ;
try (ParcelFileDescriptor pfd = resolver
.openFileDescriptor(newImageUri, "w", null)) {
// Write data into the pending image.
@morenodoug
morenodoug / stylingActionbar.xml
Created May 27, 2020 21:42
customize action bar in android using style xml
samples for styling android action bars:
http://android.cn-mirrors.com/training/basics/actionbar/styling.html
options to display in action bar :
http://android.cn-mirrors.com/reference/android/R.attr.html#displayOptions
xml tags must be inside res/style.xml
<!-- Base application theme. -->
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@morenodoug
morenodoug / ML0101EN-Clus-DBSCN-weather-py-v1.ipynb
Created January 22, 2020 02:04
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@morenodoug
morenodoug / ML0101EN-Clus-DBSCN-weather-py-v1.ipynb
Created January 22, 2020 02:03
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@morenodoug
morenodoug / ML0101EN-Clus-Hierarchical-Cars-py-v1.ipynb
Created January 22, 2020 00:53
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@morenodoug
morenodoug / ML0101EN-Clas-SVM-cancer-py-v1.ipynb
Created January 20, 2020 09:44
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@morenodoug
morenodoug / ML0101EN-Clus-K-Means-Customer-Seg-py-v1.ipynb
Created January 19, 2020 00:43
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@morenodoug
morenodoug / ML0101EN-Clas-SVM-cancer-py-v1.ipynb
Created January 12, 2020 03:36
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@morenodoug
morenodoug / ML0101EN-Clas-Logistic-Reg-churn-py-v1.ipynb
Created January 12, 2020 02:02
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.