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
$(".search.themes li input").change(function() { | |
var classes = [] | |
$(".search.themes li input:checked").each(function(){ | |
console.log($(this).siblings(".box")) | |
var classList = $(this).siblings(".box").attr('class').split(/\s+/); | |
$.each( classList, function(index, item){ | |
if (item != 'box') { | |
classes.push(item) | |
} |
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
StyleStats! | |
ββββββββββββββββββββββββββββ¬βββββββββββββββββββββββββ | |
β Size β 132.4KB β | |
ββββββββββββββββββββββββββββΌβββββββββββββββββββββββββ€ | |
β Rules β 1040 β | |
ββββββββββββββββββββββββββββΌβββββββββββββββββββββββββ€ | |
β Selectors β 1446 β | |
ββββββββββββββββββββββββββββΌβββββββββββββββββββββββββ€ | |
β Simplicity β 71.92% β | |
ββββββββββββββββββββββββββββΌβββββββββββββββββββββββββ€ |
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
SELECT | |
drivers.id, | |
drivers.first_name, | |
(SELECT COUNT(*) FROM order_deliveries INNER JOIN picking_sets ON order_deliveries.batch_id = picking_sets.id WHERE order_deliveries.pay_shopper_if_canceled = 'f' AND picking_sets.driver_id = drivers.id) as deliveries_count, | |
(SELECT COUNT(*) FROM order_deliveries INNER JOIN picking_sets ON order_deliveries.batch_id = picking_sets.id WHERE order_deliveries.pay_shopper_if_canceled = 'f' AND order_deliveries.id IN (SELECT order_delivery_id FROM order_issues) AND picking_sets.driver_id = drivers.id) as deliveries_with_issues_count | |
FROM drivers; |
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
id | name | ||
---|---|---|---|
77975 | [email protected] | Arnaud Ferreri |
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
OPENAI_API_KEY=your key |
OlderNewer