Skip to content

Instantly share code, notes, and snippets.

View davibe's full-sized avatar

Davide Bertola davibe

  • Vercelli/Torino, Piedmont, Italy
View GitHub Profile

Technical Scrum Master

A Technical Scrum Master is everything what a Scrum Master is, a servant leader. However, it is also a technical leadership position where it is expected to
help design and identify technical debt and patch it. It is a technology architect role that's meant to solve most of the technicial 
impediments internally within scrum team. It is therefore expected that the candidate have broad / system-level mindset aimed at ensuring that
the team is always performing smoothly and efficiently.

Responsibilities:

@crisbit
crisbit / ViewWithDynamicWidthScrollingView.swift
Last active July 7, 2023 13:08
How to make a dynamic height scroll view programmatically in swift (using SnapKit)
import Foundation
class ViewWithDynamicWidthScrollingView: UIView {
convenience init() {
self.init(frame: CGRectMake(0, 0, UIScreen.mainScreen().bounds.width, UIScreen.mainScreen().bounds.height))
}
override init(frame: CGRect) {
super.init(frame: frame)
@davibe
davibe / fastclick.coffee
Created September 28, 2011 17:53
Custom fast click handling I'm using in JQM projects (since JQM team decided to disable custom vclick event)
this.FastClick = {}
ns = this.FastClick
ns.bind = (element, cb) ->
element = $ element
if not $.support.touch
# desktops don't need it
element.bind 'click', cb
return