$ xcrun simctl list --json
$ xcrun simctl delete unavailable
# UdacityDownload.py | |
# Python 2.7.6 | |
""" | |
Python script to download course content from udacity courses | |
- Creates folders as per course names | |
- Downloads all the zip files | |
- Extract content from zip file | |
- Finally delete the zip file | |
Multiple course content can be downloaded from list |
<?php | |
#API access key from Google API's Console | |
define( 'API_ACCESS_KEY', 'YOUR-SERVER-API-ACCESS-KEY-GOES-HERE' ); | |
$registrationIds = $_GET['id']; | |
#prep the bundle | |
$msg = array | |
( | |
'body' => 'Body Of Notification', |
// | |
// ExtensionURLRequest.swift | |
// | |
// Created by Abhishek Maurya on 16/07/20. | |
// Copyright © 2020. All rights reserved. | |
// | |
import Foundation | |
extension URLRequest { |
import UIKit | |
final class Increment { | |
// MARK: - Properties | |
private var number: Int = 0 | |
// MARK: - This will cause memory leak | |
// lazy var incrementNumber: (Int) -> Void = { value in |
PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
import Foundation | |
public func print(_ items: Any..., separator: String = " ", terminator: String = "\n") { | |
#if DEBUG | |
let output = items.map { "\n⚠️ YourAppName \($0)" }.joined(separator: separator) | |
Swift.print(output, terminator: terminator) | |
#else | |
if(Environment.allowPrint == "1"){ | |
let output = items.map { "\n⚠️ YourAppName \($0)" }.joined(separator: separator) | |
Swift.print(output, terminator: terminator) |