Skip to content

Instantly share code, notes, and snippets.

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

Mahdi Mohammadi mahdix

🏠
Working from home
View GitHub Profile
@kyleneideck
kyleneideck / scrolladaptive.swift
Created August 13, 2026 11:37
UTM - Workaround for macOS guest hangs when scrolling with trackpad
// Permission to use, copy, modify, and/or distribute this software for
// any purpose with or without fee is hereby granted.
//
// THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
// WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
// FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
// DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
// AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
// OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@cnicodeme
cnicodeme / fixes.md
Last active May 6, 2026 07:14
List of 5,000 Most Frequently Used Domain Name Prefixes and Suffixes - Ordered By Length
@igstan
igstan / poly-return.scala
Last active June 15, 2017 22:50
Polymorphic return types in Scala using implicit parameters
trait Factory[T] {
def create: T
}
object Factory {
implicit def stringFactory: Factory[String] = new Factory[String] {
def create = "foo"
}
implicit def intFactory: Factory[Int] = new Factory[Int] {