Skip to content

Instantly share code, notes, and snippets.

View DevWL's full-sized avatar

Wiktor Liszkiewicz DevWL

  • Gajda-Med
  • Poland
View GitHub Profile
@DevWL
DevWL / docker-help.md
Created June 25, 2022 01:47 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@DevWL
DevWL / windowsTerminalSetup.md
Created June 14, 2022 18:30 — forked from TadejPolajnar/windowsTerminalSetup.md
Windows WSL 2 terminal setup

Windows WSL 2 terminal setup

Prerequisites

Windows 10 version 2004 (Build 10941) or higher.

Enabled Windows Subsystem for Linux feature. To enable following enter in Powershell

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
@DevWL
DevWL / functions.php
Last active June 10, 2021 14:44 — forked from rafsuntaskin/functions.php
WooCommerce - Alter CSV Export delimiter
<?php
add_filter( 'woocommerce_product_export_delimiter', function ( $delimiter ) {
// set your custom delimiter
$delimiter = '.';
return $delimiter;
} );
@DevWL
DevWL / hyperjs.md
Created August 2, 2020 00:03 — forked from raftheunis87/hyperjs.md
Hyper.js + Hyper.js Plugins + ZSH + Starship + Fira Code + Dark Theme - (macOS)

Hyper.js

@DevWL
DevWL / hyper.js
Created August 1, 2020 21:39 — forked from coco-napky/hyper.js
Hyper config for git bash in Windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
@DevWL
DevWL / Git commit editior
Created March 5, 2018 00:57 — forked from S3ak/Git commit editior
How to set git commit editor to sublime
Method 1
git config --global core.editor "'c:/program files/sublime text 3/sublime_text.exe' -w"
Method 2
git config --global core.editor "subl -n -w"
Method 3
$ echo 'alias subl="/cygdrive/c/Program\ Files/Sublime\ Text\ 3/sublime_text.exe"' >> ~/.bashrc