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
| <!DOCTYPE html> | |
| <html lang="en" ng-app="taskManager"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Task Manager</title> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script> | |
| <style> | |
| body { font-family: Arial, sans-serif; margin: 20px; } | |
| .task-done { text-decoration: line-through; color: gray; } | |
| .list-container { margin-bottom: 20px; } |
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
| <!DOCTYPE html> | |
| <html ng-app="taskManagerApp"> | |
| <head> | |
| <title>Task Manager</title> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | |
| <style> | |
| body { font-family: Arial, sans-serif; margin: 20px; } | |
| h1 { color: #333; } | |
| ul { list-style-type: none; padding: 0; } |
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
| /** | |
| * Equalize JS | |
| * Source: https://css-tricks.com/snippets/jquery/equalize-heights-of-divs/ | |
| */ | |
| jQuery.fn.equalize = function() { | |
| var maxHeight = 0; | |
| return this.each(function() { | |
| var $this = jQuery(this); |
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
| /** | |
| * @snippet Hide Price & Add to Cart for Logged Out Users | |
| * @how-to Get CustomizeWoo.com FREE | |
| * @author Rodolfo Melogli, BusinessBloomer.com | |
| * @testedwith WooCommerce 4.6 | |
| * @donate $9 https://businessbloomer.com/bloomer-armada/ | |
| */ | |
| // SOURCE: https://www.businessbloomer.com/woocommerce-hide-price-add-cart-logged-users/ | |
| add_action( 'init', 'bbloomer_hide_price_add_cart_not_logged_in' ); |
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
| .container { | |
| position: relative; | |
| } | |
| .container .element { | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| } |
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
| See the script names next to the PID | |
| ps -eo pid,ppid,start_time,command | |
| Source: https://serverfault.com/a/518756 | |
| See memory and CPU % usages and PID | |
| top |
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
| find . -name "*.bak" -type f -delete |