-
Terry Pratchett $t
:
heya. -
Tom Bombadil:
- Hi Folk
- Hey
- Follow me! | $_bIsFollowingYou = 0
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
// by edwinosorio | |
// pipecaniza | |
// dacanizares | |
#include <stdint.h> | |
#include <stdio.h> | |
typedef int8_t s8; // From -127 to +127 | |
typedef int16_t s16; | |
typedef int32_t s32; |
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
#include "Test/MovementAIController.h" | |
#include "Runtime/Engine/Classes/Kismet/GameplayStatics.h" | |
#include "AI/NavigationSystemBase.h" | |
#include "NavigationSystem.h" | |
void AMovementAIController::BeginPlay() | |
{ | |
Super::BeginPlay(); |
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
#pragma once | |
#include "CoreMinimal.h" | |
#include "AIController.h" | |
#include "MovementAIController.generated.h" | |
UCLASS() | |
class PROJECT999_API AMovementAIController : public AAIController | |
{ |
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
// Observer pattern | |
// Straightforward implementation | |
class Notification { | |
constructor() { | |
this.subs = []; | |
} | |
subscribeMe = (subscriptor) => { | |
this.subs.push(subscriptor); |
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
<?xml version="1.0"?> | |
<configuration> | |
<system.webServer> | |
<staticContent> | |
<clientCache cacheControlMode="DisableCache"/> | |
</staticContent> | |
<rewrite> | |
<rules> | |
<rule name="Pushstate Routes" stopProcessing="true"> | |
<match url=".*"/> |
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
@if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off | |
:: ---------------------- | |
:: KUDU Deployment Script | |
:: Version: 1.0.9 | |
:: ---------------------- | |
:: Prerequisites | |
:: ------------- |
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
{ | |
"name": "PROJECTNAME", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"dependencies": { | |
"json-server": "^0.14.2" | |
}, | |
"engines": {"node": "^10.14.1"}, | |
"devDependencies": {}, |
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
import React, { Component } from 'react'; | |
import { render } from 'react-dom'; | |
import { createStore, combineReducers } from 'redux' | |
import { Provider, connect } from 'react-redux' | |
import Hello from './Hello'; | |
import './style.css'; | |
const CHANGENAME = 'CHANGENAME' | |
const action = (name) => ({ | |
type: CHANGENAME, |
NewerOlder