Skip to content

Instantly share code, notes, and snippets.

View crishernandezmaps's full-sized avatar

Cris Hernandez crishernandezmaps

View GitHub Profile
@crishernandezmaps
crishernandezmaps / media-query.css
Created May 18, 2019 21:46 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@crishernandezmaps
crishernandezmaps / tweetables.py
Created March 9, 2017 16:00 — forked from hugovk/tweetables.py
Split a text into sentences shorter than 140 characters.
#!/usr/bin/env python
# encoding: utf-8
"""
Split a text into sentences shorter than 140 characters.
You'll need to first install TextBlob by running:
pip install -U textblob
Then stick your text into the text bit below and run this script:
python tweetables.py
@crishernandezmaps
crishernandezmaps / tweet_dumper.py
Created February 7, 2017 11:24 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a csv
#!/usr/bin/env python
# encoding: utf-8
import tweepy #https://github.com/tweepy/tweepy
import csv
#Twitter API credentials
consumer_key = ""
consumer_secret = ""
access_key = ""
#!/usr/bin/env node
var OAuth = require('oauth').OAuth;
var colors = require('colors');
var access_token = null;
var access_token_secret = null;
var key = null;
var secret = null;