Skip to content

Instantly share code, notes, and snippets.

@anhedonix
anhedonix / 00 Meeting Breakdown.md
Last active October 29, 2024 07:58
2024 10 29 - Marvel Vinyls Meeting - Web Dev

Marvel Vinyls Meeting Agenda & Details

Online Google hangouts meeting with Marvel Vinyls and Morpheus Plus.

1. Meeting Structure & Flow

  • A loose schedule for the <2-hour meeting:
    • Introduction (5 mins)
    • Requirement gathering & scope finalization (20-30 mins)
  • Deliverables & solutions overview (10-15 mins)
@anhedonix
anhedonix / ChinmayWebsite Structure.md
Last active October 15, 2024 06:46
Chinmay Website Plan

USER

Help me create a website

ASSISTANT

I'd be delighted to help you create your website! But first, we need to gather some details. Please provide the following information:

  1. What are your goals for the website? This could include selling products, blogging, providing information, etc.
  2. Who is your target audience?
  3. Where are you located? I'm asking this to help with understanding your currency and any location-specific considerations for your website.

Notes for Marvel Meeting with Client


1. Client's Goals and Expectations

  • Clarify the client's main focus: Performance improvements (loading speed, security, code issues) vs. a full design overhaul (UI/UX).
  • Ask about CMS/platform/framework preferences if not already finalized.
  • Inquire if they have competitors or reference websites they like to align the design/technical work more closely with their vision.
@anhedonix
anhedonix / Aisthetic Website Redesign.md
Last active October 14, 2024 06:03
Trial of Asisthetic web design

🎨💻 Aisthetic Website Redesign

USER

Help me create an updated website for https://aisthetic.co/

ASSISTANT

Sure! To help you create an updated website for Aisthetic.co, I'll need some information from you first. Please answer the following questions:

  1. What are your primary goals for the updated website, and who is your target audience?
  2. Where are you located? This will help me provide pricing context in your local currency.
@anhedonix
anhedonix / Interactive scaffolder trial.md
Last active October 18, 2024 14:55
Website Structure LLM Chat

Interactive website structure creator

res_py = py_programmer.chat('I want a script that will initialize a new sveltekit project with svelte5 and tailwind.', lang="go") # Pass content
print(res_py)
@anhedonix
anhedonix / DefaultPBR.md
Created October 7, 2024 21:38
Fragment shaders detailed explanation
#version 300 es
precision highp float;

// Input variables
in vec3 v_position;  // The position of the current fragment in world space
in vec3 v_normal;    // The normal vector of the current fragment
in vec2 v_texcoord;  // The texture coordinates of the current fragment

// Technical: These are interpolated values passed from the vertex shader
@anhedonix
anhedonix / PrismCore_v1.md
Last active October 16, 2024 21:47
MakerCore Architecture

Maker Project Architecture

Project Overview

Maker is an advanced, AI-powered web-based tool designed to automate various tasks related to project creation, building, deployment, and URL mapping. It provides a user-friendly interface for selecting and executing tasks with customizable inputs, leveraging AI to optimize workflows and supporting community contributions through a marketplace system.

System Overview

graph TB
@anhedonix
anhedonix / Watch Running coreutil commands.sh
Created January 5, 2022 17:54
Run a particular command every n seconds and show the results.
watch -n 2 progress
@anhedonix
anhedonix / Emacs List all Font names
Created December 22, 2021 10:18
List all the available font names from emacs
(dolist (font (x-list-fonts "*"))
(insert (format "%s\n" font)))
@anhedonix
anhedonix / Emacs Org tangle from CLI
Created December 22, 2021 10:17
Tangle a Org file from CLI without emacs UI
emacs --batch --eval "(require 'org)" --eval '(org-babel-tangle-file "~/emacs.tangle.org")'