Here is the place to find cppcon 2018 slides : https://github.com/CppCon/CppCon2018/
Monthly Archives: November 2018
Installing WSL, Ubuntu Bash, GCC, G++ on Windows 10
First of all, install Windows Subsystem for LInux on Windows Features. Reboot.
Go to aka.ms/wslstore and install Ubuntu.
Run bash and create a user account with a password.
Make a “sudo apt update” to update the repo packages.
Then you can do “sudo apt install gcc” and “sudo apt install g++”.
You can copy your files from your Windows system to WSL using /mnt/<drive>. Take acre of converting files to UTF8 from VS using notepad++ or iconv.
Space Invaders 1978 clone in C++ with SFML
For Programmez magazine, I have done a simple game : a space invaders clone.
Collisions are handled between weapon/blocks and weapon/invaders. It’s fun !
Source code is available at https://github.com/ChristophePichaud/SpaceInvaders