Skip to content

Instantly share code, notes, and snippets.

View jeyries's full-sized avatar

Julien Eyriès jeyries

View GitHub Profile
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Simone Oriane - Assistante RH Indépendante</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; color: #333; }
.header { background-color: #4CAF50; color: white; text-align: center; padding: 1em; }
.content { padding: 2em; }
//
// CameraRollCell.swift
// CameraRoll
//
// Created by Julien Eyriès on 21/09/2020.
// Copyright © 2020 Julien Eyriès. All rights reserved.
//
import UIKit
import RxSwift
//
// AsyncImageLoader.swift
//
// Created by Julien Eyriès on 21/09/2020.
// Copyright © 2020 Julien Eyriès. All rights reserved.
//
import UIKit
import RxSwift
import RxCocoaRuntime
//
// ImageHelper.swift
//
// Created by Julien Eyriès on 23/09/2020.
// Copyright © 2020 Julien Eyriès. All rights reserved.
//
import Foundation
import UIKit
import RxSwift
//
// DecodeHelper.swift
//
// Created by Julien Eyriès on 12/10/2020.
// Copyright © 2020 Julien Eyriès. All rights reserved.
//
import Foundation
import RxSwift
import RxCocoaRuntime
//
// URLSession+RxSwift.swift
//
// Created by Julien Eyriès on 12/10/2020.
// Copyright © 2020 Julien Eyriès. All rights reserved.
//
import Foundation
import RxSwift
import RxCocoaRuntime
//
// ImageHelper.swift
//
// Created by Julien Eyriès on 23/09/2020.
// Copyright © 2020 Julien Eyriès. All rights reserved.
//
import Foundation
import UIKit
import RxSwift
//
// NetworkHelper.swift
//
// Created by Julien Eyriès on 23/09/2020.
// Copyright © 2020 Julien Eyriès. All rights reserved.
//
import Foundation
import RxSwift
import RxCocoaRuntime
import UIKit
private struct Secret {
static var ASSOCIATION_KEY = "nothing here"
}
extension UIImageView {
public func setImageWithURL( url: URL ) {
import UIKit
enum SimpleImageManagerError: Error {
case noData
case decodeFailed
case decodeCancelled
}
final class SimpleImageManager {