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
// run in console | |
var rows = document.getElementsByClassName("infinite-scroll-component")[0].children; | |
var csvContent = "data:text/csv;charset=utf-8,"; | |
for (var i = 0; i < rows.length; i++) { | |
var name = rows[i].childNodes[0].innerText; | |
var UDID = rows[i].childNodes[1].innerText; | |
var type = rows[i].childNodes[2].innerText; | |
var rowText = name + "," + UDID + "," + type |
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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
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
// | |
// FirestoreService.swift | |
// Valido-iOS | |
// | |
// Created by Berk Akkerman on 25.06.2020. | |
// Copyright © 2020 Ecospend. All rights reserved. | |
// | |
import Foundation | |
import RxSwift |
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
#!/bin/sh | |
UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${CONFIGURATION}-universal | |
echo "Universal(iOS + iOS Simulator) framework generation started" | |
mkdir -p "${UNIVERSAL_OUTPUTFOLDER}" | |
echo "Output directory created at ${UNIVERSAL_OUTPUTFOLDER}" | |
echo "Step 1. Build Device version" | |
xcodebuild -target "${PROJECT_NAME}" ONLY_ACTIVE_ARCH=NO -configuration ${CONFIGURATION} -sdk iphoneos BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" clean build -quiet | |
echo "Step 1 completed" |