sudo xcode-select -s $(xcode-select -p | sed 's/\.1/.3.2/' )
The “subclass”-type inheritance is due to the underlying union filesystem (AUFS). Each command in the Dockerfile is applied as a layer and then cached, and each resulting image can be referenced as a starting point from another Dockerfile.
RSVPs yes to
The Total Eclipse of the Sun stamp is the first U.S. stamp to use thermochromic ink, which reacts to the heat of your touch. Placing your finger over the black disc on the stamp causes the ink to change from black to clear to reveal an underlying image of the moon. The image reverts back to the black disc once it cools.
reposted Total Eclipse of the Sun
bash – ^x^y unix trick for all instances in last command? – Unix & Linux Stack Exchange
!!:gs/search/replace/
notation to do what you want. This utilizes the global search & replace (:gs)
:
https://unix.stackexchange.com/users/7453/slm
reposted bash – ^x^y unix trick for all instances in last command? – Unix & Linux Stack Exchange
8-Bit Ian – So I trained a neural network on names of bounty…
https://github.com/karpathy/char-rnn
Changing git submodule repo after you started editing it
bash-4.4$ git config --file=.gitmodules -l git config --file=.gitmodules -l submodule.indieauth.com.path=indieauth/indieauth.com submodule.indieauth.com.url=https://github.com/aaronpk/IndieAuth.com.git bash-4.4$ git config --file=.gitmodules submodule.indieauth.com.url https://github.com/dougbeal/IndieAuth.com.git git config --file=.gitmodules submodule.indieauth.com.url https://github.com/dougbeal/IndieAuth.com.git bash-4.4$ git config --file=.gitmodules submodule.indieauth.com.branch docker-fixes git config --file=.gitmodules submodule.indieauth.com.branch docker-fixes bash-4.4$ git submodule sync git submodule sync Synchronizing submodule url for 'indieauth/indieauth.com' bash-4.4$ git submodule update --init --recursive --remote git submodule update --init --recursive --remote From https://github.com/dougbeal/IndieAuth.com * [new branch] docker-fixes -> origin/docker-fixes bash-4.4$ git config --file=.gitmodules -l git config --file=.gitmodules -l submodule.indieauth.com.path=indieauth/indieauth.com submodule.indieauth.com.url=https://github.com/dougbeal/IndieAuth.com.git submodule.indieauth.com.branch=docker-fixes bash-4.4$
These commands will do the work on command prompt without altering any files on local repository
git config --file=.gitmodules submodule.Submod.url https://github.com/username/ABC.git
git config --file=.gitmodules submodule.Submod.branch Development
git submodule sync
git submodule update --init --recursive --remote
Please look at the blog for screenshots: Changing GIT submodules URL/Branch to other URL/branch of same repository
Greg McCown of Arizona captures a once in a lifetime shot of a lightning bolt AND a rainbow! β‘οΈπ pic.twitter.com/4O3H295VkY
— sobore (@sobore) May 26, 2017
likes Aaron Parecki
WebSub Hub I am!
Aaron Parecki
IndieWebCat
…every infinitesimally different shade of blue, beige, and gray has its own descriptive, attractive name
The neural network has really really bad ideas for paint names.
j4y: 2017-05-06 This is a test note for testing replies
#Salsa
Doug Beal
Why Categorize when you have Post Kinds and Tags – Disabling categories in WordPress
add to functions.php
in your theme:
function dougbeal_unregister_categories() { register_taxonomy( 'category', array() ); } add_action( 'init', 'dougbeal_unregister_categories' ); unregister_widget( 'WP_Widget_Categories' );
https://wordpress.stackexchange.com/questions/120418/completely-disable-categories
http://stackoverflow.com/questions/4249694/how-do-i-remove-a-taxonomy-from-wordpress