- use parentheses around “if” conditions
good:
if (x = y && (x + y > 3))not good:
| #include <cstdlib> | |
| #include <vector> | |
| #include <boost/graph/adjacency_matrix.hpp> | |
| #include <boost/graph/graph_utility.hpp> | |
| #include <boost/graph/undirected_dfs.hpp> | |
| #include <boost/graph/connected_components.hpp> | |
| // this class can be used to randomly decide if two | |
| // RandomMatcher objects match or not | |
| template<unsigned N> |
| # making all .cpp files in the directory | |
| # each one into its own target | |
| CXX ?= g++ | |
| CXXFLAGS ?= -Wall -std=c++11 | |
| .PHONY: all clean | |
| SRCS = $(wildcard *.cpp) |
| #!/bin/bash | |
| if [ "$#" -ne 2 ]; then | |
| echo "Usage: $0 <hostname> <email>" | |
| exit 1 | |
| fi | |
| echo "Post install process for Fedora Core 27" | |
| # TODO: verify corret version and verify run-once |
| #!/bin/bash | |
| # https://kubernetes.io/docs/getting-started-guides/minikube/ | |
| # stop and delete | |
| minikube stop | |
| minikube delete | |
| # remove local cache | |
| rm -rf ~/.kube ~/.minikube |
| # remap prefix from 'C-b' to 'C-a' | |
| unbind C-b | |
| set-option -g prefix C-a | |
| bind-key C-a send-prefix | |
| # split panes using | and - | |
| bind | split-window -h | |
| bind - split-window -v | |
| unbind '"' | |
| unbind % |
| # Create an OSEv3 group that contains the masters and nodes groups | |
| [OSEv3:children] | |
| masters | |
| nodes | |
| # Set variables common for all OSEv3 hosts | |
| [OSEv3:vars] | |
| # SSH user, this user should allow ssh based auth without requiring a password | |
| ansible_ssh_user=root | |
| ackage main | |
| import "fmt" | |
| // assume this is the original implementation of the callback: | |
| /* | |
| // by default the callback say hello only to jane | |
| PrintCallback(name string) bool { | |
| if name == "jane" { | |
| return true | |
| } |
| # fix comments | |
| sed -i 's/%/\/\//g' $1 | |
| # fix "end" | |
| sed -i 's/end/}/g' $1 | |
| # fix "3 dots" | |
| sed -i 's/\.\.\.//g' $1 | |
| # fix "elseif" |
| # removed stopped container | |
| docker container prune | |
| # remove all images with no running containers | |
| docker image prune --all |