TurboTax is getting much better with support for Crypto sales & transactions:
import urllib.request | |
import json | |
url = 'https://gist.githubusercontent.com/simonw/9fbb3c2e2c40c181727e497e358fd7ce/raw/6ac20704f5a46b567b774b07fd633a74944bab2b/text.txt' | |
text = urllib.request.urlopen(url).read().decode('utf-8') | |
import anthropic | |
client = anthropic.Anthropic() |
# Example usage: gcor feature-branch | |
# This will create a local branch 'feature-branch' based on 'origin/feature-branch' | |
function gcor { | |
# Create a new branch locally based on a remote branch from origin | |
git checkout -b $1 origin/$1 | |
# Set the upstream branch for the new local branch to track the remote branch | |
git branch --set-upstream-to=origin/$1 $1 | |
} |
# A one liner to leverage the GPU on a mac to transcribe audio files | |
# Inspired by https://simonwillison.net/2024/Aug/13/mlx-whisper/ | |
llm_transcribe_recording () { | |
local file_path="$1" | |
python3 -c " | |
import mlx_whisper | |
result = mlx_whisper.transcribe('$file_path', path_or_hf_repo='mlx-community/distil-whisper-large-v3') | |
print(result['text']) | |
" | |
} |
# Run with `streamlit run easy_email.py` after `pip install streamlit` | |
# Required Libraries | |
import streamlit as st | |
# Streamlit App | |
def main(): | |
st.title("EasyEmail") | |
# Campaign Name |
tl;dr The Pocket Network core protocol team has decided to implement the first version of the next iteration of the protocol (v1) as a “micro-rollup” using Rollkit with Celestia as a Data Availability (DA) layer.
You can read the announcement by @MatthewRossi, our Head of Product (Protocol), on behalf of the Pocket Network Foundation, here to skip the technical history and jump straight to the point.
In early August, the Pocket Network core protocol team made a crucial decision: we temporarily halted all development on the upcoming version of the Pocket Network Protocol: the Shannon upgrade (formerly referred to as v1). We embarked on a 3-week intensive research to evaluate rapid advancements of other projects in the industry and ensure an opti
#!/bin/bash | |
TZ=Europe/London && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | |
apt-get install -y wget gcc make git nvme-cli nano unzip runit pv aria2 lz4 | |
runsvdir -P /etc/service & | |
if [[ -n $SSH_PASS ]] | |
then | |
apt-get install -y ssh | |
echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config && (echo $SSH_PASS; echo $SSH_PASS) | passwd root && service ssh restart | |
fi | |
wget https://go.dev/dl/go1.20.1.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.20.1.linux-amd64.tar.gz |
#!/bin/bash | |
TZ=Europe/London && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | |
apt-get install -y wget gcc make git nvme-cli nano unzip runit pv aria2 lz4 | |
runsvdir -P /etc/service & | |
if [[ -n $SSH_PASS ]] | |
then | |
apt-get install -y ssh | |
echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config && (echo $SSH_PASS; echo $SSH_PASS) | passwd root && service ssh restart | |
fi | |
wget https://go.dev/dl/go1.20.1.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.20.1.linux-amd64.tar.gz |
SHELL := /bin/bash | |
.SILENT: | |
.PHONY: help | |
.DEFAULT_GOAL := help | |
help: ## Prints all the targets in all the Makefiles | |
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' | |
.PHONY: list |