Skip to content

Instantly share code, notes, and snippets.

@zanhk
zanhk / AddEditPhaseModal.tsx
Created March 23, 2024 22:40 — forked from MarkAtOmniux/AddEditPhaseModal.tsx
A Project Board Planner board built using Payload CMS
import React from 'react';
import { Modal } from '@faceless-ui/modal';
import { Button } from 'payload/components';
import {
Form,
FormSubmit,
RenderFields,
fieldTypes,
} from 'payload/components/forms';
@zanhk
zanhk / style.css
Created May 20, 2023 12:38
100 Bytes of CSS to look great everywhere
html {
max-width: 70ch;
padding: 3em 1em;
margin: auto;
line-height: 1.75;
font-size: 1.25em;
}
@zanhk
zanhk / πŸ’» Recent coding in languages
Last active October 2, 2024 13:10
πŸ’» Recent coding in languages
SVG +2.1k/ -984 β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 66.5%
Astro +12.0k/ -820 β–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 14.7%
TypeScript +7.5k/ -165 β–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 11.4%
JSON +2.1k/ -385 β–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 2.7%
Roff +884/ -182 ▍░░░░░░░░░░░░░░░░░░░░ 2.2%
YAML +522/ -256 β–Žβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 1.2%
JavaScript +536/ -136 ▏░░░░░░░░░░░░░░░░░░░░ 0.8%
Markdown +215/ -25 β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 0.4%
CSS +206/ -8 β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 0.1%
TOML +21/ -0 β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 0.0%
@zanhk
zanhk / πŸ—“ my date box
Last active June 24, 2024 00:23
πŸ“… Date box
πŸ—“ 5 days before WEEKEND
πŸ—“ 181 days before MY BIRTHDAY
@zanhk
zanhk / README.md
Last active May 14, 2023 13:46
🏭 ERP
@zanhk
zanhk / keybindings.jsonc
Last active May 13, 2023 21:54
πŸ§‘β€πŸ’» vscode keybindings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+d",
"command": "-editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+d",
"command": "editor.action.deleteLines",
@zanhk
zanhk / settings.jsonc
Last active June 17, 2023 11:23
πŸ§‘πŸ½β€πŸ’» vscode settings
{
/*********************************
* WORKBENCH
********************************/
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
"workbench.tree.indent": 16,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.limit.enabled": true,
@zanhk
zanhk / basics.sql
Created December 26, 2021 09:49
πŸ—„οΈ SQL Basics
-- Create tables
CREATE TABLE employee (
emp_id INT PRIMARY KEY,
first_name VARCHAR(40),
last_name VARCHAR(40),
birth_day DATE,
sex VARCHAR(1),
salary INT,
super_id INT,
@zanhk
zanhk / js-in-a-nutshell.md
Last active May 13, 2023 21:25
πŸ‡ Javascript in a nutshell

Javascript in a nutshell

JS Logo

Examples and exercise will be soon included

In this repo I ll include all the resources needed for start with javascript and understand the huge caos around it.

I m bad both at english and javascript so if you wanna contribute it will be nice.