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
http://nhanaswigs.github.io/htmljs/api/index.html | |
http://www.slideshare.net/TomislavMesi/decoupling-you-rhtml-css-and-java-script | |
http://superstatic.org/ | |
https://github.com/marmelab/ng-admin | |
http://blog.brackets.io/2013/08/28/theseus-javascript-debugger-for-chrome-and-nodejs/ | |
http://smacss.com/book/ | |
https://github.com/eirslett/frontend-maven-plugin | |
https://psdtowordpress.com/frontend-development-tools.html | |
http://addyosmani.com/blog/understanding-mvvm-a-guide-for-javascript-developers/ | |
https://github.com/kmalakoff/knockback |
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
@echo off | |
SET st2Path=C:\Program Files\Sublime Text 3\sublime_text.exe | |
rem add it for all file types | |
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f | |
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st2Path%,0" /f | |
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st2Path% \"%%1\"" /f | |
rem add it for folders | |
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f |
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
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete_selector": "source, text", | |
"bold_folder_labels": true, | |
"color_inactive_tabs": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"draw_white_space": "all", | |
"font_size": 12, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, |
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
rem() | |
values = () | |
for i in arguments | |
push(values, i/16 rem) | |
return values | |
// e.g. padding rem(94px 0 75px) |
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
/** | |
* Responsive Image function for ACF Image Array fields - SUPER OPTIMIZED. | |
* | |
* This function is specifically designed for ACF Image Array format. | |
* Ensures maximum performance with clean, simple code. | |
* | |
* @param array $image_mobile ACF Image Array field | |
* @param array $image_tablet ACF Image Array field | |
* @param array $image_desktop ACF Image Array field | |
* @param string $alt_text Alt text for accessibility (optional - auto-extracted) |