Verify Permissions
diskutil verifyPermissions /
Repair Permissions
diskutil repairPermissions /
| $buttonsColor : #2196f3; | |
| .popup-container{ | |
| .popup{ | |
| padding-top: 5px; | |
| padding-left: 10px; | |
| background: #fafafa; | |
| -webkit-box-shadow: 0 10px 30px 0 rgba(0,0,0,.3); | |
| box-shadow: 0 10px 30px 0 rgba(0,0,0,.3); | |
| var owlBannerCarousel = $('.carousel-brands').owlCarousel({ | |
| scrollPerPage : true, | |
| navigation: true, | |
| dots : false, | |
| pagination: true, | |
| touchDrag: true, | |
| mouseDrag: true, | |
| margin: 0, | |
| loop: true, |
| <?php | |
| $args = array( | |
| 'post_author' => 1, | |
| 'post_content' => '', | |
| 'post_status' => "draft", // (Draft | Pending | Publish) | |
| 'post_title' => '', | |
| 'post_parent' => '', | |
| 'post_type' => "product" | |
| ); |
| <?php | |
| // UPDATE: Stefan from Stack Overflow has explained a better way to handle cart item data. | |
| // See http://stackoverflow.com/a/32327810/470480 | |
| // ---------------------- | |
| /* | |
| Instructions: |
REGEX remove blank lines:
FROM: http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/remove_blank_lines.html
FIND:
^(?:[\t ]*(?:\r?\n|\r))+
| function isChatMessage(message) { | |
| if (message.__x_isSentByMe) { | |
| return false; | |
| } | |
| if (message.__x_isNotification) { | |
| return false; | |
| } | |
| if (!message.__x_isUserCreatedType) { | |
| return false; | |
| } |
| Pra documentar. Aconteceu hoje comigo aquele erro de caractere invisível, uma possível causa é copiar o texto do photoshop e colar no editor de texto. | |
| Comigo funcionou jogar no Google o texto e atualizar a página, todo o texto depois do caractere quebrado não apareceu. |
| const fs = require('fs-extra'); | |
| const KNN = require('ml-knn'); | |
| const moment = require('moment'); | |
| const { GaussianNB, MultinomialNB } = require('ml-naivebayes'); | |
| const { Matrix } = require('ml-matrix'); | |
| const { DecisionTreeClassifier } = require('ml-cart'); | |