type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
| ''' | |
| iterates over files in a directory, finds photos and compares them for similarity | |
| if 2 photos are similar, the duplicate is deleted | |
| ''' | |
| from PIL import Image | |
| import imagehash | |
| import os | |
| import time |
| var aTags = document.getElementsByTagName("span"); | |
| var searchText = "Ignore"; | |
| var found; | |
| for (var i = 0; i < aTags.length; i++) { | |
| if (aTags[i].textContent.includes(searchText)) { | |
| found = aTags[i]; | |
| found.click(); | |
| } else { | |
| // console.log(aTags[i].textContent) |
| def flatten(nested, column_names): | |
| all_dicts = [] | |
| final_result = {} | |
| index = 0 | |
| def recurse(data): | |
| for k, v in data.items(): | |
| final_result = {} | |
| if isinstance(v, dict): |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
| // doing check when array is empty produces non stopping loop | |
| // add database | |
| var express = require('express'); | |
| var mongoose = require('mongoose'); | |
| var bodyParser = require('body-parser'); | |
| var json2html = require('node-json2html'); | |
| var app = express(); |
| # if you want to pull data from an API, requests is your friend | |
| import requests | |
| # BeautifulSoup helps us extract data from html, xml, .. | |
| from bs4 import BeautifulSoup | |
| # this is the type of strings extracted from html | |
| from bs4.element import NavigableString | |
| ug_results = [] | |
| # set these to a big number like 1000, 10000, any number that makes sense as an index number |
| #!/usr/bin/python | |
| import os | |
| import re | |
| import HTMLParser as parser | |
| import xml.dom.minidom as minidom | |
| import sys | |
| try: | |
| # Read de file name from standard input | |
| filename = sys.argv[1] |
| from BeautifulSoup import BeautifulSoup | |
| def _remove_attrs(soup): | |
| for tag in soup.findAll(True): | |
| tag.attrs = None | |
| return soup | |
| def example(): | |
| doc = '<html><head><title>test</title></head><body id="foo" onload="whatever"><p class="whatever">junk</p><div style="background: yellow;" id="foo" class="blah">blah</div></body></html>' |