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
Warning: Missing sshPrivateKey, "deis run" will be unavailable. Use: | |
deisctl config platform set sshPrivateKey=<path-to-key> | |
● ▴ ■ | |
■ ● ▴ Installing Deis... | |
▴ ■ ● | |
Storage subsystem... | |
deis-store-daemon.service: loaded | |
deis-store-volume.service: loaded | |
deis-store-metadata.service: loaded | |
deis-store-monitor.service: loaded |
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
#cloud-config | |
--- | |
coreos: | |
fleet: | |
# We have to set the public_ip here so this works on Vagrant -- otherwise, Vagrant VMs | |
# will all publish the same private IP. This is harmless for cloud providers. | |
public-ip: $private_ipv4 | |
# allow etcd to slow down at times | |
etcd_request_timeout: 3.0 | |
metadata: controlPlane=true,routerMesh=true |
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
<?php | |
// Interest Example | |
$our_interest_rate = 2.50; | |
// When passing the interest to the customer, remember that the calculation must always be done with the | |
// base value (The total invoice or the invoice - transaction costs) (Transaction Costs = 4.5% + 30 cents for example) | |
$invoice_total = 100.0; | |
$installments = 12; |
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
<!doctype html> | |
<html> | |
<head> | |
<title>The Dolus Project</title> | |
<%= stylesheet_link_tag '//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css', media: 'all' %> | |
<%= stylesheet_link_tag '//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css', media: 'all' %> | |
<%= stylesheet_link_tag 'application', media: 'all' %> | |
<%= javascript_include_tag 'https://code.jquery.com/jquery-1.11.1.min.js' %> | |
<%= javascript_include_tag '//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js' %> | |
<%= javascript_include_tag 'https://maps.googleapis.com/maps/api/js?v=3.exp' %> |
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
0 | |
Transaction Approved | |
1 | |
Refer to Issuer | |
2 |
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
// Call super | |
SCompoundWidget::Tick(AllottedGeometry, InCurrentTime, InDeltaTime); | |
if (!OwnerHUD.IsValid()) return; | |
if (!OwnerHUD->PlayerOwner) return; | |
if (!OwnerHUD->PlayerOwner->GetPawn()) return; | |
AGameCharacter *hCharacter = Cast<AGameCharacter>(OwnerHUD->PlayerOwner->GetPawn()); | |
if (!hCharacter) return; | |
hActorInstance = hCharacter; |
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
[/Script/Engine.GameUserSettings] | |
bUseVSync=True | |
ResolutionSizeX=800 | |
ResolutionSizeY=600 | |
LastUserConfirmedResolutionSizeX=1360 | |
LastUserConfirmedResolutionSizeY=768 | |
WindowPosX=0 | |
WindowPosY=0 | |
bUseDesktopResolutionForFullscreen=False | |
LastConfirmedFullscreenMode=2 |
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
RunUAT BuildCookRun -project=%~dp0/Netherdeep.uproject -noP4 -platform=Win64 -clientconfig=Shipping -serverconfig=Shipping -build -cook -server -serverplatform=Win64 -noclient -stage -pak -archive -archivedirectory=%~dp0/Final |
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
C:\Desenvolvimento\UE\Unreal Engine\4.3\Engine\Source\Runtime\Launch\Public\RequiredProgramMainCPPInclude.h(14): fatal error C1083: Cannot open include file: 'LaunchEngineLoop.cpp': No such file or directory |
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
TSharedRef<ITableRow> OnGenerateRowForList(TSharedPtr<FString> InItem, const TSharedRef<STableViewBase>& OwnerTable) | |
{ | |
return SNew(STableRow< TSharedPtr<SWidget> >, OwnerTable) | |
[ | |
SNew(STextBlock).Text(FText::FromString(*InItem)) | |
]; | |
} |
NewerOlder