- Enter to MySQL/MariaDB server command-line tool (change root with your username and password):
mysql -u root -proot
- Set the general log file path:
SET GLOBAL general_log_file='/var/log/mysql/mycustom.log';
version: "3" | |
services: | |
sonarqube: | |
image: sonarqube | |
expose: | |
- 9000 | |
ports: | |
- "127.0.0.1:9000:9000" | |
networks: |
This is a story about how I tried to use Go for scripting. In this story, I’ll discuss the need for a Go script, how we would expect it to behave and the possible implementations; During the discussion I’ll deep dive to scripts, shells, and shebangs. Finally, we’ll discuss solutions that will make Go scripts work.
While python and bash are popular scripting languages, C, C++ and Java are not used for scripts at all, and some languages are somewhere in between.
plugins { | |
id "com.github.ben-manes.versions" version "0.17.0" | |
id "io.spring.dependency-management" version "1.0.5.RELEASE" | |
id "com.github.jk1.dependency-license-report" version '1.0' | |
} | |
apply plugin: 'base' | |
group = 'com.example' | |
version = '0.0.0' |
package com.domain; | |
import com.domain.Module; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.data.domain.Page; | |
import org.springframework.data.domain.PageImpl; | |
import org.springframework.data.domain.Pageable; | |
import org.springframework.jdbc.core.JdbcTemplate; | |
import org.springframework.stereotype.Repository; |
import java.lang.annotation.*; | |
public class DDD { | |
@Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface ApplicationService { } | |
@Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface DomainService { } | |
@Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface AggregateRootEntity { } | |
@Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface NonAggregateRootEntity { } | |
@Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface ValueObject { } | |
@Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface Repository { } | |
@Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface Factory { } |
/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉
~/.ssh/config
, set each ssh key for each repository as in this exemple:## | |
# Makefile to help manage docker-compose services | |
# | |
# Built on list_targets-Makefile: | |
# | |
# https://gist.github.com/iNamik/73fd1081fe299e3bc897d613179e4aee | |
# | |
.PHONY: help about args list targets services build up down rebuild clean start status ps logs stop restart sh bash shell | |
# If you need sudo to execute docker, then udpate these aliases |
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
"""Template for python3 terminal scripts. | |
This gist allows you to quickly create a functioning | |
python3 terminal script using argparse and subprocess. | |
""" | |
import argparse |