Skip to content

Instantly share code, notes, and snippets.

View pushpak1300's full-sized avatar
:copilot:
Focusing

Pushpak Chhajed pushpak1300

:copilot:
Focusing
View GitHub Profile
@pushpak1300
pushpak1300 / SKILL.md
Last active February 21, 2026 22:57
Formats Laravel config/*.php file comments using Laravel’s cascading three-line style. Ensures comment blocks follow the subtle line-length rhythm used in the framework’s core, preserving the clean, professional feel of first-party Laravel configuration files.
name description license
laravel-comments
Format Laravel config file comments using the cascading style. Use when writing or fixing comments in config/*.php files.
MIT

Laravel Cascading Comment Style

When to Use This Skill

@bhushan
bhushan / .php_cs
Last active August 23, 2020 14:57
PHP CS Fixer for PHPStorm and VSCode
<?php
return PhpCsFixer\Config::create()
->setRules(array(
'@PSR2' => true,
'array_indentation' => true,
'array_syntax' => array('syntax' => 'short'),
'combine_consecutive_unsets' => true,
'method_separation' => true,
'no_multiline_whitespace_before_semicolons' => true,
@laughinghan
laughinghan / Every possible TypeScript type.md
Last active January 24, 2026 16:21
Diagram of every possible TypeScript type

Hasse diagram of every possible TypeScript type

  • any: magic, ill-behaved type that acts like a combination of never (the proper [bottom type]) and unknown (the proper [top type])
    • Anything except never is assignable to any, and any is assignable to anything at all.
    • Identities: any & AnyTypeExpression = any, any | AnyTypeExpression = any
    • Key TypeScript feature that allows for [gradual typing].
  • unknown: proper, well-behaved [top type]
    • Anything at all is assignable to unknown. unknown is only assignable to itself (unknown) and any.
    • Identities: unknown & AnyTypeExpression = AnyTypeExpression, unknown | AnyTypeExpression = unknown
  • Prefer over any whenever possible. Anywhere in well-typed code you're tempted to use any, you probably want unknown.
@parmentf
parmentf / GitCommitEmoji.md
Last active February 15, 2026 16:57
Git Commit message Emoji