Python syntax here : 2.7 - online REPL
Javascript ES6 via Babel transpilation - online REPL
import math| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 12, | |
| // font family with optional fallbacks | |
| fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.8)', |
Python syntax here : 2.7 - online REPL
Javascript ES6 via Babel transpilation - online REPL
import math| function _get_all_meta_values($key) { | |
| global $wpdb; | |
| $result = $wpdb->get_col( | |
| $wpdb->prepare( " | |
| SELECT DISTINCT pm.meta_value FROM {$wpdb->postmeta} pm | |
| LEFT JOIN {$wpdb->posts} p ON p.ID = pm.post_id | |
| WHERE pm.meta_key = '%s' | |
| AND p.post_status = 'publish' | |
| ORDER BY pm.meta_value", | |
| $key |