What can this bot do❔
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
<?php | |
/* | |
* Sample Telegram Bot Source Code | |
* | |
* @author Tadeh Alexani | |
* @version 1.00, 2017-09-06 | |
* PHP | |
*/ |
I hereby claim:
- I am tadeha on github.
- I am tadeh (https://keybase.io/tadeh) on keybase.
- I have a public key ASCg8R_95kfKFEFl93hEm_FAhKxp-RxxwX9mHK4zl05Pjwo
To claim this, I am signing this object:
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
// | |
// MapViewController.swift | |
// | |
// Created by Tadeh Alexani on 7/14/19. | |
// Copyright © 2019 Tadeh Alexani. All rights reserved. | |
// | |
import UIKit | |
import GoogleMaps |
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
// | |
// UITextField+Extension.swift | |
// | |
// Created by Tadeh Alexani on 02/11/2019. | |
// Copyright © 2019 Tadeh Alexani | |
// | |
import UIKit.UITextField | |
extension UITextField { |
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 Foundation | |
import Alamofire | |
import SwiftyJSON | |
class HTTPClient { | |
static func apiRequestCall(withUrl url: String, method: HTTPMethod, params: [String:Any] = [:], headers: [String:String],encoding: ParameterEncoding = JSONEncoding.default, completion: @escaping (JSON?, Error?) -> Void) { | |
AF.request(url, method: method,parameters: params,encoding: encoding, headers: HTTPHeaders(headers)).validate(statusCode: 200..<600).responseJSON { | |
response in |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.