Agam's Avatar

Agam

@loopbackdev

i can haz syscall? swift server / containers @ apple opinions my own

14
Followers
18
Following
2
Posts
21.10.2024
Joined
Posts Following

Latest posts by Agam @loopbackdev

Separate code from configuration with Swift Configuration - Honza Dvorsky
Separate code from configuration with Swift Configuration - Honza Dvorsky YouTube video by SwiftServerConf

youtu.be/I3lYW6OEyIs

Separate code from configuration with Swift Configuration at @serversideswift.info

11.12.2025 22:42 πŸ‘ 2 πŸ” 2 πŸ’¬ 0 πŸ“Œ 0

Fascinating! TIL he has a few books to his name. Have you read any of the others? Where’s a good place to start?

23.10.2025 18:33 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
Screenshot of the output of Swift Profile Recorder, running Hummingbird’s hello example visualized in Speedscope.

Screenshot of the output of Swift Profile Recorder, running Hummingbird’s hello example visualized in Speedscope.

New tooling for profiling performance-critical services with Swift -- introducing the Swift Profile Recorder. More here: www.swift.org/blog/swift-p...

06.10.2025 17:45 πŸ‘ 60 πŸ” 17 πŸ’¬ 0 πŸ“Œ 3

Made a little thing that may help you profile your services from within their own process -- no extra privileges or tools required.

06.10.2025 19:24 πŸ‘ 10 πŸ” 5 πŸ’¬ 0 πŸ“Œ 0
Preview
Release 2.0.0 Β· swift-server/swift-aws-lambda-runtime The AWS Lambda Runtime for Swift v2 is now officially available. Overview Swift AWS Lambda Runtime v2 introduces a complete redesign of the API with async/await-first architecture, response streami...

πŸš€ Swift AWS Lambda Runtime v2 is out!
Build modern, scalable, and efficient Lambda functions in pure Swift!

Full async/await, response streaming, background tasks, and Swift 6 support.

Release notes & docs: github.com/swift-ser...

#SwiftLang #Serverless #serversideswift2025

06.10.2025 09:41 πŸ‘ 18 πŸ” 6 πŸ’¬ 0 πŸ“Œ 0
Preview
Tools and Automation Engineer - Jobs - Careers at Apple Apply for a Tools and Automation Engineer job at Apple. Read about the role and find out if it’s right for you.

Great opportunity for someone keen on software quality to join the team at Apple in Ottawa working on fun devtools!

jobs.apple.com/en-us/detail...

26.09.2025 22:34 πŸ‘ 12 πŸ” 9 πŸ’¬ 0 πŸ“Œ 1

Looking forward to it!

26.09.2025 13:05 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
let config = ConfigReader(providers: [
    EnvironmentVariablesProvider(),
    try await JSONProvider(filePath: "/etc/config.json")
])
let httpTimeout = config.int(forKey: "http.timeout", default: 60)
print(httpTimeout) // prints 15

let config = ConfigReader(providers: [ EnvironmentVariablesProvider(), try await JSONProvider(filePath: "/etc/config.json") ]) let httpTimeout = config.int(forKey: "http.timeout", default: 60) print(httpTimeout) // prints 15

Introducing Swift Configuration, a new way to share and manage configuration for Swift. It's a smarter way to keep secrets safe and separate develop/test/prod environments. More here: forums.swift.org/t/introducin...

25.09.2025 18:46 πŸ‘ 69 πŸ” 19 πŸ’¬ 0 πŸ“Œ 2