Skip to content

Instantly share code, notes, and snippets.

View givinalis's full-sized avatar

Givinalis Omachar givinalis

  • Microsoft
  • Nairobi, Kenya
  • 01:46 (UTC +03:00)
View GitHub Profile
@AD-Paladins
AD-Paladins / ShareBase64PDF.swift
Last active November 16, 2022 08:24
Store base64 String to file and share it
import UIKit
class ViewController: UIViewController {
@IBAction func sharePDFActionButton(_ sender: Any) {
do {
try savePdf()
loadPDFAndShare()
} catch {
print("FALLO EL GUARDAR EL PDF")
@ygrenzinger
ygrenzinger / CleanArchitecture.md
Last active November 13, 2025 14:31
Summary of Clean Architecture by Robert C. Martin

Summary of book "Clean Architecture" by Robert C. Martin

Uncle Bob, the well known author of Clean Code, is coming back to us with a new book called Clean Architecture which wants to take a larger view on how to create software.

Even if Clean Code is one of the major book around OOP and code design (mainly by presenting the SOLID principles), I was not totally impressed by the book.

Clean Architecture leaves me with the same feeling, even if it's pushing the development world to do better, has some good stories and present robust principles to build software.

The book is build around 34 chapters organised in chapters.