Skip to content

Instantly share code, notes, and snippets.

View mdavalos1993's full-sized avatar
🏠
Working from home

Marcos Davalos mdavalos1993

🏠
Working from home
View GitHub Profile
class Singleton {
// singelton pattern
private static var privateShared : Singleton?
class func shared() -> Singleton {
// make sure we get an instance from the singleton queue
guard let uwShared = read(privateShared) else {
privateShared = Singleton()
return privateShared!
@mdavalos1993
mdavalos1993 / summarize-pdf-file.ipynb
Created May 31, 2024 05:41
Summarize PDF file.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.