| プラグイン名 | バージョン | URL |
|---|---|---|
| Add Selected Colours To Document Palette | 1.3.0 | https://github.com/johnmcclumpha/sketch-add-colors-to-palette |
| Add Selected colors... | 0.11.4 | |
| Batch Create Symbols | 1.1 | https://github.com/demersdesigns/sketch-batch-symbols |
| Craft | 1.0.60 | http://labs.invisionapp.com/craft |
| Design System Manager | 1.1.25 | |
| Find and Replace | 2.8.3 | https://github.com/thierryc/Sketch-Find-And-Replace/ |
| Font Finder | 1.2 | https://github.com/ukn530/FontFinder |
| Image average color | 1.1 | https://github.com/AntonioJMartinez/sketch-imageAverageColor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # backup all postgres databases in a gz file | |
| pg_dumpall -U postgres -p 5432 --quote-all-identifiers | gzip >postgresapp.sql.gz | |
| # restore backup file | |
| gunzip <postgresapp.sql.gz | psql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "meta": { | |
| "theme": "flat" | |
| }, | |
| "basics": { | |
| "name": "Alireza Sarabchi", | |
| "label": "Front-end Developer", | |
| "image": "https://avatars0.githubusercontent.com/u/416209?s=460&u=38f220a2c9c658141804f881c334c594eb1642ac&v=4", | |
| "summary": "I am a multidisciplinary designer and front-end developer with over 15 years of experience. During my career, I've worked in various fields of web development, including back-end development, UI/UX, research, management, and business development. These experiences have given me the insight to build, develop, and implement software with companies' needs and business requirements in mind. Additionally, I have experience in managing and mentoring teams and individuals.", | |
| "website": "https://alireza.ws", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface ZodString { | |
| type: "string", | |
| parse(val: unknown): string | |
| } | |
| interface ZodNumber { | |
| type: "number", | |
| parse(val: unknown): number | |
| } | |
| interface ZodUnknown { | |
| type: "unknown", |
OlderNewer