Download, verify, and store the whole blockchain
monerod --fast-block-sync=0
This is an LLM-assisted workflow for creating a product requirement document using LLM assistance for task completion. | |
It keeps track of inputs for the template and works with the user to acquire them, finally generating a completed PRD | |
prompt when all slots are addressed. | |
credit: Ian Nuttall - https://gist.github.com/iannuttall/f3d425ad5610923a32397a687758ebf2 | |
**System-Prompt for Facilitating Chat-Based PRD Creation** |
import os | |
import argparse | |
import logging | |
import json | |
from more_itertools import chunked | |
from itertools import pairwise | |
from collections.abc import Iterator | |
import spacy | |
from spacy.language import Language |
Edit: This doesn't work for lists > 20 items, because pagination does not work. Please see here
This script allows extracting name and coordinates for gmaps shared lists. It is incredibly unstable and may break anytime. Good luck figuring out why, because the syntax is extremely confusing and basically makes no sense at all. Thanks to google for not providing an api for this after LITERALLY 12 YEARS
How to use this script:
google.com/maps/@<your coords>/data=....
data
-portion and paste it into the following link:
https://google.com/maps/@/data=?ucbcb=1
<?php | |
/* | |
Plugin Name: wordpress assist clean header | |
Plugin URI: http://www.wordpressassist.nl/ | |
Description: Remove shortlink hook | |
Version: 1.0 | |
Author: AukeJomm | |
Author URI: http://www.aukejongbloed.nl | |
*/ | |
resource "aws_iam_policy" "terraform_create_policy" { | |
name = "terraform_create_policy" | |
path = "/" | |
policy = "${data.aws_iam_policy_document.terraform_create_policy.json}" | |
} | |
data "aws_iam_policy_document" "terraform_create_policy" { | |
statement { | |
sid = "1" | |
actions = [ |
#!/bin/bash | |
# Script to test reproducibility of git-archive-all.sh and git's built-in | |
# archive command | |
# | |
# Usage: | |
# 1. Copy the script to your git directory with submodules. | |
# 2. Download the git-archive-all.sh script: | |
# https://raw.githubusercontent.com/meitar/git-archive-all.sh/master/git-archive-all.sh | |
# and place it somewhere in your $PATH and make it executable. |
This is my variation from the original patch and that also includes the suggested correction for the bug with secure websocket 'wss://'.
The difference is that I avoid modifying the mod_utils.c and the mod_proxy.h so that if the mod_proxy module has been embedded in the main httpd binary then it will work and you won't get the
@interface NSManagedObject (Serialization) | |
- (NSDictionary*) toDictionary; | |
- (void) populateFromDictionary:(NSDictionary*)dict; | |
+ (NSManagedObject*) createManagedObjectFromDictionary:(NSDictionary*)dict | |
inContext:(NSManagedObjectContext*)context; | |
@end |