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
| { | |
| "php.validate.executablePath": "E:/xampp/php", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.fontFamily": "Monaco", | |
| "editor.fontLigatures": true, | |
| "editor.smoothScrolling": true, | |
| "emmet.triggerExpansionOnTab": true, | |
| "colorize.include": ["**.scheme.txt"], | |
| "workbench.statusBar.visible": 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
| <input id="autocomplete"> |
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
| ++++++++ | |
| [ | |
| >++++++++ | |
| >+++++++++++ | |
| >++++++++++++ | |
| >++++ | |
| <<<<- | |
| ] | |
| >> | |
| ++. |
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
| #include <iostream> | |
| using namespace std; | |
| struct Node { | |
| int data; | |
| Node* next; | |
| Node* prev; | |
| }; |
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
| <?php | |
| $data = [ | |
| [ | |
| 'id' => 1, | |
| 'name' => 'A', | |
| 'parent_id' => null, | |
| ], | |
| [ | |
| 'id' => 2, |
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
| <?php | |
| class Bootstrap_Nav_Walker extends Walker_Nav_Menu { | |
| public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { | |
| $active = in_array( 'current-menu-item', $item->classes ) ? 'active' : ''; | |
| if ( in_array( 'menu-item-has-children', $item->classes ) ) { | |
| $output .= " | |
| <li class='nav-item dropdown'> |
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
| <?php | |
| function enqueue_assets() { | |
| // If using a child theme, auto-load the parent theme style. | |
| if ( is_child_theme() ) { | |
| wp_enqueue_style( 'parent-main', get_template_directory_uri() . '/style.css' ); | |
| } | |
| // Always load active theme's style.css |
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
| // Returns Given Length Fibonacci Sequence (Array) | |
| // Loop | |
| function fibonacci(length) { | |
| let n1 = 0, n2 = 1, next, sequence = [] | |
| for (let i = 1; i <= length; i++) { | |
| sequence.push(n1) | |
| next = n1 + n2 | |
| n1 = n2 |
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
| @fontFamily: "Operator Mono"; | |
| @fontFamily2: "flottflott"; | |
| @fontFamily3: "segoe ui"; | |
| atom-text-editor { | |
| font-family: @fontFamily; | |
| font-size: 17px; | |
| .syntax--entity.syntax--other.syntax--attribute-name.syntax--html, |
NewerOlder