Skip to content

Instantly share code, notes, and snippets.

@melcu
melcu / README.md
Created July 24, 2018 11:01 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@melcu
melcu / FizzBuzz.playground
Created October 12, 2017 03:05
Fizz Buzz Algorithm Swift 4
var oneK = [Int]()
for i in 1...100{oneK.append(i)}
for num in oneK {
if num % 15 == 0 { print("\(num) FizzBuzzz") }
else if num % 3 == 0 { print("\(num) Fizz") }
else if num % 5 == 0 { print("\(num) BuzZZZzzz") }
@melcu
melcu / .swift
Created July 27, 2017 12:16 — forked from anonymous/.swift
import UIKit
class LoginController: UIViewController {
let inputContainerView : UIView = {
let view = UIView()
view.backgroundColor = UIColor.white