Skip to content

Instantly share code, notes, and snippets.

@wijourdil
wijourdil / .bash_profile
Created September 1, 2020 13:38
Command alias to search by name and checkout on another existing branch
function b() {
# Couleurs
red=`tput setaf 1`
green=`tput setaf 2`
yellow=`tput setaf 3`
magenta=`tput setaf 5`
blue=`tput setaf 6`
reset=`tput sgr0`
branch_to_use=''
@pgilad
pgilad / Instructions.md
Last active March 27, 2024 12:59
Generate SSL Certificate for use with Webpack Dev Server (OSX)

Generate private key

$ openssl genrsa -out private.key 4096

Generate a Certificate Signing Request

openssl req -new -sha256 \
@svolobuev
svolobuev / AppBundle\Resources\config\services.yml
Created February 26, 2016 06:58
JMS Serializer Subscriber example
services:
serializer.subscriber.news:
class: AppBundle\Serializer\Subscriber\NewsSubscriber
arguments: [@vich_uploader.storage, @liip_imagine.cache.manager, @request_stack]
tags:
- { name: jms_serializer.event_subscriber }
@chuckreynolds
chuckreynolds / wordpress-change-domain-migration.sql
Last active February 10, 2023 18:56
UPDATE: Use WP-CLI find-replace command to edit URLs in your database. https://developer.wordpress.org/cli/commands/search-replace/ Use this SQL script when changing domains on a WordPress site. Whether you’re moving from an old domain to a new domain or you’re changing from a development domain to a production domain this will work. __STEP1: al…
/* Use WP-CLI instead https://developer.wordpress.org/cli/commands/search-replace/ */
SET @oldsite='http://oldsite.com';
SET @newsite='http://newsite.com';
UPDATE wp_options SET option_value = replace(option_value, @oldsite, @newsite) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = replace(post_content, @oldsite, @newsite);
UPDATE wp_links SET link_url = replace(link_url, @oldsite, @newsite);
UPDATE wp_postmeta SET meta_value = replace(meta_value, @oldsite, @newsite);
/* only uncomment next line if you want all your current posts to post to RSS again as new */