Skip to content

Instantly share code, notes, and snippets.

View AmitaiB's full-sized avatar

Amitai Blickstein AmitaiB

View GitHub Profile
@AmitaiB
AmitaiB / NSAttributedString+HTML.swift
Last active April 23, 2019 10:21
Extends String to created NSAttributedStrings, and vice versa, for many encoding types, including HTML and RTF.
//
// NSAttributedString+HTML.swift
//
// Created by Amitai Blickstein on 6/22/16.
// Copyright © 2016 Amitai Blickstein, LLC. All rights reserved.
//
import UIKit
////////////////////////
@AmitaiB
AmitaiB / AudioInterruptionMonitor.swift
Created June 17, 2019 14:54
Elegant implementation of iOS Audio Interruption Notification subscription Monitor in Swift, from Quran.com
//
// AudioInterruptionMonitor.swift
// QueuePlayer
//
// Created by Afifi, Mohamed on 4/29/19.
// Copyright © 2019 Quran.com. All rights reserved.
//
// originally DL'ed from https://github.com/quran/quran-ios/blob/master/QueuePlayer/AudioInterruptionMonitor.swift
import AVFoundation
//
// NSObject+LogProperties.h
// JWPlayer-SDK-iOS-Demo
//
// Created by Amitai Blickstein on 6/15/19.
// Copyright © 2019 JWPlayer. All rights reserved.
//
#import <Foundation/Foundation.h>
@AmitaiB
AmitaiB / jwpIssueTemplate.md
Last active January 6, 2020 23:18
JWP Issue Report Template

Issue Summary:

Given Some Conditions,
When A Certain Action-is-Taken or Specific-Stimulus-Occurs,
It Results In This Unexpected Situation/Response

JWP SDK Ver #:

iOS SDK 3.9.0

OS Version:

iOS 13.3

@AmitaiB
AmitaiB / jwSampleVMAP.xml
Created February 4, 2020 19:48
Sample VMAP from JW Player website
<vmap:VMAP xmlns:vmap="http://www.iab.net/videosuite/vmap" version="1.0">
<vmap:AdBreak timeOffset="start" breakType="linear" breakId="preroll">
<vmap:AdSource id="preroll-ad" allowMultipleAds="false" followRedirects="true">
<AdTagURI templateType="vast3">
<![CDATA[preroll.xml]]>
</AdTagURI>
</vmap:AdSource>
</vmap:AdBreak>
<vmap:AdBreak timeOffset="50%" breakType="linear" breakId="midroll">
<vmap:AdSource id="overlay-1-ad" allowMultipleAds="false" followRedirects="true">
@AmitaiB
AmitaiB / PrettyPrinter.swift
Created December 9, 2020 18:58
Pretty print JSON
class PrettyPrinter {
static func print(json tryJSON: Any) -> String {
var result = "\(tryJSON)"
do {
guard JSONSerialization.isValidJSONObject(tryJSON) else { return result }
let data = try JSONSerialization.data(withJSONObject: tryJSON, options: .prettyPrinted)
guard let string = String(data: data, encoding: .utf8) else { return result }
result = string
}
catch {
@AmitaiB
AmitaiB / JWDelayedCastingCall.swift
Last active December 22, 2020 15:10
One possible way to call `cast` in the onConnected delegate method (https://developer.jwplayer.com/)
func onConnected(to device: JWCastingDevice) {
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
self.castController.cast()
}
}
@AmitaiB
AmitaiB / llamaCamelCased.swift
Last active June 1, 2021 21:34
CamelCase - CamelCased and llamaCase - llamaCased extensions to String in Swift 3.0
import UIKit
// Swift 3.0
// Helper
public extension Character {
public var stringValue: String { return String(self) }
}
extension String {
// MARK: - CamelCase
@AmitaiB
AmitaiB / WingedFruit.vtt
Created June 17, 2021 20:38
JW Demo test
WEBVTT
NOTE This file was exported by MacCaption version 7.0.12 to comply with the WebVTT specification dated March 27, 2017.
01:00:09.306 --> 01:00:12.876 align:middle line:-1 position:31% size:43%
- Hello again, it's Winged
Nation presented by Sage Fruit.
01:00:12.876 --> 01:00:14.611 align:middle line:-1 position:50% size:33%
Talking sprint car racing,
@AmitaiB
AmitaiB / AudioInterruptionMonitor.swift
Created August 13, 2021 02:52
Modified Audio Interruption Monitor with delegate pattern
//
// AudioInterruptionMonitor.swift
// JWPlayerDemo
//
// Created by Amitai Blickstein
// Copyright © 2019. All rights reserved.
//
// Credit: Code modified from Mohamed Afifi ->
// https://github.com/quran/quran-ios/blob/master/QueuePlayer/AudioInterruptionMonitor.swift