// Rendered Result
<div class="progress-track" style="left:67%"></div>
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
{ | |
"accessible": { | |
"syllables": { | |
"count": 4, | |
"list": [ | |
"ac", | |
"ces", | |
"si", | |
"ble" | |
] |
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
{ | |
"headline": "Why Using Social Media Without Strategy is a Waste of Time and Effort With John Meese From Platform University", | |
"score": null, | |
"summary": { | |
"wordCount": 19, | |
"characterCount": 110, | |
"sentiment": { | |
"Sentiment": "NEGATIVE", | |
"SentimentScore": { | |
"Positive": 0.001413671299815178, |
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
import Controller from '@ember/controller'; | |
export default class ApplicationController extends Controller { | |
appName = 'Ember Twiddle'; | |
} |
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 | |
function et_last_modified_date_blog( $the_date, $format ) { | |
if ( 'post' === get_post_type() && 'U' !== $format ) { // Make sure the Unix timestamp is not being requested. | |
$the_time = get_post_time( 'His' ); | |
$the_modified = get_post_modified_time( 'His' ); | |
$last_modified = sprintf( __( 'Last updated %s', 'Divi' ), esc_html( get_post_modified_time( 'M j, Y' ) ) ); | |
$published = sprintf( __( 'Published on %s', 'Divi' ), esc_html( get_post_time( 'M j, Y' ) ) ); |
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
// REFERENCE: https://gist.github.com/slavafomin/b164e3e710a6fc9352c934b9073e7216 | |
const generateMessage = (message, code, subcode) => { | |
let errorCoding = ''; | |
if (code) errorCoding = `Code: ${code}`; | |
if (subcode) errorCoding = `${errorCoding} Subcode: ${subcode}`; | |
return `${message} ${errorCoding}`; | |
}; | |
class CustomError extends Error { |
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
oldNode=$(nvm current) && nvm install 12.13.0 && nvm --reinstall-packages-from=${oldNode} && nvm alias default 12.13.0 && echo Now Using Node $(nvm current) |
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
const schedule = require('node-schedule'); // https://github.com/node-schedule/node-schedule | |
const job = schedule.scheduleJob('55 23 * * SUN', () => { | |
console.log('I am a job scheduled to run at 23:55 every Sunday.'); | |
}); | |
console.log('job.nextInvocation:', job.nextInvocation().toString()); |
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
[ | |
{ | |
name: '3GP', | |
mime_type: ['video/3gpp'], | |
extension: ['3gp'] | |
}, | |
{ | |
name: 'Adobe Photoshop Document', | |
mime_type: ['application/x-photoshop'], | |
extension: ['psd'] |