0% found this document useful (0 votes)
8 views3 pages

Angular Generic

This document contains a variety of code snippets, credentials, URLs, and SQL statements. It includes GIST and Yarn sync keys, file paths, GitHub URLs, commands for Webpack, Yarn, and .NET, environment variables, server IP addresses and credentials, database server and credentials, Angular code snippets containing JSON, GitHub issue URLs, a SQL cursor example, and an Angular CLI command for generating a new project.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views3 pages

Angular Generic

This document contains a variety of code snippets, credentials, URLs, and SQL statements. It includes GIST and Yarn sync keys, file paths, GitHub URLs, commands for Webpack, Yarn, and .NET, environment variables, server IP addresses and credentials, database server and credentials, Angular code snippets containing JSON, GitHub issue URLs, a SQL cursor example, and an Angular CLI command for generating a new project.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

angel.delgado.medysif+@gmail.

com

-----------------------------------------------------------------------------------
-------------------------------
GIST CODE SYNC KEY
8e347572533d3fd013b167a24cad4496285c71e0 --- 2b927ca9ba0cfa5285a90f7ebb618358
-----------------------------------------------------------------------------------
-------------------------------

-----------------------------------------------------------------------------------
-------------------------------
C:\Program Files (x86)\Microsoft SDKs\TypeScript\2.3
%USERPROFILE%\AppData\Local\Yarn\config\global\node_modules\.bin
-----------------------------------------------------------------------------------
-------------------------------

[email protected]

https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.7-
download.md

webpack --config webpack.config.vendor.js


webpack --watch

yarn run build-dev


dotnet publish -c Debug

SET PATH=%PATH%;C:\Users\MedyAngel\AppData\Roaming\npm\bin\

=g7-?cHMdux6/Cp-
medynfjkls=23rdfwf2

----------> OVH Server


IP: 147.135.192.27
Username: Administrator
Password: PrefX2017!

----------> Server Ecritel Test + Staging


IP: prefx-webrc-01.ecritel.net
Username: administrator
Password: #NpQt{7$:(
<-------------------------

SQL
Password: PrefXSQL2017!
<-------------------------

---> NEW SERVER PreProd nou entorn: 213.182.42.147

----> DB remote server : wallix-ecritel-1.ecritel.net

username : jcarrasco
password : Ooxoh9ech6mahhiv

PREFX-WEBPP-01 -> PRE


PREFX-WEBPR-01 -> PRO
PREFX-WEBRC-01 -> Staging/Test
<-----------------------------------------------------

[email protected]
Bkprfx00$
Bkprfx01$
A12345a$

[email protected]
Medy@2018

http://localhost:20000/audittrail
http://localhost:21000/document
http://localhost:30000/geolocation
http://localhost:15500/oauth
http://localhost:16000/prefx

<code><pre><small>isLoading$ {{(isLoading$ | async)|json}}</small></pre></code>


<code><pre><small>showValidate {{showValidate|json}}</small></pre></code>
<code><pre><small>showFinalize {{showFinalize|json}}</small></pre></code>
<code><pre><small>showAjouter {{showAjouter|json}}</small></pre></code>

https://github.com/yarnpkg/yarn/issues/3287
https://www.tpeczek.com/2017/02/server-sent-events-sse-support-for.html

getFormValidationErrors(control: AbstractControl): Array<any> {


if (control == null) return null;

const formGroup = control as FormGroup;


const result = new Array<ValidationErrors>();

const generalErrors: ValidationErrors = formGroup.errors;


if (generalErrors != null) result.push({ key: "general", controlErrors:
generalErrors });

for (const key in formGroup.controls) {


if (formGroup.controls.hasOwnProperty(key)) {
const controlErrors: ValidationErrors = formGroup.get(key).errors;
if (controlErrors != null) result.push({ key, controlErrors });
}
}
return result;ee1
}

DECLARE @i INT = 1;

DECLARE c CURSOR LOCAL FAST_FORWARD


FOR
SELECT

OPEN c;
FETCH c INTO @i;

WHILE (@@FETCH_STATUS = 0)
BEGIN
FETCH c INTO @i;
END

CLOSE c;
DEALLOCATE c;

ng new BilbaoHipotecaria --directory=FrontEnd --prefix=bh --style=scss --routing --


skipTests --skipGit --commit=false --skipInstall --newProjectRoot=newProjectRoot --
enableIvy=true --minimal --inlineStyle=false --inlineTemplate=false

\[\d{2}:\d{2}:\d{2}\] \[\w*\] \[[a-zA-Z0-9`.]*\]

You might also like