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
| --- | |
| name: frontend-design | |
| description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics. | |
| license: Complete terms in LICENSE.txt | |
| --- | |
| This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. | |
| The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. |
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
| 424389933 Final Cut Pro (10.6.2) | |
| 1289583905 Pixelmator Pro (2.4.2) | |
| 1481669779 Evernote Web Clipper (7.22.1) | |
| 522706442 Sync Folders Pro (4.6.1) | |
| 409183694 Keynote (12.0) | |
| 1284863847 Unsplash Wallpapers (1.4.5) | |
| 1278508951 Trello (2.13.1) | |
| 403304796 iNet Network Scanner (2.9.1) | |
| 441258766 Magnet (2.8.0) | |
| 1559269364 Notion Web Clipper (1.0.3) |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # | |
| # Welcome to WPLib Box! | |
| # | |
| # The EASIEST Way to Setup a Local WordPress Development | |
| # Environment, using Vagrant | |
| # | |
| # Brought to you by The WPLib Team: |
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
| /** | |
| * Removes the value ›nofollow‹ from the rel attribute. | |
| */ | |
| function xwp_dofollow($str) | |
| { | |
| $str = preg_replace( | |
| '~<a ([^>]*)\s*(["|\']{1}\w*)\s*nofollow([^>]*)>~U', | |
| '<a ${1}${2}${3}>', $str); | |
| return str_replace(array(' rel=""', " rel=''"), '', $str); | |
| } |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |