Skip to content

Instantly share code, notes, and snippets.

View Ibn-mohey's full-sized avatar
🔍
Analyzing Data ...

Abd-elrhman Mohey Ibn-mohey

🔍
Analyzing Data ...
View GitHub Profile
@mGalarnyk
mGalarnyk / assignment3.md
Last active August 26, 2023 17:18
R Programming Programming Assignment 3 (Week 4) John Hopkins Data Science Specialization Coursera for the github repo https://github.com/mGalarnyk/datasciencecoursera
@sliceofbytes
sliceofbytes / txt-to-google-keep-notes.py
Created February 14, 2018 22:16
Add Text Files as Google Keep Notes
#Import a directory of text files as google keep notes.
#Text Filename is used for the title of the note.
import gkeepapi, os
username = 'username@gmail.com'
password = 'your app password'
keep = gkeepapi.Keep()
success = keep.login(username,password)