Combine text across a bunch of cells into one cell
=TEXTJOIN("",TRUE,A2:A10)
Replace 3 with the number of sentences you wish to extract.
=TRIM(LEFT(A2,FIND("^",SUBSTITUTE(TRIM(A2)&".",".","^",3))-1))&"."
var $ = jQuery.noConflict(); |
::-webkit-scrollbar { | |
display: none; | |
} |
define('DISALLOW_FILE_EDIT', true);
to wp-config.php
## Controls ## | |
control D # exit bash session | |
## Commands ## | |
file # show file type | |
cat # show file content in terminal | |
less # use page reader in termainl | |
open # open file | |
ls # list files in directory | |
ls a* # list all files that start with an 'a' |
For another great resource on this topic, see https://gist.github.com/miguelmota/201895350b8fd10622032e0fbad8cee4
Task | Description | Reference |
---|---|---|
launchd | macOS 'service management framework' | howtogeek.com |
sysmond | System Monitor Daemon, monitors all system activity in background and automated by launchd | stackoverflow.com |
kernel_task | It's the kernel! | howtogeek.com |
hidd | This daemon interprets all of your mouse movements and keyboard taps | howtogeek.com |
mds / mdworker / mds_stores | These processes are part of macOS's Spotlight search tool | [howtogeek.com](https://www.howtogeek.com/ |
RewriteEngine On | |
RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC] | |
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301] | |
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC] | |
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301] |
theme get --password=[your-api-password] --store=[your-store.myshopify.com] --themeid=[your-theme-id]
theme watch --password=[your-api-password] --store=[your-store.myshopify.com] --themeid=[your-theme-id]
theme get --list -p=[your-api-password] -s=[your-store.myshopify.com]
<?php | |
/* | |
// Method 0: while-loop | |
*/ | |
if( have_rows('repeater_field_name') ): | |
while ( have_rows('repeater_field_name') ) : the_row(); | |
?> | |
<h2>Sub Field: <?php the_sub_field('sub_field_name'); ?></h2> |