Skip to content

Instantly share code, notes, and snippets.

View Steve2955's full-sized avatar
📚
Always learning

Yannis Becker Steve2955

📚
Always learning
View GitHub Profile
@Steve2955
Steve2955 / README.md
Last active April 19, 2022 05:24
My React Learnings

React Learnings

  • npx create-react-app <folder-name>
  • parentheses after return-statements are used so js won't insert semicolons automatically

Props

Are used to pass data from parent to child

@Steve2955
Steve2955 / microservice.svg
Created November 4, 2020 11:46
Microservice
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Steve2955
Steve2955 / compile.bat
Last active December 20, 2019 07:55
MinGWcompileSDL
gcc -I C:\SDL2-2.0.10\i686-w64-mingw32\include ^
-L C:\SDL2-2.0.10\i686-w64-mingw32\lib -static ^
-o sdl ^
sdlinterf.c sdl.c ^
-lmingw32 -lSDL2main -lSDL2 -Wl,--no-undefined ^
-lm -ldinput8 -ldxguid -ldxerr8 -luser32 -lgdi32 -lwinmm -limm32 ^
-lole32 -loleaut32 -lshell32 -lversion -luuid -lsetupapi -lhid -static-libgcc
[
{
"name": "Lehrerzimmer",
"id": "R200",
"links": {
"B11": 0
}
},
{
"name": "Sekretriat",
@Steve2955
Steve2955 / Bootstrap 4 CSS Spacing Utility
Last active October 2, 2018 18:09
Spacing Utility from Bootstrap 4
.m-0 {
margin: 0 !important;
}
.mt-0,
.my-0 {
margin-top: 0 !important;
}
.mr-0,