Michael Hulet

Results 11 issues of Michael Hulet

This fixes Issue #3, providing support for properly displaying a number of any length in the badge. It seems there was lots of mostly-working code already to support this, but...

If a URL gives an error response, such as a `404` or a `502`, the `Promise` returned by the `scrapeIt` function does not reject, but instead resolves and calls its...

enhancement

Tried with Xcode 8.3.1 (8E1000a) (Swift 3.1) on macOS 10.12.5 Beta (16F54b), CocoaPods version 0.20.1 with the [Rome](https://github.com/CocoaPods/Rome) plugin, Carthage version 0.20.1. **Podfile**: ``` platform :ios, "8.0" use_frameworks! plugin "cocoapods-rome"...

Xcode 10.2 was released today, which made Swift 5 the latest version, and dropped support for Swift 3. However, this project's Swift version is still set to Swift 3, so...

This provides a fix for Issue #142. This moves the applying of default stylings from a factory method in `TagListView` that's called in `addTag(_:)` to a method that *just* handles...

I wanted to make a custom subclass of `TagView` to hold onto a data structure of mine so I wouldn't have to look up the data for each tag when...

Nearly all of Yelp's endpoints support passing a ISO-639 string as a parameter called `locale`. That way, you can get data that is specific to the country/area that the user...

When using `simple-plist` from NPM (via `npm install simple-plist`) with TypeScript, I get the following error when trying to compile my project: ``` node_modules/simple-plist/dist/index.d.ts:13:19 - error TS2709: Cannot use namespace...

Let's say I have a custom-made text field that updates its content binding on every user keystroke. Let's also say I have a popover that displays some options based on...

Let's say I have a popover that looks like this: ```BasicView.swift import Popovers import SwiftUI struct BasicView: View { @State var present = false var body: some View { ExampleRow(...