- Install PostgreSQL with PostGIS via Postges.app
- Install brew as recommended.
- Install dependencies:
brew install geos gdal - Add the following to your settings:
# settings.py
GDAL_LIBRARY_PATH = os.getenv('GDAL_LIBRARY_PATH')
| Begin by enclosing all thoughts within <thinking> tags, exploring multiple angles and approaches. | |
| Break down the solution into clear steps within <step> tags. Start with a 20-step budget, requesting more for complex problems if needed. | |
| Use <count> tags after each step to show the remaining budget. Stop when reaching 0. | |
| Continuously adjust your reasoning based on intermediate results and reflections, adapting your strategy as you progress. | |
| Regularly evaluate progress using <reflection> tags. Be critical and honest about your reasoning process. | |
| Assign a quality score between 0.0 and 1.0 using <reward> tags after each reflection. Use this to guide your approach: | |
| 0.8+: Continue current approach | |
| 0.5-0.7: Consider minor adjustments | |
| Below 0.5: Seriously consider backtracking and trying a different approach |
| You are Webby, a website creation assistant. | |
| Carefully adhere to the following steps for our conversation. Do not skip any steps!: | |
| 1. Introduce yourself | |
| 2. Ask my name and where I'm from. Offer me the option to continue in a different language, but default to English. In the next message say something personal and kind about where I'm from and include an emoji that references where I'm from. | |
| 3. Give me an extremely brief overview of how the website building process will go. Use numbered steps and emojis. | |
| 4. Ask what type of website I want to make (offer examples) | |
| 5. Ask what I'd like to title the website. | |
| 6. Ask a series of questions to clarify information and constraints for the website |
| class MacFuseRequirement < Requirement | |
| fatal true | |
| satisfy(build_env: false) { self.class.binary_mac_fuse_installed? } | |
| def self.binary_mac_fuse_installed? | |
| File.exist?("/usr/local/include/fuse/fuse.h") && | |
| !File.symlink?("/usr/local/include/fuse") | |
| end |
| // The native TreeWalker API has been around for ages, IE9 was the last Browser to implement it ... in 2011 | |
| function log() { | |
| console.log(`%c TreeWalker `, `background:purple;color:yellow`, ...arguments); | |
| } | |
| // find element takes a function definition, the output must be Truthy or Falsy | |
| function findElements( | |
| acceptFunc = (x) => customElements.get(x.localName) || false | |
| ) { | |
| log("start"); | |
| console.time("TreeWalker"); |
brew install geos gdal
# settings.py
GDAL_LIBRARY_PATH = os.getenv('GDAL_LIBRARY_PATH')
| # Get all entries like Melissa, Melli. | |
| # Not depending on how many characters are wildcarded. | |
| SELECT * FROM example_table WHERE example_column LIKE 'Mel%'; | |
| # Get all entries like Meli, Melo. | |
| # Depending on how many characters are wildcarded. | |
| SELECT * FROM example_table WHERE example_column LIKE 'Mel_'; | |
| # Or for multiple characters, here 2 | |
| SELECT * FROM example_table WHERE example_column LIKE 'Mel__'; |
| #!/bin/bash | |
| fileA="$1" | |
| shift | |
| for fileB in "$@"; do | |
| ( | |
| # diff once grep twice with the help of tee and stderr | |
| diff $fileA $fileB | \ | |
| tee >(grep -cE '^< ' >&2) | \ | |
| grep -cE '^> ' >&2 |
src: https://www.stationx.net/nmap-cheat-sheet
| Switch | Example | Description |
| from pdfminer.pdfinterp import PDFResourceManager, PDFPageInterpreter | |
| from pdfminer.converter import TextConverter, XMLConverter, HTMLConverter | |
| from pdfminer.layout import LAParams | |
| from pdfminer.pdfpage import PDFPage | |
| from io import BytesIO | |
| def convert_pdf(path, format='text', codec='utf-8', password=''): | |
| rsrcmgr = PDFResourceManager() | |
| retstr = BytesIO() | |
| laparams = LAParams() |
| import nltk | |
| import pandas as pd | |
| import re | |
| import pprint | |
| import operator | |
| import csv | |
| import logging | |
| from stop_words import get_stop_words | |
| from collections import defaultdict | |
| from gensim import corpora |