Skip to content

Instantly share code, notes, and snippets.

View SensehacK's full-sized avatar
:octocat:
Swifty

Kautilya Save SensehacK

:octocat:
Swifty
View GitHub Profile
@SensehacK
SensehacK / airports.json
Created August 13, 2022 20:02 — forked from tdreyno/airports.json
JSON data for airports and their locations
This file has been truncated, but you can view the full file.
[
{
"code": "AAA",
"lat": "-17.3595",
"lon": "-145.494",
"name": "Anaa Airport",
"city": "Anaa",
"state": "Tuamotu-Gambier",
"country": "French Polynesia",
"woeid": "12512819",
{
"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": "kautilyasave@gmail.com",
"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": {
@SensehacK
SensehacK / brew-settings.service.ts
Created December 11, 2019 18:30
Ionic Angular app service for storing variables to Local storage on devices (SQLite) on native apps and WebSQL on Desktops / PWAs
import { Injectable } from '@angular/core';
import { Storage } from '@ionic/storage';
@Injectable({
providedIn: 'root'
})
export class BrewSettingsService {
@SensehacK
SensehacK / audio-db.service.ts
Created November 13, 2019 03:46
Angular Ionic AudioDB service class
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({
@SensehacK
SensehacK / 0_reuse_code.js
Created September 26, 2016 07:29
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console