Skip to content

Instantly share code, notes, and snippets.

View DD4F's full-sized avatar
🎯
Focusing

DD4F DD4F

🎯
Focusing
View GitHub Profile
@DD4F
DD4F / a_Docker setup.md
Created May 27, 2023 06:02 — forked from Swiss-Mac-User/a_Docker setup.md
Installing SonarQube on Docker and SonarScanner using Homebrew on macOS

Docker setup

Install the Docker UI application for macOS

brew install docker --cask

Open the Docker.app

from /Applications/Docker.app

Go to the Docker Dashboard

Wait until the "Docker Dashboard starting…"-message disappears (= Setup complete)

@DD4F
DD4F / KeyGenerateCommand.php
Created March 8, 2021 13:30 — forked from krisanalfa/KeyGenerateCommand.php
Lumen Key Generator Commands
<?php
namespace App\Console\Commands;
use Illuminate\Support\Str;
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
class KeyGenerateCommand extends Command
{
@DD4F
DD4F / git.migrate
Created February 18, 2021 03:25 — forked from niksumeiko/git.migrate
Moving git repository and all its branches, tags to a new remote repository keeping commits history
#!/bin/bash
# Sometimes you need to move your existing git repository
# to a new remote repository (/new remote origin).
# Here are a simple and quick steps that does exactly this.
#
# Let's assume we call "old repo" the repository you wish
# to move, and "new repo" the one you wish to move to.
#
### Step 1. Make sure you have a local copy of all "old repo"
### branches and tags.