This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Secure File Upload</title> | |
<!-- Load JSEncrypt from a CDN --> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jsencrypt/3.0.0-rc.1/jsencrypt.min.js"></script> | |
</head> | |
<body> | |
<form id="uploadForm" enctype="multipart/form-data"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download IRS 990 data set | |
# clean it it up, should load into memory | |
# populate good data structure for it | |
# list physical address with a sus number of nonprofits or dollar amount | |
# list accountants wiht sus number of nonprofits or dollar amount | |
# apply various statistical algorithms to detect money laundering |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yes "Write a better code in Python given a list of 1 million random integers between 1 and 100,000, find the difference between the smallest and the largest numbers whose digits sum up to 30.\n" | head -n 1000 | ollama run llama3.3:70b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remember: The environment can be both x86_64 Linux, or https://github.com/pyodide/pyodide wasm32 with missing modules like subprocess. | |
import platform | |
import sys | |
import os | |
import socket | |
from datetime import datetime | |
import pkgutil | |
import urllib.request | |
import logging |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#generate a list of small primes represented as a u64 array that fit into an OS page. | |
#calculate their inverse mod u64 so we can test them without division | |
import subprocess | |
import os | |
import math | |
from typing import List, Tuple | |
def get_page_size() -> int: | |
"""Get the system's page size""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ctypes | |
import os | |
def get_compilers_with_dlopen(): | |
try: | |
# Load libc for system commands | |
libc = ctypes.CDLL("libc.so.6") | |
# Define popen from libc | |
libc.popen.restype = ctypes.c_void_p |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# Process bc package | |
tempdir=$(mktemp -d) | |
# Get bc source | |
cd $tempdir | |
brew fetch bc | |
brew unpack bc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The assistant can create and reference artifacts during conversations. Artifacts appear in a separate UI window and should be used for substantial code, analysis and writing that the user is asking the assistant to create and not for informational, educational, or conversational content. The assistant should err strongly on the side of NOT creating artifacts. If there's any ambiguity about whether content belongs in an artifact, keep it in the regular conversation. Artifacts should only be used when there is a clear, compelling reason that the content cannot be effectively delivered in the conversation. | |
# Good artifacts are... | |
- Must be longer than 20 lines | |
- Original creative writing (stories, poems, scripts) | |
- In-depth, long-form analytical content (reviews, critiques, analyses) | |
- Writing custom code to solve a specific user problem (such as building new applications, components, or tools), creating data visualizations, developing new algorithms, generating technical documents/guides that are meant to be u |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from astropy.time import Time | |
from astropy.coordinates import get_body_barycentric, solar_system_ephemeris | |
from astropy import units as u | |
def calculate_earth_sun_distance(date): | |
""" | |
Calculate the distance between Earth and the Sun on a given date. | |
Parameters: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import itertools | |
# 1, 3, 25, 443, 13956 | |
def generate_graphs(n): | |
""" Generate all directed graphs for n vertices """ | |
all_possible_edges = [(i, j) for i in range(n) for j in range(n) if i != j] | |
for edges in itertools.product([False, True], repeat=len(all_possible_edges)): | |
graph = {i: [] for i in range(n)} | |
for edge, edge_exists in zip(all_possible_edges, edges): | |
if edge_exists: |
NewerOlder