Full instruction is here.
- Run command.
Full instruction is here.
Let's image a situation when you need to run some SQLs manually on PRODUCTION environment. Before applying any changes on PRODUCTION, It's always better to prepare backups and rollbacks for the affected data if you would need to return the previous changes.
One of the possible ways to prepare a backup is storing the affected data into the backup table. Your user should be able to create new tables.
It allows to run Chrome
in WSL
and show the Chrome
window on Windows.
Download and install vcxsrv
Run it. Most settings can be left by default except for the next one.
Make sure to check to Disable access control
For example, we need to migrate the Github (old) repository to Bitbucket (new) repository and we need to keep both of them for a while.
To do it we need to make the next steps
git clone [email protected]/example.git
You can find that you haven't made any useful changes in the repository, but Git thinks that you did: the diff is in CRLF to LF or opposite. In general, this issue occurs for Windows.
In Windows, it's better to set
git config --global core.autocrlf false
In Unix-like system (Linux, MacOS), it's better to set
CertPathValidatorException: Algorithm constraints check failed on keysize limits: RSA 1024 bit key used with certificate: CN=SSL_Self_Signed_Fallback
?Root cause of this issue lies on diferrences between SSL certificate and specified Java security policies.
The simpliest way to resolve it is disabling crypto-policies alignment, but It might be not a solution in some cases:
-Djava.security.disableSystemPropertiesFile=true
In my case, It was a solution.
ssl.crt
) to the resource
ssl.crt
) via your browser. For example, you can use this articlessl.crt
) with openssl
openssl s_client -showcerts -connect secure.veris.net:443 </dev/null | sed -n -e '/-.BEGIN/,/-.END/ p' > ssl.crt
In WSL2, run:
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | |
import { CurrentSubscriptionsComponent } from './current-subscriptions.component'; | |
import { BaseReportConfig, CoverageConfig, QbePoliciesReportPeriod, ReportType, ResidentType } from '../../../models/report-config'; | |
import { | |
DayOfWeek, | |
MomentOfMonth, | |
Periodicity, | |
ReportSubscriptionBasePeriodicity, | |
ReportSubscriptionConfig, |
package com.github.tkaczenko.cardreader.service; | |
import lombok.RequiredArgsConstructor; | |
import net.sf.scuba.smartcards.CardServiceException; | |
import org.jmrtd.PACEKeySpec; | |
import org.jmrtd.PassportService; | |
import org.jmrtd.lds.CardAccessFile; | |
import org.jmrtd.lds.PACEInfo; | |
import org.jmrtd.lds.SecurityInfo; | |
import org.slf4j.Logger; |