- Alignment
- ApplySyntax
- AutoBackups
- BracketGuard
- BracketHighlighter
- Case Conversion
- Color Highlighter
- ColorPicker
- ColorSchemeSelector
- Console Wrap for js
This file contains 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 strict'; // avoid ambiguity and sloppy errors | |
/** | |
* Tests whether or not a given string is a Palindrome | |
* @param {string} stringToTest - the string to test. | |
*/ | |
function isPalindrome(stringToTest) { | |
var start = 0, | |
end; |
This file contains 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
/* bling.js */ | |
window.$ = document.querySelectorAll.bind(document); | |
Node.prototype.on = window.on = function (name, fn) { | |
this.addEventListener(name, fn); | |
} | |
NodeList.prototype.__proto__ = Array.prototype; |
This file contains 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
ERROR in ./node_modules/css-loader?{"url":true,"sourceMap":true,"importLoaders":1}!./node_modules/postcss-loader/lib?{"sourceMap":true,"ident":"postcss","plugins":[null]}!./node_modules/resolve-url-loader?{"sourceMap":true,"root":"E://OSPanel//domains//portal//node_modules"}!./node_modules/sass-loader/lib/loader.js?{"precision":8,"outputStyle":"expanded","sourceMap":true}!./resources/assets/sass/app.scss | |
Module build failed: | |
@import "bootstrap/variables"; | |
^ | |
File to import not found or unreadable: bootstrap/variables. | |
Parent style sheet: E:/OSPanel/domains/portal/node_modules/bootstrap-material-design/sass/_import-bs-sass.scss | |
in E:\OSPanel\domains\portal\node_modules\bootstrap-material-design\sass\_import-bs-sass.scss (line 1, column 1) | |
@ ./resources/assets/sass/app.scss 4:14-266 | |
@ multi ./resources/assets/js/app.js ./resources/assets/sass/app.scss |
This file contains 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
Model:: | |
/*Select*/ | |
select('col1','col2') | |
->select(array('col1','col2')) | |
->select(DB::raw('businesses.*, COUNT(reviews.id) as no_of_ratings, IFNULL(sum(reviews.score),0) as rating')) | |
->addSelect('col3','col4') | |
->distinct() // distinct select | |
/*From*/ |
This file contains 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
// -------------------------------------------------- | |
// Flexbox SASS mixins | |
// The spec: http://www.w3.org/TR/css3-flexbox | |
// -------------------------------------------------- | |
// Flexbox display | |
@mixin flexbox() { | |
display: -webkit-box; | |
display: -moz-box; | |
display: -ms-flexbox; |
This file contains 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
/* -------------------------------------------------------------------------- */ | |
// All Bootstrap 4 Sass Mixins [Cheat sheet] | |
// @author http://anschaef.de | |
// @see https://github.com/twbs/bootstrap/tree/v4-dev/scss/mixins | |
/* -------------------------------------------------------------------------- */ | |
// Grid variables | |
$grid-columns: 12 !default; | |
$grid-gutter-width: 30px !default; |
This file contains 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
2018-01-29 16:14:26 81.24.87.129 | |
Table 'byb.wa_app_settings' doesn't exist | |
## wa-system/database/waDbMysqliAdapter.class.php(292) | |
#0 wa-system/database/waDbMysqliAdapter.class.php(168): waDbMysqliAdapter->exception() | |
#1 wa-system/database/waModel.class.php(171): waDbMysqliAdapter->schema('wa_app_settings', false) | |
#2 wa-system/database/waModel.class.php(127): waModel->describe() | |
#3 wa-system/database/waModel.class.php(97): waModel->getFields() | |
#4 wa-system/database/waModel.class.php(77): waModel->getMetadata() | |
#5 wa-system/contact/waContact.class.php(67): waModel->__construct() |
This file contains 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
add_filter( 'woocommerce_product_add_to_cart_text' , 'custom_woocommerce_product_add_to_cart_text' ); | |
/** | |
* custom_woocommerce_template_loop_add_to_cart | |
*/ | |
function custom_woocommerce_product_add_to_cart_text() { | |
global $product; | |
$product_type = $product->product_type; | |
switch ( $product_type ) { |
This file contains 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 echo get_permalink( wc_get_page_id( 'myaccount' ) ); ?> | |
<?php echo get_permalink( wc_get_page_id( 'shop' ) ); ?> | |
<?php echo get_permalink( wc_get_page_id( 'cart' ) ); ?> | |
<?php echo get_permalink( wc_get_page_id( 'checkout' ) ); ?> |
OlderNewer