Cihat Gündüz
Cihat Gündüz
**Problem:** It's hard to share code on social media, e.g. on Twitter with its character limit and lack of syntax highlighting. The same is true for some popular blogs, e.g....
I'm using a `JSONEncoder` with `dateEncodingStrategy` set to `.iso8601` like this: ```swift extension JSONEncoder { public static var iso: JSONEncoder { let encoder = JSONEncoder() encoder.dateEncodingStrategy = .iso8601 return encoder...
I've just begun implementing the feature suggested in #40. This is a simple implementation and could already be working, I haven't added tests yet. @yonaskolb Feel free to give feedback...
Some of my beak.swift files became quite long recently and I fell like I'd rather split them into separate files with separate contexts. I'm not sure if this is possible...
This refactors the Homebrew formula according to this blog post: https://nshipster.com/homebrew/ Please note that this is related to #35 as I've also audited this formula for Homebrew core release.
While Beak is very useful and supports SPM packages, sometimes it would make life much easier if one could run another command line tool to do a specific task instead...
Currently, when trying to install this simply via `brew install beak` it doesn't work due to a custom tap needed. While this is not much additional work (so could be...
**Problem:** Sometimes, you have multiple variables or a collection and you want to edit all occurrences at the same time. **Solution:** Other code editors like [Atom](https://atom.io) and even Xcode have...
This fixes #254. I also added some basic tests, but not as detailed because these new methods just call other already well tested methods. I didn't see the need to...
As of now, we have basically two methods for accessing data, namely `string` (`string(forKey:)`, `setString(:forKey:)`) and `object` (`object(forKey:)`, `setObject(:forKey:)`). While this covers all use cases as users can convert any...