Skip to content
View kezzico's full-sized avatar

Block or report kezzico

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ble-ios-digital-empathy ble-ios-digital-empathy Public

    Share emojis using BLE peripheral beacons

    Swift

  2. Print all iOS provisioning profiles ... Print all iOS provisioning profiles on system.md
    1
    # Print all Provisioning Profiles
    2
    
                  
    3
    This script is useful for debugging code signing related build issues. Sometimes numerous provisioning profiles can interfere with each other. By identifying provisioning profiles present on the system, an engineer can deduce where a problem/conflict may occur. 
    4
    
                  
    5
    The script prints out the filename of all provisioning profiles on the system along with the actual provisioning profiles name.
  3. Token Storage in Swift Token Storage in Swift
    1
    //
    2
    //  Token.swift
    3
    //
    4
    //  Created by Lee Irvine on 8/29/18.
    5
    //  Copyright © 2018 kezzi.co. All rights reserved.
  4. Common MySQL commands Common MySQL commands
    1
    ### SELECT Command with WHERE Clause
    2
    
                  
    3
    ```sql
    4
    SELECT * FROM customers WHERE age > 25;
    5
    ```
  5. Python: Setup a Virtual Environment Python: Setup a Virtual Environment
    1
    # Python: Virtual Environments
    2
    
                  
    3
    A virtual environment is a sandbox for packages. Pip's default behavior is system level. However, packages installed in different virtual environment do not co-mingle. The ideal is for each project to have its own distinct virtual environment. 
    4
    
                  
    5
    This is especially important on team projects. The virtual environment provides a means to a standard for packages. Identifying project dependencies and which package versions have already been tested against the code.
  6. Generate IPA from command line (xcod... Generate IPA from command line (xcode 9+)
    1
    #!/bin/bash
    2
    set -e
    3
    projectname="<YOUR_PROJECT_NAME>"
    4
    
                  
    5
    projectpath="`pwd`/$projectname.xcodeproj"