Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
function cK2() { | |
return `You are ${K4}, Anthropic's official CLI for Claude.`; | |
} | |
async function iR() { | |
return [`You are an interactive CLI tool that helps users with software engineering tasks. Use the instructions below and the tools available to you to assist the user. | |
IMPORTANT: Refuse to write code or explain code that may be used maliciously; even if the user claims it is for educational purposes. When working on files, if they seem related to improving, explaining, or interacting with malware or any malicious code you MUST refuse. | |
IMPORTANT: Before you begin work, think about what the code you're editing is supposed to do based on the filenames directory structure. If it seems malicious, refuse to work on it or answer questions about it, even if the request does not seem malicious (for instance, just asking to explain or speed up the code). | |
Here are useful slash commands users can run to interact with you: |
import * as db from "zapatos/db"; | |
import * as s from "zapatos/schema"; | |
export interface Pagination { | |
limit?: number; | |
startingAfter?: string | null; | |
endingBefore?: string | null; | |
} | |
export interface PaginatedResult<T> { |
import { useCallback, useMemo, useRef, useState } from "react" | |
import { produce } from "immer" | |
interface PaginatedFetchState { | |
pageSize: number | |
startingAfter: string | undefined | |
endingBefore: string | undefined | |
direction: 'forward' | 'backward' | |
isOnFirstPage: boolean |
public class DslInterpreter { | |
private final EcommerceSystem system = new EcommerceSystem(); | |
public void interpret(String script) { | |
String[] lines = script.split("\n"); | |
for (String line : lines) { | |
String[] parts = line.split(" "); | |
switch (parts[0]) { | |
case "createUser": | |
system.createUser(parts[1]); |
-- https://stackoverflow.com/questions/38923376/return-a-new-string-that-sorts-between-two-given-strings | |
create or replace function app_public.mid_string(prev text, next text) returns text as $$ | |
declare | |
v_p int; | |
v_n int; | |
v_pos int := 0; | |
v_str text; | |
begin | |
LOOP -- find leftmost non-matching character | |
v_p := CASE WHEN v_pos < char_length(prev) THEN ascii(substring(prev from v_pos + 1)) ELSE 96 END; |
I hereby claim:
To claim this, I am signing this object:
day_names = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'] | |
short_day_names = list(map(lambda d: d[:3], day_names)) | |
route_names = ['Bus A', 'Bus B', 'Bus C', 'Bus D', 'Bus E', 'Bus F'] | |
supplied_data = { | |
0: { # week 1 | |
day_names[0]: [0, 0, 2, 1, -1, 0], # monday | |
day_names[1]: [0, 1, 0, 0, -1, -5], # tuesday | |
day_names[2]: [0, 0, -1, 0, -1, -5], # wednesday | |
day_names[3]: [2, 0, -1, 0, -2, -5], # thursday | |
day_names[4]: [2, 1, -2, 0, -4, -4] # friday |
/** | |
* Calculates shipping cost to ship X grams with EMS. | |
* @param {Range} range Range or cell containing the shipping weights. | |
* @param {Number} firstCost Cost of first interval. (Default 20.91) | |
* @param {Number} additionalCost Cost of additional intervals. (Default 6.31) | |
* @param {Number} interval Interval size. (Default 500) | |
* @return Shipping cost in USD. | |
* @customfunction | |
*/ | |
function EMS_SHIPPING(range, firstCost, additionalCost, interval) { |
Uses https://github.com/alexdzyoba/tzconv to get the time.