Ler e entender um pouco desse artigo. https://wiki.c2.com/?FeynmanAlgorithm
- Reconhecer como você pensa
- Descrever métodos que você usa para pensar
- Entender métodos diferentes de pensar
- Fazer perguntas sobre tudo(incluindo sobre perguntas)
| // Fill out your copyright notice in the Description page of Project Settings. | |
| #include "MMOAIMovement.h" | |
| #include "DrawDebugHelpers.h" | |
| #include "Kismet/GameplayStatics.h" | |
| #include "Kismet/KismetMathLibrary.h" | |
| #include "Net/UnrealNetwork.h" |
Ler e entender um pouco desse artigo. https://wiki.c2.com/?FeynmanAlgorithm
| // IMPORT ALL MATERIAL COMPONENTS | |
| // #STEPS | |
| // 1- Import this file as module in app.module.ts ==> import { MaterialModule } from './xyz/abc'; | |
| // 2- Initialize it in imports:[] array ==> imports:[MaterialModule] | |
| import { NgModule } from '@angular/core'; | |
| // *************** FORM CONTROLS *************** | |
| import {MatAutocompleteModule} from '@angular/material/autocomplete'; | |
| import {MatCheckboxModule} from '@angular/material/checkbox'; | |
| import {MatDatepickerModule} from '@angular/material/datepicker'; |
| #!/bin/bash | |
| if [ -z "$1" ]; then | |
| echo "waiting for the following arguments: username + max-page-number" | |
| exit 1 | |
| else | |
| name=$1 | |
| fi | |
| if [ -z "$2" ]; then |
| #include <cstdlib> | |
| #include <iostream> | |
| #include <string> | |
| using namespace std; | |
| wstring StringToWString(const string& str) | |
| { | |
| wstring wstr; | |
| size_t size; |
| wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz |
Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.
You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.