- mac / PC
- iOS device
- follow this guide Authy iOS MiTM
- After getting the extracted data part you can follow this guide.
This file has been truncated, but you can view the full file.
This file contains hidden or 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
[ | |
{ | |
"code": "AAA", | |
"lat": "-17.3595", | |
"lon": "-145.494", | |
"name": "Anaa Airport", | |
"city": "Anaa", | |
"state": "Tuamotu-Gambier", | |
"country": "French Polynesia", |
This file contains hidden or 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
{ | |
"basics": { | |
"name": "Kautilya Save", | |
"label": "Software Engineer", | |
"picture": "https://media-exp1.licdn.com/dms/image/C5103AQHUxhr1KyuSjA/profile-displayphoto-shrink_200_200/0?e=1595462400&v=beta&t=t-PFQmSTU099PcR99ytdmS5qRX7IwW9fb_bwMuftIQ8", | |
"email": "[email protected]", | |
"phone": "(646) 359-3668", | |
"website": "https://sensehack.github.io/", | |
"summary": "I'm an iOS based app developer, web designer and technophile. I am a very design centric developer who prioritizes a good architecture solution which scales and minimizes overhead.", | |
"location": { |
This file contains hidden or 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
import { Injectable } from '@angular/core'; | |
import { Storage } from '@ionic/storage'; | |
@Injectable({ | |
providedIn: 'root' | |
}) | |
export class BrewSettingsService { |
This file contains hidden or 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
import { Injectable } from '@angular/core'; | |
import { HttpClient } from '@angular/common/http'; | |
import { Observable } from 'rxjs'; | |
// Importing Models for Typecasting | |
import { ArtistDB } from '../../model/audioDB/artistDB'; | |
import { AlbumsDB, Album } from '../../model/audioDB/albumDB'; | |
@Injectable({ |
This file contains hidden or 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |