-
WSL2 mit Ubuntu 20
-
Docker Desktop
-
Chocolatey
-
VSCode Insiders mit FiraCode
-
Neues Terminal
-
Git
-
Python, Node
This file contains 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
export const ScrollContainer = styled.div` | |
${({ height}) => `height: ${height};`} | |
overflow-y: scroll; | |
&::-webkit-scrollbar { | |
width: 10px; | |
background-color: rgba(0,0,0,0); | |
-webkit-border-radius: 100px; | |
} | |
&::-webkit-scrollbar:hover { | |
background-color: rgba(255, 255, 255, 0.04); |
This file contains 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
// Simple Flexbox Layout for Styled Components | |
import React from "react"; | |
import styled from "styled-components"; | |
const ColorContainer = styled.div` | |
background-color: ${({ bg }) => (bg ? bg : "inherit")}; | |
`; | |
export const Main = styled(ColorContainer)` |
This file contains 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
void ATestActor::CreateMesh() { | |
Mesh->ClearAllMeshSections(); | |
int x = 0; | |
int y = 0; | |
int z = 0; | |
FVector p0 = FVector(x * (BLOCK_RENDER_SIZE * 2) + BLOCK_RENDER_SIZE, y + BLOCK_RENDER_SIZE, z - BLOCK_RENDER_SIZE); | |
FVector p1 = FVector(x * (BLOCK_RENDER_SIZE * 2) + BLOCK_RENDER_SIZE, y - BLOCK_RENDER_SIZE, z - BLOCK_RENDER_SIZE); | |
FVector p2 = FVector(x * (BLOCK_RENDER_SIZE * 2) + BLOCK_RENDER_SIZE, y - BLOCK_RENDER_SIZE, z + BLOCK_RENDER_SIZE); |
This file contains 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
{"takeoff":"20181203T020000"} |
This file contains 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
import React, { Component } from "react"; | |
import { Redirect } from "react-router-dom"; | |
import auth0Client from "./Auth"; | |
class Callback extends Component { | |
state = { | |
loading: true | |
} | |
componentDidMount() { |
This file contains 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
--- | |
kind: ClusterRole | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
metadata: | |
name: traefik-ingress-controller | |
rules: | |
- apiGroups: | |
- "" | |
resources: | |
- services |
OlderNewer