Show git branch name in ubuntu terminal
Add these lines in your ~/.bashrc file
# Show git branch name
force_color_prompt=yes
color_prompt=yes
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
jQuery(document.body).trigger('wc_fragment_refresh'); |
<?php | |
/** | |
* Plugin Name: Preview Email | |
* Author: Sourov | |
*/ | |
function sourov_preview_woo_emails() { | |
$mailer = WC()->mailer(); | |
$email = $mailer->emails['WC_Email_Customer_Processing_Order']; |
<?php | |
return [ | |
'bs' => 'Bosnian', | |
'ee_TG' => 'Ewe (Togo)', | |
'ms' => 'Malay', | |
'kam_KE' => 'Kamba (Kenya)', | |
'mt' => 'Maltese', | |
'ha' => 'Hausa', | |
'es_HN' => 'Spanish (Honduras)', |
[ | |
{ | |
"id": "laravel-deploy", | |
"execute-command": "/home/sourov/hooks/laravel-deploy.sh", | |
"command-working-directory": "/home/sourov/sites/github-actions", | |
"trigger-rule": { | |
"match": { | |
"type": "value", | |
"value": "development", | |
"parameter": { |
name: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- 'feature/**' | |
defaults: |
# Download base image ubuntu 18.04 | |
FROM ubuntu:18.04 | |
# DEBIAN_FRONTEND | |
ARG DEBIAN_FRONTEND=noninteractive | |
# replace shell with bash so we can source files | |
RUN rm /bin/sh && ln -s /bin/bash /bin/sh | |
# Update software repository and install cURL & Wget |
FROM alpine:3.10 | |
# Install cURL, Zip, Vim | |
RUN apk update && apk add curl zip vim | |
# Install PHP | |
RUN apk add php7 php7-common php7-curl php7-json php7-zip php7-mbstring php7-openssl php7-phar php7-xml | |
# Install composer | |
RUN curl -sS https://getcomposer.org/installer | php -- \ |
<?php | |
/** | |
* Custom rewrite rule for career page | |
*/ | |
add_action('init', function(){ | |
add_rewrite_tag('%office_location%','([^&]+)'); | |
add_rewrite_tag('%job_position%','([^&]+)'); | |
}); |
<?php | |
// Show all php errors | |
ini_set('display_errors', 1); | |
ini_set('display_startup_errors', 1); | |
error_reporting(E_ALL); | |
// END |
# Show git branch name
force_color_prompt=yes
color_prompt=yes
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'