Skip to content

Instantly share code, notes, and snippets.

View NetOpWibby's full-sized avatar
🌿
imagine being mad, touch grass

netop://ウィビ NetOpWibby

🌿
imagine being mad, touch grass
View GitHub Profile
@dkun7944
dkun7944 / ContentView.swift
Created July 31, 2023 03:36
AirDrop iOS 17 Swift.Shader Animation
//
// ContentView.swift
// Airdrop Demo
//
// Created by Daniel Kuntz on 7/30/23.
//
import SwiftUI
struct ContentView: View {
@dkun7944
dkun7944 / CDView.swift
Last active April 26, 2025 04:57
SwiftUI + Swift.Shader CD
//
// CDView.swift
// CD
//
// Created by Daniel Kuntz on 7/3/23.
//
import SwiftUI
struct ShapeWithHole: Shape {

Reddit Dec 5, 2022 10:46 AM:

Hi Christian,

I hope all is well!

I’m reaching out because we noticed a spike in Apollo's request rate on December 2nd. It was from approximately 14:17 to 14:23 UTC to /messages/inbox that went up by around 35% before returning to baseline. We are hoping you could help us understand what might have happened.

The source IPs were in AWS us-west-2: redacted, redacted, and redacted and had the Apollo UA server:apollo-backend:v1.0 (by /u/iamthatis) contact [email protected]

@nodech
nodech / custom-claimed.json
Last active April 23, 2024 11:04
June 1 - Name list from top100 and custom. NOTE: There's overlap so this is unique list. originally top100 is 72 (but filtered out root) same for custom (filtered out root and top100)
[
"marples",
"darksi",
"eth",
"namecheap",
"riseup",
"webtorrent",
"keybase",
"m-d",
"brave"

Name issue and solutions

Claim Stats

ICANN TLDs will become available for auction at block 210240, around January 31 to February 2, 2024. As there's interest in preventing ICANN TLD trading on chain, we need to either completely disable claims and permanently seal reservations (soft-fork), or extend the claim period for these reserved names (hard-fork). Names on the reserved list fall into several categories: ROOT (ICANN TLDs),

@jamesjlyons
jamesjlyons / cozy-kagi-theme.css
Last active May 7, 2025 19:10
A cozy theme for Kagi Search. Be sure to set the default Kagi themes to "Calm Blue" and "Moon Dark" for the themes to apply properly.
:root {
--sand1: hsl(50, 20%, 99%);
--sand2: hsl(60, 7.7%, 97.5%);
--sand3: hsl(59, 6.5%, 95.1%);
--sand4: hsl(58, 6.1%, 92.9%);
--sand5: hsl(57, 6%, 90.7%);
--sand6: hsl(56, 5.9%, 88.4%);
--sand7: hsl(55, 5.9%, 85.2%);
--sand8: hsl(51, 6%, 77.1%);
--sand9: hsl(50, 2%, 55.7%);
@Hellisotherpeople
Hellisotherpeople / blog.md
Last active March 27, 2025 00:37
You probably don't know how to do Prompt Engineering, let me educate you.

You probably don't know how to do Prompt Engineering

(This post could also be titled "Features missing from most LLM front-ends that should exist")

Apologies for the snarky title, but there has been a huge amount of discussion around so called "Prompt Engineering" these past few months on all kinds of platforms. Much of it is coming from individuals who are peddling around an awful lot of "Prompting" and very little "Engineering".

Most of these discussions are little more than users finding that writing more creative and complicated prompts can help them solve a task that a more simple prompt was unable to help with. I claim this is not Prompt Engineering. This is not to say that crafting good prompts is not a difficult task, but it does not involve doing any kind of sophisticated modifications to general "template" of a prompt.

Others, who I think do deserve to call themselves "Prompt Engineers" (and an awful lot more than that), have been writing about and utilizing the rich new eco-system

You are a Mentor Panel of world luminaries chosen for your wisdom and breadth of knowledge across areas such as: health, relationships, career, and purpose. Your job is to identify my core beliefs, and then offer wisdom on where those beliefs may be untrue or incomplete. This job is a 5 step process, detailed below. Your job also involves communicating these in actionable ways for me to grow. Your job is not to talk too much, or give me too much information, but rather to co-create with me, by dialoging with me, and making sure you understand my perspectives before challenging me with paradigm-shifting perspectives.
On the panel are:
Health: Dr. Sanjay Gupta, known for his in-depth knowledge of healthy eating, exercise, and brain health.
Relationships: HH Dalai Lama, known for teaching and embodying kindness.
Career: Naval Ravikant
Purpose: Simon Sinek, known for his books on finding purpose and “why”.
Thinking: Sam Harris, known for his willingness to take unpopular opinions
Leadership: Marcus Aurelius, kn
# V1 (optimized for novel imagery)
Forget all previous prompts. You are an expert at crafting prompts for Midjourney, an AI-powered image generator. Your prompts result in stunning and original images by merging unexpected subjects, mediums, styles, and various other components. Concentrate on lesser-known mediums, subjects, artists, and art styles to create more distinctive combinations.
Optionally, incorporate details in the prompt that describe the subject, film type (e.g., Kodak Portra 400, Fujifilm Neopan Acros 100, CineStill 800T), lighting (e.g., side lighting, diffused lighting, hard lighting), shot type (e.g., low-angle, eye-level, extreme closeup shot, full-body shot), styling, ambiance, location, and other aspects of the image.
In each prompt, specify the aspect ratio for the image with the format '--ar width:height', where width and height are integers.
You can also specify more than one option for a single parameter in the prompt by enclosing the options within brackets. For example:
@foldericon
foldericon / Dockerfile
Created April 14, 2023 22:28
Builds a docker image of oobabooga webUI for nvidia jetson devices
FROM nvcr.io/nvidia/l4t-pytorch:r35.2.1-pth2.0-py3 as builder
ENV TORCH_CUDA_ARCH_LIST Turing
RUN apt-get update && \
apt-get install -y python3 python3-pip git build-essential python3-dev
RUN pip3 install --upgrade pip setuptools
RUN git clone https://github.com/g588928812/bitsandbytes_jetsonX.git /build
WORKDIR /build
RUN CUDA_VERSION=114 make cuda11x
RUN mkdir /wheels