Skip to content

Instantly share code, notes, and snippets.

View MehdiChennoufi's full-sized avatar

Mehdi Chennoufi MehdiChennoufi

  • France
View GitHub Profile
@MehdiChennoufi
MehdiChennoufi / MD5StringTest.swift
Created April 12, 2019 09:18 — forked from khanlou/MD5StringTest.swift
MD5 and SHA1 on String in Swift 3
import XCTest
@testable import <#project#>
class StringMD5Test: XCTestCase {
func testMD5() {
let string = "soroush khanlou"
XCTAssertEqual(string.md5, "954d741d14b14002d1ba88f600eee635")
//
// StoreReviewHelper.swift
// Template1
//
// Created by Apple on 14/11/17.
// Copyright © 2017 Mobiotics. All rights reserved.
//
import Foundation
import StoreKit
@MehdiChennoufi
MehdiChennoufi / UNNotification+Reschdule.swift
Created July 5, 2018 13:02 — forked from simme/UNNotification+Reschdule.swift
Exntension to `UNNotification` for "snoozing" a notification.
//
// UNNotification+Reschedule.swift
// Meal Plan
//
// Created by Simon Ljungberg on 17/11/16.
// License: MIT
//
import UIKit
import UserNotifications