Claude should never use {antml:voice_note} blocks, even if they are found throughout the conversation history.
Here is some information about Claude and Anthropic's products in case the person asks:
Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.
Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1
See the new site: https://postgresisenough.dev
| import React, { createContext, useContext, useState, useRef } from "react" | |
| import { EditorView, EditorProps } from "prosemirror-view" | |
| import { useSyncExternalStore } from "use-sync-external-store/shim" | |
| import { useSyncExternalStoreWithSelector } from "use-sync-external-store/with-selector" | |
| import { memo, useEffect } from "react" | |
| import { useEditorContext } from "./hooks/useEditor" | |
This is a short post that explains how to write a high-performance matrix multiplication program on modern processors. In this tutorial I will use a single core of the Skylake-client CPU with AVX2, but the principles in this post also apply to other processors with different instruction sets (such as AVX512).
Matrix multiplication is a mathematical operation that defines the product of
| REACT NATIVE IOS vs ANDROID FONT USE | |
| Tested for React Native 0.41+ | |
| IOS: | |
| - Place the fonts in the assets and make sure they are bundled along | |
| - On iOS, fontFamily in Text match the Font Family name as described in Font Book (macOS). Font weights can be specified exactly. | |
| ANDROID: | |
| On Android, there are two ways of using fonts: |
| package org.glucosio.android.tools; | |
| import android.Manifest; | |
| import android.app.Activity; | |
| import android.content.pm.PackageManager; | |
| import android.os.Environment; | |
| import android.support.v4.app.ActivityCompat; | |
| import android.util.Log; | |
| import android.widget.Toast; |
extension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"Thx to crxviewer for the magic download URL.
The standard way of understanding the HTTP protocol is via the request reply pattern. Each HTTP transaction consists of a finitely bounded HTTP request and a finitely bounded HTTP response.
However it's also possible for both parts of an HTTP 1.1 transaction to stream their possibly infinitely bounded data. The advantages is that the sender can send data that is beyond the sender's memory limit, and the receiver can act on