Skip to content

Instantly share code, notes, and snippets.

View spudro228's full-sized avatar
👌
Bussy

Dmitry Smolyakov spudro228

👌
Bussy
  • Russia
View GitHub Profile
sudo apt-get purge nvidia*
sudo apt-get install xserver-xorg-video-nouveau
sudo reboot
@spudro228
spudro228 / app.ts
Created November 18, 2019 15:32
request
this.tramwayApiService.getTeacher()
.pipe(
concatMap(
res => this._httpClient.get<Response>('https://tramway.skyeng.loc/api/file-storage/teachers/profileFilesIsUploaded?teacherId=' + res.data.id)
)
).subscribe(
response => {
console.log(response)
}
)