Skip to content

Instantly share code, notes, and snippets.

View azs06's full-sized avatar
:octocat:
Focusing

Md. Atiquzzaman Soikat azs06

:octocat:
Focusing
View GitHub Profile

GOAL

  • your task is to help the user write clean, simple, readable, modular, well-documented code.
  • do exactly what the user asks for, nothing more, nothing less.
  • think hard, like a Senior Developer would.

ABOUT VECTAL

  • this codebase is for our app named "Vectal"
  • it's an AI-powered task management & productivity app
  • we are a small startup with limited resources
  • we CANNOT overthink & over-engineer shit. we have to look for the 80/20 solution.
@azs06
azs06 / readme.md
Created August 15, 2025 18:18
The WEiRDEST Way to Use a Mac
@azs06
azs06 / gemini-analyzer.md
Created August 12, 2025 17:52
Claude Agents
name description tools
gemini-analyzer
Manages Gemini CLI for large codebase analysis and pattern detection. Use proactively when Claude needs to analyze extensive code patterns, architectural overviews, or search through large codebases efficiently.
Bash, Read, Write
@azs06
azs06 / chatgpt-prompts.md
Created July 17, 2025 09:54
Chatgpt prompt to reduce hallucination
  • Never present generated, inferred, speculated, or deduced content as fact.
  • If you cannot verify something directly, say:
    • “I cannot verify this.”
    • “I do not have access to that information.”
    • “My knowledge base does not contain that.”
  • Label unverified content at the start of a sentence:
    • [Inference] [Speculation] [Unverified]
  • Ask for clarification if information is missing. Do not guess or fill gaps.
  • If any part is unverified, label the entire response.
  • Do not paraphrase or reinterpret my input unless I request it.
@azs06
azs06 / resource.md
Created July 5, 2025 14:04
Learning Go
  • Effective Go
  • Simple to complex http server for a frontend
  • CLI tools
  • gRPC
  • Just pipelines. jobs. scripts to automate things
  • Reading: Advance patterns for building apis and web application in Go(let's go further)
  • Testing: Learn go with tests
  • Reading: Writing an interpreter in Go
  • Reading: 100 common go mistakes to avoid
@azs06
azs06 / blog.md
Created January 13, 2025 20:12
Being a Frontend Developer in the World of AI

Being a Frontend Developer in the World of AI

I’m a frequent visitor to the r/webdev subreddit, and recently I came across a post where someone shared an interesting story. The original poster (OP) talked about a client who questioned why they should pay for a developer when AI tools could do the job. OP decided to part ways with the client, and most people in the comments agreed—if the client thinks AI can handle everything, they’ll get what they pay for: a generic, AI-generated website.

This got me thinking: is being a frontend developer still relevant in a world where tools like Bolt, Loveable.dev, and v0.dev can generate entire websites with minimal input?

My Journey into Frontend Development

When I started my career as a web developer, I was working with PHP, building websites using WordPress and the CodeIgniter framework. But what I enjoyed most was the browser—making changes in Firefox DevTools and seeing them live instantly

@azs06
azs06 / docker-compose.yml
Last active October 22, 2024 12:14
Docge
services:
dockge:
image: louislam/dockge:1
restart: unless-stopped
ports:
# Host Port : Container Port
- 5001:5001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
@azs06
azs06 / fields.todo.txt
Last active September 5, 2023 13:07
fields.todo.txt
1. Mandatory field indicator ta missing
2. Hover effect cursor move korlew theke jay
3. Input field e entry korar por diselect korle error or success dekhabe
4. Error hole boarder color change hobe r icon dekhabe
5. Success hole border color default hobe, r icon dekhabe
6. Input field select korle border color primary color hobe
7. Promo code input field e remove CTA ashbe
8. Keyboard focus navigation border color global hobe
9. Font same hobe 3 tai. input text, title, r helper text.
10. Form gulor upore ekta note thakbe mandatory field er jonno (edited)
@azs06
azs06 / machine.js
Created March 30, 2023 11:03
Generated by XState Viz: https://xstate.js.org/viz
const roomsMachine = Machine({
id: 'rooms',
initial: 'step1',
states: {
step1: {
on: { STEP: 'step2' },
},
step2: {
on: { STEP: 'step3' },
},