- Download WSL2 Kernel
- run
wsl --set-default-version 2
in windows command line, so that all future WSL machine will use WSL2.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Match Result": { | |
"Roman jrs": 3, | |
"EC Gabriel": 1 | |
}, | |
"Players": [ | |
{ | |
"Number": 13, | |
"Name": "Germán Adrián Burgos", | |
"Status": "Played", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 | |
# Specify a workdir, to better organize your files inside the container. | |
WORKDIR /radminvpn | |
# Update package lists and install required packages | |
RUN apt-get update && \ | |
apt-get install -y wget software-properties-common gnupg2 winbind xvfb | |
# Add Wine repository and install Wine |
I hereby claim:
- I am xiris on github.
- I am xiris (https://keybase.io/xiris) on keybase.
- I have a public key ASBSowMS1ZTop4RCQBziq71d0DkCGxQdKiHRUFtoYLwZIAo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* class bbablabla .... | |
* ... | |
* .. | |
* | |
*/ | |
public function init( | |
$arg_user_id, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# File: ~/bash_aliases | |
# Author: Oliver Michels <[email protected]> | |
# Desc: Definition of some useful aliases for the bash | |
# Some common shortcuts for file-/directory commands | |
alias ls='ls --color=auto' | |
alias la='ls -a' | |
alias ll='ls -l' | |
alias lla='ls -la' | |
alias l='ls' |
#Introduction If you're a php developer on ubuntu, there comes the time where you have to install/reinstall your system. I did it already a few times and i decided to write down the steps for a typical web developer stack with php. This is for a developer machine and not for a live environment!
I hope it helps you too!
fyi @mheiniger and me started with an installer here: https://github.com/mheiniger/webdev-setup