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
<div dir="ltr"> | |
<div id="m_-4961106213211451946gmail-:r9" aria-label="Message Body" role="textbox" aria-multiline="true" style="direction:ltr;min-height:228px"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"> | |
<span style="display:none;font-size:0px;line-height:0px;max-height:0px;max-width:0px;opacity:0;overflow:hidden">Discover your top 10 alternative careers!</span> | |
<center> | |
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="m_-4961106213211451946gmail-m_1142636288400499047gmail-m_8585775888254709718gmail-m_1217935685687977662gmail-m_-5127625014841168178gmail-bodyTable" style="height:100%;margin:0px;padding:0px;width:100%;border-collapse:collapse"> | |
<tbody><tr> | |
<td align="center" valign="top" id="m_-4961106213211451946gmail-m_1142636288400499047gmail-m_8585775888254709718gmail-m_1217935685687977662gmail-m_-5127625014841168178gmail-bodyCell" style="height:100%;padding: |
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
import SwiftUI | |
import LinkPresentation | |
struct TutorialPost: UIViewRepresentable { | |
typealias UIViewType = LPLinkView | |
var url: URL | |
func makeUIView(context: UIViewRepresentableContext<TutorialPost>) -> TutorialPost.UIViewType { | |
return LPLinkView(url: url) |
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
import Foundation | |
import UIKit | |
import LinkPresentation | |
class ViewController: UIViewController { | |
let metadataProvider = LPMetadataProvider() | |
let url = URL(string: "https://www.raywenderlich.com/6613761-sharing-in-android-10-getting-started")! | |
var links: [String] = [] |
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
import UIKit | |
import Foundation | |
extension Int { | |
func times(_ perform: (Int) -> Void) { | |
(0..<self).forEach(perform) | |
} | |
} | |
class Node<T> { |