diff --git a/_posts/2022-12-27-rxswift-debounce-throttle.md b/_posts/2022-12-27-rxswift-debounce-throttle.md index 717e584..e67e01d 100644 --- a/_posts/2022-12-27-rxswift-debounce-throttle.md +++ b/_posts/2022-12-27-rxswift-debounce-throttle.md @@ -53,6 +53,4 @@ The case of using throttle is in any situation you want to trigger it when the f }) .disposed(by: disposeBag) ``` -Remember, if you don't set the `latest` to `false`, you will receive both the first and the last items. - -That’s it. If you have any questions or recommendations, please leave a comment below. See you at the top! \ No newline at end of file +Remember, if you don't set the `latest` to `false`, you will receive both the first and the last items. \ No newline at end of file diff --git a/_posts/2022-12-30-combine-data-task.md b/_posts/2022-12-30-combine-data-task.md index 85861d4..53e6887 100644 --- a/_posts/2022-12-30-combine-data-task.md +++ b/_posts/2022-12-30-combine-data-task.md @@ -161,5 +161,3 @@ subscription = NetworkManager // the same }) ``` - -That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! πŸ‘Š diff --git a/_posts/2023-01-02-rxswift-combinelatest-withlatest.md b/_posts/2023-01-02-rxswift-combinelatest-withlatest.md index 12ce030..f4a3272 100644 --- a/_posts/2023-01-02-rxswift-combinelatest-withlatest.md +++ b/_posts/2023-01-02-rxswift-combinelatest-withlatest.md @@ -145,5 +145,3 @@ D ``` ![marble-merge](/assets/posts-images/marble-merge.png) - -That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! 😎 \ No newline at end of file diff --git a/_posts/2023-01-05-delayed-deallocation.md b/_posts/2023-01-05-delayed-deallocation.md index d3158ec..bb04842 100644 --- a/_posts/2023-01-05-delayed-deallocation.md +++ b/_posts/2023-01-05-delayed-deallocation.md @@ -99,5 +99,3 @@ func delayedAllocAsyncCall() { task.resume() } ``` - -That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! πŸ€œπŸ€› \ No newline at end of file diff --git a/_posts/2023-02-07-xctestcase-sut.md b/_posts/2023-02-07-xctestcase-sut.md index c3ef5b7..8fd3439 100644 --- a/_posts/2023-02-07-xctestcase-sut.md +++ b/_posts/2023-02-07-xctestcase-sut.md @@ -83,5 +83,3 @@ func test_empty_password { ``` In this way, we easily resolve the configuration issue. By creating the SUT within each test case, as it lives in the test case scope, also improves readability. But it doesn't mean the `setUpWithError` function is useless. In some cases, when global state needs to be set up and torn down, such as a singleton or database, using the `setUpWithError` and `tearDownWithError` may be a suitable choice. - -That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! 😷 \ No newline at end of file diff --git a/_posts/2023-10-08-core-data-cloud-kit-issue.md b/_posts/2023-10-08-core-data-cloud-kit-issue.md index ba46922..828b547 100644 --- a/_posts/2023-10-08-core-data-cloud-kit-issue.md +++ b/_posts/2023-10-08-core-data-cloud-kit-issue.md @@ -21,5 +21,4 @@ Dmitry Deplov handled [this issue](https://medium.com/@dmitrydeplov/coredata-clo After all these efforts, it sets me thinking that when implementing a new feature, even if it's provided by Apple, don't assume seamless integration. Despite official documentation, there are often many missing pieces, leaving developers to craft their own solutions. -That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! πŸͺ£ diff --git a/_posts/2023-10-31-mocking-network-requests-with-urlprotocol.md b/_posts/2023-10-31-mocking-network-requests-with-urlprotocol.md index 3c6c418..f4461f0 100644 --- a/_posts/2023-10-31-mocking-network-requests-with-urlprotocol.md +++ b/_posts/2023-10-31-mocking-network-requests-with-urlprotocol.md @@ -368,5 +368,3 @@ func test_getFromURL_failsOnRequestError() { } ``` This refactoring empowers us to test a diverse range of response scenarios. We can exhaustively test various combinations of data, response, and error, making our tests more robust. For a comprehensive list of test cases and the complete `URLProtocolStub` code, feel free to check out my GitHub [gist](https://gist.github.com/PinYuanChen/d4bb4c70b4973f3eeea8abb103356260). - -That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! πŸ§ͺ \ No newline at end of file