foo bar baz qux
#Required Output
Hello Foo
Hello Bar
Hello Baz
Hello Qux
export const IGNORE_WORDS = ['', 'a', 'an', 'and', 'as', 'be', 'by', 'for', 'has', 'he', 'her', 'hers', 'him', 'his', 'in', 'it', 'of', 'or', 'our', 'ours', 'the', 'their', 'theirs', 'this', 'to', 'us', 'was', 'we', 'were']; | |
/** | |
* Sort counted words by their count in descending order | |
* | |
* @param {Object} wordCounts Dictionary of words and counts | |
* @returns {Object} Sorted dictionary of word counts | |
*/ | |
export function sortByCount(wordCounts) { | |
let sorted = {}; |
{ | |
"added_words": | |
[ | |
"npm", | |
"http", | |
"localhost", | |
"sn", | |
"gatsby", | |
"js", | |
"google", |
<snippet> | |
<content><![CDATA[import React, { Component } from 'react' | |
import { connect } from 'react-redux' | |
import { withRouter } from 'react-router-dom' | |
const mapStateToProps = (state, ownProps) => { | |
return { | |
location: ownProps.location | |
} | |
} |
# How many codes to make | |
quantity = 30000 | |
# Path to the file to be written | |
dest_file = 'codes.csv' | |
codes = [] | |
quantity.times do | |
codes << "#{SecureRandom.hex(6)}".upcase | |
end |
const path = require('path') | |
module.exports = function(grunt) { | |
const config = { | |
browserify: { | |
options: { | |
transform: [ | |
['babelify', { presets: ['es2015', 'es2016'] }] | |
] | |
}, |
// Destructure the Provider component and connect method from the | |
// react-redux module. The component wraps your React application in | |
// the code necessary to work properly with state and prop updates | |
// from Redux. The connect method allows you to connect individual | |
// React components to Redux for Redux store to prop mapping. | |
import { Provider, connect } from 'react-redux' | |
// Destructure the createStore method from the core redux module | |
// This method allows you to create your global store to house all your | |
// state values and your reducers to update state values | |
import { createStore } from 'redux' |
Tktk short for "To Come" in publishing is a simple placeholder highlighting library. Load this file on your latest project to highlight all the areas that still need copy, links, or final imagery. To highlight items, simply do one of the following:
Images: Either add a tktk
class to the img
tag or add #tktk
to the image source.
Copy: Either add a tktk
class to the element, or start the copy with "tktk"
For all elements that are "to come", copy will be highlighted in a nice, obvious magenta
and images bordered in a 2px magenta
border (using box-shadow
so as not to affect layout).
A simple helper function that makes inline SVG embedding simple! Just add the asset_helpers.rb
file to your Middleman project's helpers
folder and it will automatically be loaded and made available to you in your templates. From there, simply call:
<%= embedded_svg("my-asset.svg") %>
And your SVG asset content will be embedded inline in your template. You can also pass the following options to the helper to add additional attributes to the SVG tag itself:
Import images from an old WordPress blog to a new server (or local environment)! This simple script uses wget
to download the file and place it in a corresponding local wp-content/uploads
folder.
WordPress' import script is really dumb when it comes to images - even if you have the box checked to "download and import attachments", it won't actually download any images placed in your post content. This script does the download portion, but and you'll need to update the database separately.
urls
array with your list of URLsruby import-wp-uploads.rb