Skip to content

Instantly share code, notes, and snippets.

View cr34t1ve's full-sized avatar
:octocat:

Sofua Desmond cr34t1ve

:octocat:
View GitHub Profile
@seunggabi
seunggabi / semantic-branch-names.md
Last active March 10, 2026 18:45
Semantic Branch Names

Semantic Branch Names

See how a minor change to your branch name style can make you a better programmer.

Format: <type>/#<issueNumber>-<alias>

Example

-- code for https://youtu.be/tp_5c6jaNQE
create table users (
id serial primary key,
first_name varchar(255) not null,
last_name text,
age int,
email text unique not null
);
@luxplanjay
luxplanjay / visually-hidden.css
Last active May 2, 2026 16:47
Visually hidden CSS pattern
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
white-space: nowrap;
clip-path: inset(100%);
@dmurawsky
dmurawsky / index.js
Last active April 22, 2025 13:06
How to make a page full height in Next.js
const FullHeightPage = () => (
<div>
Hello World!
<style global jsx>{`
html,
body,
body > div:first-child,
div#__next,
div#__next > div {
height: 100%;
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 6, 2026 18:32
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example