Skip to content

Instantly share code, notes, and snippets.

View decodeveronikaa's full-sized avatar
🎯
Decoding

Veronika decodeveronikaa

🎯
Decoding
View GitHub Profile
@decodeveronikaa
decodeveronikaa / SRS SBD
Created July 28, 2022 08:23
Software Specification Requirements (SRS) for an AI Spam/Bot Accounts detection on Twitter
A software requirements specification (SRS) is a document that describes what the software will do and how it will be expected to perform. It also describes the functionality the product needs to fulfill all stakeholders (business, users) needs.
@licvido
licvido / app.swift
Created February 3, 2015 23:18
SWIFT: Fade when changing UIImageView's image
let toImage = UIImage(named:"image.png")
UIView.transitionWithView(self.imageView,
duration:5,
options: .TransitionCrossDissolve,
animations: { self.imageView.image = toImage },
completion: nil)