Skip to content

Instantly share code, notes, and snippets.

View albinekb's full-sized avatar
πŸ€–
AgentAgentAgentAgentAgent

Albin Ekblom albinekb

πŸ€–
AgentAgentAgentAgentAgent
View GitHub Profile
@Swapnull
Swapnull / CodeOutput.jsx
Last active November 28, 2020 18:57
Code Ouput for docz
// @flow
import React from 'react';
import SyntaxHighlighter from 'react-syntax-highlighter/prism';
import { dark } from 'react-syntax-highlighter/styles/prism';
import { renderToStaticMarkup } from 'react-dom/server';
import pretty from 'pretty';
import jsxToString from 'jsx-to-string';
type Props = { children: any, showReact?: boolean, showHTML?: boolean, showIcon?: boolean };
type State = { active: number };
import * as React from "react";
import { useMousePosition } from "~/hooks/useMousePosition";
/** Component to cover the area between the mouse cursor and the sub-menu, to allow moving cursor to lower parts of sub-menu without the sub-menu disappearing. */
export function MouseSafeArea(props: { parentRef: React.RefObject<HTMLDivElement> }) {
const { x = 0, y = 0, height: h = 0, width: w = 0 } = props.parentRef.current?.getBoundingClientRect() || {};
const [mouseX, mouseY] = useMousePosition();
const positions = { x, y, h, w, mouseX, mouseY };
return (
<div
@stephancasas
stephancasas / ProcessSerialNumber.swift
Created March 2, 2024 21:20
How 'bout I do anyway? πŸ˜’
//
// ProcessSerialNumber.swift
//
// Created by Stephan Casas on 2/28/24.
//
extension ProcessSerialNumber {
/// Create a new `ProcessSerialNumber` using the given process identifier.
init?(_ pid: pid_t) {
@gsans
gsans / gist:e40451bde73bf2d0fc3b1e74fb4ee8d8
Created June 27, 2024 22:49
Sonnet 3.5 system prompt
<artifacts_info>
The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity.
# Good artifacts are...
- Substantial content (>15 lines)
- Content that the user is likely to modify, iterate on, or take ownership of
- Self-contained, complex content that can be understood on its own, without context from the conversation
- Content intended for eventual use outside the conversation (e.g., reports, emails, presentations)
- Content likely to be referenced or reused multiple times