See how a minor change to your commit message style can make a difference. Examples
ℹ️ git-conventional-commits A CLI util to ensure this conventions and generate changelogs
#!/usr/bin/env ruby | |
require 'faraday' | |
require 'json' | |
require 'gitlab' | |
module Redmine | |
Host = nil | |
APIKey = nil |
## Install any xammp version in your ubuntu | |
## Rename the /opt/lampp to any (eg. lampp72) | |
echo | |
echo -e "\033[1;31m XAMPP Switcher\e[0m" | |
echo | |
echo -e "\033[0;33m PHP version currently active in your '/opt/lampp': \033[0;35m`sudo /opt/lampp/bin/php -v | head -n 1 | cut -c 1-10` \e[0m" # Checking running php version | |
sudo /opt/lampp/lampp stop &>- # Stopping lampp stack if running | |
echo | |
echo -e "\033[0;31m versions that you have installed:\e[0m" | |
ls -ldt /opt/lampp* | awk '{print $9}' |
name: Test, Build and Deploy | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
build-test-release: | |
if: github.event.action == 'closed' && github.event.pull_request.merged == true | |
runs-on: ubuntu-latest |
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) | |
pragma solidity ^0.8.0; | |
import "./IERC20.sol"; | |
import "./extensions/IERC20Metadata.sol"; | |
import "../../utils/Context.sol"; | |
/** |
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) | |
pragma solidity ^0.8.0; | |
import "./IERC20.sol"; | |
import "./extensions/IERC20Metadata.sol"; | |
import "../../utils/Context.sol"; | |
/** |
/* | |
This smartcontract is used to store documents text on the Ethereum blockchain | |
and to get the document by document's hash (sha256). | |
*/ | |
contract ProofOfExistence{ | |
/* ---- Public variables: */ | |
string public created; |
## Switch php version php-cli and in apache | |
echo | |
echo -e "\033[1;31m PHP Version changer Switcher\e[0m" | |
echo | |
echo -e "\033[0;33m PHP version currently active in your '/cli': \033[0;35m`sudo php -v | head -n 1 | cut -c 1-10` \e[0m" # Checking running php version | |
sudo sudo service apache2 stop &>- # Stopping lampp stack if running | |
echo | |
echo -e "\033[0;31m versions that you have installed:\e[0m" | |
ls -ldt /etc/php/* | awk '{print $9}' | |
echo |
See how a minor change to your commit message style can make a difference. Examples
ℹ️ git-conventional-commits A CLI util to ensure this conventions and generate changelogs