Skip to content

Instantly share code, notes, and snippets.

View PoissonBallon's full-sized avatar

PoissonBallon

  • Paris, France
View GitHub Profile
//: Playground - noun: a place where people can play
import Cocoa
class Pokemon {
var name: String
var trainerName: String?
init(with name: String) {
self.name = name
@PoissonBallon
PoissonBallon / cloudSettings
Last active March 17, 2020 15:17
Visual Studio Cloud Settings
{"lastUpload":"2020-03-13T09:38:28.108Z","extensionVersion":"v3.4.3"}
@PoissonBallon
PoissonBallon / UICollectionView+CleverScrollExtensions.swift
Created April 22, 2016 14:00
Clever scroll for UICollectionView (Autolayout and Self Sizing cell)
//
// UICollectionView+AppExtensions.swift
//
// Created by Allan Vialatte on 22/04/16.
//
import UIKit