ng build --prod --output-hashing none
miércoles, 2 de junio de 2021
lunes, 15 de marzo de 2021
ROUTES
https://experienceleague.adobe.com/docs/experience-manager-learn/spa-angular-tutorial/navigation-routing.html%3Flang%3Dde#update-the-header-component final!!!
https://www.aanchalgarg.com/2019/09/routes-with-multiple-and-query.html
https://stackoverflow.com/questions/36320821/passing-multiple-route-params-in-angular2
SELECCCIONADA:
I want to fetch multiples ids which I am passing while routing in Angular using route.params. This is the route.ts
{path:'section/:id/:id', component: SubsectionsComponent}
And this is how I am routing from a component.ts
onSectionClick(id1, id2){
this.router.navigate(['/path/',id1,id2], {relativeTo:this.route})
}
https://stackoverflow.com/questions/58077240/how-to-get-multiple-ids-from-route-param-in-angular-6
sábado, 13 de marzo de 2021
how-to-find-element-in-array
https://stackoverflow.com/questions/37969984/angular-2-typescript-how-to-find-element-in-array
jueves, 4 de marzo de 2021
https://www.codeproject.com/Questions/5276179/Bootstrap-dropdown-menu-not-visible
boostrap order
index.html
martes, 29 de diciembre de 2020
change password oracle
https://docs.oracle.com/en/database/oracle/oracle-database/12.2/axdbi/using-sql-plus-to-unlock-accounts-and-reset-passwords.html#GUID-1147D2B9-8FFC-4F91-A774-E97066B4E9C5
jueves, 5 de noviembre de 2020
visual studio code error
ng
ng : No se puede cargar el archivo C:\Users\silvia\AppData\Roaming\npm\ng.ps1 porque la ejecución de scripts está deshabilitada en este sistema. Para
obtener más información, consulta el tema about_Execution_Policies en https:/go.microsoft.com/fwlink/?LinkID=135170.
En línea: 1 Carácter: 1
+ ng
+ ~~
+ CategoryInfo : SecurityError: (:) [], PSSecurityException
PS C:\Users\silvia\Desktop\angular\lcb> [Environment]::Is64BitProcess
True
PS C:\Users\silvia\Desktop\angular\lcb> ng
ng : No se puede cargar el archivo C:\Users\silvia\AppData\Roaming\npm\ng.ps1 porque la ejecución de scripts está deshabilitada en este sistema. Para
obtener más información, consulta el tema about_Execution_Policies en https:/go.microsoft.com/fwlink/?LinkID=135170.
En línea: 1 Carácter: 1
+ ng
+ CategoryInfo : SecurityError: (:) [], PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
miércoles, 5 de febrero de 2020
GRANT ORACLE
CREATE USER silvia IDENTIFIED BY silviapass;
GRANT CONNECT TO silvia;
GRANT CREATE SESSION TO silvia;
GRANT UNLIMITED TABLESPACE TO silvia;