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 | |
| // Sum all values from order_total column in completed orders, and return. | |
| $qb = $em->createQueryBuilder(); | |
| $qb = $qb | |
| ->select( 'SUM(e.orderTotal) as totalRevenue' ) | |
| ->from( '[Vendor]\[Package]\Entity\Orders', 'e' ) | |
| ->where( $qb->expr()->andX( | |
| $qb->expr()->eq( 'e.orderStatus', ':status' ), | |
| // $qb->expr()->in( 'e.state', array( 'queued', 'confirmed' ) ) |
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
| function array_dechunk( $array ) { | |
| return array_reduce( $array, function ( $carry, $item ) { | |
| return array_merge( $carry, $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
| # In your Jenkins job configuration, select "Add build step > Execute shell", and paste this script contents. | |
| # Replace `______your-plugin-name______`, `______your-wp-username______` and `______your-wp-password______` as needed. | |
| # main config | |
| WP_ORG_USER="______your-wp-username______" # your WordPress.org username | |
| WP_ORG_PASS="______your-wp-password______" # your WordPress.org password | |
| PLUGINSLUG="______your-plugin-name______" | |
| CURRENTDIR=`pwd` | |
| MAINFILE="______your-plugin-name______.php" # this should be the name of your main php file in the wordpress plugin |
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 | |
| add_action( 'edit_form_advanced', 'force_post_title' ); | |
| function force_post_title( $post ) { | |
| // List of post types that we want to require post titles for. | |
| $post_types = array( | |
| 'post', | |
| 'report', | |
| // 'event', |
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> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Refresh Miami ReactJS</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react-dom.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> |
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> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Refresh Miami ReactJS</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react-dom.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> |
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
| # Default backend definition. Set this to point to your content server. | |
| backend default { | |
| .host = "127.0.0.1"; | |
| .port = "8080"; | |
| .connect_timeout = 60s; | |
| .first_byte_timeout = 60s; | |
| .between_bytes_timeout = 60s; | |
| .max_connections = 800; | |
| } |
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
| var inImage = new SimpleImage( "yourimage.png" ); | |
| print( inImage ); | |
| var outImage = new SimpleImage( inImage.getWidth() *2, inImage.getHeight() *2 ); | |
| for ( var pixel of outImage.values() ) { | |
| var x = Math.floor( pixel.getX() /2 ); | |
| var y = Math.floor( pixel.getY() /2 ); |
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
| /** | |
| * Find all the genes from a DNA string file and using StorageResource class. | |
| * | |
| * @author (Elvis Morales) | |
| * @version (1.0) | |
| */ | |
| import edu.duke.*; | |
| import java.io.File; |