Skip to content

Instantly share code, notes, and snippets.

@Greennut
Greennut / evernote-clearly.css
Created March 15, 2017 01:49 — forked from Edditoria/evernote-clearly.css
My customized CSS theme for the Evernote Clearly browser extension
/**
* CSS theme for the Clearly browser extension by Evernote.
* See: www.evernote.com/clearly/
*
* Options used alongside this CSS:
* Body font: "Adelle", Georgia, 微軟正黑體, Helvetica, Arial, sans-serif
* Header font: Soho-condensed, PT Serif, 微軟正黑體, Helvetica
* Monospace font: 微軟正黑體Mono, Inconsolata, Consolas, Droid Sans Mono
* Background: #FFFFFF
* Foregound: #333333
@Greennut
Greennut / evernote-clearly.css
Created March 15, 2017 01:49 — forked from Edditoria/evernote-clearly.css
My customized CSS theme for the Evernote Clearly browser extension
/**
* CSS theme for the Clearly browser extension by Evernote.
* See: www.evernote.com/clearly/
*
* Options used alongside this CSS:
* Body font: "Adelle", Georgia, 微軟正黑體, Helvetica, Arial, sans-serif
* Header font: Soho-condensed, PT Serif, 微軟正黑體, Helvetica
* Monospace font: 微軟正黑體Mono, Inconsolata, Consolas, Droid Sans Mono
* Background: #FFFFFF
* Foregound: #333333
@Greennut
Greennut / evernote-clearly.css
Created March 15, 2017 01:49 — forked from Edditoria/evernote-clearly.css
My customized CSS theme for the Evernote Clearly browser extension
/**
* CSS theme for the Clearly browser extension by Evernote.
* See: www.evernote.com/clearly/
*
* Options used alongside this CSS:
* Body font: "Adelle", Georgia, 微軟正黑體, Helvetica, Arial, sans-serif
* Header font: Soho-condensed, PT Serif, 微軟正黑體, Helvetica
* Monospace font: 微軟正黑體Mono, Inconsolata, Consolas, Droid Sans Mono
* Background: #FFFFFF
* Foregound: #333333
@Greennut
Greennut / README.md
Created September 22, 2016 10:23 — forked from DariaAlekseeva/README.md
Resume

To see my resume in browser click here.

How do I complete this project?

  1. Go to the Javascript Basics course and select "View Course Materials."
  2. Go through the videos and assignments in this course to learn the JavaScript necessary to build your resume.
  3. Review your work against the Project Rubric (on the next page).
  4. When you are satisfied with your project, submit it according to the Submission Instructions on the next page.

By the end:

@Greennut
Greennut / facebook_crawler.py
Created September 22, 2016 10:21 — forked from wenzhengjiang/facebook_crawler.py
A Facebook post crawler
from bs4 import BeautifulSoup
from selenium import webdriver
import garble
import json, time, threading
class FacebookCrawler:
""" A crawler for extracting facebook posts
"""
def __init__(self, name, url, options = {}):
self.name = name
@Greennut
Greennut / facebook-get-more-results
Last active September 22, 2016 10:05 — forked from d-georgiev-91/facebook-get-more-results
Facebook get more results
var totalResultsCount = 0;
function getMoreResultsElement() {
var anchors = document.getElementsByClassName("pam uiBoxLightblue uiMorePagerPrimary");
for(var i in anchors) {
if(anchors[i].innerText == "See More") {
var element = anchors[i];
return element;
}