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
| // Tags | |
| atom-text-editor::shadow .tag.html, | |
| atom-text-editor::shadow .begin.html, atom-text-editor::shadow .end.html { | |
| color: #e06c75; | |
| } | |
| // Inside Tags | |
| atom-text-editor::shadow .meta.tag.any.html, | |
| atom-text-editor::shadow .string.begin.html, | |
| atom-text-editor::shadow .string.end.html { |
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
| SURFACE | |
| CODE | |
| -- Trous X Y Z for ComputerCraft 1.74 / Minecraft 1.7.10 | |
| -- X-Raym, Friops, Hengry | |
| -- 2015-08-25 | |
| -- A script to dig a parallepipedic hole x y z. | |
| -- CUSTOMIZATION | |
| longueur = 4 | |
| largeur = 6 |
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
| arts = {'Accent','Staccato','Tenuto','Staccatissimo','Marcato','Fermata'} | |
| index = 10 | |
| for i, art in ipairs( arts ) do | |
| output = 'slider' .. index .. ':0<0,2,1{None,CC,Note}>' .. art .. ' Output' | |
| print (output) | |
| index = index + 1 |
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"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>REAPER actions list</title> | |
| </head> | |
| <body> | |
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
| <?php | |
| // http://wordpress.stackexchange.com/questions/83887/return-current-page-type | |
| function get_page_type() { | |
| global $wp_query; | |
| $loop = 'notfound'; | |
| if ( $wp_query->is_page ) { | |
| $loop = is_front_page() ? 'front' : 'page'; | |
| } elseif ( $wp_query->is_home ) { |
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
| array = { | |
| 'https://ia802707.us.archive.org/13/items/SouthernTierRadioTheatreProgram9/strt9_64kb.mp3', | |
| 'https://archive.org/download/Caruso_part1/Caruso-AddioAllaMadre.mp3', | |
| 'https://archive.org/download/Caruso_part1/Caruso-AddioDolceSvegliareAllaMattinawFarrarCiaparelliScotti.mp3', | |
| 'https://archive.org/download/Caruso_part1/Caruso-AdorablesTourments.mp3', | |
| 'https://archive.org/download/Caruso_part1/Caruso-CantiqueDeNoel.mp3', | |
| 'https://archive.org/download/Caruso_part1/Caruso-CelesteAida_2.mp3', | |
| 'https://archive.org/download/Caruso_part1/Caruso-CujusAnimann.mp3', | |
| 'https://archive.org/download/Caruso_part1/Caruso-DelTempioAlLimitarwMarioAncona.mp3', | |
| 'https://archive.org/download/Caruso_part1/Caruso-DellanatalsuaterrailpadreOtucheinsenoaglangeli.mp3', |
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
| <?php | |
| /** | |
| * Plugin Name: WaveSurfer-WP Custom Functions | |
| * Description: Custom functions for WaveSurfer-WP | |
| */ | |
| //------------------------------- CONDITIONAL SHORTCODE ATTRIBUTES ------------------------------------- | |
| // Add shortcode attributes |
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
| <?php | |
| define( 'WP_USE_THEMES', false ); | |
| require( 'wp-blog-header.php' ); | |
| $usermeta = get_user_meta( 354, '_sfwd-quizzes', true ); | |
| $new = array(); | |
| foreach ($usermeta as $key => $value) { | |
| if ( $value['time'] < 1476545002 ) | |
| array_push($new, $value); |
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
| 1."Je veux les lignes pour lequel le quiz_id est égal à 191" : | |
| SELECT * | |
| FROM wp_wp_pro_quiz_lock | |
| WHERE quiz_id = 191 | |
| 2. "Je veux supprimer la ligne pour lequel le quiz est egal à 91 et l'user_id à 384" : | |
| DELETE |
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
| <?php | |
| /* | |
| Plugin Name: Ultimate Post Widget for Easy Digital Downloads | |
| */ | |
| // NOTE: WOrk in progress | |
| add_filter('upw_wp_query_args', 'upw_only_posts_with_same_edd_category', 10 , 2); | |
| function upw_only_posts_with_same_edd_category($args, $instance) { |