Skip to content

Instantly share code, notes, and snippets.

View abenevaut's full-sized avatar
🤯
Boum Headshot! Boum Headshot! Boum Headshot!!!

Antoine B. abenevaut

🤯
Boum Headshot! Boum Headshot! Boum Headshot!!!
View GitHub Profile

Right after getting kali linux on windows WSL, from windows store, i tried to upgrade it as follow

sudo apt-get update && sudo apt full-upgrade -y
# log, log, log...
Unpacking libc6:amd64 (2.38-10) over (2.37-12) ...
Setting up libc6:amd64 (2.38-10) ...
@abenevaut
abenevaut / # How to setup Traefik reverse proxy on Windows ? .md
Last active March 10, 2024 00:02
How to setup a basic Traefik reverse proxy on Windows ?
@abenevaut
abenevaut / gist:f5a027d2882e4fed386aaf7acdca4f34
Created September 20, 2023 14:02
Laravel Passport with sql serv
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Laravel\Passport\Passport;
class AppServiceProvider extends ServiceProvider
{
/**
@abenevaut
abenevaut / # SQL Server Cheat Sheet.md
Last active March 9, 2024 22:39
SQL Server Cheat Sheet
  • F5 to execute the query in console
  • CTRL+l to execute equivalent of MySQL EXPLAIN
@abenevaut
abenevaut / # Enable docker windows containers on windows.md
Last active March 9, 2024 23:04
Enable docker windows containers on windows
  • Enable docker windows containers on windows

In PHPStorm, go to: SETTINGS -> TOOLS -> TERMINAL

In environment variables configuration

MSYSTEM=MINGW64;CHERE_INVOKING=1;MSYS2_PATH_TYPE=inherit;

In shell path configuration

C:\msys64\usr\bin\bash.exe --login -i