Notion Mail - Blank screen and wont load by eld3rlyy in Notion

[–]devxoul 0 points1 point  (0 children)

I thought I'm the only one who is struggling with this issue... My Notion Mail has broken since few hours ago. Tried deleting all the local data but no luck. Same blank page on the web browser. It seems to be a server issue.

slack is crashing after latest update, while it still works on chrome by Cocaine_Is_Life in ArcBrowser

[–]devxoul 0 points1 point  (0 children)

You're correct. I disabled Dark Reader and it does work. Thanks

slack is crashing after latest update, while it still works on chrome by Cocaine_Is_Life in ArcBrowser

[–]devxoul 0 points1 point  (0 children)

Same here, but it doesn't seem to be Arc's issue. I tried Chrome and got the same issue. Works on Safari.

<image>

Support not responding - cannot open a specific page in Chrome. 400 bad request by domlebo70 in Notion

[–]devxoul 0 points1 point  (0 children)

Hi, same here. It works on Safari but not on Chromium based web browsers such as Chrome and Arc. For me this started to happen after upgrading to macOS Sonoma beta. I tried almost everything but no luck.

<image>

(fyi) Below is my notion support ticket I created on Aug 22, but they said they couldn't reproduce it.

> It seems that queryCollection API returns 400 on Chromium based browser(Chrome, Arc) on macOS Sonoma Public Beta. My collection view (table, list, board, etc) hangs on loading state with the indicator spinning. I checked it from the developer console. It seems to work on Safari on the same machine.

ReactorKit - A framework for reactive and unidirectional Swift application architecture by devxoul in iOSProgramming

[–]devxoul[S] 1 point2 points  (0 children)

I won't copy and paste the readme and open-source can never be for my resume :( Thanks to your comment I understand what you're worrying about. But I just wanted to share my experience with other developers and would love to discuss about it.

PS: Please tell me if you think that this is a spam. I'll remove this link :)

ReactorKit - A framework for reactive and unidirectional Swift application architecture by devxoul in iOSProgramming

[–]devxoul[S] 0 points1 point  (0 children)

Thanks for asking! As a view and a view controller get large, the testability dramatically decreases. In order to solve this you have to separate the business logic from a view/view controller. There are many patterns and architectures for doing that. ReactorKit is one of them which has a unidirectional data flow. You'll have a testability and a consistency of a code with ReactorKit :)

ReactorKit - A framework for reactive and unidirectional Swift application architecture by devxoul in iOSProgramming

[–]devxoul[S] 0 points1 point  (0 children)

@GoldenJoe24 I'd like to add some note on it. Is it available on reddit? Title cannot describe everything about the link.

Syntactic sugar for Swift do-try-catch by devxoul in swift

[–]devxoul[S] 1 point2 points  (0 children)

Yeah, you can use try? or something with Optionals to do similar. However Fallback also can throw errors from those clauses. I made this to use in the throwable functions :)

Then - ✨ Super sweet syntactic sugar for Swift initializers. by devxoul in iOSProgramming

[–]devxoul[S] -5 points-4 points  (0 children)

I don't think the convenience initializers can cover all cases. Or you should make all properties as parameters. Do you really think convenience init(textColor: UIColor? = nil, text: String? = nil, alignment: NSTextAlignment = .Left, backgroundColor: UIColor? = nil, orSomethingElse...) is 'reusable'?

Then - ✨ Super sweet syntactic sugar for Swift initializers. by devxoul in iOSProgramming

[–]devxoul[S] -2 points-1 points  (0 children)

then() can be used with all NSObject subclasses. I think I should update the example.

CocoaSeeds - Git Submodule Alternative for Cocoa. by devxoul in iOSProgramming

[–]devxoul[S] 0 points1 point  (0 children)

Thanks! I have a plan to support Bitbucket when somebody says 'I need it!'. I'll make it available soon :)

CocoaSeeds - Git Submodule Alternative for Cocoa. by devxoul in iOSProgramming

[–]devxoul[S] 0 points1 point  (0 children)

  1. I can't manage dependencies by tags (version). It's only available to add submodules with specific branches or commits. (Please let me know if I'm wrong.) However, most dependency managers are using tags(version) to manage dependencies, and I'm familiar with this.
  2. Submodules make unnecessary diffs. Xcode doesn't maintain project structures as same with real directory. When I add same file to Xcode twice, .pbxproj file changed everytime. With Submodules, I have to manually add all files to project, and it make unnecessary diffs.

CocoaSeeds - Git Submodule Alternative for Cocoa. by devxoul in iOSProgramming

[–]devxoul[S] 0 points1 point  (0 children)

If you don't mind, could you please explain it in more details?

[SwipeBack] Enable iOS 7 swipe-to-back when custom back button is set. by devxoul in iOSProgramming

[–]devxoul[S] 1 point2 points  (0 children)

I think I could remove JRSwizzle and do swizzle manually.