1. X
  2. Tom
Log inSign up
Tom
173 posts
user avatar
Tom
@tomqueue
Engineer @Ashbyhq, baby's diapers changer
Stuttgart, Deutschland
Joined November 2010
81
Following
48
Followers
RepliesRepliesMediaMedia

Log in or sign up for X

See what’s happening and join the conversation

Continue with phone
or
Log in with username or email
Terms·Privacy·Cookies·Accessibility·Ads Info·© 2026 X Corp.
  • user avatar
    Tom
    @tomqueue
    Sep 13, 2022
    I'm proud to finally share what I've helped build over the past 2 years at Ashby.
    user avatar
    ashbyhq
    @ashbyhq
    Sep 13, 2022
    Excited to share our public launch and Series B announcement today. The round included 100+ customers, partners, and operators and will be used to continue investing in our operations and engineering. techcrunch.com/2022/09/13/ash…
  • user avatar
    Tom
    @tomqueue
    Jan 11, 2022
    Thanks ⁦@IKEA_Presse⁩ for shipping a lot of air and paper in a box 50x the size of the item I ordered (a hinge).
  • user avatar
    Tom
    @tomqueue
    Jan 23, 2020
    @_inside In one of the Stacktrace episodes you talked about how you protect an API from being used from a third-party by using some kind of token generated by apple. Couldn’t find the episode again. Could you point me to the API you’re using there?
  • user avatar
    Tom
    @tomqueue
    Nov 7, 2019
    @jckarter Is it safe to assume that there's a compiler bug when code behaves differently when optimizations are enabled? In this case optimizations seem to fix the issue which is strange. github.com/Quick/Nimble/i…
  • user avatar
    Tom
    @tomqueue
    Jun 3, 2019
    I guess we'll see more of these when using SwiftUI. #WWDC19
    struct ContentView : View {
    var body: some View {
        List(0...100) { item in
            HStack {
                Text("Hello World \(item)")
                    .font(.title)
                    .color(.init(red: Double(item / 255), green: Double(item / 255), blue: 255 - Double(item / 255)))
            }
        }
    }
}