Skip to content

Instantly share code, notes, and snippets.

Avatar
💭
I try to update daily, fix monthly.

Andrew Schell datatalking

💭
I try to update daily, fix monthly.
  • Seattle Wa
View GitHub Profile
@datatalking
datatalking / read_apple_notes.ipynb
Created June 19, 2022 21:55 — forked from paultopia/read_apple_notes.ipynb
attempt to read apple notes from python
View read_apple_notes.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@datatalking
datatalking / README.md
Created May 15, 2022 18:29 — forked from hofmannsven/README.md
Git Cheatsheet
View README.md
@datatalking
datatalking / data_downloader.ipynb
Created August 30, 2021 13:12 — forked from buswedg/data_downloader.ipynb
pulling_free_us_stock_market_data\data_downloader
View data_downloader.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@datatalking
datatalking / cuda_check.py
Created August 3, 2021 20:54 — forked from f0k/cuda_check.py
Simple python script to obtain CUDA device information
View cuda_check.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Outputs some information on CUDA-enabled devices on your computer,
including current memory usage.
It's a port of https://gist.github.com/f0k/0d6431e3faa60bffc788f8b4daa029b1
from C to Python with ctypes, so it can run without compiling anything. Note
that this is a direct translation with no attempt to make the code Pythonic.
@datatalking
datatalking / tensorflow_1_8_high_sierra_gpu.md
Created August 3, 2021 18:31 — forked from Willian-Zhang/tensorflow_1_8_high_sierra_gpu.md
Install TensorFlow 1.8 on macOS High Sierra 10.13.4 with CUDA
View tensorflow_1_8_high_sierra_gpu.md
@datatalking
datatalking / speed_testing_sample.py
Created July 31, 2021 06:21
A function to test network internet speed
View speed_testing_sample.py
#!/usr/bin/python
import os
import sys
import csv
import datetime
import time
def main():
run_simple_speedtest()
@datatalking
datatalking / checkDuplicates.py
Created July 28, 2021 17:48 — forked from vinovator/checkDuplicates.py
Python script to find duplicate files from a folder
View checkDuplicates.py
# checkDuplicates.py
# Python 2.7.6
"""
Given a folder, walk through all files within the folder and subfolders
and get list of all files that are duplicates
The md5 checcksum for each file will determine the duplicates
"""
import os
@datatalking
datatalking / Python3 Virtualenv Setup.md
Created December 28, 2017 22:18 — forked from pandafulmanda/Python3 Virtualenv Setup.md
Setting up and using Python3 Virtualenv on Mac
View Python3 Virtualenv Setup.md

Python3 Virtualenv Setup

Requirements
  • Python 3
  • Pip 3
$ brew install python3
@datatalking
datatalking / Andrew Resume Technical
Last active July 5, 2018 19:11
Technical Resume080717.docx
View Andrew Resume Technical
Andrew Schell Twitter [#datatalking](https://twitter.com/hashtag/datatalking) - Email [info@yourdatatalking.com](mailto:info@yourdatatalking.com)
**Salesforce Admin – Google Analytics – Data Marketing Analyst**
Seeking an analyst or technical big data position at a growing company. I work best with action based teams to accomplish goals vs doing theoretical research. In finance I developed a process that tells me with 84% confidence which customers are likely to churn and I am well versed in business development as well as the Analytics supporting Sales. Current pro bono projects are administration of a Salesforce Org for a nonprofit and my artificial intelligence prototype that helps disabled children
**Subject Matter Expert:**
**Business Intelligence**** Analysis**
@datatalking
datatalking / csv_to_mm.py
Created July 23, 2017 19:38 — forked from gpoulter/csv_to_mm.py
Build Freemind MindMap from Excel file
View csv_to_mm.py
#!/usr/bin/python
"""Convert CSV table to MindMap format
Usage: python csv_to_mm.py sometable.csv > mymap.mm
CSV format is rows representing tree leaves, e.g.:
A1,
A1,B1
A1,B1,C1
A1,B1,C2