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
// | |
// SingleLineFunctionCondition.swift | |
// TabBarMain | |
// | |
// Created by Jean-Louis Murphy on 2017-09-04. | |
// | |
// Copyright © 2017 Jean-Louis Murphy. All rights reserved. | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
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
/* | |
A class to create, manage and host a socket server which translates all incoming packets into JSON automatically. A feature not present in | |
popular socket frameworks such as Socket.io. | |
Benefits : | |
-Manages sockets (adds, removes, recycles socket cache automatically). | |
-Handles incoming packets to unlinked events. | |
-Takes advantage of promises and async/await for error handling. |
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 UIKit | |
/* | |
You can add many different kinds of delegate methods here. | |
*/ | |
protocol PopUpAlertControllerDelegate { | |
func popUp(controller: PopUpAlertController, didDismiss withInfo: Any?) | |
func popUp(controller: PopUpAlertController, selected item : [String:Any]?) | |
} |
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
// | |
// MultiVar.swift | |
// | |
// | |
// Created by Jean-Louis Murphy a.k.a Murphman300(github.com, stackoverflow.com, twitter.com) on 2017-02-19. | |
// Copyright © 2017 Jean-Louis Murphy. All rights reserved. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
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
{ | |
"name": "spotitbackendnode", | |
"version": "0.0.0", | |
"private": true, | |
"scripts": { | |
"start": "node ./bin/www" | |
}, | |
"dependencies": { | |
"apn": "^2.1.3", | |
"authy": "^1.2.0", |